Merge pull request #169 from adrianjav/master

Placed literal text into variables
This commit is contained in:
Krishna Kumar 2018-08-02 09:00:33 +00:00 committed by GitHub
commit f9c3334aa3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -886,6 +886,23 @@ wish to left align your text}
\newcommand{\@subject}{}
\newcommand{\subject}[1]{\renewcommand{\@subject}{#1}}
% Declaration title text
\newcommand{\@declarationtitle}{Declaration}
% Acknowledgment title text
\newcommand{\@acknowledgementstitle}{Acknowledgements}
% Abstract title text
\newcommand{\@abstracttitle}{Abstract}
% Names for the nomenclature groups
\newcommand{\@nomenclatureromans}{Roman Symbols}
\newcommand{\@nomenclaturegreeks}{Greek Symbols}
\newcommand{\@nomenclatureacronyms}{Acronyms / Abbreviations}
\newcommand{\@nomenclaturesuperscripts}{Superscripts}
\newcommand{\@nomenclaturesubscripts}{Subscripts}
\newcommand{\@nomenclatureothers}{Other Symbols}
% These macros define an environment for front matter that is always
% single column even in a double-column document.
@ -996,7 +1013,7 @@ wish to left align your text}
\newenvironment{declaration}{
\cleardoublepage
\setsinglecolumn
\chapter*{\centering \Large Declaration}
\chapter*{\centering \Large \@declarationtitle}
\thispagestyle{empty}
}{
\flushright
@ -1014,7 +1031,7 @@ wish to left align your text}
\newenvironment{acknowledgements}{
\cleardoublepage
\setsinglecolumn
\chapter*{\centering \Large Acknowledgements}
\chapter*{\centering \Large \@acknowledgementstitle}
\thispagestyle{empty}
}
@ -1024,12 +1041,12 @@ wish to left align your text}
\RequirePackage[intoc]{nomencl}
\makenomenclature
\renewcommand{\nomgroup}[1]{%
\ifthenelse{\equal{#1}{A}}{\item[\textbf{Roman Symbols}]}{%
\ifthenelse{\equal{#1}{G}}{\item[\textbf{Greek Symbols}]}{%
\ifthenelse{\equal{#1}{Z}}{\item[\textbf{Acronyms / Abbreviations}]}{%
\ifthenelse{\equal{#1}{R}}{\item[\textbf{Superscripts}]}{%
\ifthenelse{\equal{#1}{S}}{\item[\textbf{Subscripts}]}{%
\ifthenelse{\equal{#1}{X}}{\item[\textbf{Other Symbols}]}
\ifthenelse{\equal{#1}{A}}{\item[\textbf{\@nomenclatureromans}]}{%
\ifthenelse{\equal{#1}{G}}{\item[\textbf{\@nomenclaturegreeks}]}{%
\ifthenelse{\equal{#1}{Z}}{\item[\textbf{\@nomenclatureacronyms}]}{%
\ifthenelse{\equal{#1}{R}}{\item[\textbf{\@nomenclaturesuperscripts}]}{%
\ifthenelse{\equal{#1}{S}}{\item[\textbf{\@nomenclaturesubscripts}]}{%
\ifthenelse{\equal{#1}{X}}{\item[\textbf{\@nomenclatureothers}]}
{}
}% matches mathematical symbols > X
}% matches Subscripts > S
@ -1115,7 +1132,7 @@ wish to left align your text}
% Normal abstract in the thesis
\cleardoublepage
\setsinglecolumn
\chapter*{\centering \Large Abstract}
\chapter*{\centering \Large \@abstracttitle}
\thispagestyle{empty}
\fi
}