scite

三款科研相关谷歌插件推荐

亡梦爱人 提交于 2021-01-06 09:45:25
点击蓝字 关注我们 在个人浏览器的使用上,一直在使用谷歌浏览器。主要原因还是在于很多开发者基于谷歌浏览器开发了很多辅助工作的插件,这些插件可以提高我们在科研检索的时候的效率。今天就来给大家推荐几个谷歌浏览器的插件吧! Scholarscope 这个相信很多人已经很熟悉了,并且也已经在用了。这个插件是可以让我们在pubmed检索的时候,在每个检索的文章下面显示影响因子的插件、文章分区、文章类型等等的信息。这类辅助显示影响因子的软件还是很多的,为什么选择这个呢?主要原因还是好看。。。检索完之后文章影响因子用不同的颜色标注出来的,看着就是颜值挺高的。 另外,点进每个文章之后,我们也可以在点击 Full-text Link 来通过sci-hub下载文章的全文。不过这个功能需要简单的设置,需要设置的时候,也是点击这个按钮就有很详细的教程了。 Scite 我们检索一篇文章的时候,经常需要查看他的被引次数来确定它的权威性,同时也想知道别的文章关于这篇文章的评论是什么样子的。 scite 这个插件就是让我们干这个事情的。我们在pubmed检索完文章点开具体文章之后,在页面的右边就会出现一个scite的小窗口。这个窗口会告诉我们这篇文章有多少篇引用了,同时通过文本学习的方式来判断引用的语言里面是支持的还是反对的语言。 如果我们再点击这个 scite 侧边栏的话,就可以跳到另外一个界面了

【Notepad++】解决notepad打开大文件后卡住的问题

我们两清 提交于 2020-08-12 10:52:10
Notepad++打开大文件不佳,一般>400m就会卡死。 换用 UltraEdit 打开。UltraEdit能够打开几个G的文件。 其他用于大文件编辑的工具: 用 PilotEdit 的快速模式,可以轻松打开70G的文件; SciTE 我会乱说?我把楼上所有提到的能免费用的都用了一遍,结果还是电脑里面自带的SciTE给力了! Windows用UltraEdit即可,它专门支持大文件。基本原理就是把文件mmap到内存,没有touch到的部分不会从磁盘读到内存中来。 EmEditor,付费软件,能打开200G的文件。 来源: oschina 链接: https://my.oschina.net/u/4393870/blog/4320892

开机时自动启动的AutoHotkey脚本

。_饼干妹妹 提交于 2020-05-08 00:19:37
; ; ; 开机时自动启动的AutoHotkey脚本 ; ; 此脚本修改时间 2019年06月18日20时48分 ; ; 计时器创建代码段 ----------------------------------------------------------------------------------------- ; SetTimer可以模拟多线程从而不影响主线程的流畅执行 ; 请在SciTE4AutoHotkey中选中单词并按快捷键F12跳转到函数定义处 ; 绿色免安装程序,统一都分类保存在本地磁盘D分区文件夹 D:\Program 中 ; 例如: MasterSeeker就长期坚持固定不变保存位置在 D:\Program\MasterSeeker\MasterSeeker.exe ; 例如: FileLocator Pro就长期坚持固定不变保存位置在 D:\Program\FileLocator\FileLocator.exe ; ##################################################################### ; global ProgramDir ProgramDir=%A_ScriptDir%\.. SetTimer,01设置全局无窗口快捷键,-1000 ; 请养成按<Win> + F

AHKManager.ahk AHK管理器 2019年12月15日

生来就可爱ヽ(ⅴ<●) 提交于 2020-05-06 10:32:19
AHKManager.ahk AHK管理器 2019年12月15日 快捷键 {Alt} + {F1} //////////////////////////////////////////////////////////////////////////////////////////////// ; AHKManager.ahk ; AHK管理器 ; 河许人:一个网友仿照我的承影做的AHK源码管理器 ;~ https://www.autoahk.com/archives/11509 ; 徐晓亮:好像这个脚本挺好用的样子,决定今后一直使用,一直改进,一直优化此脚本 ; ===== 此AutoHotkey脚本源代码的备份网址有3个,网址如下所示 ===== ;~ http://autoHotkey.bokee.com/507504381.html ;~ https://www.cnblogs.com/delphixx/p/12042093.html ;~ https://gitee.com/weiyunwps618/codes/gt5baqw0msfu61lihzy9v98 ;源码 ;by Sixtyone At 2016.4.10 ;更新说明 /* 2016.4.24: 1.运行#脚本后,gui自动隐藏; 2.启动脚本目录后,gui自动隐藏。 2016.4.17: 1. 增加过滤中使用

Multiline command.go in SciTE

十年热恋 提交于 2019-12-24 23:49:27
问题 The Short This deals with SciTE and the go language in Windows (in particular, Windows 7). This is my first time using SciTE, so if there is another way to achieve my goal that is fine as well. Goal: With one key press, compile, link, and execute the newly created binary. The Long I want to setup the compile/link/excecute under the "go" command in SciTE. This may be slightly confusing as it is also for the go language. Here is what I have so far: command.compile.*.go=8g $(FileNameExt) command

What's the difference between SciTE4AutoIt3's Build and Compile options?

北城余情 提交于 2019-12-24 10:38:15
问题 In SciTE4AutoIt3's Tools menu I can choose Build or Compile . What's the difference? They both create an .exe file. 回答1: A build is series of steps which usually include: Compilation Updating of Version information Inclusion of resources and manifest information. For AutoIt, using the SciTE editor, Compile and Build are almost the same. The only difference is that Compile presents you with a GUI where you can alter compile settings, such as which packages to include. Build will just run

What's the difference between SciTE4AutoIt3's Build and Compile options?

跟風遠走 提交于 2019-12-24 10:36:05
问题 In SciTE4AutoIt3's Tools menu I can choose Build or Compile . What's the difference? They both create an .exe file. 回答1: A build is series of steps which usually include: Compilation Updating of Version information Inclusion of resources and manifest information. For AutoIt, using the SciTE editor, Compile and Build are almost the same. The only difference is that Compile presents you with a GUI where you can alter compile settings, such as which packages to include. Build will just run

Reformatting text (or, better, LaTeX) in 80 colums in SciTE

混江龙づ霸主 提交于 2019-12-07 17:55:46
问题 I recently dived into LaTeX, starting with the help of a WYSIWYM editor like Lix. Now I'm staring writing tex files in Sci-TE, It already has syntax higlighting and I adapted the tex.properties file to work in Windows showing a preview on Go [F5] One pretty thing Lyx does, and it's hard to acheive with a common text editor, is to format text in 80 columns: I can write a paragraph and hit Return each time I reach near the edge column but if, after the first draft, I want to add or cut some