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
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
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- 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