Document Classes ⇒ Proceedings Book with Articles
Proceedings Book with Articles
Suggestions would be greatly appreciated!
David de Hilster
Boca Raton, Florida
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
Re: Proceedings Book with Articles

Proceedings Book with Articles
Code: Select all
\documentclass{book}
... preamble
\begin{document}
... front matter such as copyright page, table of contents, list of figures, etc.
\include{first_paper_filename}
\include{second_paper_filename}
... additional chapters for additional papers
... any back matter such as index, etc.
\end{document}
Code: Select all
\chapter{The Paper's Title}
... the additional paper's contents
This may also be done with the memoir style instead of book, and there are a few packages which will help with chapter-wide table of contents and such.
The proc package adds definitions for the title page and abstract of each paper. You may copy those, come up with your own, or use the proc package directly instead of book.
BDTechConcepts.com