Tagged Questions
0
votes
2answers
299 views
relative paths don't work without absolute path
I'm trying to automate pdftex to generate docs. I'm in some kind of hell where TeX assumes people want to use absolute paths or the working directory.
I have the file main.tex. It imports several ...
9
votes
2answers
1k views
How to make \include work with a quoted string path containing spaces?
In Windows, \input can work with a quoted string path containing spaces, but \include cannot. How to fix it?
\documentclass{book}
\begin{document}
%\input works!
\input{"Contents/Installing and ...
23
votes
4answers
11k views
How to make the main file recognize relative paths used in the imported files?
I'm currently using doxygen to generate some documentation for a project,
and doxygen generate some LaTeX code that then can be used to generate a nice pdf.
But let's say I would like to write ...