The first issue is that my advisor does not like the standard latex ToC output. As of now, I have two main chapters of work that have multiple subsections. Here is a summarized version of my 'master' document:
Code: Select all
\documentclass[12pt]{report}
\usepackage{//LOTS OF MATH PACKAGES HERE//}
%define margins according to standards below
\oddsidemargin=.6in \textwidth=5.8 in \topmargin=-0.25in
\textheight=8.83 in \footskip=40pt \headheight=12pt \headsep=10pt
%Now define many math commands below
\new command{\blah}{\mathrm{blah}}
%...etc
\begin{document}
\setcounter{secnumdepth{-1}
\chapter*{Title Page}
%Title page words here
\chapter*{Acknowledgements}
%Acknowledgements here
%ToC below
\tableofcontents
\chapter{Introduction}
%Begin Ch. 1 below
\chapter{Title of Ch.1(section 1) Here}
\input{LatexFile of Ch.1(section 1) Here}
\chapter{Title of Ch.1(section 2) Here}
\input{LatexFile of Ch.1(section 2) Here}
\chapter{Title of Ch.1(section 2) Here}
\input{LatexFile of Ch.1(section 2) Here}
%Begin Ch. 2 below
\chapter{Title of Ch.2(section 1) Here}
\input{LatexFile of Ch.2(section 1) Here}
\chapter{Title of Ch.2(section 2) Here}
\input{LatexFile of Ch.2(section 2) Here}
\chapter{References}
\bibliography{thesis}
\bibliographystyle{plain}
\end{document}
Table of Contents
1 Introduction
2 Title of Ch.1(section 1) Here ................... pg#
2.1 (subsection in ch1 section 1) ................ pg#
2.2 (subsection in ch1 section 1) ................ pg#
2.3 (subsection in ch1 section 1) ................ pg#
3 Title of Ch.1(section 2) Here ................... pg#
3.1 (subsection in ch1 section 2) ................ pg#
3.2 (subsection in ch1 section 2) ................ pg#
3.3 (subsection in ch1 section 2) ................ pg#
4 Title of Ch.1(section 3) Here ................... pg#
4.1 (subsection in ch1 section 3) ................ pg#
4.2 (subsection in ch1 section 3) ................ pg#
4.3 (subsection in ch1 section 3) ................ pg#
5 Title of Ch.2(section 1) Here ................... pg#
5.1 (subsection in ch2 section 1) ................ pg#
5.2 (subsection in ch2 section 1) ................ pg#
5.3 (subsection in ch2 section 1) ................ pg#
6 Title of Ch.2(section 2) Here ................... pg#
6.1 (subsection in ch2 section 2) ................ pg#
6.2 (subsection in ch2 section 2) ................ pg#
6.3 (subsection in ch2 section 2) ................ pg#
7 References ........................................ pg#
--------- end of ToC ----
What I would really like to do is to change the numbering to be more like the following:
Table of Contents
Introduction
Chapter 1
1.1 Title of Ch.1(section 1) Here ................... pg#
1.1.1 (subsection in ch1 section 1) ................ pg#
1.2.2 (subsection in ch1 section 1) ................ pg#
1.3.3 (subsection in ch1 section 1) ................ pg#
1.2 Title of Ch.1(section 2) Here ................... pg#
1.2.1 (subsection in ch1 section 2) ................ pg#
1.2.2 (subsection in ch1 section 2) ................ pg#
1.2.3 (subsection in ch1 section 2) ................ pg#
1.3 Title of Ch.1(section 3) Here ................... pg#
1.3.1 (subsection in ch1 section 3) ................ pg#
1.3.2 (subsection in ch1 section 3) ................ pg#
1.3.3 (subsection in ch1 section 3) ................ pg#
Chapter 2
2.1 Title of Ch.2(section 1) Here ................... pg#
2.1.1 (subsection in ch2 section 1) ................ pg#
2.1.2 (subsection in ch2 section 1) ................ pg#
2.1.3 (subsection in ch2 section 1) ................ pg#
2.2 Title of Ch.2(section 2) Here ................... pg#
2.2.1 (subsection in ch2 section 2) ................ pg#
2.2.2 (subsection in ch2 section 2) ................ pg#
2.2.3 (subsection in ch2 section 2) ................ pg#
3 References ........................................ pg#
--------- end of ToC ----
I am at a loss where to start. Any suggestions? If someone wants my full on master document, just say the word and I'll post it. I figured a summary version would be more helpful.
I guess I'm also asking if there is a way to customize the number before each chapter/section?
Also as you can see above I would like the ToC to have a title above certain parts (chapter 1 and chapter 2 titles above the sections...)