TeXPreview
Sublime Text插件,用于预览TeX(LaTeX)公式
详细信息
安装次数
- 总计 3K
- Win 1K
- Mac 633
- Linux 588
08月06日 | 08月05日 | 08月04日 | 08月03日 | 08月02日 | 08月01日 | 07月31日 | 07月30日 | 07月29日 | 07月28日 | 07月27日 | 07月26日 | 07月25日 | 07月24日 | 07月23日 | 07月22日 | 07月21日 | 07月20日 | 07月19日 | 07月18日 | 07月17日 | 07月16日 | 07月15日 | 07月14日 | 07月13日 | 07月12日 | 07月11日 | 07月10日 | 07月09日 | 07月08日 | 07月07日 | 07月06日 | 07月05日 | 07月04日 | 07月03日 | 07月02日 | 07月01日 | 06月30日 | 06月29日 | 06月28日 | 06月27日 | 06月26日 | 06月25日 | 06月24日 | 06月23日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
Mac | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
README
TeXPreview
Sublime Text插件,用于预览TeX(LaTeX)公式或某些块。
这是一个简单的插件,可以帮助您预览您的TeX(或LaTeX)公式或文件中的某个块(beta版)。
此插件可以执行:- 在外部程序中查看公式(您可以使用“偏好设置 -> 插件设置 -> TexPreview”菜单更改它)或Sublime构建窗口中查看 - 当您编写公式时监控公式变化(遗憾的是Windows不支持外部程序进行该操作) - 查看字符串或块中的内容:\begin{...} ... \end{...}
仅在您的计算机上安装了ImageMagick的情况下,Sublime中的查看才会工作。
要查看公式,应在TeX公式代码中设置光标并运行“latex_preview”命令。要查看当前的LaTeX内容(字符串或块),应运行“latex_block_preview”命令。
此插件已在Windows、Linux和macOS上进行了测试并工作。
TeXPreview命令
要运行和停止TeXPreview插件,您应使用以下快捷键
[
{
"keys": ["ctrl+l"],
"command": "latex_preview"
},
{
"keys": ["ctrl+t"],
"command": "latex_block_preview"
},
{
"keys": ["ctrl+shift+l"],
"command": "latex_stop_preview"
}
]
您可以使用“偏好设置 -> 插件设置 -> TexPreview”菜单更改它。
TeXPreview选项
Linux平台TeXPreview选项示例:- “latex_path”——您的PDF LaTeX编译器的路径
"latex_path": ":/usr/local/bin" - path to pdf_latex_compiler and convert application
- “pdf_latex_compiler”——PDF LaTeX编译器
"pdf_latex_compiler": "pdflatex"
- “pdf_open_app”——用于打开包含公式的结果.pdf文件的程序
"pdf_open_app": "okular"
- “always_load_preamble” [true, false]——在每次通过pdflatex编译器构建公式时,加载您的.tex文件引言的选项
"always_load_preamble": false
- “load_preamble_after_error” [true, false]——如果.pdf文件不存在,则加载引言的选项
"load_preamble_after_error": true
- “default_preamble”——将添加到临时TeX文件的引言
"default_preamble": "\\newcommand{\\Al}{{\\alpha}}"
- “auto_reload” [“application_reload”, “file_reload”, false, true] - 使用插件的变体。 “application_reload” 变体将在每次方程式更改时重新打开外部应用程序(适用于所有操作系统,但需要很长时间),“file_reload”(或 true)变体仅在每次方程式更改时替换 .pdf 文件(在 OS X 上(与默认 Skim.app)和 Linux 上(与默认 Okular)表现良好),false 变体仅编译并打开 .pdf 文件。
"auto_reload": "file_reload"
- “external_view” - 在外部应用程序中(true)或在 Sublime(false)中预览
"external_view": "false"