Text Formatting ⇒ Thesis format : Chapter name and chapter number in different line
-
- Posts: 1
- Joined: Mon Jul 27, 2020 5:19 pm
Thesis format : Chapter name and chapter number in different line
below the heading must right aligned.
"
\top margin 30mm
CHAPTER (font size 20)
\vertical space
1 (center to chapter of previous line, font size 36)
\vertical space of 18 points
Introduction (font size 20)
\vertical space 72 points
bla bla bla (i.e., content of introduction section and text justified)"
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
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Thesis format : Chapter name and chapter number in different line
Code: Select all
\setlength{\topskip}{18pt}
\renewcommand{\@makechapterhead}[1]{% % Heading for \chapter command
\vspace*{30mm} % This is in mm from the top margin, not the top of the page
\begin{center}\LARGE
\ifnum \c@secnumdepth >\m@ne
\MakeUppercase\@chapapp
\par\thechapter
\par\nobreak
\fi
\addvspace{\topskip}
\MakeUppercase{#1}
\end{center}
\par\nobreak
\vskip 72\p@
}
- Ijon Tichy
- Posts: 640
- Joined: Mon Dec 24, 2018 10:12 am
Thesis format : Chapter name and chapter number in different line
