Tagged Questions
1
vote
0answers
31 views
Preventing output of extra compiler files [duplicate]
When I compile a document with PdfLaTeX + View PDF quick build command option selected, Texmaker outputs these files in the same directory with the .tex file:
MyDoc.aux
MyDoc.log
MyDoc.pdf
...
4
votes
2answers
464 views
pdflatex / xelatex -output-directory and subdirectories when using \include
When I include a file from a subdirectory with \include{subdir/sub} and compile the file with pdflatex -output-directory .tex_test/ main.tex, pdflatex complains, that it can't write to ...
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 ...
0
votes
0answers
60 views
Does anyone know what the other files that come with compiling are? [duplicate]
Possible Duplicate:
Prevent pdflatex from writing a bunch of files.
Whenever I hit "compile" on MikTeX 2.8, I get a bunch of files I don't need like .aux, notepad files.
Is there a way to ...
1
vote
1answer
213 views
Sorting logs into different folders
When I run xelatex (or other compilers), I always end up with many log files in a single folder. This gets difficult to manage. I could create a script which moves them into various folders (e.g. one ...
4
votes
0answers
480 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 ...
0
votes
2answers
966 views
How to prevent TeXShop from making .aux, .syntec.gz and .log while compiling? [duplicate]
Possible Duplicate:
Prevent pdflatex from writing a bunch of files.
I'm not a super-user of LaTeX, I only use it for small reports with lots of maths. I often have to do it with other ...
3
votes
1answer
535 views
What could cause repeated NULL characters in an .aux file? [closed]
I have a LaTeX document that was compiling fine until this evening. I was playing around with synctex and latexmk when I noticed the error, but I'm not sure what is causing it.
There are over 100 of ...
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, ...