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
Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11 Mar 10 Mar 9 Mar 8 Mar 7 Mar 6
Windows 0 0 0 0 0 0 0 0 1 0 4 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 0 2 0 0 0 1 0 0 1 0 0 0 0 1 1 1 0 0 2
Mac 1 0 0 1 0 1 0 0 0 1 0 1 1 0 1 0 0 0 1 0 0 0 0 1 0 2 0 1 1 0 0 3 2 0 1 0 0 1 0 0 0 0 1 0 0 1
Linux 0 0 1 0 0 0 0 0 0 0 0 1 1 1 0 0 0 1 0 1 0 0 1 0 0 1 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 1 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

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.