Tagged Questions
0
votes
1answer
662 views
BibTeX can't open file `myfile.bib.aux'
I have created a document called "myfile.tex" with the following code.
\documentclass{article}
\begin{document}
As we can see in \cite{goossens93}...
\bibliographystyle{plain}
...
2
votes
1answer
189 views
How to compile LaTeX out-of-source while using bibtex?
I often use the out-of-source compilation on my LaTeX code to separate the generated files from the source files, thus I can conveniently commit my code to the repository. The command is like this:
...
2
votes
2answers
430 views
Not generating the .aux for the bibliography to run
I'm trying to generate my bibliography and, for what I read, I need to run my main.tex, then bib.aux and then, again main.tex twice, right?
I have created my .bib file and the name on the ...
3
votes
1answer
749 views
use BIBINPUTS to specify other location for .bib file
I'm trying to run bibtex from a different directory than my .bib file. According to the description in 'man bibtex', I should be able to set the envirorment variable BIBINPUTS to include the location ...
5
votes
1answer
493 views
How can Bibtex find the auxiliary files it needs when these are stored in a subdirectory
In order to make my major folder containing my master .tex file more clean, I have set Texworks to store all auiliary files in a subfolder called auxfiles. This was done by adding the following ...
16
votes
2answers
3k views
Diagram / Infographic of TeX & friends?
So, I recently delved into LaTeX for a project at work. But I’m come from the XML+XSL world, and some of LaTeX’s design is kind of difficult for me to grok.
(I’m not interested in debating the ...
4
votes
0answers
504 views
How can I use the Vim LaTeX-Suite multiple compile option with BibTeX and the -aux-directory option?
I have a document composed of several subfiles and so have used the -aux-directory command to put all of the temporary files in a subfolder, 'auxdir', to keep my working folder clear (and me sane).
I ...
5
votes
2answers
1k views
How do I run bibtex after using the -output-directory flag with pdflatex, when files are included from subdirectories?
When I have master pdflatex file which includes one or more child documents using something like \include{include/childdoc}, and I call pdflatex on it using pdflatex -output-directory=out parent.tex, ...
11
votes
4answers
930 views
Best script for automatically copying references from a centralised bib file based on aux file
In a previous question I asked about best practices when managing multiple bibtex files.
One strategy involves having a single centralised bibtex file.
Then, citations in a particular article are ...