Text Formatting ⇒ change margins in title page
-
- Posts: 15
- Joined: Wed Mar 04, 2009 12:33 am
change margins in title page
how can i do that?
thanks!
Javier
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
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
change margins in title page
you could use gmeometric or an margin environment of your document class, like the addmargin environment of KOMA-classes. Or use \makebox or for instance the textpos package.
Stefan
-
- Posts: 15
- Joined: Wed Mar 04, 2009 12:33 am
Re: change margins in title page
\begin{titlepage}
\thispagestyle{empty}
\advance\textheight 3.4cm\relax
\onecolumn
\newpage
\advance\footskip-1.7cm
\geometry{hmargin=1.2cm,vmargin=1cm}
\clearpage
\title.....
\end{titlepage}
change margins in title page
you could use the adjustwidth environment provided by the changepage package. Take a look at the following simple example:
Code: Select all
\documentclass{report}\usepackage{changepage}\usepackage{lipsum}% just to automatically generate some text\begin{document}\begin{titlepage}\thispagestyle{empty}\begin{adjustwidth}{-2cm}{-2cm}\lipsum[1-5]\end{adjustwidth}\end{titlepage}\clearpage\lipsum[1-20]\end{document}
Re: change margins in title page
I had the same problem and found this "old" post and I can tell that with changepage works great. I have been able to change both top margin and text height. Thank you for the information
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
change margins in title page
At the time this thread was originated, the geometry package didn't allow to change the page dimensions within the document. Since version 5 it does.sk wrote:[…] I had the same problem and found this "old" post and I can tell that with changepage works great. I have been able to change both top margin and text height. Thank you for the information
Best regards
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10