ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

La​Te​X Equation Preview

by divinites ST3

Preview Latex equations

Details

Installs

  • Total 8K
  • Win 4K
  • Mac 3K
  • Linux 2K
Dec 22 Dec 21 Dec 20 Dec 19 Dec 18 Dec 17 Dec 16 Dec 15 Dec 14 Dec 13 Dec 12 Dec 11 Dec 10 Dec 9 Dec 8 Dec 7 Dec 6 Dec 5 Dec 4 Dec 3 Dec 2 Dec 1 Nov 30 Nov 29 Nov 28 Nov 27 Nov 26 Nov 25 Nov 24 Nov 23 Nov 22 Nov 21 Nov 20 Nov 19 Nov 18 Nov 17 Nov 16 Nov 15 Nov 14 Nov 13 Nov 12 Nov 11 Nov 10 Nov 9 Nov 8
Windows 0 0 0 0 1 2 0 1 0 0 1 1 0 0 1 0 3 0 3 2 1 1 0 0 1 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 3
Linux 0 1 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 1 0 1 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

LatexEquationPreview

Introduction

This plug-in make use of the new feature of Sublime Text, Phantom, to preview latex equations.

ATTENTION

This plug-in need imagemagick and texlive/mactex installed. otherwise it does not work.

If you do not have Tex installed, you won't need this plugin.

imagemagick can be downloaded here

for OSX or MacOS users, the best way to install imagemagick is brew install imagemagick.

I tested this plugin with my MacBookPro and windows 10 on Vmware environment, it should be okay for Linux as well, if you find any problem , please do not hesitate to open an issue, I will response in due course.

If you like this project, please star this repository😇. Thanks for your support!

Special Attention for Windows User:

  • To install convert.exe, please choose legacy support when installing imagemagick, otherwise it does not work.

  • convert.exe needs ghostscript support, please download it here

Usage

Preview Equation Auto Compilation

Currently there are two commands available:

[
    {
        "caption": "Equation Preview: View Current Equation",
        "command": "show_outstanding_preview"
    },
    {
        "caption": "Equation Preview: Clear Equation Preview",
        "command": "clean_equation_phantoms"
    },

]

Corresponding shortcut is ctrl+shift+x for show preview and ctrl+shift+alt+x for clean all preview.

Users can simply click on the phantom to close a single equation preview.

If auto-compile trigger in settings is set to true, then a preview with automatically show up when users are writing an equation.

Configuration

{
    "equation_foreground_color": "yellow",
    "equation_background_color": "",
    "equation_inline_position": "right",
    "equation_inline_size": "45%",
    "equation_block_size": "60%",
    "auto_compile": true,
    "convert_binary": "",
    "pdflatex_binary": "",
    "debug": 0
}
  • equation_foreground_color is the color of preview equations.

  • equation_background_color is the color of preview background.

  • equation_inline_size is to adjust the font size of inline equations.

  • equation_inline_position is the control where to show the inline equation preview, default value is “right”, which means the preview will show after the equation representation. If it is set to “left”, the preview will show before the equation representation.

  • auto_comile is an amazing feature, it will simultaneously compile the equations that users are writing and show it in the phantom.

  • convert_binary is the path of convert, which is a part of imagemagick package.

  • pdflatex_binary is the path of pdflatex executable.

  • debug == 1 will show additional information in the console.