Text FormattingThesis format : Chapter name and chapter number in different line

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
sou0310men
Posts: 1
Joined: Mon Jul 27, 2020 5:19 pm

Thesis format : Chapter name and chapter number in different line

Post by sou0310men »

for thesis writing Chapter heading format that I want is given below:

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)"

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

kaiserkarl13
Posts: 707
Joined: Tue Mar 25, 2008 5:02 pm

Thesis format : Chapter name and chapter number in different line

Post by kaiserkarl13 »

I don't claim this will do exactly what you want, but it's a variation on this one way or another:

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@
}
User avatar
Ijon Tichy
Posts: 640
Joined: Mon Dec 24, 2018 10:12 am

Thesis format : Chapter name and chapter number in different line

Post by Ijon Tichy »

Be careful with redefinitions of internal commands. They depend highly on the used class and packages. Several classes and packages like the KOMA-Script classes, tudscr classes, memoir, titlesec and others provide user interfaces to configure the headings.
Sorry, but I can no longer participate here as the administrator is trampling on my wishes on one of his other platforms. :cry:
Post Reply