This commit is contained in:
Krishna Kumar 2017-03-19 10:42:39 +00:00
commit 7cb0225dad
9 changed files with 46 additions and 10 deletions

View File

@ -1,3 +1,4 @@
%!TEX root = ../thesis.tex
% ******************************* Thesis Appendix A **************************** % ******************************* Thesis Appendix A ****************************
\chapter{How to install \LaTeX} \chapter{How to install \LaTeX}

View File

@ -1,3 +1,4 @@
%!TEX root = ../thesis.tex
% ******************************* Thesis Appendix B ******************************** % ******************************* Thesis Appendix B ********************************
\chapter{Installing the CUED class file} \chapter{Installing the CUED class file}

View File

@ -1,4 +1,12 @@
## Change log ## Change log
### 2016/03/19 - Version 2.3
> Commit
* Fixes #118 and #119 on option processing and font sizes
### 2016/10/20 - Version 2.2.2
> Commit 7867b367fe6c9523461f5bcd91a8f4f5e92badb2
* Fixes issue of non-centered style for advisors and supervisors
### 2016/07/04 - Version 2.2.1 ### 2016/07/04 - Version 2.2.1
> Commit ef6e4394f3dd5a7442c2f48f3196d7d0a15d077f > Commit ef6e4394f3dd5a7442c2f48f3196d7d0a15d077f
* Removed deprecated unused function romanpages defined in `preamble.tex`. * Removed deprecated unused function romanpages defined in `preamble.tex`.

View File

@ -1,3 +1,4 @@
%!TEX root = ../thesis.tex
%******************************************************************************* %*******************************************************************************
%*********************************** First Chapter ***************************** %*********************************** First Chapter *****************************
%******************************************************************************* %*******************************************************************************

View File

@ -1,3 +1,4 @@
%!TEX root = ../thesis.tex
%******************************************************************************* %*******************************************************************************
%****************************** Second Chapter ********************************* %****************************** Second Chapter *********************************
%******************************************************************************* %*******************************************************************************

View File

@ -1,3 +1,7 @@
%!TEX root = ../thesis.tex
%*******************************************************************************
%****************************** Third Chapter **********************************
%*******************************************************************************
\chapter{My third chapter} \chapter{My third chapter}
% **************************** Define Graphics Path ************************** % **************************** Define Graphics Path **************************

View File

@ -843,6 +843,10 @@ wish to left align your text}
\newcommand{\@supervisorrole}{Supervisor: } \newcommand{\@supervisorrole}{Supervisor: }
\newcommand{\supervisorrole}[1]{\renewcommand{\@supervisorrole}{#1}} \newcommand{\supervisorrole}[1]{\renewcommand{\@supervisorrole}{#1}}
% Supervisor width to align
\newcommand{\@supervisorlinewidth}{0.35\textwidth}
\newcommand{\supervisorlinewidth}[1]{\renewcommand{\@supervisorlinewidth}{#1}}
% Advisor % Advisor
\newif\ifPHD@advisor\PHD@advisorfalse \newif\ifPHD@advisor\PHD@advisorfalse
\newcommand{\@advisor}{} \newcommand{\@advisor}{}
@ -852,6 +856,10 @@ wish to left align your text}
\newcommand{\@advisorrole}{Advisor: } \newcommand{\@advisorrole}{Advisor: }
\newcommand{\advisorrole}[1]{\renewcommand{\@advisorrole}{#1}} \newcommand{\advisorrole}[1]{\renewcommand{\@advisorrole}{#1}}
% Advisor width to align
\newcommand{\@advisorlinewidth}{0.25\textwidth}
\newcommand{\advisorlinewidth}[1]{\renewcommand{\@advisorlinewidth}{#1}}
% Submission Text % Submission Text
\newcommand{\submissiontext}{This dissertation is submitted for the degree of } \newcommand{\submissiontext}{This dissertation is submitted for the degree of }
@ -1152,7 +1160,12 @@ wish to left align your text}
\ifthenelse{\equal{\@supervisor}{}}{ \ifthenelse{\equal{\@supervisor}{}}{
% supervisor is not defined % supervisor is not defined
}{ }{
\centering \Large {\@supervisorrole \@supervisor} \begin{center}
\makebox[\widthof{supervisorrole} + \@supervisorlinewidth][c]{
\Large
\@supervisorrole \parbox[t]{\@supervisorlinewidth}{\@supervisor}
}
\end{center}
\vspace{0.5em} \vspace{0.5em}
} % supervisor is defined } % supervisor is defined
\end{minipage} \end{minipage}
@ -1165,7 +1178,12 @@ wish to left align your text}
\ifthenelse{\equal{\@advisor}{}}{ \ifthenelse{\equal{\@advisor}{}}{
% advisor is not defined % advisor is not defined
}{ }{
\centering \Large {\@advisorrole \@advisor} \begin{center}
\makebox[\widthof{advisorrole} + \@advisorlinewidth][c]{
\Large
\@advisorrole \parbox[t]{\@advisorlinewidth}{\@advisor}
}
\end{center}
\vspace{0.5em} \vspace{0.5em}
} % advisor is defined } % advisor is defined
\end{minipage} \end{minipage}

View File

@ -29,28 +29,30 @@
%% Supervisor (optional) %% Supervisor (optional)
%% for multiple supervisors, append each supervisor with the \newline command %% for multiple supervisors, append each supervisor with the \newline command
%\supervisor{\textbf{Prof. A.B. Supervisor\newline %\supervisor{Prof. A.B. Supervisor\newline
%Prof. C.D. Supervisor\newline %Prof. C.D. Supervisor}
%Prof. E.F. Supervisor\newline
%Prof. G.H. Supervisor}}
%% Supervisor Role (optional) - Supervisor (default) or advisor %% Supervisor Role (optional) - Supervisor (default) or advisor
% \supervisorrole{\textbf{Supervisors: }} % \supervisorrole{\textbf{Supervisors: }}
%% if no title is desired: %% if no title is desired:
% \supervisorrole{} % \supervisorrole{}
%% Supervisor line width: required to align supervisors
%\supervisorlinewidth{0.35\textwidth}
%% Advisor (optional) %% Advisor (optional)
%% for multiple advisors, append each advisor with the \newline command %% for multiple advisors, append each advisor with the \newline command
%\advisor{Advisor 1\newline %\advisor{Dr. A. Advisor\newline
%Advisors 2\newline %Dr. B. Advisor}
%Advisor 3\newline
%Advisor 4}
%% Advisor Role (optional) - Advisor (default) or leave empty %% Advisor Role (optional) - Advisor (default) or leave empty
% \advisorrole{Advisors: } % \advisorrole{Advisors: }
%% if no title is required %% if no title is required
% \advisorrole{} % \advisorrole{}
%% Advisor line width: required to align supervisors
%\advisorlinewidth{0.25\textwidth}
%% You can redefine the submission text: %% You can redefine the submission text:
% Default as per the University guidelines: % Default as per the University guidelines:

Binary file not shown.