From 751d5878d9b2352364c0da742d05ae57ad95405e Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Fri, 27 Jan 2017 23:08:51 +0000 Subject: simple-thesis-dissertation (1jan17) git-svn-id: svn://tug.org/texlive/trunk@43058 c570f23f-e606-0410-a88d-b1316a301751 --- .../Figures/Figure-SampleVectorGraphic.odg | Bin 0 -> 29506 bytes .../Figures/Figure-SampleVectorGraphic.pdf | Bin 0 -> 31786 bytes .../doc/xelatex/simple-thesis-dissertation/LICENSE | 24 ++ .../xelatex/simple-thesis-dissertation/README.md | 43 +++ .../Thesis-BackMatter.tex | 11 + .../Thesis-Chapter-ChapAbbr.tex | 415 +++++++++++++++++++++ .../Thesis-Chapter-Intro.tex | 15 + .../Thesis-Chapter-Summary.tex | 20 + .../Thesis-FrontMatter.tex | 136 +++++++ .../xelatex/simple-thesis-dissertation/Thesis.bib | 135 +++++++ .../xelatex/simple-thesis-dissertation/Thesis.pdf | Bin 0 -> 165666 bytes .../xelatex/simple-thesis-dissertation/Thesis.tex | 75 ++++ 12 files changed, 874 insertions(+) create mode 100644 Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/Figures/Figure-SampleVectorGraphic.odg create mode 100644 Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/Figures/Figure-SampleVectorGraphic.pdf create mode 100644 Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/LICENSE create mode 100644 Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/README.md create mode 100644 Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/Thesis-BackMatter.tex create mode 100644 Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/Thesis-Chapter-ChapAbbr.tex create mode 100644 Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/Thesis-Chapter-Intro.tex create mode 100644 Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/Thesis-Chapter-Summary.tex create mode 100644 Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/Thesis-FrontMatter.tex create mode 100644 Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/Thesis.bib create mode 100644 Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/Thesis.pdf create mode 100644 Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/Thesis.tex (limited to 'Master/texmf-dist/doc/xelatex') diff --git a/Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/Figures/Figure-SampleVectorGraphic.odg b/Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/Figures/Figure-SampleVectorGraphic.odg new file mode 100644 index 00000000000..16b19708be6 Binary files /dev/null and b/Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/Figures/Figure-SampleVectorGraphic.odg differ diff --git a/Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/Figures/Figure-SampleVectorGraphic.pdf b/Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/Figures/Figure-SampleVectorGraphic.pdf new file mode 100644 index 00000000000..7254c00d9e0 Binary files /dev/null and b/Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/Figures/Figure-SampleVectorGraphic.pdf differ diff --git a/Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/LICENSE b/Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/LICENSE new file mode 100644 index 00000000000..cf1ab25da03 --- /dev/null +++ b/Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/LICENSE @@ -0,0 +1,24 @@ +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +For more information, please refer to diff --git a/Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/README.md b/Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/README.md new file mode 100644 index 00000000000..4470acac679 --- /dev/null +++ b/Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/README.md @@ -0,0 +1,43 @@ +# simple-thesis-dissertation + +Template for a simple thesis or dissertation (Ph.D. or master's degree) or technical report, in XeLaTeX. + +**Website:** + +https://github.com/zachscrivena/simple-thesis-dissertation + +**Lead author:** + +Zach Scrivena (zachscrivena@gmail.com) + +**Compiled sample document:** + +Thesis.pdf + +## Main Features + +- Simple template that can be further customized or extended. +- Template document contains numerous examples. +- Consistent style for figures, tables, mathematical theorems, definitions, lemmas, etc. +- Direct support for TrueType (TTF) and OpenType (OTF) fonts. +- Direct support for multilingual Unicode characters, with the appropriate fonts. +- Hyperlinks can be included in generated PDF. + +## Overview + +The main XeLaTeX source file is `Thesis.tex`; the compiled document is `Thesis.pdf`. + +Instructions for compiling the document (TeX →(XeLaTeX)→ PDF): + +- **Method 1:** Use `latexmk` for fully automated document generation: + - `latexmk -xelatex "Thesis.tex"` + (add the `-pvc` switch to automatically recompile on changes) + +- **Method 2:** Use `xelatex` directly: + - `xelatex "Thesis.tex"` + (run multiple times to resolve cross-references if needed) + +## License + +This is free and unencumbered software released into the public domain. +For more information, please see the file `LICENSE` or refer to . diff --git a/Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/Thesis-BackMatter.tex b/Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/Thesis-BackMatter.tex new file mode 100644 index 00000000000..b89f6b7b477 --- /dev/null +++ b/Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/Thesis-BackMatter.tex @@ -0,0 +1,11 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%% BIBLIOGRAPHY. +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +\clearpage +\phantomsection +\addcontentsline{toc}{chapter}{Bibliography} + +\bibliographystyle{IEEEtran} % IEEE bibliographic/citation style. +%\bibliography{IEEEabrv,Thesis} +\bibliography{IEEEfull,Thesis} diff --git a/Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/Thesis-Chapter-ChapAbbr.tex b/Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/Thesis-Chapter-ChapAbbr.tex new file mode 100644 index 00000000000..0f1c6b51711 --- /dev/null +++ b/Master/texmf-dist/doc/xelatex/simple-thesis-dissertation/Thesis-Chapter-ChapAbbr.tex @@ -0,0 +1,415 @@ +\chapter{Insert Chapter Title Here} +\label{Section:ChapAbbr} + +\BlankFootnote{Insert chapter footnote here. +The chapter footnote could include citations to related publications by the author (``The material in this chapter was presented in part in ....'').} + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +\section{Introduction} +\label{Section:ChapAbbr:Introduction} + +Insert chapter introduction here. +\lipsum[1-2] + +\mbox{\textit{Related Work:}} +Our work is related to \cite{Examples:Conference01, Examples:Journal01, Examples:Conference02, Examples:Journal02, Examples:Conference03}. +\lipsum[3-4] + +\mbox{\textit{Our Contribution:}} +\lipsum[5-6] + +Proofs of theorems are deferred to \Section~\sref{Section:ChapAbbr:ProofsOfTheorems}. + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +\section{Some Examples} +\label{Section:ChapAbbr:SomeExamples} + +\lipsum[7] + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +\subsection{Examples of Figures and Tables} +\label{Section:ChapAbbr:SomeExamples:FiguresTables} + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% FIGURE: CHAPABBR: FIGURE EXAMPLE A +\begin{figure} +\centering\CaptionFontSize +\includegraphics[height=15em] +{./Figures/Figure-SampleVectorGraphic} +\caption[Insert an abbreviated caption here to show in the List of Figures] +{Insert the full caption here for this floating figure.} +\label{Figure:ChapAbbr:FigureExampleA} +\end{figure} +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +This is a reference to \Figure~\fref{Figure:ChapAbbr:FigureExampleA}. +\lipsum[8] + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% FIGURE: CHAPABBR: FIGURE EXAMPLE B +\begin{sidewaysfigure*} +\centering\CaptionFontSize +\includegraphics[height=30em] +{./Figures/Figure-SampleVectorGraphic} +\caption[Insert an abbreviated caption here to show in the List of Figures] +{Insert the full caption here for this floating figure. +The caption should provide sufficient context to interpret the figure. +Lorem ipsum dolor sit amet, consectetuer adipiscing elit. +Ut purus elit, vestibulum ut, placerat ac, adipiscing vitae, felis. +Curabitur dictum gravida mauris.} +\label{Figure:ChapAbbr:FigureExampleB} +\end{sidewaysfigure*} +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +Here we say something about \Figures~\fref{Figure:ChapAbbr:FigureExampleA} and~\fref{Figure:ChapAbbr:FigureExampleB}. +Note how the effect in \Figure~\fref{Figure:ChapAbbr:FigureExampleB} is stronger that in \Figure~\fref{Figure:ChapAbbr:FigureExampleA}. +\lipsum[9] + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% TABLE: CHAPABBR: EXAMPLE A +\begin{table} +\caption[Insert an abbreviated caption here to show in the List of Tables] +{Insert the full caption here for this floating table.} +\label{Table:ChapAbbr:TableExampleA} +\centering\CaptionFontSize +\begin{tabular}{c@{\hspace{1em}}l} +\toprule +Symbol & Definition +\\ +\midrule +$\alpha$ & insert definition of $\alpha$ here, $\alpha\geq 1$ +\\ +$\beta$ & insert definition of $\beta$ here, $\beta\geq 2$ +\\ +$\gamma$ & insert definition of $\gamma$ here, $\gamma\geq 3$ +\\ +$\delta$ & insert definition of $\delta$ here, $\delta\geq 4$ +\\ +\bottomrule +\end{tabular} +\end{table} +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +We summarize our notation in \Table~\tref{Table:ChapAbbr:TableExampleA}. +\lipsum[10] + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% TABLE: CHAPABBR: EXAMPLE B +\begin{table} +\caption[Insert an abbreviated caption here to show in the List of Tables] +{Insert the full caption here for this floating table. +The caption should provide sufficient context to interpret the table. +Lorem ipsum dolor sit amet, consectetuer adipiscing elit. +Ut purus elit, vestibulum ut, placerat ac, adipiscing vitae, felis. +Curabitur dictum gravida mauris.} +\label{Table:ChapAbbr:TableExampleB} +\centering\CaptionFontSize +\begin{tabular}{c@{\hspace{1em}}l@{\hspace{1em}}c} +\toprule +Variable & Initial Value & Value at $t=100$ +\\ +\midrule +$c$ & $0.012$ & $3.456$ +\\ +$\delta$ & $0.312$ & $1.416$ +\\ +$\gamma$ & $0.042$ & $3.252$ +\\ +$h$ & $0.012$ & $3.353$ +\\ +$c$ & $0.012$ & $4.446$ +\\ +$\delta$ & $0.015$ & $3.556$ +\\ +$\gamma$ & $0.612$ & $6.656$ +\\ +$h$ & $0.072$ & $7.456$ +\\ +$c$ & $0.018$ & $8.756$ +\\ +$\delta$ & $0.912$ & $9.456$ +\\ +$\gamma$ & $0.092$ & $5.956$ +\\ +$h$ & $0.012$ & $2.326$ +\\ +\bottomrule +\end{tabular} +\end{table} +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +\Table~\tref{Table:ChapAbbr:TableExampleB} summarizes our simulation results. +\lipsum[11] + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +\subsection{Examples of Enumerated and Itemized Lists} +\label{Section:ChapAbbr:SomeExamples:Lists} + +Here are some citations \cite{Examples:Conference03, Examples:Journal03, Examples:Conference04, Examples:Journal04, Examples:Conference05, Examples:Journal05}. +The following is an enumerated list, or numbered list, with multiple levels: + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +\begin{enumerate} +\item +\label{Item:ChapAbbr:ItemExampleA} +First level item +\item +First level item +\begin{enumerate} +\item +Second level item +\item +Second level item +\begin{enumerate} +\item +Third level item +\begin{enumerate} +\item +Fourth level item +\item +Fourth level item +\end{enumerate} +\item +Third level item +\end{enumerate} +\item +Second level item +\end{enumerate} +\item +\label{Item:ChapAbbr:ItemExampleB} +First level item +\end{enumerate} +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +We draw your attention to items \ref{Item:ChapAbbr:ItemExampleA} and \ref{Item:ChapAbbr:ItemExampleB} in particular because they are very important in our study. +The following is an itemized list, or unnumbered list, with multiple levels: + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +\begin{itemize} +\item +First level item +\item +First level item +\begin{itemize} +\item +Second level item +\item +Second level item +\begin{itemize} +\item +Third level item +\begin{itemize} +\item +Fourth level item +\item +Fourth level item +\end{itemize} +\item +Third level item +\end{itemize} +\item +Second level item +\end{itemize} +\item +First level item +\end{itemize} +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +\section{Some More Examples} +\label{Section:ChapAbbr:SomeMoreExamples} + +According to~\cite{IEEEexample:book_typical}, this behavior can be explained this way. +\lipsum[12] + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +\subsection{Examples of Mathematical Expressions, Definitions, and Theorems} +\label{Section:ChapAbbr:SomeMoreExamples:Math} + +We have the following unnumbered mathematical equation: +\[ +E=mc^2. +\] +On the other hand, the following is a numbered mathematical inequality: +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +\begin{align} +x \leq +\frac{\displaystyle\sum_{i=1}^{n} y^2 \cdot \one{y > 1}} +{\displaystyle\int_{-\infty}^{\infty} x^3 \;\text{d}z \cdot +\binom{\alpha}{\beta} \frac{\floor{\frac{a}{b}}}{\ceil{\frac{c}{d}}}}. +\label{Eq:ChapAbbr:EqExampleA} +\end{align} +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +Inequality~\eqref{Eq:ChapAbbr:EqExampleA} will be applied multiple times to prove our theorems, in a manner similar to \cite{IEEEexample:article_typical, IEEEexample:conf_typical}. +We now introduce the following definition: + +\begin{Thm:Definition}[Name of Term Being Defined] +This is the definition of the term, along with relevant conditions, trivial cases, exceptions, etc. +\end{Thm:Definition} + +We can rewrite the result of \cite[Theorem~2.5]{IEEEexample:conf_typical} in the following convenient form for our problem: + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +\begin{Thm:Proposition} +For all \mbox{$a,b,c\in\ZZ^+$}, we have +\label{Thm:Proposition:ChapAbbr:PropositionExample} +\[ +a^2+b^3\leq c^4. +\] +\end{Thm:Proposition} +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +Based on our numerical observations, we make the following conjecture about the upper bound: + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +\begin{Thm:Conjecture} +If \mbox{$x\geq 3$} and \mbox{$0 +%% This is free and unencumbered software released into the +%% public domain; see for details. +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +% See "README.md" for instructions on compiling this document. + +\documentclass[letterpaper,nonstopmode,draftmode]{simplethesisdissertation} +% Class options: +% a4paper, letterpaper, nonstopmode, draftmode. + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%% PREAMBLE. +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +% Document properties. +\def\DocumentTitle{Insert Thesis Title Here} +\def\AuthorName{Insert Author Name Here} + +% PDF settings and properties. +\hypersetup{ +pdftitle={\DocumentTitle}, +pdfauthor={\AuthorName}, +pdfsubject={Ph.D. Thesis, University Institute of College, 2016}, +pdfcreator={XeLaTeX}, +pdfproducer={}, +pdfkeywords={}, +unicode=true, +bookmarks=true, +bookmarksopen=true, +pdfstartview=FitH, +pdfpagelayout=OneColumn, +pdfpagemode=UseOutlines, +hidelinks, +breaklinks, +bookmarksnumbered} + +% Accent colors. +\definecolor{AccentOne}{RGB}{0,68,186} % blue + +% Macros: +\DeclareMathOperator*{\argmax}{arg\,max} +\DeclareMathOperator*{\argmin}{arg\,min} +\renewcommand{\binom}[2]{\left(\genfrac{}{}{0pt}{}{#1}{#2}\right)} +\newcommand{\ceil}[1]{{\left\lceil{#1}\right\rceil}} +%\newcommand{\ffrac}[2]{{\nicefrac{#1}{#2}}} +%\newcommand{\fffrac}[2]{{\left.{#1}\middle/{#2}\right.}} +\newcommand{\floor}[1]{{\left\lfloor{#1}\right\rfloor}} +\DeclareMathOperator{\lcm}{lcm} +\newcommand{\ZZ}{{\mathbb{Z}}} + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%% ACTUAL DOCUMENT. +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +\begin{document} + +\input{Thesis-FrontMatter.tex} + +\input{Thesis-Chapter-Intro.tex} + +\input{Thesis-Chapter-ChapAbbr.tex} + +\input{Thesis-Chapter-Summary.tex} + +\input{Thesis-BackMatter.tex} + +\end{document} -- cgit v1.2.3