All I want is a simple thing: Change the section numbering to become like this
1. Introduction
And not the default, where there is no point. I also want to make the point appear for the subsection and the subsubsection.
All I want is a simple thing: Change the section numbering to become like this
1. Introduction
And not the default, where there is no point. I also want to make the point appear for the subsection and the subsubsection.
The simplest way to change section headings in the standard document classes is with the titlesec package:
\usepackage{titlesec}
\titlelabel{\thetitle.\quad}
If you are using the KOMA classes, you can set this as a class option:
\documentclass[numbers=endperiod]{scratcl}
\documentclass{...}and ending with\end{document}. – samcarter_is_at_topanswers.xyz Jan 02 '16 at 20:00