General ⇒ separate a document into several sub documents
-
- Posts: 2
- Joined: Sun Jan 17, 2021 11:19 pm
separate a document into several sub documents
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Ijon Tichy
- Posts: 640
- Joined: Mon Dec 24, 2018 10:12 am
separate a document into several sub documents
\include
. Make as much runs as need for the complete document. Than add a \includeonly
command with the filenames of only the chapters person A should get, make one LaTeX run, rename the PDF. Than change the \includeonly
command to the filenames of the chapters for person B, make one LaTeX run, rename the PDF …You could also use a PDF tool to split the PDF of the complete document into several parts.
There are lots of other approaches to either split a document or to organize code for a document that should be used both as one large and several small documents. There are even special solution for some kinds of documents, e.g., for exercises and solution. So if you need more information, please give us more information.

-
- Posts: 2
- Joined: Sun Jan 17, 2021 11:19 pm