├── .gitignore ├── Chapters ├── appendix1.tex ├── chapter1.tex ├── chapter2.tex └── publications.tex ├── Figures └── Chapter1 │ └── minion.pdf ├── Front ├── abstract.tex ├── acknowledgement.tex ├── dedication.tex ├── panel.tex └── qpsheet.pdf ├── LICENSE ├── PhDThesisPSnPDF.cls ├── README.md ├── References └── references.bib ├── thesis.pdf └── thesis.tex /.gitignore: -------------------------------------------------------------------------------- 1 | *.tdo* 2 | .DS_Store* 3 | *.aux* 4 | *.log* 5 | *.lof* 6 | *.lot* 7 | *.out* 8 | *.gz* 9 | *.toc* 10 | *.bbl* 11 | *.blg* 12 | *~* 13 | *.nlo* 14 | *make* 15 | *.d* 16 | *.bcf* 17 | *.blg* 18 | *~* 19 | *.nlo* 20 | *make 21 | *.d 22 | *.btmp* 23 | *.xdv* 24 | *.fls* 25 | *.glo* 26 | *.idx* 27 | *.ist* 28 | *.ilg* 29 | *.ind* 30 | *cookie* 31 | *#* 32 | *.nls* 33 | *.nlg* 34 | thesis.txt* 35 | thesis.bcf* 36 | thesis.run.xml* 37 | *run.xml* 38 | *.latexmkrc* 39 | *_latexmk* 40 | -------------------------------------------------------------------------------- /Chapters/appendix1.tex: -------------------------------------------------------------------------------- 1 | %!TEX root = ../thesis.tex 2 | \blinddocument -------------------------------------------------------------------------------- /Chapters/chapter1.tex: -------------------------------------------------------------------------------- 1 | %!TEX root = ../thesis.tex 2 | 3 | \blinddocument 4 | 5 | \begin{figure}[htbp!] 6 | \centering 7 | \includegraphics[width=.5\textwidth]{minion} 8 | \caption[Minion]{This is just a long figure caption for the minion in Despicable Me from Pixar} 9 | \label{fig:minion} 10 | \end{figure} 11 | 12 | \blindtext[3] 13 | 14 | \begin{table} 15 | \caption{Even better looking table using booktabs} 16 | \centering 17 | \label{table:good_table} 18 | \begin{tabular}{l c c c c} 19 | \toprule 20 | \multirow{2}{*}{Dental measurement} & \multicolumn{2}{c}{Species I} & \multicolumn{2}{c}{Species II} \\ 21 | \cmidrule{2-5} 22 | & mean & SD & mean & SD \\ 23 | \midrule 24 | I1MD & 6.23 & 0.91 & 5.2 & 0.7 \\ 25 | 26 | I1LL & 7.48 & 0.56 & 8.7 & 0.71 \\ 27 | 28 | I2MD & 3.99 & 0.63 & 4.22 & 0.54 \\ 29 | 30 | I2LL & 6.81 & 0.02 & 6.66 & 0.01 \\ 31 | 32 | CMD & 13.47 & 0.09 & 10.55 & 0.05 \\ 33 | 34 | CBL & 11.88 & 0.05 & 13.11 & 0.04\\ 35 | \bottomrule 36 | \end{tabular} 37 | \end{table} 38 | 39 | \blindtext 40 | -------------------------------------------------------------------------------- /Chapters/chapter2.tex: -------------------------------------------------------------------------------- 1 | %!TEX root = ../thesis.tex 2 | 3 | \blinddocument -------------------------------------------------------------------------------- /Chapters/publications.tex: -------------------------------------------------------------------------------- 1 | %!TEX root = ../thesis.tex 2 | \begin{publications} 3 | 4 | \begin{enumerate} 5 | \item \textbf{Tai Man Chan}, Author two, Author Three,``The Name of the Title is Hope'', \textit{IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems (TCAD), 2019}. 6 | 7 | \item \textbf{Tai Man Chan}, San Zhang, Si Li, Wu Wang, ``The Name of the Title is Dream'', \textit{The Twenty-Fourth International Conference on Architectural Support for Programming Languages and Operating Systems (ASPLOS '21), 2021}. 8 | 9 | \end{enumerate} 10 | 11 | \end{publications} -------------------------------------------------------------------------------- /Figures/Chapter1/minion.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huwan/CityU_Thesis/5995b8237fc49a5c7600d6c3902b8c6c334dc487/Figures/Chapter1/minion.pdf -------------------------------------------------------------------------------- /Front/abstract.tex: -------------------------------------------------------------------------------- 1 | % ************************** Thesis Abstract ***************************** 2 | 3 | \begin{abstract} 4 | \lipsum[1-3] 5 | \end{abstract} 6 | -------------------------------------------------------------------------------- /Front/acknowledgement.tex: -------------------------------------------------------------------------------- 1 | % ************************** Thesis Acknowledgements ************************** 2 | 3 | \begin{acknowledgements} 4 | 5 | \lipsum[1-3] 6 | 7 | \end{acknowledgements} 8 | -------------------------------------------------------------------------------- /Front/dedication.tex: -------------------------------------------------------------------------------- 1 | % ******************************* Thesis Dedidcation ******************************** 2 | 3 | \begin{dedication} 4 | 5 | To my parents. 6 | 7 | \end{dedication} 8 | 9 | -------------------------------------------------------------------------------- /Front/panel.tex: -------------------------------------------------------------------------------- 1 | % ************************** Panel ************************** 2 | % Use one of the following method: 3 | 4 | % Method 1: SGS will send you a PDF file, you can insert it here directly. 5 | %\includepdf[pagecommand={\thispagestyle{plain}}]{Front/qpsheet.pdf} 6 | 7 | % Method 2: 8 | % You may need to adjust the space to fit contents to one page 9 | \begin{panel} 10 | 11 | \begin{tabular}{p{40mm}p{80mm}} 12 | Surname: & CHAN\tabularnewline 13 | First Name: & Tai Man\tabularnewline 14 | Degree: & PhD\tabularnewline 15 | College/Department: & Department of Computer Science 16 | \end{tabular} 17 | 18 | \vspace{2em} 19 | 20 | The Qualifying Panel of the above student is composed of: 21 | 22 | \vspace{1em} 23 | 24 | \begin{tabular}{p{50mm}p{80mm}} 25 | \textit{Supervisor(s)} & \tabularnewline 26 | Dr. SURNAME Name & Department of Computer Science\tabularnewline 27 | & City University of Hong Kong\\[1em]\tabularnewline 28 | 29 | %\textit{Co-supervisor(s)} & \tabularnewline 30 | %Name SURNAME & Department of ???\tabularnewline 31 | % & City University of Hong Kong\\[.2em]\tabularnewline 32 | 33 | \textit{Qualifying Panel Member(s)} & \tabularnewline 34 | Prof. SURNAME Name & Department of Computer Science\tabularnewline 35 | & City University of Hong Kong\\[.2em]\tabularnewline 36 | 37 | Dr. SURNAME Name & Department of Computer Science\tabularnewline 38 | & City University of Hong Kong\\[.2em]\tabularnewline 39 | \end{tabular} 40 | 41 | \vspace{2em} 42 | 43 | This thesis has been examined and approved by the following examiners: 44 | \vspace{1em} 45 | 46 | \begin{tabular}{p{50mm}p{80mm}} 47 | Prof. SURNAME Name & Department of Computer Science\tabularnewline 48 | & City University of Hong Kong\\[.2em]\tabularnewline 49 | 50 | Dr. SURNAME Name & Department of Computer Science\tabularnewline 51 | & City University of Hong Kong\\[.2em]\tabularnewline 52 | 53 | Prof. SURNAME Name & Department of Computer Science\tabularnewline 54 | & City University of Hong Kong\\[.2em]\tabularnewline 55 | 56 | Dr. SURNAME Name & Department of Computer Science\tabularnewline 57 | & City University of Hong Kong\\[.2em]\tabularnewline 58 | \end{tabular} 59 | 60 | \end{panel} 61 | -------------------------------------------------------------------------------- /Front/qpsheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huwan/CityU_Thesis/5995b8237fc49a5c7600d6c3902b8c6c334dc487/Front/qpsheet.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2013 Krishna Kumar 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /PhDThesisPSnPDF.cls: -------------------------------------------------------------------------------- 1 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 2 | %% %% 3 | %% Class ``PhD Thesis PSnPDF'' %% 4 | %% %% 5 | %% A PhD thesis LaTeX template for Cambridge University Engineering Department%% 6 | %% %% 7 | %% Version: v2.3.1 %% 8 | %% Authors: Krishna Kumar %% 9 | %% License: MIT License (c) 2016 Krishna Kumar %% 10 | %% GitHub Repo: https://github.com/kks32/phd-thesis-template/ %% 11 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 12 | 13 | % ************************** Class Identification ****************************** 14 | \newcommand\fileversion{2.3.1} 15 | \newcommand\filedate{2016/04/23} 16 | \NeedsTeXFormat{LaTeX2e} 17 | \ProvidesClass{PhDThesisPSnPDF}[\filedate\space A PhD thesis class file 18 | by Krishna Kumar (v\fileversion)] 19 | \typeout{https://github.com/kks32/phd-thesis-template/} 20 | 21 | 22 | % ****************************************************************************** 23 | % **************************** Class Definition ******************************** 24 | % ****************************************************************************** 25 | 26 | % *********************** Define a Print/Online Version ************************ 27 | \newif\if@print\@printfalse 28 | \DeclareOption{print}{\@printtrue} 29 | 30 | % ****************************** Define index ********************************** 31 | \newif\ifPHD@index\PHD@indexfalse 32 | \DeclareOption{index}{\PHD@indextrue} 33 | 34 | % ******************************* Font Option ********************************** 35 | \newif\ifsetFont\setFontfalse % Font is not set 36 | 37 | \newif\ifPHD@times\PHD@timesfalse % Times with Math Support 38 | \DeclareOption{times}{ 39 | \ifsetFont 40 | \ClassWarning{PhDThesisPSnPDF}{Font selection conflict: A font package was 41 | already specified. Please check the document class options in case you 42 | have defined two fonts.} 43 | \else 44 | \PHD@timestrue 45 | \setFonttrue 46 | \fi 47 | } 48 | 49 | \newif\ifPHD@fourier\PHD@fourierfalse % Fourier with Math Support 50 | \DeclareOption{fourier}{ 51 | \ifsetFont 52 | \ClassWarning{PhDThesisPSnPDF}{Font selection conflict: A font package was 53 | aleady specified. Please check the document class options in case you 54 | have defined two fonts.} 55 | \else 56 | \PHD@fouriertrue 57 | \setFonttrue 58 | \fi 59 | } 60 | 61 | \newif\ifsetCustomFont\setCustomFontfalse % Custom Font with Math Support 62 | \DeclareOption{customfont}{ 63 | \ifsetFont 64 | \ClassWarning{PhDThesisPSnPDF}{Font selection conflict: A font package was 65 | aleady specified. Please check the document class options in case you 66 | have defined two fonts.} 67 | \else 68 | \setCustomFonttrue 69 | \setFonttrue 70 | \fi 71 | } 72 | 73 | % ******************************* Bibliography ********************************* 74 | \newif\ifsetBib\setBibfalse % Custom Bibliography = true/false 75 | \newif\ifsetBiBLaTeX\setBiBLaTeXfalse % BiBLaTeX = True / False 76 | 77 | \newif\ifPHD@biblatex\PHD@biblatexfalse % BiBLaTeX 78 | \DeclareOption{biblatex}{ 79 | \ifsetBib 80 | \ClassWarning{PhDThesisPSnPDF}{Bibliography selection conflict: A 81 | bibliography style aleady specified. Please check the document class 82 | options in case you have defined two bibliography styles.} 83 | \else 84 | \PHD@biblatextrue 85 | \fi 86 | } 87 | 88 | \newif\ifPHD@authoryear\PHD@authoryearfalse % Author-Year citation 89 | \DeclareOption{authoryear}{ 90 | \ifsetBib 91 | \ClassWarning{PhDThesisPSnPDF}{Bibliography selection conflict: A 92 | bibliography style aleady specified. Please check the document class 93 | options in case you have defined two bibliography styles.} 94 | \else 95 | \PHD@authoryeartrue 96 | \setBibtrue 97 | \fi 98 | } 99 | 100 | \newif\ifPHD@numbered\PHD@numberedfalse % Numbered citiation 101 | \DeclareOption{numbered}{ 102 | \ifsetBib 103 | \ClassWarning{PhDThesisPSnPDF}{Bibliography selection conflict: A 104 | bibliography style aleady specified. Please check the document class 105 | options in case you have defined two bibliography styles.} 106 | \else 107 | \PHD@numberedtrue 108 | \setBibtrue 109 | \fi 110 | } 111 | 112 | \newif\ifuseCustomBib\useCustomBibfalse % Custom Bibliography 113 | \DeclareOption{custombib}{ 114 | \ifsetBib 115 | \ClassWarning{PhDThesisPSnPDF}{Bibliography selection conflict: A 116 | bibliography style aleady specified. Please check the document class 117 | options in case you have defined two bibliography styles.} 118 | \else 119 | \ifPHD@biblatex 120 | \ClassWarning{PhDThesisPSnPDF}{Bibliography selection conflict: A 121 | bibliography style aleady specified. Please check the document class 122 | options in case you have defined two bibliography styles.} 123 | \else 124 | \useCustomBibtrue 125 | \setBibtrue 126 | \fi 127 | \fi 128 | } 129 | 130 | % ************************* Header / Footer Styling **************************** 131 | \newif\ifPHD@textJustify\PHD@textJustifytrue % Set Justification true 132 | \DeclareOption{flushleft}{\PHD@textJustifyfalse} 133 | 134 | 135 | % ************************* Header / Footer Styling **************************** 136 | \newif\ifPHD@pageStyleI\PHD@pageStyleIfalse % Set Page StyleI 137 | \DeclareOption{PageStyleI}{\PHD@pageStyleItrue} 138 | 139 | \newif\ifPHD@pageStyleII\PHD@pageStyleIIfalse % Set Page StyleII 140 | \DeclareOption{PageStyleII}{\PHD@pageStyleIItrue} 141 | 142 | \newif\ifPHD@pageStyleIII\PHD@pageStyleIIIfalse % Set Page StyleIII 143 | \DeclareOption{PageStyleIII}{\PHD@pageStyleIIItrue} 144 | 145 | 146 | % ***************************** Custom Margins ******************************** 147 | \newif\ifsetCustomMargin\setCustomMarginfalse % Set Custom Margin 148 | \newif\ifsetMargin\setMarginfalse % Set Custom Margin 149 | \DeclareOption{custommargin}{\setCustomMargintrue} 150 | 151 | % *************************** Pre-defined Options ****************************** 152 | % Font Size 153 | \DeclareOption{10pt}{\PassOptionsToClass{10pt}{book}}% 154 | \DeclareOption{11pt}{\PassOptionsToClass{11pt}{book}}% 155 | \DeclareOption{12pt}{\PassOptionsToClass{12pt}{book}}% 156 | 157 | % Page Size 158 | \newcommand\PHD@papersize{a4paper} % Set Default as a4paper 159 | 160 | \DeclareOption{a4paper}{\renewcommand\PHD@papersize{a4paper}} 161 | \DeclareOption{a5paper}{\renewcommand\PHD@papersize{a5paper}} 162 | \DeclareOption{letterpaper}{\renewcommand\PHD@papersize{letterpaper}} 163 | 164 | \PassOptionsToClass{\PHD@papersize}{book}% 165 | 166 | % Column layout 167 | \newif\if@oneside\@onesidefalse 168 | \DeclareOption{oneside}{\PassOptionsToClass{\CurrentOption}{book}\@onesidetrue}% 169 | \DeclareOption{twoside}{\PassOptionsToClass{\CurrentOption}{book}}% 170 | 171 | % Generates Warning for unknown options 172 | \DeclareOption*{ 173 | \ClassWarning{PhDThesisPSnPDF}{Unknown or non-standard option 174 | '\CurrentOption'. I'll see if I can load it from the book class. If you get a 175 | warning unused global option(s): `\CurrentOption` then the option is not 176 | supported!} 177 | \PassOptionsToClass{\CurrentOption}{book} 178 | } 179 | 180 | % Process options and load class 181 | \ProcessOptions\relax% 182 | \LoadClass{book}% 183 | 184 | % ****************************************************************************** 185 | % ******************************** Packages ************************************ 186 | % ****************************************************************************** 187 | % ************************** Layout and Formatting ***************************** 188 | 189 | \RequirePackage{lscape} % Supports Landscape Layout 190 | \RequirePackage{setspace} % Define line spacing in paragraph 191 | \RequirePackage{calc} % calculate vertical spacing 192 | 193 | % ************************* Conditional Statements ***************************** 194 | \RequirePackage{ifthen} % Conditional statements 195 | \RequirePackage{ifpdf} % Check for pdfLaTeX 196 | \RequirePackage{ifxetex} % XeLaTeX 197 | 198 | % ********* Information on Qualifying Panel and Examination Panel ************** 199 | \RequirePackage{pdfpages} % insert PDF document 200 | \RequirePackage{etoolbox} 201 | 202 | % *********************** Table of Contents & Appendices *********************** 203 | % add Bibliography, List of figures and tables to contents 204 | \RequirePackage[nottoc]{tocbibind} 205 | % Add appendices 206 | \RequirePackage[title,titletoc]{appendix} 207 | 208 | \renewcommand{\contentsname}{Table of contents} 209 | \renewcommand{\listfigurename}{List of figures} 210 | \renewcommand{\listtablename}{List of tables} 211 | 212 | % Hides Contents appearing from TOC, but adds it to bookmarks 213 | \let\temptableofcontents\tableofcontents 214 | \renewcommand{\tableofcontents}{ 215 | \cleardoublepage 216 | \pdfbookmark[0]{\contentsname}{Contents} 217 | \temptableofcontents 218 | } 219 | 220 | % *************************** Graphics and Figures ***************************** 221 | %\RequirePackage[usenames, dvipsnames]{color} 222 | \RequirePackage{graphicx} 223 | 224 | % ******************************* Bibliography ********************************* 225 | \ifPHD@authoryear 226 | \ifPHD@biblatex 227 | \RequirePackage[backend=biber, style=authoryear, citestyle=alphabetic, 228 | sorting=nty, natbib=true]{biblatex} 229 | \setBiBLaTeXtrue 230 | \else 231 | \RequirePackage[round, sort, numbers, authoryear]{natbib} %author year 232 | \fi 233 | \else 234 | \ifPHD@numbered 235 | \ifPHD@biblatex 236 | \RequirePackage[backend=biber, style=numeric-comp, 237 | citestyle=numeric, sorting=none, natbib=true]{biblatex} 238 | \setBiBLaTeXtrue 239 | \else 240 | \RequirePackage[numbers,compress]{natbib} % numbered citation 241 | \fi 242 | \else 243 | \ifuseCustomBib 244 | \AtBeginDocument{ 245 | \@ifpackageloaded{natbib}{}{ 246 | \@ifpackageloaded{biblatex}{}{ 247 | \ClassWarning{PhDThesisPSnPDF}{% 248 | You chose custom bibliography, but no corresponding package 249 | (biblatex/natbib) has been loaded. Please load the 250 | appropriate bibliography package in the preamble.} 251 | } 252 | } 253 | } 254 | \else % set default to numbered 255 | \ifPHD@biblatex 256 | \RequirePackage[backend=biber, style=numeric-comp, 257 | citestyle=numeric, sorting=none, natbib=true]{biblatex} 258 | \setBiBLaTeXfalse 259 | \else 260 | \RequirePackage[numbers,compress]{natbib} 261 | \fi % default 262 | \setBibfalse 263 | \fi % custombib 264 | \fi % numbered 265 | \fi % author year 266 | 267 | \ifsetBib 268 | \else 269 | \ClassWarning{PhDThesisPSnPDF}{No bibliography style was specified. 270 | Default numbered style is used. If you would like to use a 271 | different style, use `authoryear' or `numbered' in the options in 272 | documentclass or use `custombib` and define the natbib package or 273 | biblatex package with required style in the Preamble.tex file} 274 | \fi 275 | 276 | % ********************************** Fonts ********************************** 277 | \RequirePackage{amsmath} 278 | \RequirePackage{fontspec} 279 | \RequirePackage[]{unicode-math} 280 | % Chinese support 281 | % \RequirePackage{xeCJK} 282 | % \setCJKmainfont{PMingLiU} %MingLiU 283 | \newfontfamily\mingliu{PMingLiU} 284 | \newcommand\chinese[1]{{\mingliu #1}} 285 | 286 | \newfontfamily\timesnewroman{Times New Roman} % Front cover/Title page 287 | \newcommand\english[1]{{\timesnewroman #1}} 288 | 289 | \setmainfont{Times New Roman} 290 | 291 | \RequirePackage{textcomp} 292 | % Font Selection 293 | \ifPHD@times 294 | \setFonttrue 295 | \message{PhDThesisPSnPDF: Using Times Roman font} 296 | \else 297 | \ifPHD@fourier 298 | \RequirePackage{fourier} % Fourier 299 | \setFonttrue 300 | \message{PhDThesisPSnPDF: Using Fourier font} 301 | \else 302 | \ifsetCustomFont 303 | \setFonttrue 304 | \message{PhDThesisPSnPDF: Using custom font} 305 | \else 306 | \setFontfalse 307 | \message{PhDThesisPSnPDF: No font is set} 308 | \fi % custom font 309 | \fi % Fourier font 310 | \fi % Times font 311 | 312 | % If Font is not set throw a warning. 313 | \ifsetFont 314 | \else 315 | \ClassWarning{PhDThesisPSnPDF}{Using default font Latin Modern. If you 316 | would like to use other pre-defined fonts use `times' (The Cambridge 317 | University PhD thesis guidelines recommend using Times font) or `fourier' 318 | or load a custom font in the preamble.tex file by specifying `customfont' 319 | in the class options} 320 | \RequirePackage{lmodern} 321 | \fi 322 | 323 | % Don't break enumeration (etc.) across pages in an ugly manner 324 | \clubpenalty=10000 325 | \widowpenalty=10000 326 | 327 | %******************************* Print / Online ******************************** 328 | % Defines a print / online version to define page-layout and hyperrefering 329 | 330 | % Moved below other usepackage definitions to fix PDFLaTeX footnote warning 331 | % Based on the suggestion by John Plaice 332 | 333 | \RequirePackage[unicode=true]{hyperref} 334 | \hypersetup{ 335 | final=true, 336 | plainpages=false, 337 | pdfstartview=FitV, 338 | pdftoolbar=true, 339 | pdfmenubar=true, 340 | bookmarksopen=true, 341 | bookmarksnumbered=true, 342 | breaklinks=true, 343 | linktocpage, 344 | colorlinks=true, 345 | linkcolor=black, 346 | urlcolor=black, 347 | citecolor=black, 348 | anchorcolor=black 349 | } 350 | 351 | % For Print version 352 | \ifsetCustomMargin 353 | % Margin to be define in preamble using geometry package 354 | \else 355 | \if@print 356 | \RequirePackage[paper=\PHD@papersize,nomarginpar,bindingoffset=14.6mm, 357 | tmargin=38mm,bmargin=38mm,lmargin=25.4mm,rmargin=25.4mm]{geometry} 358 | \else 359 | % No Margin staggering on Odd and Even side 360 | % \RequirePackage[showframe,paper=\PHD@papersize,nomarginpar, 361 | \RequirePackage[paper=\PHD@papersize,nomarginpar, 362 | tmargin=38mm,bmargin=38mm,lmargin=32.7mm,rmargin=32.7mm]{geometry} 363 | \fi 364 | \fi 365 | 366 | % ************************ URL Package and Definition ************************** 367 | \RequirePackage{url} 368 | % Redefining urlstyle to use smaller fontsize in References with URLs 369 | \newcommand{\url@leostyle}{% 370 | \@ifundefined{selectfont}{\renewcommand{\UrlFont}{\sffamily}} 371 | {\renewcommand{\UrlFont}{\normalsize}}} 372 | \urlstyle{leo} 373 | 374 | % ****************************************************************************** 375 | % **************************** Pre-defined Settings **************************** 376 | % ****************************************************************************** 377 | 378 | % *************************** Setting PDF Meta-Data **************************** 379 | % \ifpdf 380 | \AtBeginDocument{ 381 | \hypersetup{ 382 | pdftitle = {\@title}, 383 | pdfauthor = {\@author}, 384 | pdfsubject={\@subject}, 385 | pdfkeywords={\@keywords} 386 | } 387 | } 388 | % \fi 389 | 390 | % ******************************** Line Spacing ******************************** 391 | % Set spacing as 1.5 line spacing for the PhD Thesis 392 | % In practice, fortunately, nobody knows really what “one-and-a-half spaced 393 | % type” means exactly (in terms of millimetres baseline distance). The following 394 | % LaTeX setting has routinely been considered perfectly acceptable: 395 | 396 | \renewcommand\baselinestretch{1.2} 397 | 398 | % ******************************** Justification ******************************* 399 | % Left aligned as per University identity guidelines 400 | \ifPHD@textJustify 401 | \message{PhDThesisPSnPDF: The University identity guidelines recommend using 402 | left aligned text. Please use `flushleft' in the documentclass option, if you 403 | wish to left align your text} 404 | \else 405 | \AtBeginDocument{ 406 | \raggedright 407 | } 408 | \fi 409 | 410 | 411 | % ************************** TOC and Hide Sections ***************************** 412 | \newcommand{\nocontentsline}[3]{} 413 | \newcommand{\tochide}[2]{ 414 | \bgroup\let 415 | \addcontentsline=\nocontentsline#1{#2} 416 | \egroup} 417 | % Removes pagenumber appearing from TOC 418 | % \addtocontents{toc}{\protect\thispagestyle{empty}} 419 | 420 | 421 | % ***************************** Header Formatting ****************************** 422 | % Custom Header with Chapter Number, Page Number and Section Numbering 423 | 424 | \RequirePackage{fancyhdr} % Define custom header 425 | 426 | % All styles sets Page Number at the Bottom Center 427 | % Style 1: Chapter/Section Name on LO/RE with head rule 428 | \fancypagestyle{PageStyleI}{ 429 | \renewcommand{\chaptermark}[1]{\markboth{\@chapapp\ \thechapter\ ##1}{}} 430 | \renewcommand{\sectionmark}[1]{\markright{\thesection\ ##1}} 431 | \fancyhf{} 432 | \if@twoside 433 | \fancyhead[RO]{\bfseries \nouppercase \rightmark} 434 | \fancyhead[LE]{\bfseries \nouppercase \leftmark} 435 | \else 436 | \fancyhead[L]{\ifthenelse{\isodd{\value{page}}}{}{\bfseries \nouppercase \leftmark}} 437 | \fancyhead[R]{\ifthenelse{\isodd{\value{page}}}{\bfseries \nouppercase \rightmark}{}} 438 | \fi 439 | \fancyfoot[C]{\thepage} 440 | } 441 | 442 | % Style 2: Chapter/Section Name at the Top Center 443 | \fancypagestyle{PageStyleII}{ 444 | \renewcommand{\chaptermark}[1]{\markboth{\@chapapp\ \thechapter\ ##1}{}} 445 | \renewcommand{\sectionmark}[1]{\markright{\thesection\ ##1}} 446 | \fancyhf{} 447 | \if@twoside 448 | \fancyhead[CO]{\bfseries \nouppercase \rightmark} 449 | \fancyhead[CE]{\bfseries \nouppercase \leftmark} 450 | \else 451 | \fancyhead[C]{\ifthenelse{\isodd{\value{page}}}{\nouppercase \rightmark}{\nouppercase \leftmark}} 452 | \fi 453 | \fancyfoot[C]{\thepage} 454 | } 455 | 456 | % Style 3: Chapter/Section Name on LO/RE without head rule 457 | \fancypagestyle{PageStyleIII}{ 458 | 459 | \renewcommand{\chaptermark}[1]{\markboth{\@chapapp\ \thechapter.\ ##1}{}} 460 | \renewcommand{\sectionmark}[1]{\markright{\thesection\ ##1}} 461 | \fancyhf{} 462 | \fancyhead[L]{\ifthenelse{\isodd{\value{page}}}{}{\nouppercase \leftmark}} 463 | \fancyhead[R]{\ifthenelse{\isodd{\value{page}}}{\nouppercase \rightmark}{}} 464 | \renewcommand{\headrulewidth}{0pt} 465 | \fancyfoot[C]{\thepage} 466 | } 467 | 468 | % Set Fancy Header Command is defined to Load FancyHdr after Geometry is defined 469 | \newcommand{\setFancyHdr}{ 470 | 471 | \pagestyle{fancy} 472 | 473 | \ifPHD@pageStyleI 474 | \pagestyle{PageStyleI} 475 | 476 | \else 477 | \ifPHD@pageStyleII 478 | 479 | \pagestyle{PageStyleII} 480 | 481 | \else 482 | \ifPHD@pageStyleIII 483 | 484 | \pagestyle{PageStyleIII} 485 | 486 | \else 487 | % Default Style: Sets Page Number at the Bottom 488 | \renewcommand{\chaptermark}[1]{\markboth {##1}{}} 489 | \renewcommand{\sectionmark}[1]{\markright{\thesection\ ##1}} 490 | \fancyhf{} 491 | \fancyfoot[C]{\thepage} 492 | \renewcommand{\headrulewidth}{0pt} 493 | \fi 494 | \fi 495 | \fi 496 | } 497 | 498 | \setlength{\headheight}{14.5pt} 499 | %\renewcommand{\headrulewidth}{0.5pt} 500 | %\renewcommand{\footrulewidth}{0pt} 501 | \fancypagestyle{plain}{ 502 | \fancyhead{} 503 | \renewcommand{\headrulewidth}{0.0pt} 504 | } 505 | 506 | 507 | % If Margin has been set (default margin print/online version) 508 | \ifsetCustomMargin 509 | \AtBeginDocument{ 510 | \@ifpackageloaded{geometry}{}{\ClassWarning{PhDThesisPSnPDF}{% 511 | Custom margin is chosen, but geometry package is not loaded. Please load the 512 | `geometry' package in the preamble.}}} 513 | \else 514 | \setFancyHdr % Apply fancy header settings otherwise apply it in preamble 515 | \fi 516 | 517 | % **************** Clear Header Style on the Last Empty Odd pages ************** 518 | \renewcommand{\cleardoublepage}{\clearpage\if@twoside \ifodd\c@page\else% 519 | \hbox{}% 520 | \thispagestyle{empty} % Empty header styles 521 | \newpage% 522 | \if@twocolumn\hbox{}\newpage\fi\fi\fi} 523 | 524 | 525 | % ****************************************************************************** 526 | % **************************** Macro Definitions ******************************* 527 | % ****************************************************************************** 528 | % These macros are used to declare arguments needed for the 529 | % construction of the title page and other preamble. 530 | 531 | % Author name in Chinese 532 | \newcommand{\@authorzh}{} 533 | \newcommand{\authorzh}[1]{\renewcommand{\@authorzh}{#1}} 534 | 535 | % Title in Chinese 536 | \newcommand{\@titlezh}{} 537 | \newcommand{\titlezh}[1]{\renewcommand{\@titlezh}{#1}} 538 | 539 | % Shorttitle (optional, an abbreviated title for spine) 540 | \newcommand{\@shorttitle}{} 541 | \newcommand{\shorttitle}[1]{\renewcommand{\@shorttitle}{#1}} 542 | 543 | % The year and term the degree will be officially conferred 544 | \newcommand{\@degreedate}{\monthname[\the\month]\space\the\year} 545 | \newcommand{\degreedate}[1]{\renewcommand{\@degreedate}{#1}} 546 | \newcommand{\@degreedatezh}{} 547 | \newcommand{\degreedatezh}[1]{\renewcommand{\@degreedatezh}{#1}} 548 | 549 | % The full and abbreviated name of the degree 550 | \newcommand{\@degreetitle}{} 551 | \newcommand{\degreetitle}[1]{\renewcommand{\@degreetitle}{#1}} 552 | \newcommand{\@degreetitlezh}{} 553 | \newcommand{\degreetitlezh}[1]{\renewcommand{\@degreetitlezh}{#1}} 554 | \newcommand{\@degreetitleabbr}{} 555 | \newcommand{\degreetitleabbr}[1]{\renewcommand{\@degreetitleabbr}{#1}} 556 | 557 | % The name of your department(eg. Engineering, Maths, Physics) 558 | \newcommand{\@dept}{} 559 | \newcommand{\dept}[1]{\renewcommand{\@dept}{#1}} 560 | \newcommand{\@deptzh}{} 561 | \newcommand{\deptzh}[1]{\renewcommand{\@deptzh}{#1}} 562 | 563 | % The name of your University 564 | \newcommand{\@university}{} 565 | \newcommand{\university}[1]{\renewcommand{\@university}{#1}} 566 | \newcommand{\@universityzh}{} 567 | \newcommand{\universityzh}[1]{\renewcommand{\@universityzh}{#1}} 568 | \newcommand{\@universityabbr}{} 569 | \newcommand{\universityabbr}[1]{\renewcommand{\@universityabbr}{#1}} 570 | \newcommand{\@partneruniversity}{} 571 | \newcommand{\partneruniversity}[1]{\renewcommand{\@partneruniversity}{#1}} 572 | 573 | % Submission Text 574 | \newcommand{\submissiontexta}{Submitted to} 575 | \newcommand{\submissiontextb}{in Partial Fulfillment of the Requirements\par for the Degree of\space} 576 | \newcommand{\submissiontextc}{awarded by City University of Hong Kong\par for successful completion of the joint programme with\par\space} 577 | 578 | 579 | % keywords (These keywords will appear in the PDF meta-information 580 | % called `pdfkeywords`.) 581 | \newcommand{\@keywords}{} 582 | \newcommand{\keywords}[1]{\renewcommand{\@keywords}{#1}} 583 | 584 | % subjectline (This subject will appear in the PDF meta-information 585 | % called `pdfsubject`.) 586 | \newcommand{\@subject}{} 587 | \newcommand{\subject}[1]{\renewcommand{\@subject}{#1}} 588 | 589 | % Declaration title text 590 | \newcommand{\@declarationtitle}{Declaration} 591 | 592 | % Acknowledgment title text 593 | \newcommand{\@acknowledgementstitle}{Acknowledgements} 594 | 595 | % Abstract title text 596 | \newcommand{\@abstracttitle}{Abstract} 597 | 598 | % Panel title text 599 | \newcommand{\@panelname}{Qualifying Panel and Examination Panel} 600 | 601 | % Publication title text 602 | \newcommand{\pubname}{Publications} 603 | 604 | % These macros define an environment for front matter that is always 605 | % single column even in a double-column document. 606 | \newenvironment{alwayssingle}{% 607 | \@restonecolfalse\if@twocolumn\@restonecoltrue\onecolumn 608 | \else\newpage\fi} 609 | {\if@restonecol\twocolumn\else\newpage\fi} 610 | 611 | % Set single column even under two column layout 612 | \newcommand{\setsinglecolumn}{ 613 | \if@twocolumn 614 | \onecolumn 615 | \else 616 | \fi 617 | } 618 | 619 | 620 | % ****************************************************************************** 621 | % *************************** Front Matter Layout ****************************** 622 | % ****************************************************************************** 623 | 624 | % ******************************** Title Page ********************************** 625 | 626 | % Use fixed font sizes in Front Cover/Spine/Title Page 627 | \newcommand{\smallfontsize} {\fontsize{12bp}{14bp} \selectfont} 628 | \newcommand{\normalfontsize} {\fontsize{14bp}{16bp} \selectfont} 629 | \newcommand{\largefontsize} {\fontsize{16bp}{18bp} \selectfont} 630 | \newcommand{\Largefontsize} {\fontsize{18bp}{20bp} \selectfont} 631 | \newcommand{\LARGEfontsize} {\fontsize{20bp}{22bp} \selectfont} 632 | 633 | \renewcommand{\maketitle}{ 634 | \newgeometry{left=45mm,right=45mm,top=50mm,bottom=50mm,noheadfoot,nomarginpar} 635 | 636 | \thispagestyle{empty} 637 | 638 | % \begin{singlespace} 639 | \begin{spacing}{1} 640 | \begin{center} 641 | 642 | % University 643 | {\Largefontsize 644 | {\expandafter\MakeUppercase\expandafter{\english\@university} \par} 645 | {\chinese \@universityzh \par} 646 | 647 | \vspace{54bp} 648 | 649 | % Title 650 | {\english \@title \par} 651 | {\chinese \@titlezh \par} 652 | } 653 | 654 | \vspace{36bp} 655 | % \vfill 656 | 657 | % % Submission Text 658 | {\smallfontsize 659 | {\english \submissiontexta \par} 660 | {\english \@dept \par} 661 | {\chinese \@deptzh \par} 662 | {\english \submissiontextb \english \@degreetitle \par} 663 | {\chinese \@degreetitlezh \par} 664 | \ifthenelse{\equal{\@partneruniversity}{}}{ 665 | % partneruniversity is not defined 666 | }{ 667 | {\english \submissiontextc \english \@partneruniversity\par} 668 | } % partneruniversity is defined 669 | \vfill 670 | 671 | % \vspace{36bp} 672 | {\english {by}} 673 | \vspace{36bp} 674 | 675 | % Author 676 | {\english \@author \par} 677 | {\chinese \@authorzh \par} 678 | 679 | \vspace{36bp} 680 | 681 | %Degree date 682 | {\english \@degreedate \par} 683 | {\chinese \@degreedatezh \par} 684 | } 685 | 686 | \end{center} 687 | \end{spacing} 688 | % \end{singlespace} 689 | \restoregeometry 690 | } 691 | 692 | 693 | % ********************************* Dedication ********************************* 694 | % The dedication environment makes sure the dedication gets its 695 | % own page, centered 696 | 697 | \newenvironment{dedication} 698 | { 699 | \cleardoublepage 700 | \vspace*{0.2\textheight} 701 | \thispagestyle{empty} 702 | \centering 703 | } 704 | 705 | % ****************************** Abstract ******************************** 706 | 707 | \newenvironment{abstract} { 708 | % Normal abstract in the thesis 709 | \cleardoublepage 710 | \phantomsection 711 | \addcontentsline{toc}{chapter}{\@abstracttitle} 712 | \chapter*{\centering \Large \@abstracttitle} 713 | \pagestyle{plain} 714 | } 715 | 716 | % *********** Information on Qualifying Panel and Examination Panel ************ 717 | \newcommand{\tinyfontsize} {\fontsize{11.3bp}{12bp} \selectfont} 718 | \newlength\mystoreparindent 719 | \newenvironment{panel} 720 | { 721 | \cleardoublepage 722 | \phantomsection 723 | \addcontentsline{toc}{chapter}{\@panelname} 724 | \setlength{\mystoreparindent}{\the\parindent} 725 | \setlength{\parindent}{0pt} 726 | 727 | \begin{center} 728 | \textbf{CITY UNIVERSITY OF HONG KONG} \\ 729 | \textbf{Qualifying Panel and Examination Panel} 730 | \end{center} 731 | 732 | \begin{spacing}{1.5} 733 | \tinyfontsize 734 | \setlength{\tabcolsep}{0pt} 735 | }{% 736 | \end{spacing} 737 | \setlength{\parindent}{\mystoreparindent} 738 | } 739 | \BeforeBeginEnvironment{panel}{\newgeometry{left=45mm,right=45mm,top=25mm,noheadfoot,nomarginpar} 740 | \fancyfootoffset[L]{0mm} 741 | \thispagestyle{plain} 742 | } 743 | \AfterEndEnvironment{panel}{\restoregeometry} 744 | 745 | 746 | % ***************************** Acknowledgements ***************************** 747 | % The acknowledgements environment puts a large, bold, centered 748 | % "Acknowledgements" label at the top of the page. 749 | 750 | \newenvironment{acknowledgements}{ 751 | \cleardoublepage 752 | \phantomsection 753 | \addcontentsline{toc}{chapter}{\@acknowledgementstitle} 754 | \chapter*{\centering \Large \@acknowledgementstitle} 755 | \thispagestyle{plain} 756 | } 757 | 758 | % ****************************** Publications ******************************** 759 | 760 | \newenvironment{publications}{ 761 | \cleardoublepage 762 | \phantomsection 763 | \addcontentsline{toc}{chapter}{\pubname} 764 | \chapter*{\Large \pubname} 765 | \thispagestyle{plain} 766 | } 767 | 768 | %% EOF -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CityU_Thesis 2 | 3 | An XeLaTeX thesis template for research postgraduate (MPhil and PhD) and professional doctorate (PD) students at City University of Hong Kong. 4 | 5 | This thesis tempalte builds upon the [CUED PhD thesis template](https://github.com/kks32/phd-thesis-template) from Krishna Kumar. It is adapted to meet the regulations governing the format of theses (as of 2021-22). 6 | 7 | Please read Regulations Governing the Format of Theses and Sample of the Front Cover/Spine/Title Page of a Thesis (Appendixes 13 and 14 of the [Guidebook for Research Degree Studies](https://www.sgs.cityu.edu.hk/student/rpg/studentGuideBook)). See [thesis.pdf](thesis.pdf) for an example PDF created with this template. 8 | 9 | Credit goes to Krishna Kumar, author of the CUED PhD thesis template above. 10 | 11 | This template is included in **[CityU-Thesis](https://github.com/huwan/CityU-Thesis)**, a collection of LaTeX thesis template for students at City University of Hong Kong. You can find more templates in that repository. 12 | 13 | ## Prerequisites 14 | 15 | - **Fonts**: Times New Roman and MingLiU/細明體 (or PMingLiU/新細明體) should be used in the title page of a thesis to provide thesis information in both Chinese and English. Make sure they have already been installed system-wide. Note that (P)MingLiu is not installed on online LaTex editors, such as Overleaf. If you want to use this template online, you may need to put the font file, e.g., PMingLiU.ttf, in current directory and load font by modifing `PhDThesisPSnPDF.cls`. Please find and replace `\newfontfamily\mingliu{PMingLiU}` with `\newfontfamily\mingliu{[PMingLiU.ttf]}`. 16 | 17 | - **XeLaTeX**: Configure your document to be compiled with `XeLaTeX` typesetting engine to use the external fonts above. 18 | 19 | ## Usage 20 | 21 | The main file is `thesis.tex`, from which a number of other files are included. Take a look at the comments in the LaTeX sources for some more specific pointers. 22 | 23 | To compile, simply run `thesis.tex` through `XeLaTeX`. 24 | 25 | ## Online 26 | 27 | CityU_Thesis is added to the Overleaf Gallery. You can find it [here](https://www.overleaf.com/latex/templates/cityu-thesis/pcwxpxsqqvyb). 28 | 29 | 30 | ## Disclaimer 31 | 32 | Although this template is built to satisfy the requirements of CityU, it is not an official template. Use this template at your own risk. 33 | 34 | ## License 35 | 36 | [CUED PhD thesis template](https://github.com/kks32/phd-thesis-template) by Krishna Kumar is licensed under the [MIT License](LICENSE). 37 | -------------------------------------------------------------------------------- /References/references.bib: -------------------------------------------------------------------------------- 1 | % ------------------------------------------------------------------------ 2 | % SAMPLE BIBLIOGRAPHY FILE 3 | % ------------------------------------------------------------------------ 4 | 5 | @MISC{prime-number-theorem, 6 | author = "Charles Louis Xavier Joseph de la Vall{\'e}e Poussin", 7 | note = "A strong form of the prime number theorem, 19th century" } 8 | 9 | % ------------------------------------------------------------------------ 10 | 11 | @BOOK{texbook, 12 | author = "Donald E. Knuth", 13 | title= "The {{\TeX}book}", 14 | publisher = "Addison-Wesley", 15 | year = 1984 } 16 | 17 | @BOOK{latex, 18 | author = "Leslie Lamport", 19 | title = "{\LaTeX:} {A} Document Preparation System", 20 | publisher = "Addison-Wesley", 21 | year = 1986 } 22 | 23 | % ------------------------------------------------------------------------ 24 | @article{Ancey1996, 25 | author = {Ancey, Christophe and Coussot, Philippe and Evesque, Pierre}, 26 | journal = {Mechanics of Cohesive-frictional Materials}, 27 | number = {4}, 28 | pages = {385--403}, 29 | title = {Examination of the possibility of a fluid-mechanics treatment of dense granular flows}, 30 | url = {http://doi.wiley.com/10.1002/(SICI)1099-1484(199610)1:4<385::AID-CFM20>3.0.CO;2-0}, 31 | volume = {1}, 32 | year = {1996} 33 | } 34 | 35 | @BOOK{RR73, 36 | author={H. Radjavi and P. Rosenthal}, 37 | title={Invariant {Subspaces}}, 38 | publisher={Springer-Verlag}, 39 | address={New York}, 40 | year={1973}, 41 | } 42 | 43 | @BOOK{Aup91, 44 | author={B. Aupetit}, 45 | title={A {Primer} on {Spectral} {Theory}}, 46 | publisher={Springer-Verlag}, 47 | address={New York}, 48 | year={1991}, 49 | } 50 | 51 | @BOOK{Dou72, 52 | author={R. G. Douglas}, 53 | title={Banach {Algebra} {Techniques} in {Operator} {Theory}}, 54 | publisher={Academic Press}, 55 | address={New York}, 56 | year={1972}, 57 | } 58 | 59 | @BOOK{Hal82, 60 | author={P. R. Halmos}, 61 | title={A {Hilbert} {Space} {Problem} {Book}}, 62 | edition={Second}, 63 | publisher={Springer-Verlag}, 64 | address={New York}, 65 | year={1982}, 66 | } 67 | 68 | @BOOK{Rud73, 69 | author={W. Rudin}, 70 | title={Functional {Analysis}}, 71 | publisher={McGraw-Hill}, 72 | address={New York}, 73 | year={1973}, 74 | } 75 | 76 | @BOOK{Con90, 77 | author={J. B. Conway}, 78 | title={A {Course} in {Functional} {Analysis}}, 79 | edition={Second}, 80 | publisher={Springer-Verlag}, 81 | address={New York}, 82 | year={1990}, 83 | } 84 | 85 | @BOOK{Con78, 86 | author={J. B. Conway}, 87 | title={Functions of {One} {Complex} {Variable}}, 88 | publisher={Springer-Verlag}, 89 | address={New York}, 90 | year={1978}, 91 | } 92 | 93 | @BOOK{KR83, 94 | author={R. V. Kadison and J. R. Ringrose}, 95 | title={Fundamentals of the {Theory} of {Operator} {Algebras}, 96 | {Part} {I}}, 97 | publisher={Academic Press}, 98 | address={New York}, 99 | year={1983}, 100 | } 101 | 102 | @BOOK{KR86, 103 | author={R. V. Kadison and J. R. Ringrose}, 104 | title={Fundamentals of the {Theory} of {Operator} {Algebras}, 105 | {Part} {II}}, 106 | publisher={Academic Press}, 107 | address={New York}, 108 | year={1986}, 109 | } 110 | 111 | @INBOOK{SFPT, 112 | author={N. Dunford and J. T. Schwartz}, 113 | title={Linear {Operators}, 114 | {Part} {I}: {General} {Theory}}, 115 | pages={456}, 116 | publisher={Interscience}, 117 | address={New York}, 118 | year={1957}, 119 | } 120 | 121 | @BOOK{DS57, 122 | author={N. Dunford and J. T. Schwartz}, 123 | title={Linear {Operators}, 124 | {Part} {I}: {General} {Theory}}, 125 | publisher={Interscience}, 126 | address={New York}, 127 | year={1957}, 128 | } 129 | 130 | @BOOK{Gan59, 131 | author={F. R. Gantmacher}, 132 | title={Applications of the {Theory} of {Matrices}}, 133 | publisher={Interscience}, 134 | address={New York}, 135 | year={1959}, 136 | } 137 | 138 | @BOOK{Pau86, 139 | author={Vern I. Paulsen}, 140 | title={Completely bounded maps and dilations}, 141 | series={Pitman Research Notes in Mathematics Series}, 142 | volume={146}, 143 | publisher={Longman Scientific \& Technical}, 144 | address={Harlow UK}, 145 | year={1986}, 146 | } 147 | 148 | @BOOK{Dav88, 149 | author={Kenneth R. Davidson}, 150 | title={Nest algebras}, 151 | series={Pitman Research Notes in Mathematics Series}, 152 | volume={191}, 153 | publisher={Longman Scientific \& Technical}, 154 | address={Harlow UK}, 155 | year={1988}, 156 | } 157 | 158 | @BOOK{Spi65, 159 | author={Michael Spivak}, 160 | title={Calculus on {Manifolds}}, 161 | publisher={The Benjamin/Cummings Publishing Company}, 162 | address={New York}, 163 | year={1965}, 164 | } 165 | 166 | @BOOK{Dev68, 167 | author={Allen Devinaz}, 168 | title={Advanced {Calculus}}, 169 | publisher={Holt, Rinehart and Winston}, 170 | address={New York}, 171 | year={1968}, 172 | } 173 | 174 | @BOOK{Gam90, 175 | editor={R. V. Gamkerlidze}, 176 | title={Analysis {I}{I}: {Convex} {Analysis} and 177 | {Approximation} {Theory}}, 178 | series={Encyclopaedia of Mathematical Sciences}, 179 | volume={14}, 180 | publisher={Springer-Verlag}, 181 | address={New York}, 182 | year={1990}, 183 | } 184 | 185 | @BOOK{Hen93, 186 | author={Peter Henderson}, 187 | title={Object-oriented specification and design with {C}$++$}, 188 | publisher={McGraw-Hill}, 189 | address={London}, 190 | year={1993}, 191 | } 192 | 193 | % ------------------------------------------------------------------------ 194 | 195 | @ARTICLE{Rea85, 196 | author={C. J. Read}, 197 | title={A solution to the invariant subspace problem on the space $l_1$}, 198 | journal={Bull. London Math. Soc.}, 199 | volume={17}, 200 | year={1985}, 201 | pages={305-317}, 202 | } 203 | 204 | @ARTICLE{Enf87, 205 | author={P. Enflo}, 206 | title={On the invariant subspaces problem for {Banach} spaces}, 207 | journal={Acta. Math.}, 208 | note={Seminare Maurey-Schwartz (1975-1976)}, 209 | volume={158}, 210 | year={1987}, 211 | pages={213-313}, 212 | } 213 | 214 | @ARTICLE{Dau75, 215 | author={J. Daughtry}, 216 | title={An invariant subspace theorem}, 217 | journal={Proc. Amer. Math. Soc.}, 218 | volume={49}, 219 | year={1975}, 220 | pages={267-268}, 221 | } 222 | 223 | @ARTICLE{KPS75, 224 | author={H. W. Kim and C. Pearcy and A. L. Shields}, 225 | title={Rank-One Commutators and Hyperinvariant Subspaces}, 226 | journal={Michigan Math. J.}, 227 | volume={22}, 228 | number={3}, 229 | year={1975}, 230 | pages={193-194}, 231 | } 232 | 233 | % -------------------------------------------------------------------------- 234 | 235 | @ARTICLE{Rad87, 236 | author={H. Radjavi}, 237 | title={The {Engel}-{Jacobson} {Theorem} {Revisited}}, 238 | journal={J. Alg.}, 239 | volume={111}, 240 | year={1987}, 241 | pages={427-430}, 242 | } 243 | 244 | @ARTICLE{MOR91, 245 | author={B. Mathes and M. Omladi\v{c} and H. Radjavi}, 246 | title={Linear {Spaces} of {Nilpotent} {Operators}}, 247 | journal={Linear Algebra Appl.}, 248 | volume={149}, 249 | year={1991}, 250 | pages={215-225}, 251 | } 252 | 253 | @ARTICLE{Lom73, 254 | author={V. I. Lomonosov}, 255 | title={Invariant subspaces for operators commuting with compact 256 | operators}, 257 | journal={Functional Anal. Appl.}, 258 | volume=7, 259 | year=1973, 260 | pages="213-214", 261 | } 262 | 263 | @ARTICLE{Lom91, 264 | author={V. I. Lomonosov}, 265 | title={An extension of {Burnside}'s theorem to infinite 266 | dimensional spaces}, 267 | journal={Israel J. Math}, 268 | volume=75, 269 | year=1991, 270 | pages="329-339", 271 | } 272 | 273 | @ARTICLE{Lom92, 274 | author={V. I. Lomonosov}, 275 | title={On {Real} {Invariant} {Subspaces} of {Bounded} {Operators} with 276 | {Compact} {Imaginary} {Part}}, 277 | journal={Proc. Amer. Math. Soc.}, 278 | volume=115, 279 | number=3, 280 | month=jul, 281 | year=1992, 282 | pages="775-777", 283 | } 284 | 285 | @ARTICLE{dB59, 286 | author={L. de Branges}, 287 | title={The {Stone}-{Weierstrass} {Theorem}}, 288 | journal={Proc. Amer. Math. Soc.}, 289 | volume=10, 290 | year=1959, 291 | pages="822-824", 292 | } 293 | 294 | @ARTICLE{dB93, 295 | author={L. de Branges}, 296 | title={A construction of invariant subspaces}, 297 | journal={Math. Nachr.}, 298 | volume=163, 299 | year=1993, 300 | pages="163-175", 301 | } 302 | 303 | @ARTICLE{AAB95, 304 | author={Y. A. Abramovich and C. D. Aliprantis and O. Burkinshaw}, 305 | title={Another Characterization of the Invariant Subspace Problem}, 306 | journal={Operator Theory in Function Spaces and Banach Lattices. 307 | {\em The A.C.\,Zaanen Anniversary Volume}, 308 | Operator Theory: Advances and Applications}, 309 | volume={75}, 310 | year={1995}, 311 | pages={15-31}, 312 | note={Birkh\"auser Verlag}, 313 | } 314 | 315 | @ARTICLE{LM65, 316 | author={Ju. I. Ljubi\v{c} and V. I. Macaev}, 317 | title={On Operators with a Separable Spectrum}, 318 | journal={Amer. Math. Soc. Transl. (2)}, 319 | volume={47}, 320 | year={1965}, 321 | pages={89-129}, 322 | } 323 | 324 | % ------------------------------------------------------------------------ 325 | 326 | @MASTERSTHESIS{Sim90, 327 | author={A. Simoni\v{c}}, 328 | title={Grupe Operatorjev s Pozitivnim Spektrom}, 329 | school={Univerza v Ljubljani, FNT, Oddelek za Matematiko}, 330 | year={1990}, 331 | } 332 | 333 | @UNPUBLISHED{Sim91, 334 | author={A. Simoni\v{c}}, 335 | title={Notes on {Subharmonic} {Functions}}, 336 | note={Lecture Notes, Dalhousie University, 337 | Department of Mathematics, Statistics, \& Computing Science}, 338 | year={1991}, 339 | } 340 | 341 | @ARTICLE{Sim92, 342 | author={A. Simoni\v{c}}, 343 | title={Matrix {Groups} with {Positive} {Spectra}}, 344 | journal={Linear Algebra Appl.}, 345 | volume={173}, 346 | year={1992}, 347 | pages={57-76}, 348 | } 349 | 350 | @PHDTHESIS{Sim94, 351 | author={A. Simoni\v{c}}, 352 | title={An {Extension} of {Lomonosov's} {Techniques} to {Non}-{Compact} 353 | {Operators}}, 354 | school={Dalhousie University, 355 | Department of Mathematics, Statistics, \& Computing Science}, 356 | year={1994}, 357 | } 358 | 359 | @ARTICLE{Sim96a, 360 | author={A. Simoni\v{c}}, 361 | title={A {Construction} of {Lomonosov} {Functions} and 362 | {Applications} to the {Invariant} {Subspace} {Problem}}, 363 | journal={Pacific J. Math.}, 364 | volume={175}, 365 | pages={257-270}, 366 | year={1996}, 367 | } 368 | 369 | @ARTICLE{Sim96b, 370 | author={A. Simoni\v{c}}, 371 | title={An extension of {Lomonosov's} {Techniques} to non-compact 372 | {Operators}}, 373 | journal={Trans. Amer. Math. Soc.}, 374 | volume={348}, 375 | pages={975-995}, 376 | year={1996}, 377 | } 378 | 379 | % ------------------------------------------------------------------------ 380 | -------------------------------------------------------------------------------- /thesis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huwan/CityU_Thesis/5995b8237fc49a5c7600d6c3902b8c6c334dc487/thesis.pdf -------------------------------------------------------------------------------- /thesis.tex: -------------------------------------------------------------------------------- 1 | % !TeX program = xelatex 2 | \documentclass[a4paper,12pt,oneside,times,numbered,PageStyleIII]{PhDThesisPSnPDF} 3 | 4 | % ****************************************************************************** 5 | % ******************************* Class Options ******************************** 6 | % ****************************************************************************** 7 | 8 | % `a4paper' (default): International A4 size paper, default option. 9 | % 10 | % `11pt' or `12pt'(default): Font Size. 11 | % 12 | % `oneside' (default) or `twoside': Printing double side (twoside) or single 13 | % side. Printed copy of thesis should be typed on both sides of the paper. 14 | % 15 | % `print': Use `print' for print version with appropriate margins and page 16 | % layout. Leaving the options field blank will activate Online version. 17 | % 18 | % 19 | % *********************** Choosing the Fonts in Class Options ****************** 20 | % 21 | % `times' : Times font with math support. 22 | % 23 | % `fourier': Utopia Font with Fourier Math font (Font has to be installed) 24 | % It's a free font. 25 | % 26 | % `customfont': Use `customfont' option in the document class and load the 27 | % package in the preamble section below. 28 | % 29 | % default or leave empty: `Latin Modern' font will be loaded. 30 | % 31 | % ********************** Choosing the Bibliography style *********************** 32 | % 33 | % `authoryear': For author-year citation eg., Krishna (2013) 34 | % 35 | % `numbered': (Default Option) For numbered and sorted citation e.g., [1,5,2] 36 | % 37 | % `custombib': Define your own bibliography style in the preamble section below. 38 | % `\RequirePackage[square, sort, numbers, authoryear]{natbib}'. 39 | % This can be also used to load biblatex instead of natbib 40 | % (See Preamble) 41 | % 42 | % **************************** Choosing the Page Style ************************* 43 | % 44 | % `(leave empty)': Page Numbers in footer (center). Blank Header. 45 | % 46 | % `PageStyleI': Chapter Name on Even Side (Left Even) in Header. Section Number 47 | % and Section Name in Header on Odd Side (Right Odd). Use Header rule. 48 | % 49 | % `PageStyleII': Chapter Name on Even Side (Center) in Header. Section Number 50 | % and Section Name in Header on Odd Side (Center). Use Header rule. 51 | % 52 | % `PageStyleIII': Chapter Name on Even Side (Left Even) in Header. Section Number 53 | % and Section Name in Header on Odd Side (Right Odd). Don't use Header rule. 54 | 55 | % ****************************************************************************** 56 | % ********************************** Preamble ********************************** 57 | % ****************************************************************************** 58 | 59 | % Contains packages and user-defined commands and settings 60 | 61 | % Add spaces between paragraphs 62 | %\setlength{\parskip}{0.5em} 63 | % Ragged bottom avoids extra whitespaces between paragraphs 64 | \raggedbottom 65 | % To remove the excess top spacing for enumeration, list and description 66 | %\usepackage{enumitem} 67 | %\setlist[enumerate,itemize,description]{topsep=0em} 68 | 69 | % ******************* Fonts (like different typewriter fonts etc.)************* 70 | 71 | % Add `customfont' in the document class option to use this section 72 | 73 | \ifsetCustomFont 74 | % Set your custom font here and use `customfont' in options. Leave empty to 75 | % load computer modern font (default LaTeX font). 76 | % \setmainfont{Georgia} 77 | \setromanfont{Times New Roman} 78 | \setsansfont{Arial} 79 | \setmonofont{Courier New} 80 | 81 | \fi 82 | 83 | % **************************** Custom Packages ******************************** 84 | 85 | % ************************* Algorithms and Pseudocode ************************** 86 | 87 | %\usepackage{algpseudocode} 88 | 89 | 90 | % ********************Captions and Hyperreferencing / URL ********************** 91 | 92 | % Captions: This makes captions of figures use a boldfaced small font. 93 | %\RequirePackage[small,bf]{caption} 94 | 95 | \RequirePackage[labelsep=space,tableposition=top]{caption} 96 | \renewcommand{\figurename}{Fig.} %to support older versions of captions.sty 97 | 98 | 99 | % *************************** Graphics and figures ***************************** 100 | %\usepackage{rotating} 101 | %\usepackage{wrapfig} 102 | 103 | % Uncomment the following two lines to force Latex to place the figure. 104 | % Use [H] when including graphics. Note 'H' instead of 'h' 105 | %\usepackage{float} 106 | %\restylefloat{figure} 107 | 108 | % Subcaption package is also available in the sty folder you can use that by 109 | % uncommenting the following line 110 | % This is for people stuck with older versions of texlive 111 | %\usepackage{sty/caption/subcaption} 112 | \usepackage{subcaption} 113 | 114 | % ********************************** Tables ************************************ 115 | \usepackage{booktabs} % For professional looking tables 116 | \usepackage{multirow} 117 | 118 | %\usepackage{multicol} 119 | %\usepackage{longtable} 120 | %\usepackage{tabularx} 121 | 122 | % ************************ Formatting / Footnote ******************************* 123 | 124 | % Don't break enumeration (etc.) across pages in an ugly manner (default 10000) 125 | %\clubpenalty=500 126 | %\widowpenalty=500 127 | 128 | %\usepackage[perpage]{footmisc} %Range of footnote options 129 | 130 | 131 | % *************************** Bibliography and References ******************** 132 | 133 | \usepackage{cleveref} %Referencing without need to explicitly state fig /table 134 | 135 | % Add `custombib' in the document class option to use this section 136 | \ifuseCustomBib 137 | \RequirePackage[square, sort, numbers, authoryear]{natbib} % CustomBib 138 | 139 | % If you would like to use biblatex for your reference management, as opposed to 140 | % the default `natbibpackage` pass the option `custombib` in the document 141 | % class. Comment out the previous line to make sure you don't load the natbib 142 | % package. Uncomment the following lines and specify the location of 143 | % references.bib file. Do not omit the .bib extension from the filename. 144 | 145 | %\RequirePackage[backend=biber, style=numeric-comp, citestyle=numeric, sorting=nty, natbib=true]{biblatex} 146 | %\addbibresource{References/references} 147 | 148 | \fi 149 | 150 | % changes the default name `Bibliography` -> `References' 151 | \renewcommand{\bibname}{References} 152 | 153 | % ***************************** Better enumeration **************************** 154 | \usepackage{enumitem} 155 | 156 | % ****************************************************************************** 157 | % ************************* User Defined Commands ****************************** 158 | % ****************************************************************************** 159 | 160 | % *********** To change the name of Table of Contents / LOF and LOT ************ 161 | 162 | %\renewcommand{\contentsname}{My Table of Contents} 163 | %\renewcommand{\listfigurename}{My List of Figures} 164 | %\renewcommand{\listtablename}{My List of Tables} 165 | 166 | % ********************** TOC depth and numbering depth ************************* 167 | 168 | \setcounter{secnumdepth}{2} 169 | \setcounter{tocdepth}{2} 170 | 171 | 172 | % ******************************* Nomenclature ********************************* 173 | 174 | % To change the name of the Nomenclature section, uncomment the following line 175 | 176 | %\renewcommand{\nomname}{Symbols} 177 | 178 | 179 | % ********************************* Appendix *********************************** 180 | 181 | % The default value of both \appendixtocname and \appendixpagename is 182 | % `Appendices'.These names can all be changed via: 183 | 184 | %\renewcommand{\appendixtocname}{List of appendices} 185 | %\renewcommand{\appendixname}{Appndx} 186 | 187 | % ******************************* Publications ********************************* 188 | 189 | % To change the name of the Publications section, uncomment the following line 190 | %\renewcommand{\pubname}{List of Publications} 191 | 192 | % ********************************* Layout ************************************* 193 | % \usepackage{layout} 194 | % \makeatletter 195 | % \renewcommand*{\lay@value}[2]{% 196 | % \strip@pt\dimexpr0.351459\dimexpr\csname#2\endcsname\relax\relax mm% 197 | % } 198 | % \makeatother 199 | 200 | % ************************** Placeholder Text ********************************** 201 | \usepackage{lipsum} 202 | \usepackage[math]{blindtext} 203 | 204 | % *************************** Check Page layout ******************************** 205 | % NOTE: Uncomment this package to draw a horizontal and a vertical ruler on the 206 | % page at absolute position, so that you can check the page layout dimensions. 207 | % Comment out this package to create a clean PDF file. 208 | %\usepackage{fgruler} 209 | 210 | % *************************** Graphics and figures ***************************** 211 | % Specify one or several paths in which to search for figures. 212 | % Don't miss the last "/". 213 | \graphicspath{{Figures/}{Figures/Chapter1/}{Figures/Chapter2/}} 214 | 215 | % ****************************************************************************** 216 | % ************************ Thesis Information & Meta-data ********************** 217 | % ****************************************************************************** 218 | 219 | % Use \texorpdfstring for PDF metadata-friendly title. Usage: 220 | %\texorpdfstring{LaTeX_Version}{PDF Version (non-latex)} eg., 221 | %\texorpdfstring{$\sigma$}{sigma} 222 | 223 | %% The title of the thesis 224 | \title{A Discussion on Higher Education Development in Hong Kong} 225 | \titlezh{論香港高等教育的發展} 226 | % \shorttitle{A Discussion on Higher Education Development in HK} 227 | 228 | %% The full name of the author 229 | \author{Chan Tai Man} 230 | \authorzh{陳大文} 231 | 232 | %% University 233 | \university{City University of Hong Kong} 234 | \universityzh{香港城市大學} 235 | \universityabbr{CityU} 236 | % Joint PhD Programme 237 | % \partneruniversity{University of Science and Technology of China} 238 | 239 | %% Department 240 | \dept{Department of Public Policy} 241 | \deptzh{公共政策學系} 242 | 243 | %% Full title of the Degree 244 | \degreetitle{Doctor of Philosophy} % Master/Doctor of Philosophy as appropriate 245 | \degreetitlezh{哲學博士學位} % 哲學碩士/博士學位 as appropriate 246 | \degreetitleabbr{PhD} % MPhil or PhD as appropriate 247 | 248 | %% Submission date 249 | % Default is set as {\monthname[\the\month]\space\the\year} 250 | \degreedate{July 2021} 251 | \degreedatezh{二零二一年七月} 252 | 253 | %% Meta information will appear in the PDF meta-information 254 | \subject{LaTeX} \keywords{{LaTeX} {PhD Thesis} {Engineering}} 255 | 256 | % ******************************** Front Matter ******************************** 257 | \begin{document} 258 | 259 | \frontmatter 260 | 261 | % The thesis should contain the following parts (a-h) in the order shown: 262 | % (a) Title page, containing the following information in both Chinese and English 263 | \maketitle 264 | 265 | % (Optional) dedication page, not mentioned in SGS theses requirements 266 | %\include{Front/dedication} 267 | 268 | % (b) The abstract of contents 269 | \include{Front/abstract} 270 | 271 | % (c) Information on Qualifying Panel and Examination Panel 272 | \include{Front/panel} 273 | 274 | % (d) Acknowledgment, if any 275 | \include{Front/acknowledgement} 276 | 277 | % (e) The table of contents and, where appropriate, a list of plates, tables, 278 | % figures, symbols or other abbreviations 279 | % *********************** Adding TOC and List of Figures *********************** 280 | 281 | \tableofcontents 282 | 283 | \listoffigures 284 | 285 | \listoftables 286 | 287 | % \printnomenclature[space] space can be set as 2em between symbol and description 288 | %\printnomenclature[3em] 289 | 290 | % \printnomenclature 291 | 292 | % (f) The general text 293 | % ******************************** Main Matter ********************************* 294 | \mainmatter 295 | \include{Chapters/chapter1} 296 | 297 | \include{Chapters/chapter2} 298 | 299 | % ********************************** Back Matter ******************************* 300 | % Backmatter should be commented out, if you are using appendices after References 301 | % \backmatter 302 | 303 | % (g) Bibliography 304 | % ********************************** Bibliography ****************************** 305 | \begin{spacing}{0.9} 306 | 307 | % To use the conventional natbib style referencing 308 | % Bibliography style previews: http://nodonn.tipido.net/bibstyle.php 309 | % Reference styles: http://sites.stat.psu.edu/~surajit/present/bib.htm 310 | \nocite{*} 311 | \bibliographystyle{apalike} 312 | % \bibliographystyle{ieeetran} % not IEEEtran 313 | % \bibliographystyle{unsrt} % Use for unsorted references 314 | % \bibliographystyle{plainnat} % use this to have URLs listed in References 315 | \cleardoublepage 316 | \bibliography{References/references} % Path to your References.bib file 317 | 318 | 319 | % If you would like to use BibLaTeX for your references, pass `custombib' as 320 | % an option in the document class. The location of 'reference.bib' should be 321 | % specified in the preamble.tex file in the custombib section. 322 | % Comment out the lines related to natbib above and uncomment the following line. 323 | 324 | %\printbibliography[heading=bibintoc, title={References}] 325 | 326 | \end{spacing} 327 | 328 | % (h) Appendices and other addenda, if any. 329 | % ********************************** Appendices ******************************** 330 | 331 | \begin{appendices} % Using appendices environment for more functunality 332 | %\renewcommand\chaptername{Appendix} 333 | \include{Chapters/appendix1} 334 | 335 | \end{appendices} 336 | 337 | % List of publications 338 | \include{Chapters/publications} 339 | 340 | \end{document} 341 | --------------------------------------------------------------------------------