Page Layout ⇒ Adding manuscript as appendix keeping orig. page numbers
-
- Posts: 1
- Joined: Mon Mar 09, 2015 3:14 am
Adding manuscript as appendix keeping orig. page numbers
I am writing my economics dissertation in LaTeX and need to add an unpublished manuscript I have written as an appendix since I frequently cite this. I would like this to appear exactly as it exists now, including the title page etc. after the bibliography of my dissertation. However, I also want it to be listed in the table of contents of my dissertation, so I can't just merge the two pdf files. It would also be great if the manuscript in the appendix could show both the page number relative to the beginning of the dissertation and the page number relative to the beginning of the manuscript (so, for instance, it should show 1 (38) or 38 (1) for the first page of the manuscript/appendix which begins on page 38 of the entire dissertation). Is this at all possible?
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Adding manuscript as appendix keeping orig. page numbers
you can use package pdfpages to include the pdf of the manuscript as it exists now. To add a toc-entry, you can do;
Code: Select all
\cleardoublepage
\addcontentsline{toc}{section}{Name of your manuscript}
\includepdf[pages=-]{nameOfYourManuscriptfile.pdf}
I didn't quite understand what you mean with the page numbers. With
includepdf
, you can use pagecommand
to place additional material on top of the included pdf.