Page LayoutSet different top margin for TOC and LOF

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
nadaa
Posts: 19
Joined: Sun Nov 20, 2016 8:12 pm

Set different top margin for TOC and LOF

Post by nadaa »

Hi,

I am working on my thesis, and I want to set the top margin for the table of content as follows:
The first page (top margin =5cm), rest toc pages (top margin= 1cm).

Image

Image


Here is the MWE

Code: Select all

\documentclass[a4paper,12pt]{report}
\usepackage[lmargin=3.0cm, rmargin=2.5cm,tmargin=2.5cm,bmargin=2.5cm]{geometry}

%\usepackage[uppercase]{titlesec}
\usepackage {blindtext}
\begin{document}

	\tableofcontents
	
	%\renewcommand*\listfigurename{LIST OF FIGURES}
	
	\listoffigures
	\addcontentsline{toc}{chapter}{LIST OF FIGURES}
	\chapter{ch1}
	\chapter{ch2}
	\chapter{ch3}
	\chapter{ch4}
	\chapter{ch5}
	\chapter{ch6}
	\chapter{ch7}
	\chapter{ch8}
	\chapter{ch9}
	\chapter{ch10}
	\chapter{ch11}
    \chapter{ch12}
	\chapter{ch13}
	\chapter{ch14}
	\chapter{ch15}
	\chapter{ch16}
	\chapter{ch17}
	\chapter{ch18}
		\chapter{ch19}	
			\chapter{ch20}	
	\chapter{ch21}
	\chapter{ch 22}
	\chapter{ch 23}
	\chapter{ch 24}
	\chapter{ch 25}
										
	
	\blindtext

	
\end{document}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
Post Reply