Page Layout ⇒ How do create section numbering using a, b, c etc instead of numbers?
How do create section numbering using a, b, c etc instead of numbers?
\section{Chapter} -- Appears a 1.
\subsection{My sub chapter} --Appears as 1.a 1.b etc
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
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
How do create section numbering using a, b, c etc instead of numbers?
\chapter{Chapter title}
would produce a chapter. You can probably use
\renewcommand{\thesection}{\alph{section}}
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
How do create section numbering using a, b, c etc instead of numbers?
\section
for chapters (low profile chapters in a shorter document), then this would be a way:Code: Select all
\documentclass{article}
\usepackage{chngcntr}
\counterwithin*{subsection}{section}
\renewcommand{\thesubsection}{\thesection.\alph{subsection}}
\begin{document}
\tableofcontents
\section{Chapter}
\subsection{My sub chapter}
\section{Another Chapter}
\subsection{First sub chapter}
\subsection{Second sub chapter}
\end{document}
-
- Posts: 7
- Joined: Mon Apr 16, 2018 11:04 am