-
Notifications
You must be signed in to change notification settings - Fork 72
Theses
Marei Peischl edited this page Feb 26, 2024
·
2 revisions
In case you want to add a published paper to your thesis it's possible to use the pdfpages
package with TUDa-CI. Please ensure to adjust the \pagestyle
to match the general page layout. The pdfpages package allows this by using the pagecommand option. For the full set of options, please have a look at the package documentation via texdoc pdfpages
(to match your installed version) or via texdoc.org
Full minimal example:
\documentclass[
accentcolor=9c,% Choose accent color: For a list of available colors see the full tudapub documentation
]{tudapub}
\usepackage{pdfpages}
\begin{document}
\includepdf[
pages=-,% use all pages
pagecommand=,% disable \pagestyle{empty} to use the TUDa-CI pagestyle
scale=0.8, % shrink to not overlap the head/footline
]{example-image-a4.pdf}
\end{document}
It might be necessary to adjust the page margins. In that case one has to ensure that geometry is loaded. And can use:
\newgeometry{margin=3cm}% random choice for this example
\includepdf[pages=-,pagecommand=,scale=0.8]{DEMO-TUDaThesis-en.pdf}
\clearpage
\restoregeometry% to switch back to the standard page layout