Hello.
I would like to number the subsubsections of my document (documentclass{book}) with letters (a, b, c, etc) instead of numbers. How could I do that?
Thanks.
General ⇒ subsubsections numbered with letters
NEW: TikZ book now 40% off at Amazon.com for a short time.

Re: subsubsections numbered with letters
The following:
\setcounter{secnumdepth}{5}
\renewcommand{\thesubsubsection}{\alph{subsubsection}}
Works for me. Use \Alph instead of \alph if you want uppercase numbers.
\setcounter{secnumdepth}{5}
\renewcommand{\thesubsubsection}{\alph{subsubsection}}
Works for me. Use \Alph instead of \alph if you want uppercase numbers.
subsubsections numbered with letters
... or
if you want to inherit the numbering of the subsections.
Code: Select all
\setcounter{secnumdepth}{3}
\renewcommand{\thesubsubsection}{\thesubsection.\alph{subsubsection}}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: subsubsections numbered with letters
Thank you both!
Excellent help!
Excellent help!