Bramas / texiteasy

Simple and Powerful Latex Editor
GNU General Public License v3.0
43 stars 11 forks source link

Interface with VTeX #15

Open circleb opened 8 years ago

circleb commented 8 years ago

I'm doing tech support for someone who's using your tool for writing their LaTeX files (they really like the interface), but they're currently having to use Notepad++ to process the files because they need to use a "library/package" (I'm not sure what the TeX term for it is) called VTeX for some of the formatting stuff they're doing. So my question is how do you include other "libraries/packages" for processing LaTeX files?

Bramas commented 8 years ago

I don't know VTeX but if it is an executable that take a .tex file to create a pdf, you can add the path of the executable in the system path (or in the binary path in texiteasy options) and create a new Build command in the options. for instance if the executable is vtex.exe, add the builder, named VTeX, with the command: vtex.exe %1 if it does not work try: vtex.exe %1.tex

circleb commented 8 years ago

Wonderful, I'll give that a try. Thanks!