General ⇒ Appendix problem
Appendix problem
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.
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
Appendix problem
Re: Appendix problem
\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
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
