Questions tagged [appendices]

{appendices} is about creating and customizing an appendix or multiple (sub)appendices with the help of the \appendix command or the appendix package.

is about creating and customizing an appendix or multiple (sub)appendices with the help of the \appendix command or the appendix package.

1031 questions
53
votes
1 answer

How to add an appendix to an article?

I need to add an appendix in an article I'm writing, but I don't really know how to do it. Can somebody explain to me what is the proper way to add it?
26
votes
1 answer

Appendix Section Title

I am writing a paper in the "article" document class. When it proceeds to my appendix, I would like the two sections to have titles to appear as "Appendix A. Some notation" and "Appendix B. Some more notation". So I trited \appendix …
Jie Wei
  • 889
11
votes
5 answers

How to change Appendix chapter name

I have a long appendix which includes a lot of equations and figures. My document class is report. In order to have a separate appendix section, I used: \appendix \chapter{The first appendix} The outcome shows like this Chapter A The first…
user6212
  • 153
7
votes
1 answer

Not naming an appendix

Consider the following document: \documentclass[11pt,a4paper,twoside]{book} \usepackage[titletoc,toc,page]{appendix} \begin{document} \setcounter{tocdepth}{2} \setcounter{secnumdepth}{3} \tableofcontents \chapter{First chapter} …
Gabriel
  • 2,203
7
votes
2 answers

Appendix title changing in article class

I have genuinely been searching for about 20-30 minutes with no luck to achieving what I want. It's very simple. I'm using article class, and I want to it so that the title of my appendix goes Appendix A: {Insert Title} Right now I'm using …
5
votes
2 answers

How do I set up appendices?

I used the following command for setting up an appendix section: \setcounter{section}{0} \renewcommand{\theequation}{\Alph{section}.\arabic{equation}} \renewcommand{\thesection}{\Alph{section}} (I don't want to use \appendix) Equations work fine,…
klew
  • 999
5
votes
2 answers

Error in displaying appendices

I'm having a problem when writing appendices for my thesis. This is the general structure: \documentclass[11pt,a4paper,titlepage]{report} \usepackage[T1]{fontenc} \usepackage[latin9]{inputenc} \usepackage{amsmath} \usepackage{amsfonts} …
atn
  • 105
5
votes
2 answers

List of appendices without chapter titles

This was somewhat similar to what I am looking for, but not exactly: How to make appendices behave like sections in ToC I would like for my appendices to do the following: One chapter in the ToC for all appendices Appendices behave like sections…
saikon
  • 73
4
votes
2 answers

Write Latex code for appendix within chapter but typeset at end of book

Is it possible to enter the source code for an appendix section within the actual chapter but get it typeset after the last chapter of book? For example something that looks like this in the code: \chapter{Chapter 1} \section{Section 1} This is the…
Ulli
  • 43
4
votes
1 answer

How to change appendix IDs?

I'm writing a document in Russian and use the appendix package. Currently, it uses Latin letters A, B, C etc. to identify the individual appendices. I want to change these letters either to Russian ones (A, Б, В etc.) or to numbers. How can I do…
Glory to Russia
  • 448
  • 4
  • 14
3
votes
1 answer

Appendix name repeated twice; How to get rid of the first instance?

I use for appendix the following function \appendix \renewcommand{\thesection}{\Roman{section}} \section{appendix} \section*{\text{Appendix I}} But it gives me a double name of the section. How to 'erase' the first name for the appendix? (I…
Alex
  • 55
3
votes
0 answers

How to go beyond the 26 file limit in the appendix?

Update 08/5/2020 (incorporating latest suggestions) I'm currently working on a large LaTeX document with (so far) 26 appendices files which are incorporated via \include. Comments helpfully diagnosed the issue as being the labelling system, when…
danwri
  • 41
3
votes
1 answer

Bibliography as appendix causes problems for further appendixes

The document: \documentclass{article} \usepackage{natbib} \begin{document} \appendix \renewcommand{\bibsection}{\section{References} \bibliographystyle{apalike} \bibliography{foo} \appendix \section{More Details} \end{document} The…
yegor256
  • 12,021
3
votes
2 answers

Changing "Chapter A" to "Appendix A" in TOC - Existing solutions don't work

I'm writing my thesis using \documentclass{harvard-thesis} My desired result for TOC would be: Chapter 1. Chapter 2. Appendix A. I use this to include the word "Chapter" in front of chapter numbers in TOC: \renewcommand{\cftchappresnum}{Chapter…
1
2 3 4 5 6 7