atom-latextools
atom-latextools copied to clipboard
Option to run custom build?
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?
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?