Text Formattingchange margins in title page

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
rockybalboa
Posts: 15
Joined: Wed Mar 04, 2009 12:33 am

change margins in title page

Post by rockybalboa »

Hi, I would like to change the margins only in the title page?

how can i do that?

thanks!

Javier

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

change margins in title page

Post by Stefan Kottwitz »

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
LaTeX.org admin
rockybalboa
Posts: 15
Joined: Wed Mar 04, 2009 12:33 am

Re: change margins in title page

Post by rockybalboa »

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}
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

change margins in title page

Post by gmedina »

Hi,

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} 
The package documentation can be found in the file changepage.sty itself.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
sk
Posts: 8
Joined: Wed Sep 08, 2010 10:11 am

Re: change margins in title page

Post by sk »

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
User avatar
localghost
Site Moderator
Posts: 9201
Joined: Fri Feb 02, 2007 12:06 pm

change margins in title page

Post by localghost »

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
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.


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
Post Reply