GeneralSubsubsection Number

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
QwareeqMathematics
Posts: 68
Joined: Mon Jul 06, 2009 7:44 pm

Subsubsection Number

Post by QwareeqMathematics »

Hi guys ;

why in the following code there is no number for subsubsection :

Code: Select all

\documentclass[12pt,a4paper,dvipdfm]{report}

\begin{document}
\chapter{Chapter One}
\section{section One}
\subsection{Subsection One}
\subsubsection{Subsubsection One}
\end{document}
How to make its number visible in my document ?

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Subsubsection Number

Post by gmedina »

Hi,

the subsubsections will not be numbered by default in the book and report document classes; use

Code: Select all

\setcounter{secnumdepth}{3}
in the preamble of your document to obtain numbered subsubsections.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
QwareeqMathematics
Posts: 68
Joined: Mon Jul 06, 2009 7:44 pm

Re: Subsubsection Number

Post by QwareeqMathematics »

Thank you so much ;)
Post Reply