diff options
author | Karl Berry <karl@freefriends.org> | 2022-06-21 20:19:51 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2022-06-21 20:19:51 +0000 |
commit | cd13676c9785015b25b247fddbc2aad27095d19c (patch) | |
tree | 616085f81d890c56d33bbfd2bdd05770ccc82b28 /Master | |
parent | 47af0a741c0b24afa1642ec47f5dc8ef5656d3a6 (diff) |
ut-thesis (21jun22)
git-svn-id: svn://tug.org/texlive/trunk@63679 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/texmf-dist/doc/latex/ut-thesis/ut-thesis.pdf | bin | 140267 -> 140497 bytes | |||
-rw-r--r-- | Master/texmf-dist/source/latex/ut-thesis/ut-thesis.dtx | 14 | ||||
-rw-r--r-- | Master/texmf-dist/tex/latex/ut-thesis/ut-thesis.cls | 6 |
3 files changed, 15 insertions, 5 deletions
diff --git a/Master/texmf-dist/doc/latex/ut-thesis/ut-thesis.pdf b/Master/texmf-dist/doc/latex/ut-thesis/ut-thesis.pdf Binary files differindex 5128406af3e..88b20d0dfb0 100644 --- a/Master/texmf-dist/doc/latex/ut-thesis/ut-thesis.pdf +++ b/Master/texmf-dist/doc/latex/ut-thesis/ut-thesis.pdf diff --git a/Master/texmf-dist/source/latex/ut-thesis/ut-thesis.dtx b/Master/texmf-dist/source/latex/ut-thesis/ut-thesis.dtx index acb18a1f782..fa8b3a4c318 100644 --- a/Master/texmf-dist/source/latex/ut-thesis/ut-thesis.dtx +++ b/Master/texmf-dist/source/latex/ut-thesis/ut-thesis.dtx @@ -5,7 +5,7 @@ %<class>\NeedsTeXFormat{LaTeX2e}[1999/12/01] %<class>\ProvidesClass{ut-thesis} %<*class> -[2021/08/26 v3.1.5 University of Toronto thesis class] +[2022/06/21 v3.1.6 University of Toronto thesis class] %</class> % %<*driver> @@ -198,6 +198,12 @@ % % If undefined, template values are used like ``(author)''. % +% \begin{macro}{\copyrighttext} +% The copyright text printed on the titlepage. +% The default, which can be overwritten if needed, is: +% |{\copyright} Copyright {\@gradyear} by {\@author}|. +% \end{macro} +% % \subsubsection{Document Parts}\label{use:cmd:parts} % % From the |book| class, four commands can be used to divide the document into major parts. @@ -430,9 +436,10 @@ \newcommand*{\gradyear} [1]{\gdef\@gradyear{#1}} \newcommand*{\department}[2][Department of]% {\gdef\@deptpre{#1}\gdef\@deptname{#2}} +\newcommand*{\copyrighttext}[1]{\gdef\@copyrighttext{#1}} % \end{macrocode} % -% Setting default values that will hopefully be overwritten. +% Setting default values that will mostly be overwritten. % % \begin{macrocode} \author {(author)} @@ -440,6 +447,7 @@ \degree {(degree)} \gradyear {(gradyear)} \department{(department)} +\copyrighttext{{\copyright} Copyright {\@gradyear} by {\@author}} % \end{macrocode} % % \subsection{Front Matter}\label{imp:front} @@ -482,7 +490,7 @@ {\@deptpre} {\@deptname}\\ University of Toronto\\ \vfill - {\copyright} Copyright {\@gradyear} by {\@author} + {\@copyrighttext} \end{center} {{\pagestyle{empty}\ocleardoublepage}} } diff --git a/Master/texmf-dist/tex/latex/ut-thesis/ut-thesis.cls b/Master/texmf-dist/tex/latex/ut-thesis/ut-thesis.cls index dd6adfafd26..9f78b607c13 100644 --- a/Master/texmf-dist/tex/latex/ut-thesis/ut-thesis.cls +++ b/Master/texmf-dist/tex/latex/ut-thesis/ut-thesis.cls @@ -51,7 +51,7 @@ %% \NeedsTeXFormat{LaTeX2e}[1999/12/01] \ProvidesClass{ut-thesis} -[2021/08/26 v3.1.5 University of Toronto thesis class] +[2022/06/21 v3.1.6 University of Toronto thesis class] \newif\ifmargins@equal \newlength{\margin@base} \newlength{\margin@offset} @@ -102,11 +102,13 @@ \newcommand*{\gradyear} [1]{\gdef\@gradyear{#1}} \newcommand*{\department}[2][Department of]% {\gdef\@deptpre{#1}\gdef\@deptname{#2}} +\newcommand*{\copyrighttext}[1]{\gdef\@copyrighttext{#1}} \author {(author)} \title {(title)} \degree {(degree)} \gradyear {(gradyear)} \department{(department)} +\copyrighttext{{\copyright} Copyright {\@gradyear} by {\@author}} \g@addto@macro\frontmatter{\pagenumbering{roman}\pagestyle{plain}} \g@addto@macro\mainmatter {\pagenumbering{arabic}\pagestyle{headings}} \renewcommand*{\maketitle}% @@ -128,7 +130,7 @@ {\@deptpre} {\@deptname}\\ University of Toronto\\ \vfill - {\copyright} Copyright {\@gradyear} by {\@author} + {\@copyrighttext} \end{center} {{\pagestyle{empty}\ocleardoublepage}} } |