This is not a simple question as it could be. The hard part are the hyperlinks and the page numbers.
Aims of my solution
I had to generate proceedings for LNI and had following aims:
- Automatic generation of
- running heads (including page numbers, authors, title of the paper)
- table of contents
- PDF bookmarks
- index
proceedings.bib listing all papers including page numbers
- Working hyperlinks
- from the TOC to the papers
- within the papers
- from the index to the papers
The solution
I came up with my own solution heavily relying on
The solution is more than 400 lines of LaTeX, which come with other scripts.
The complete result is available at https://gi-ev.github.io/LNI-proceedings/.
Considered alternatives
When designing this solution to typeset complete proceedings, several alternatives were investigated.
Nearly all possible alternatives are listed at http://www.ctan.org/topic/confproc.
In the following, evaluated alternatives are listed and discussed.
confproc
confproc seems to the most suitable alternative.
Compared with this approach, it has following drawbacks:
- The PDFs of the papers do not take a proper heading (page numbers, editor).
- When clicking on a link in one included PDF, the linked PDF is opened instead of jumping to the link.
- Indexing of authors has to be done by manually.
combine
The combine class combines the sources of different LaTeX together.
Since there might be conflicting packages, we wanted to include each PDF on its own.
It seems to be more easy to typeset each paper for itself (LaTeX, Word) and then to combine the resulting PDFs.
proc
proc is a very basic class based on the article class.
No update since 1995.
\documentclass{report}and that packages suggested there. Then you insert the papers usingpdfpagestools. – Sigur Feb 14 '14 at 20:59combinepackage: http://get-software.net/macros/latex/contrib/combine/combine.pdf – Ethan Bolker Feb 14 '14 at 21:01.texfiles? Then you can easily generate the kinds of information you want to include. (You can get the pages anyway - see the documentation for pdfpages on how to do this.) – cfr Feb 14 '14 at 21:54\pagestyle{empty}inTransferPanel.texandrv-Nss.texand then\includepdf[pages=-,pagecommand={\pagestyle{plain}}]{TransferPanel.pdf}and\includepdf[pages=-,pagecommand={\pagestyle{plain}}]{rv-Nss.pdf}– karlkoeller Feb 15 '14 at 06:51\pageref-references within the single pdf-files which you wish to merge? What about the table(s) of contents? – Ulrich Diez Mar 12 '19 at 23:16