Tagged Questions
0
votes
0answers
80 views
Include file with preamble to another tex file
I have two files:
paper.tex with text, title, and full preamble with authors and so on.
It compiles successfully.
The second file (B) has also a full preamble with title, authors, little text.
It ...
2
votes
1answer
39 views
No %.aux file in a particular directory
I have the following line in my report.tex
\include{intro/introduction}
\include{prlm/preliminary}
\include{svy/survey}
and the corresponding directory structure. The directory structure is ...
22
votes
6answers
604 views
Is it possible to write all mathematical formulas in a separate file and add them in main file on-demand?
Consider this scenario:
I have a report to write and I want to write all mathematical formulas in a separate file and then add them in the main report file on demand (i.e. include/import/add/call a ...
2
votes
2answers
179 views
Disable including of system files [duplicate]
Possible Duplicate:
How can I safely compile other people's LaTeX documents?
I've got a Linux server that is rendering LaTeX documents, I want to disable the access of LaTeX to system ...
3
votes
1answer
2k views
Using \verbatiminput on filenames with underscores
I'm trying to include some source files using \verbatiminput{}. Some of these filenames have underscores in them. This works fine by default. But if I try to include the underscore package so that I ...
3
votes
1answer
130 views
Delimit a single auxiliary file into chunks, and include these at separate places?
I have a LaTeX file for inclusion, automatically generated by a code-documentation tool, so the fact it’s a single file is non-negotiable. However, I want to include it not all at once, but some ...
10
votes
2answers
829 views
Create list of all external files used by master LaTeX document?
Is there an easy way to create a list of all external files (complete path) which are used by a LaTeX document (and its "sub-documents") by
\input
\include
\includegraphics ?
(may I have forgotten ...
3
votes
3answers
302 views
Can i automatically load chapters and sections based on the filesystem?
I was interested in knowing if i can load chapters and sections of my book based on the filesystem. For example:
Chapter 1/
Section 1.tex
Section 2.tex
Section 3.tex
Chapter 2/
Section 1.tex
...
3
votes
2answers
563 views
Recommended directory structure for separating presentation and content
For my bachelor thesis I am going to structure the files for my LaTeX document in a more sophisticated way, which means I would like to use different folders for different file types.
Is there a ...