Text FormattingNumbering of Appendix

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
pemfir
Posts: 23
Joined: Sun Aug 12, 2012 11:30 pm

Numbering of Appendix

Post by pemfir »

Code: Select all

\documentclass[10pt,a4paper]{article}

\begin{document}
\section{Appendix}
\subsection{Appendix Subsection}
\end{document}
If I use the above code, I get this
1 Appendix
1.1 Appendix Subsection
I would like to have something like this.
Appendix
Appendix Subsection 1
Appendix Subsection 2
Could you please help ?
Thank you !
Last edited by localghost on Fri Jun 21, 2013 6:27 pm, edited 1 time in total.

Recommended reading 2024:

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

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

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

kaiserkarl13
Posts: 707
Joined: Tue Mar 25, 2008 5:02 pm

Numbering of Appendix

Post by kaiserkarl13 »

How about including the \appendix command? If you want to redefine the numbering system that is used in the appendix, you can use something like \renewcommand{\thesection}{Appendix~\arabic{section}} after the above command. But that's a relatively advanced topic. Using \appendix is the basic way of starting the appendix, and should always be used to set off the appendix.
Post Reply