-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
865 additions
and
333 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
% this will speed up your tikz figures by building them once to another directory | ||
\usepackage{pgfplots} | ||
\usepgfplotslibrary{external} | ||
\pgfplotsset{compat=1.16} | ||
%\tikzexternalize | ||
%\tikzsetexternalprefix{cache/} | ||
|
||
% This class uses the geometry.sty package to set the margins. | ||
\if@gwu@debug | ||
% Show margins | ||
\RequirePackage[top=1in,bottom=1in,left=1.25in, right=1.25in, | ||
showframe]{geometry} | ||
\else | ||
% Use the standard margins for the thesis version. | ||
\RequirePackage[top=1in,bottom=1in,left=1.25in, right=1.25in]{geometry} | ||
\fi | ||
|
||
% Obsolete package check | ||
\RequirePackage[l2tabu,orthodox]{nag} | ||
|
||
% This loads the required math packages. | ||
\RequirePackage[binary-units=true]{siunitx} | ||
\RequirePackage{amsmath} | ||
\RequirePackage{amsfonts} | ||
\RequirePackage{amssymb} | ||
\RequirePackage{mathtools} | ||
\RequirePackage{amsthm} | ||
|
||
% This loads the proper graphics package. | ||
\RequirePackage{graphicx} | ||
|
||
% Better spacing for text | ||
\RequirePackage[utf8]{inputenc} | ||
\RequirePackage[T1]{fontenc} | ||
\RequirePackage{lmodern} | ||
\RequirePackage{microtype} | ||
\RequirePackage{bm} | ||
|
||
\RequirePackage{mathptmx} | ||
|
||
% Add package for managing section headings | ||
\RequirePackage[]{titlesec} | ||
|
||
% This is useful for complex figures. | ||
\RequirePackage{subcaption} | ||
|
||
% Compress multiple citations | ||
% \RequirePackage{cite} | ||
|
||
% This package allows the ability to create a 'code' environment. | ||
\RequirePackage{verbatim} | ||
|
||
% This hopefully tells verbatim to leave my damn quotes alone. | ||
% \RequirePackage{upquote} | ||
|
||
% This package enables the use of proper single quotes in text. | ||
% \RequirePackage{textcomp} | ||
|
||
% This package is used to set line spacing. | ||
\RequirePackage{setspace} | ||
|
||
% This package is used to make nomenclature tables that can span pages. | ||
% \RequirePackage{longtable} | ||
|
||
% This package allows conditional testing of varibles. | ||
\RequirePackage{ifthen} | ||
|
||
% This package is used for silly letter spacing | ||
\RequirePackage{soul} | ||
|
||
% This package is used to generate alternate environments. | ||
\RequirePackage{float} | ||
|
||
% This package is for the index, if it is to be used. | ||
\if@gwu@index | ||
\RequirePackage{makeidx} | ||
\makeindex | ||
\fi | ||
|
||
% This is the package for special headers and footers. | ||
\RequirePackage{fancyhdr} | ||
|
||
% some extra packages to help with debugging | ||
\if@gwu@debug | ||
\RequirePackage[final]{showlabels} % show labels for referencing | ||
\RequirePackage{refcheck} % check for unused references/labels | ||
\fi | ||
|
||
%% ---- HYPERREF ---------------------------------------------------------- | ||
% This loads a package that allows extra colors for links. | ||
\RequirePackage[]{color} | ||
% Custom color for references. | ||
% \definecolor{DarkGreen}{rgb}{0,0.6,0} | ||
|
||
% This will make labels and references hyperlinks. | ||
\if@gwu@backref% | ||
% Use references in the bibliography. | ||
\RequirePackage[pagebackref=true]{hyperref}% | ||
\else% | ||
% Do not use back references. | ||
\RequirePackage{hyperref}% | ||
\fi | ||
|
||
\hypersetup{% | ||
unicode=false, % non-Latin characters in Acrobat’s bookmarks | ||
pdftoolbar=true, % show Acrobat’s toolbar? | ||
pdfmenubar=true, % show Acrobat’s menu? | ||
pdffitwindow=false, % window fit to page when opened | ||
pdfstartview={FitV}, % fits the width of the page to the window | ||
pdfnewwindow=true, % links in new PDF window | ||
colorlinks=false, % false: boxed links; true: colored links | ||
bookmarksdepth=3, | ||
bookmarksopen=true, | ||
}% | ||
|
||
% Cleveref referencing - must happen after hyperref | ||
\AtEndOfClass{\RequirePackage[noabbrev,capitalize]{cleveref}}% | ||
|
||
% Glossaries package - must come after hypperef | ||
% This package is used for the list of abbreviations | ||
\RequirePackage[printonlyused]{acronym}% | ||
\RequirePackage[abbreviations,symbols,shortcuts=none,automake]{glossaries-extra}% | ||
|
||
\glsxtrRevertTocMarks % remove warning from tocloft about starttoc | ||
|
||
\RequirePackage{tocloft} | ||
\RequirePackage{calc} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
% !TEX root = ../thesis-sample.tex | ||
\appendix | ||
\doublespacing | ||
\chapter{Appendix} | ||
This is an example of an appendix. | ||
The only difference is the use of \verb+\appendix+ command at the start of this \texttt{tex} file. | ||
This automatically changes the chapter and section headings. | ||
|
||
\section{A section} | ||
The easiest method. | ||
|
||
\begin{equation}\label{eq:sum} | ||
x_k = \frac{a_k+b_k}{2} | ||
\end{equation} | ||
|
||
\section{False Position} | ||
\lipsum[20] | ||
|
||
|
||
\section{Starting the Appendices} | ||
Actually, using appendices is quite simple. Immediately after the end | ||
of the last chapter and before the start of the first appendix, simply | ||
enter the command \verb|\appendix|. This will tell \LaTeX~to change | ||
how it interprets the commands \verb|\chapter|, \verb|\section|, | ||
\textit{etc.} | ||
|
||
Each appendix is actually a chapter, so once the \verb|\appendix| | ||
command has been called, start a new appendix by simply using the | ||
\verb|\chapter| command. | ||
|
||
Note that the \verb|\appendix| command should be called only | ||
once--not before the start of each appendix. | ||
|
||
All the fancy referencing and tools still work. | ||
You only need to add the appendix command and all will be as it should be. | ||
|
||
\chapter{Another Appendix} | ||
\lipsum[24] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
\chapter{Conclusions: four contributions related to measuring trust in vaccines} \label{chap:conclusions} | ||
|
||
asdf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
% !TEX root = ../thesis-sample.tex | ||
|
||
\chapter{Discussion} \label{chap:discussion} | ||
|
||
\section{Practical discussion: Potential for low-cost targeting and tailoring} | ||
|
||
\section{Theoretical discussion: how to increase validity for measure of complex constructs} | ||
|
||
\section{Limitations and future work: context, improve part 3, links to behavior} |
Oops, something went wrong.