msiniscalchi / atom-latextools

Port of the LaTeXTools package to the Atom editor
MIT License
58 stars 21 forks source link

Option to run custom build? #127

Open amittos opened 8 years ago

amittos commented 8 years ago

First of all, thank you for this great tool. I love it so far.

I have an issue with citation though. I have two files in my project. A 'main.tex' file and a 'references.bib' file. When I run ctrl+alt+b to make the .pdf file, instead of number citations I get [?]. I have this issue with every tool I have used for latex and the only way to make the citations appear correctly is to run the following commands:

pdflatex main.tex 
bibtex main.aux 
pdflatex main.tex 
pdflatex main.tex

Tools like Texmaker let you run custom builds (example: http://tex.stackexchange.com/a/22726/98677) like the above when compiling. Is there such an option in your package?

ig0774 commented 8 years ago

Currently we don't have a way to run a custom set of commands. However, our default build (using latexmk or texify) does this sequence automatically. It certainly works for documents that I work on. Do you have a short example of a file that fails and perhaps the output from the console?