output-directory=build except for PdF? (Linux Mint) #2824
Replies: 2 comments 1 reply
-
Maybe this will help: https://tex.stackexchange.com/questions/269431/tutorial-texstudio-add-output-path/269432#269432 |
Beta Was this translation helpful? Give feedback.
-
This works for me:
Adding just
MiKTeX comes with an Currently |
Beta Was this translation helpful? Give feedback.
-
I've figured out that if I put
pdflatex -synctex=1 -interaction=nonstopmode -output-directory=build %.tex
into the PdfLaTeX Command Line, it puts almost all the files into a folder (Sidenote: is there a way to have TeXStudio make that folder? So far I've only seen this work if the folder is already there), and this in the BibTeX line:bibtex build/% -include-directory=build
.There is still a
.bbl
and a.blg
file, can those somehow be generated in thebuild
folder too?I also just realized that TeXStudio is no longer finding all the auxiliary files it just created, even though I also added
./build/
to the Log Files Search Path. How do I deal with this?The original issue was to keep the PDF file in the main directory. How do I achieve this? I've tried using
-aux-directory
but that gives me anunknown option
error, so that might not be possible for me.Ideally, I'd like to just have the
.tex
file and the PDF in the main directory, and everything else in thebuild
folder. Is this possible? I'm on Linux Mint.Beta Was this translation helpful? Give feedback.
All reactions