atom-latextools icon indicating copy to clipboard operation
atom-latextools copied to clipboard

Option to run custom build?

Open amittos opened this issue 8 years ago • 1 comments

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?

amittos avatar Sep 18 '16 17:09 amittos

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?

ig0774 avatar Sep 18 '16 17:09 ig0774