Hi, I would like to change the margins only in the title page?
how can i do that?
thanks!
Javier
Text Formatting ⇒ change margins in title page
- Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
change margins in title page
Hi Javier,
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
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
LaTeX.org admin
-
- Posts: 15
- Joined: Wed Mar 04, 2009 12:33 am
Re: change margins in title page
thanks I tried but it didn't work. I did:
\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}
\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
Hi,
you could use the adjustwidth environment provided by the changepage package. Take a look at the following simple example:
The package documentation can be found in the file changepage.sty itself.
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}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: change margins in title page
Hi,
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
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: 9201
- 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
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1