General ⇒ subsubsections numbered with letters
subsubsections numbered with letters
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.
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
Re: subsubsections numbered with letters
\setcounter{secnumdepth}{5}
\renewcommand{\thesubsubsection}{\alph{subsubsection}}
Works for me. Use \Alph instead of \alph if you want uppercase numbers.
subsubsections numbered with letters
Code: Select all
\setcounter{secnumdepth}{3}
\renewcommand{\thesubsubsection}{\thesubsection.\alph{subsubsection}}
Re: subsubsections numbered with letters
Excellent help!