1)The first one is about TOC and chapter appendices.
I am trying to create chapter appendices where the appendices would be named as
A1
A11
A2
etc...
for the chapter after te introduction. And as below for the following chapter.
B1
B2
etc...
I tried \begin{chapterappendices} \end{chapterappendices} did not work. I wondered if it clashed with one of my packages in the preamble.
2)The second one is about how the table of contents appear in the final document. Inmine it appears as Contents and I want it to come out as " TAble of Contents" I tried to change it with renew command, did not work.
3) Whwn I try to change the font to 11 the document does not compile. Probobly I have a clash again with an option or package. Could not figure it out.
I would very much apprecaite your comments if you have come across this before.
Regards
The code is below:
Code: Select all
\documentclass[a4paper]{report}
\usepackage{natbib}
\usepackage{amssymb}
\usepackage{lscape}
\usepackage[dvips, pdftex]{graphicx,color}
\usepackage{amsmath}
\usepackage{epstopdf}
%\usepackage{parskip}
\usepackage[english]{babel}
\usepackage{array}
\usepackage{eqparbox}
\usepackage{rotating}
\usepackage{multirow}
\usepackage{tabularx}
\usepackage{booktabs}
\usepackage{afterpage}
\usepackage{amsfonts}
\usepackage{caption}
\usepackage{cite}
\usepackage{chapterbib}
\usepackage{color}
\usepackage{colortbl}
\usepackage{longtable}
\usepackage{ragged2e}
\usepackage{supertabular}
\usepackage{rotating}
\usepackage{setspace}
%\usepackage{subfigure}
\usepackage{subfig}
\usepackage{indentfirst}
\usepackage{graphicx}%
\usepackage{version}
\usepackage{indentfirst,natbib}
\usepackage{lscape}
\usepackage{graphicx,color}
\usepackage{endnotes}
%\usepackage{comment}
\usepackage[toc,page]{appendix}
\setcounter{MaxMatrixCols}{30}
\providecommand{\U}[1]{\protect\rule{.1in}{.1in}}
\DeclareGraphicsExtensions{.pdf,.png,.jpg}
\addtolength{\topmargin}{-0.375in}
\addtolength{\oddsidemargin}{-0.45in}
\addtolength{\evensidemargin}{-0.45in}
\addtolength{\textheight}{0.5in}
\addtolength{\textwidth}{0.75in}
\renewcommand{\baselinestretch}{1.2}
\newcommand{\one}{$^{\ast}$}
\newcommand{\two}{$^{\ast\ast}$}
\newcommand{\thr}{$^{\ast\ast\ast}$}
%\setlength{\parindent}{2pt}
%\setlength{\parskip}{1ex plus 0.5ex minus 0.2ex}
\setlength{\parskip}{1.5ex plus0.5ex minus0.5ex}
\begin{document}
\title{Essays }
\author{MA}
\date{2011}
\maketitle
\pagenumbering{roman}
\tableofcontents
\renewcommand\contentsname{Table of Contents}
\listoffigures
\listoftables
\chapter*{Abstract}
\addcontentsline{toc}{chapter}{Abstracts}
\chapter*{Acknowledgements}
\addcontentsline{toc}{chapter}{Acknowledgements}
\chapter*{Statement of Original Authorship}
\addcontentsline{toc}{chapter}{Statement of Original Authorship}
\newpage
\pagenumbering{arabic}
\include{Introduction}
\include{chapter2}
\include{chapter3}
\include{chapter4}
\include{Conclusion}
\bibliographystyle{plain}
\bibliography{thesis}
\end{document}