How to Generate Alphabetic Numbering in LaTeX
Writing documents with LaTeX is like casting magic spells! But what if you want your sections, lists, or figures to be numbered using letters instead of boring old numbers? Good news! It’s easier than you think. Let’s dive into the fun world of alphabetic numbering in LaTeX!
First off, why would you want alphabetic numbering? Maybe your document has many parts, and numbers just aren’t enough. Or maybe you want your list items to go A, B, C instead of 1, 2, 3 for a quiz! Whatever the reason, LaTeX’s got your back.
Alright, let’s get started!
Changing List Numbering to Letters
If you want your list to be labeled with letters, just tweak the enumerate
environment a little using the enumitem
package.
Here’s how:
- First, add this to your preamble:
\usepackage{enumitem}
- Then use this syntax in your document:
\begin{enumerate}[label=\Alph*.] \item Apples \item Bananas \item Cherries \end{enumerate}
Simple, right? Now your list will read A. Apples, B. Bananas, C. Cherries! 🥳

Want Lowercase Letters Instead?
No problem! Just change \Alph*
to \alph*
like this:
\begin{enumerate}[label=\alph*.] \item Ant \item Beetle \item Cricket \end{enumerate}
Now they’ll be labeled a., b., c. Perfect for quizzes or questionnaires!
Alphabetic Numbering for Counters
What about numbering sections or figures with letters, not just lists? It’s doable!
Let’s say you want figures to be labeled Figure A, Figure B, etc. You need to redefine how the counter is displayed.
Add this to your preamble:
\renewcommand{\thefigure}{\Alph{figure}}
Now every time you add a figure, LaTeX will use letters instead of numbers. Pretty sweet, huh?
Chest of Magic Tools: Useful Packages
If you are doing fancy stuff, you might also need these awesome packages:
- enumitem – for customizing lists super easily.
- chngcntr – to play with counters more flexibly.
- amsthm – great for structured documents with theorems and proofs that need special numbering.
These make your LaTeX life even smoother.

Alphabetical Sections? Trickier, but Possible!
Normally, sections are numbered 1, 2, 3, etc. But maybe you want Section A, Section B… like superhero mission files!
You’d have to redefine section numbering too. Here’s a tiny trick using titlesec
package:
\usepackage{titlesec} \titlelabel{\Alph{\thesection}\quad}
Now every section will have an alphabetic tag!
Warning: This can mess up your table of contents if you are not careful. Always test your document after making changes!
Summary: Quick Cheat Sheet
Here’s your handy quick guide:
- For lists: use
enumitem
and setlabel=\Alph*.
- For figures or tables: redefine
\thefigure
or\thetable
. - For sections: customize with
titlesec
.
Once you start, you’ll see how much power you have over formatting!
Final Word
Alphabetic numbering is an easy way to add some style and clarity to your LaTeX documents. Play around and see what works best for your project. And remember, with LaTeX, you are the wizard behind the book! 🪄