General ⇒ contents and chapter headings at the center
contents and chapter headings at the center
Thanks.
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
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
contents and chapter headings at the center
this could be done using the titlesec package, for instance
Code: Select all
\documentclass{book}
\usepackage{titlesec}
\titleformat{\chapter}[display]
{\centering\normalfont\huge\bfseries}{\chaptertitlename\ \thechapter}{20pt}{\Huge}
\begin{document}
\tableofcontents
\chapter{Test}
\end{document}
Re: contents and chapter headings at the center
Cheers.
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Re: contents and chapter headings at the center
Just a remark, don't forget to mark the topic as "solved" if the question has been solved to improve the readability of the board. It can be done by editing the first post of the topic and choosing the checkmark.
Stefan