-
Notifications
You must be signed in to change notification settings - Fork 2
/
thesis.tex
118 lines (118 loc) · 3.41 KB
/
thesis.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
\documentclass[b5paper,10pt,twoside,openright]{memoir}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Load preamble from separate file %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{./style/MyPhDThesis}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Author and document details %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\title{Micromechanical modelling of ductile fracture in aluminium alloys}
\author{Bjørn Håkon Frodal}
\city{Trondheim}
\country{Norway}
\date{\today}
\faculty{Engineering}
\department{Structural Engineering}
\ISBNprinted{000-00-000-0000-0}
\ISBNelectronic{000-00-000-0000-0}
\serialNumber{\the\year :0}
%%%%%%%%%%%%%%%%%%%%%%%%%
% Begin PhD Thesis here %
%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
%%%%%%%%%%%%%%%%%%%%
%%% Title page %%%
%%%%%%%%%%%%%%%%%%%%
\frontmatter
\maketitle
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Preface, abstract, and acknowledgement %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\pagestyle{plain}
\pagenumbering{roman}
%%%%%%%%%%%
% Preface %
%%%%%%%%%%%
\input{./tex/preface}
\addcontentsline{toc}{chapter}{Preface}
\cleardoublepage
%%%%%%%%%%%%
% Abstract %
%%%%%%%%%%%%
\input{./tex/abstract}
\addcontentsline{toc}{chapter}{Abstract}
\cleardoublepage
%%%%%%%%%%%%%%%%%%%%
% Acknowledgements %
%%%%%%%%%%%%%%%%%%%%
\input{./tex/acknowledgements}
\addcontentsline{toc}{chapter}{Acknowledgements}
\cleardoublepage
%%%%%%%%%%%%%%%%%%%%%
% Table of contents %
%%%%%%%%%%%%%%%%%%%%%
\tableofcontents*
\cleardoublepage
%%%%%%%%%%%%%%%%%%%%%%%%
%%%% Main document %%%%%
%%%%%%%%%%%%%%%%%%%%%%%%
\mainmatter
%%%%%%%%%%%%%%%%%%%
%%%% Synopsis %%%%%
%%%%%%%%%%%%%%%%%%%
\begingroup % Remove new page after new chapter after Synopsis
\renewcommand{\cleardoublepage}{}
\renewcommand{\clearpage}{}
\titlespacing*{\chapter}{0pt}{0pt}{0pt} % Sets spacing to zero between Synopsis and Introduction
\chapter*{{\Huge Synopsis}}
\label{Ch:synopsis}
\addcontentsline{toc}{part}{Synopsis}
%%%%%%%%%%%%%
%% Content %%
%%%%%%%%%%%%%
\titlespacing*{\chapter}{0pt}{0pt}{25pt}
\input{./tex/Introduction}
\endgroup
\input{./tex/Objectives}
\input{./tex/Method}
\input{./tex/Summary}
\input{./tex/ConclusionFurtherWork}
\cleardoublepage
%%%%%%%%%%%%%%%%
%% References %%
%%%%%%%%%%%%%%%%
\printbibliography[title=References, heading=bibliography]
\cleardoublepage
%%%%%%%%%%%%%%%%%%%
%%%% Articles %%%%%
%%%%%%%%%%%%%%%%%%%
\addcontentsline{toc}{part}{Articles}
\input{./articles/Part1}
\addcontentsline{toc}{section}{Influence of pre-compression on the ductility of AA6xxx aluminium alloys}
\cleardoublepage
\includepdf[pages=-]{./articles/Paper1.pdf}
\cleardoublepage
\input{./articles/Part2}
\addcontentsline{toc}{section}{Modelling and simulation of ductile failure in textured aluminium alloys subjected to compression-tension loading}
\cleardoublepage
\includepdf[pages=-]{./articles/Paper2.pdf}
\cleardoublepage
\input{./articles/Part3}
\addcontentsline{toc}{section}{On the effect of plastic anisotropy, strength and work hardening on the tensile ductility of aluminium alloys}
\cleardoublepage
\includepdf[pages=-]{./articles/Paper3.pdf}
\cleardoublepage
\input{./articles/Part4}
\addcontentsline{toc}{section}{The role of quench rate on the plastic flow and fracture of three aluminium alloys with different grain structure and texture}
\cleardoublepage
\includepdf[pages=-]{./articles/Paper4.pdf}
\cleardoublepage
%%%%%%%%%%%%%%%%%%%
%%%% Appendix %%%%%
%%%%%%%%%%%%%%%%%%%
\appendix
\appendixpage
\input{./Appendix/Appendix1}
\cleardoublepage
%%%%%%%%%%%%%%%%
\end{document}