LaTeX Deriving the Einstein Equations: Appendix for Honours Project

  • Thread starter Thread starter latentcorpse
  • Start date Start date
  • Tags Tags
    Latex
AI Thread Summary
The discussion centers on formatting a single appendix in an honours project. Key issues include the appearance of "Appendix" and "A" in the table of contents, with the suggestion that it is acceptable to simply label it "Appendix" without the letter if only one is included. It is noted that the positioning of "Appendix" in the TOC cannot be adjusted due to style file constraints. For the appendix title, which is lengthy and appears too large, a solution is proposed to reduce the font size using the command "\chapter{\small{...}}". Additionally, guidance is provided on including the appendix in the main document using specific commands to ensure proper formatting and inclusion in the index.
latentcorpse
Messages
1,411
Reaction score
0
I need to include a single appendix in my honours project. The appendix will be the last bit before the bibliography.
I have

\appendix
\addtocontents{toc}{\protect\contentsline{chapter}{Appendix}{}}
\chapter{Deriving the Einstein equations for the ... Spacetimes}

This is causing a couple of problems for me:

(i) In the table of contents, there is a line that says "Appendix" and then underneath that it says "A". However, the word "Appendix" is at the bottom of my first contents page and the letter "A" is at the top of the next page of contents. Is there any way to sort this out?

(ii) Even though I have only one appendix, is it the norm to call it "Appendix A" rather than just "Appendix"?

(iii) I need to give this appendix a name such as "Deriving the Einstein equations for the ... Spacetimes". Obviously this is a big title, if I put it in the \chapter{} brackets then it prints really big and takes up 3 lines in a big font - is there any way to make it smaller?

thanks for your help.
 
Physics news on Phys.org
First of all I will suggest that if you have only one appendix there is no need to say "A", you can just keep the title.
Secondly, there is no way that in TOC you can shift the word "Appendix" to next page, as the spacing between two lines in TOC is defined by your style file. Playing around with your style file will change over all formatting.
Also for reducing the font of the appendix title try using following command "\chapter{\small{...}}". I guess this might work.
 
here AppendixA is one new txt file which is include k
so in main file write the below clde.

\appendix

\flushbottom
\include{AppendixA}
\flushbottom

In AppendixA file write below code...
\chapter{Acronyms}
SO we get Chapter name as Acronyms in our report or article n also in index...
 
Back
Top