Skip to content

Commit

Permalink
Merge pull request #4 from jasedit/update_etd
Browse files Browse the repository at this point in the history
Update ETD
  • Loading branch information
jasedit authored Oct 10, 2016
2 parents 5d4ce62 + 80f9690 commit 4b94404
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 11 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ Variables have two potential configuration points, which will be described here.
## MultiMarkdown Frontmatter
1. `latex author`,`$AUTHOR` - name of the paper author
2. `latex title`, `$TITLE` - title of the document
3. `bibtex`, `$BIBTEX` - defines the Bibtex file to process for this document. Delete this line to eliminate bibliography support
4. `myreporttype`, `$REPORTTYPE` - The document type displayed on the cover page, should be either `Thesis` for Masters students or `Dissertation` for PhD students
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`.
6. `mydepartment`, `$DEPARTMENT` - The Department which is awarding this degree
3. `abstract`, `$ABSTRACT` - defines the name of the file to include directly into the LaTeX output as the abstract
4. `public abstract`, `$PUBLIC_ABSTRACT` - define the name of the file to include directly into the LaTeX output as the abstract
4. `bibtex`, `$BIBTEX` - defines the Bibtex file to process for this document. Delete this line to eliminate bibliography support
5. `myreporttype`, `$REPORTTYPE` - The document type displayed on the cover page, should be either `Thesis` for Masters students or `Dissertation` for PhD students
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`.
7. `mydepartment`, `$DEPARTMENT` - The Department which is awarding this degree

## LaTeX/Metadata Variables

1. `myabstract` - if this LaTeX variable is defined, the variable will be inserted as the abstract for the paper. This overrides the `abstract` variable
2. `abstract`, `$ABSTRACT` - if this LaTeX variable is defined, include the contents of the file named as the abstract.
3. `myacknowledgements`, `$ACKNOWLEDGEMENTS` - If defined, the value of this variable will be inserted as acknowledgements
4. `mykeywords`, `$KEYWORDS` - Keywords which are inserted into the document for metadata purposes
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
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.
1. `myacknowledgements`, `$ACKNOWLEDGEMENTS` - If defined, the value of this variable will be inserted as acknowledgements
2. `mykeywords`, `$KEYWORDS` - Keywords which are inserted into the document for metadata purposes
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
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.
1 change: 1 addition & 0 deletions frontmatter.mmd
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ latex input: metadata
latex author: $AUTHOR
latex title: $TITLE
abstract: $ABSTRACT
public abstract: $PUBLIC_ABSTRACT
bibtex: $BIBTEX
myreporttype: $REPORTTYPE
mydegree: $DEGREE
Expand Down
43 changes: 42 additions & 1 deletion setup.tex
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
\usepackage{booktabs} % Better tables
\usepackage{tabulary} % Support longer table cells

\renewcommand*{\chapterautorefname}{Chapter}

%Correctly reacting to definition of bibliography to optionally enable biber
\ifx\bibliocommand\undefined
\else
Expand Down Expand Up @@ -109,7 +111,10 @@
\def\mydate{\today}
\fi
\mydate \\
\ifx\mydefenselocation\undefined
Blacksburg, Virginia
\else
\fi
\vfill
Expand Down Expand Up @@ -148,7 +153,7 @@
% Abstract
(ABSTRACT)
Academic Abstract
\vfill
Expand All @@ -163,9 +168,45 @@
\input{\myabstract}
\fi
\ifx\mypublicabstract\undefined
\else
\vfill
\pagebreak
\thispagestyle{empty}
\begin{center}
{\large \mytitle}
\vfill
\myauthor
\vfill
% Abstract
Public Abstract
\vfill
\end{center}
\input{\mypublicabstract}
\vfill
\fi
% Grant Information
\ifx\mygrants\undefined
\else
Expand Down

0 comments on commit 4b94404

Please sign in to comment.