Skip to content

Commit 4b94404

Browse files
authored
Merge pull request #4 from jasedit/update_etd
Update ETD
2 parents 5d4ce62 + 80f9690 commit 4b94404

3 files changed

Lines changed: 53 additions & 11 deletions

File tree

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ Variables have two potential configuration points, which will be described here.
1818
## MultiMarkdown Frontmatter
1919
1. `latex author`,`$AUTHOR` - name of the paper author
2020
2. `latex title`, `$TITLE` - title of the document
21-
3. `bibtex`, `$BIBTEX` - defines the Bibtex file to process for this document. Delete this line to eliminate bibliography support
22-
4. `myreporttype`, `$REPORTTYPE` - The document type displayed on the cover page, should be either `Thesis` for Masters students or `Dissertation` for PhD students
23-
5. `mydegree`, `$DEGREE` - The degree that is being awarded with this document. This should be the full degree, so `Masters of Science`, not simply `Masters`.
24-
6. `mydepartment`, `$DEPARTMENT` - The Department which is awarding this degree
21+
3. `abstract`, `$ABSTRACT` - defines the name of the file to include directly into the LaTeX output as the abstract
22+
4. `public abstract`, `$PUBLIC_ABSTRACT` - define the name of the file to include directly into the LaTeX output as the abstract
23+
4. `bibtex`, `$BIBTEX` - defines the Bibtex file to process for this document. Delete this line to eliminate bibliography support
24+
5. `myreporttype`, `$REPORTTYPE` - The document type displayed on the cover page, should be either `Thesis` for Masters students or `Dissertation` for PhD students
25+
6. `mydegree`, `$DEGREE` - The degree that is being awarded with this document. This should be the full degree, so `Masters of Science`, not simply `Masters`.
26+
7. `mydepartment`, `$DEPARTMENT` - The Department which is awarding this degree
2527

2628
## LaTeX/Metadata Variables
2729

28-
1. `myabstract` - if this LaTeX variable is defined, the variable will be inserted as the abstract for the paper. This overrides the `abstract` variable
29-
2. `abstract`, `$ABSTRACT` - if this LaTeX variable is defined, include the contents of the file named as the abstract.
30-
3. `myacknowledgements`, `$ACKNOWLEDGEMENTS` - If defined, the value of this variable will be inserted as acknowledgements
31-
4. `mykeywords`, `$KEYWORDS` - Keywords which are inserted into the document for metadata purposes
32-
5. `mycommittee`, `$COMMITTEE` - List of committee members to place on cover page. This is unfiltered, so raw LaTeX is fully supported for multi-line and odd names
33-
6. `mylinespace` - If defined, sets the line spacing of the document using the [setspace](http://www.ctan.org/tex-archive/macros/latex/contrib/setspace/) package.
30+
1. `myacknowledgements`, `$ACKNOWLEDGEMENTS` - If defined, the value of this variable will be inserted as acknowledgements
31+
2. `mykeywords`, `$KEYWORDS` - Keywords which are inserted into the document for metadata purposes
32+
3. `mycommittee`, `$COMMITTEE` - List of committee members to place on cover page. This is unfiltered, so raw LaTeX is fully supported for multi-line and odd names
33+
4. `mylinespace` - If defined, sets the line spacing of the document using the [setspace](http://www.ctan.org/tex-archive/macros/latex/contrib/setspace/) package.

frontmatter.mmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ latex input: metadata
33
latex author: $AUTHOR
44
latex title: $TITLE
55
abstract: $ABSTRACT
6+
public abstract: $PUBLIC_ABSTRACT
67
bibtex: $BIBTEX
78
myreporttype: $REPORTTYPE
89
mydegree: $DEGREE

setup.tex

Lines changed: 42 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
\usepackage{booktabs} % Better tables
2828
\usepackage{tabulary} % Support longer table cells
2929

30+
\renewcommand*{\chapterautorefname}{Chapter}
31+
3032
%Correctly reacting to definition of bibliography to optionally enable biber
3133
\ifx\bibliocommand\undefined
3234
\else
@@ -109,7 +111,10 @@
109111
\def\mydate{\today}
110112
\fi
111113
\mydate \\
114+
\ifx\mydefenselocation\undefined
112115
Blacksburg, Virginia
116+
\else
117+
\fi
113118
114119
115120
\vfill
@@ -148,7 +153,7 @@
148153
149154
150155
% Abstract
151-
(ABSTRACT)
156+
Academic Abstract
152157
153158
154159
\vfill
@@ -163,9 +168,45 @@
163168
\input{\myabstract}
164169
\fi
165170
171+
\ifx\mypublicabstract\undefined
172+
\else
173+
\vfill
174+
175+
\pagebreak
176+
177+
\thispagestyle{empty}
178+
179+
\begin{center}
180+
181+
182+
{\large \mytitle}
183+
184+
185+
\vfill
186+
187+
188+
\myauthor
189+
190+
191+
\vfill
192+
193+
194+
% Abstract
195+
Public Abstract
196+
197+
166198
\vfill
167199
168200
201+
\end{center}
202+
203+
204+
\input{\mypublicabstract}
205+
206+
\vfill
207+
208+
\fi
209+
169210
% Grant Information
170211
\ifx\mygrants\undefined
171212
\else

0 commit comments

Comments
 (0)