latex - Appendix and List of Scientific Contribution page in "TOC" -
i having 2 troubles in formatting toc
of thesis appendix
, list of scientific contribution
.
i using easy thesis template
uses thesis class
based on book
.
the order of titles want in toc
below:
abstract list of figures list of tables list of abbreviations list of symbols chapter 1 chapter 2 chapter 3 . . chapter conclusion rferences appendix a: prepin file appendix b: glycam list of scientific contribution
the problem having are:
problem 1): want entry appendix a
appendix a
i have tried use usepackage[titletoc,title]{appendix}
, \renewcommand{\appendixname}{appendix}
\begin{appendices} \chapter{a: prepin file} \blindtext[4][25] %5 paragraphs, each 3 pangrams \end{appendices}
but did not appendix
appendix
in toc
problem 2): have added new entry called list of scientific contribution
after appendix (my university require that).
but @ header of page a: prepin file
supposed not.
i have tried insert \mainmatter
after appendix section, page numbering start 1, 2, 3 , on.
here show thesis.tex file contents:
\documentclass[a4paper, 12pt, oneside, doublespacing]{thesis} % use "thesis" style, based on ecs thesis style steve gunn \input{settings/packages.tex} \input{settings/administrative.tex} %% ---------------------------------------------------------------- \begin{document} \frontmatter % begin roman style (i, ii, iii, iv...) page numbering \widowpenalty=500 \clubpenalty=500 %% pages before chapters ------------------------------ \input{frontpages/fixed/title} %%\newpage %\input{frontpages/declarationpage.tex} %\input{frontpages/abstract} %\input{frontpages/abstrak} %\input{frontpages/acknowledgements.tex} %%\newpage \input{frontpages/fixed/tableofcontents.tex} \input{frontpages/fixed/listoffigures.tex} \input{frontpages/fixed/listoftables.tex} \input{frontpages/abbrev.tex} \input{frontpages/symbols.tex} %################################################## %% body ------------------------------------------------------- \setstretch{1.3} % return line spacing 1.3 whole document. \mainmatter % begin normal, numeric (1,2,3...) page numbering \pagestyle{fancy} % return page headers "fancy" style \newpage %\include{chapters/chapter1} %\include{chapters/chapter2} \include{chapters/chapter3} %\include{chapters/chapter4} %\include{chapters/chapter5} %\include{chapters/chapter6} %\include{chapters/chapter7} %% reference--------------------------------------------------- \addtocontents{toc}{\vspace{1em}} \backmatter % cue tell latex following 'chapters' bibliography \begingroup \begin{normalsize} \bibliographystyle{files/vjharvard3} \renewcommand{\bibname}{references} \setlength{\bibsep}{10pt} \setstretch{1} \bibliography{backmatters/references/all_thesis_chapters} % references (bibliography) \end{normalsize} \endgroup % appendix \include{backmatters/testappendix} \include{backmatters/testappendix2} % list of publication \addtocontents{toc}{\vspace{1em}} \input{backmatters/listofpublication} \end{document} % end
i wish solve appendix , additional page list of scientific contribution
. many in advance.
Comments
Post a Comment