Generalsubsubsections numbered with letters

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
florencia
Posts: 2
Joined: Mon Jul 13, 2009 6:44 pm

subsubsections numbered with letters

Post by florencia »

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.

Recommended reading 2024:

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

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

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Re: subsubsections numbered with letters

Post by frabjous »

The following:

\setcounter{secnumdepth}{5}
\renewcommand{\thesubsubsection}{\alph{subsubsection}}

Works for me. Use \Alph instead of \alph if you want uppercase numbers.
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

subsubsections numbered with letters

Post by gmedina »

... or

Code: Select all

\setcounter{secnumdepth}{3}
\renewcommand{\thesubsubsection}{\thesubsection.\alph{subsubsection}}
if you want to inherit the numbering of the subsections.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
florencia
Posts: 2
Joined: Mon Jul 13, 2009 6:44 pm

Re: subsubsections numbered with letters

Post by florencia »

Thank you both!
Excellent help!
Post Reply