Page Layout ⇒ Text on 'part'-page
-
- Posts: 2
- Joined: Sun Apr 05, 2009 5:48 pm
Text on 'part'-page
I'm writing my thesis in Latex. I'm using the 'report' as document-class.
My thesis contains different parts, therefore I use the command \part to begin with this new part.
Actually I'd like to put some introduction text on my Part-page.
Does anybody know how to do that?
If I make a mbox within the part-command it does not seem to work.
Thanks!
Regards
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
Text on 'part'-page
the epigraph package offers you this possibility. Refer to the package documentation, specially section 2.5 Epigraphs on Part Pages(page 6).
Have a look at the following simple example:
Code: Select all
\documentclass{report}\usepackage{epigraph}\makeatletter\let\@epipart\@endpart\renewcommand{\@endpart}{\thispagestyle{epigraph}\@epipart}\makeatother\setlength\epigraphwidth{\textwidth}\begin{document}\epigraphhead[350]{Epigraph text epigraph text epigraph text epigraph text epigraph text epigraph text epigraph text epigraph text epigraph text epigraph text epigraph text epigraph text epigraph text epigraph text epigraph text epigraph text}\part{A part with an epigraph}\epigraphhead[350]{}\part{A part without an epigraph}\epigraphhead[350]{Epigraph text epigraph text epigraph text epigraph text epigraph text epigraph text epigraph text epigraph text epigraph text epigraph text epigraph text epigraph text epigraph text epigraph text epigraph text epigraph text}\part{Another part with an epigraph}\end{document}
-
- Posts: 2
- Joined: Sun Apr 05, 2009 5:48 pm
Re: Text on 'part'-page
Thank you!