Theses, Books, Title pages ⇒ How to make each chapter has its own abstract
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
How to make each chapter has its own abstract
I am compiling a Thesis by Publication, therefore I need to have an abstract for some Chapters (those that will present published journal work).
How can I do that?
Cheers,
Chris
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
How to make each chapter has its own abstract
You can add as many abstracts as you like by simply copy/pasting the abstract code from the beginning and pasting it after each of your included chapters. Here's an example using the template:
Code: Select all
\input{Chapters/Chapter1}
\addtotoc{Abstract2} % Add the "Abstract" page entry to the Contents
\abstract{\addtocontents{toc}{\vspace{1em}} % Add a gap in the Contents, for aesthetics
\thispagestyle{empty}
The Tfsdfkjsdhiufhsdkufgifdlhgilu lifudhlgiudfh iulgdhi lhfgdh\ldots
}
\clearpage % Start a new page
\input{Chapters/Chapter2}
Cheers,
Vel
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Re: How to make each chapter has its own abstract
However, what I end up getting now is an abstract page, with the same formatting as the main body of the chapter. Additionally, it is referenced on the TOC as a separate Chapter rather than appearing as a subsection of the relevant Chapter.
Therefore, how can I make the abstract page to be:
An initial, numbered subsection of each Chapter
Categorize it in the TOC as a subsection of the relevant Chapter
Typeset it with smaller fonts and bigger left and right margins (similar to the way a journal abstract is typeset)
Cheers,
Chris
How to make each chapter has its own abstract
If you want a custom abstract type I'd recommend you go into
thesis.cls
and find the line \newenvironment{abstract}
. This block defines how the abstract is printed. If you want to keep the original abstract for the entire thesis while creating a new abstract type for your chapters, just duplicate this block and call it abstract-chapters or something similar. You can then customize this new abstract style as you want.Cheers,
Vel