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

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

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