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