Hello,
I'm new in Latex, so maybe my question is very simple, but I couldn't find any answear ir google...
When I add at the end of the document:
\appendix
It appears in table of contents(TOC) but I don't like how it is numbered:
A First Appendix
A.1. Appendix
and so on.
I want to change it, so I could add appendix with numbering in TOC like this:
1. First appendix
2. Second appendix
and so on.
Please help me solve this problem.
Thanks a lot.
General ⇒ Appendix problem
Appendix problem
Last edited by Kaspars on Thu Feb 24, 2011 10:57 am, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

Appendix problem
This cannot be answered without knowing what documentclass, packages, etc., you're using. Please provide a minimal working example (emphasis on minimal) showing us your basic document structure, and which reproduces the numbering problem you want to avoid.
Re: Appendix problem
Oh, sorry, here is my document:
\documentclass[12pt,a4paper,flqno]{article}
\usepackage{fontspec}
\usepackage{xunicode}
\usepackage{xltxtra}
\usepackage{polyglossia}
\usepackage{color}
\usepackage{url}
\usepackage{appendix}
\setdefaultlanguage{latvian}
\setotherlanguages{english}
\usepackage{graphicx}
\usepackage{amsmath}
\begin{document}
\tableofcontents
\begin{abstract}
\end{abstract}
text with few sections and subscetions...
\bibliographystyle{unsrt}
\bibliography{Master_1}
\appendix
\section{First appendix}
\section{Second appendix}
\end{document}
So I don't like that in TOC there is:
A First Appendix
B Second Appendix
I want:
1. First appendix
2. Second appendix
Thanks for help
\documentclass[12pt,a4paper,flqno]{article}
\usepackage{fontspec}
\usepackage{xunicode}
\usepackage{xltxtra}
\usepackage{polyglossia}
\usepackage{color}
\usepackage{url}
\usepackage{appendix}
\setdefaultlanguage{latvian}
\setotherlanguages{english}
\usepackage{graphicx}
\usepackage{amsmath}
\begin{document}
\tableofcontents
\begin{abstract}
\end{abstract}
text with few sections and subscetions...
\bibliographystyle{unsrt}
\bibliography{Master_1}
\appendix
\section{First appendix}
\section{Second appendix}
\end{document}
So I don't like that in TOC there is:
A First Appendix
B Second Appendix
I want:
1. First appendix
2. Second appendix
Thanks for help

Appendix problem
You need only put:
right after \appendix.
(You can leave out the period at the end if you don't want a period there -- the regular sections don't, after all.)
Code: Select all
\renewcommand{\thesection}{\arabic{section}.}
(You can leave out the period at the end if you don't want a period there -- the regular sections don't, after all.)
Appendix problem
It worksfrabjous wrote:You need only put:
right after \appendix.Code: Select all
\renewcommand{\thesection}{\arabic{section}.}
(You can leave out the period at the end if you don't want a period there -- the regular sections don't, after all.)

Thanks, you are the best
