-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
370 lines (273 loc) · 19.6 KB
/
main.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Masters/Doctoral Thesis
% LaTeX Template
% Version 1.43 (17/5/14)
%
% This template has been downloaded from:
% http://www.LaTeXTemplates.com
%
% Original authors:
% Steven Gunn
% http://users.ecs.soton.ac.uk/srg/softwaretools/document/templates/
% and
% Sunil Patel
% http://www.sunilpatel.co.uk/thesis-template/
%
% License:
% CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/)
%
% Note:
% Make sure to edit document variables in the Thesis.cls file
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%----------------------------------------------------------------------------------------
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
%----------------------------------------------------------------------------------------
\documentclass[12pt, oneside]{Thesis} % The default font size, sides to print and document class
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%--------------------PACKAGES------------------------------------------------------------
\usepackage[backend=biber,
citestyle=authoryear,
bibstyle=authoryear,
uniquelist=false,
uniquename=false,
maxcitenames=1,
mincitenames=1,
url=false]{biblatex}
%For Square Brackets around citations
%http://tex.stackexchange.com/questions/16765/biblatex-author-year-square-brackets
%http://ctan.mirrorcatalogs.com/macros/latex/contrib/biblatex/doc/biblatex.pdf - for info on all the above options. File is also stored in the Glasgow Research folder
\makeatletter
\newrobustcmd*{\parentexttrack}[1]{%
\begingroup
\blx@blxinit
\blx@setsfcodes
\blx@bibopenparen#1\blx@bibcloseparen
\endgroup}
\AtEveryCite{%
\let\parentext=\parentexttrack%
\let\bibopenparen=\bibopenbracket%
\let\bibcloseparen=\bibclosebracket}
\makeatother
%------------------------------------------------------
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption} % For Subfigures - not sure if I have used this anywhere
\usepackage{parskip} %Adds extra space between paragraphs
\usepackage{listings} %This is for the VBA code in the appendices
\usepackage{amsmath} %For aligning all equations on the equal to sign
\usepackage{pdfpages} %for including pdf files or individual pages of pdf files
\usepackage{textcomp}
\usepackage{easy-todo} %Adds todos to the document. Use [disable] as package option in final verion. Also see \listoftodos below.
%\usepackage[pagewise]{lineno} %To help Donny review. Remove for final version
%\linenumbers
%--------------Table customisations------------------------------------------------------
% The following allows creation of columns of defined width within tables
%http://tex.stackexchange.com/questions/12703/how-to-create-fixed-width-table-columns-with-text-raggedright-centered-raggedlef
\usepackage{array}
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
% The next few lines are for customising tables
\usepackage[justification=justified,singlelinecheck=false]{caption}
\usepackage{rotating} % for landscape tables use begin{sidewaystable}
%----------------Figures and hyperlinks----------------------------------------------------
%\graphicspath{Figures/} % Specifies the directory where pictures are stored
%\hypersetup{urlcolor=black, colorlinks=true} % Colors hyperlinks in blue - change to black if annoying
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%----------------------------------------------------------------------------------------
%Bibligraphy file from Zotero
\addbibresource{zot.bib}
%----------------------------------------------------------------------------------------
\title{\ttitle} % Defines the thesis title - don't touch this
%----------------------------------------------------------------------------------------
% BEGIN DOCUMENT -- BEGIN DOCUMENT -- BEGIN DOCUMENT -- BEGIN DOCUMENT -- BEGIN DOCUMENT
%----------------------------------------------------------------------------------------
\begin{document}
\frontmatter % Use roman page numbering style (i, ii, iii, iv...) for the pre-content pages
\setstretch{1.5} % Line spacing of 1.5 although I have set \doublespace set somewhere else - not sure where
% Define the page headers using the FancyHdr package and set up for one-sided printing
\fancyhead{} % Clears all page headers and footers
\rhead{\thepage} % Sets the right side header to show the page number
\lhead{} % Clears the left side page header
\pagestyle{fancy} % Finally, use the "fancy" page style to implement the FancyHdr headers
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}} % New command to make the lines in the title page
% PDF meta-data
\hypersetup{pdftitle={\ttitle}}
\hypersetup{pdfsubject=\subjectname}
\hypersetup{pdfauthor=\authornames}
\hypersetup{pdfkeywords=\keywordnames}
%----------------------------------------------------------------------------------------
% TITLE PAGE - Reformatted to Univ of Glasgow guidelines
%----------------------------------------------------------------------------------------
\begin{titlepage}
\begin{center}
\HRule \\[0.4cm] % Horizontal line
{\huge \bfseries \ttitle}\\[0.4cm] % Thesis title
\HRule \\[1.5cm] % Horizontal line
\begin{minipage}{1\textwidth}
\begin{center} \large
\setstretch{1.3}
\textbf{by} \\
\vspace{1.1cm}
\textbf{\authornames}\\
\textbf{M.B.B.S., M.R.C.S., Dip.N.B.}\\
\vspace{1.1cm}
\normalsize
\textbf{SUBMITTED IN FULFILMENT OF THE REQUIREMENTS}\\
\textbf{FOR THE DEGREE OF DOCTOR OF MEDICINE}\\
\vspace{1.1cm}
\textbf{to}\\
\vspace{1.1cm}
\textbf{THE UNIVERSITY OF GLASGOW}\\
\vspace{1.1cm}
\textbf{BASED ON RESEARCH CONDUCTED IN THE} \\
\textbf{UNIVERSITY DEPARTMENT OF SURGERY,}\\
\textbf{GLASGOW ROYAL INFIRMARY}\\
\textbf{AUGUST 2015}\\
\vspace{1.1cm}
\textcopyright \textbf{Vishnu V Chandrabalan 2015}
\end{center}
\end{minipage}
\vfill
\end{center}
\end{titlepage}
%----------------------------------------------------------------------------------------
% QUOTATION PAGE
%----------------------------------------------------------------------------------------
\pagestyle{empty} % No headers or footers for the following pages
\dedicatory{Pebbles on the beach.}%Never again.
\clearpage % Start a new page
%----------------------------------------------------------------------------------------
% DEDICATION
%----------------------------------------------------------------------------------------
\pagestyle{empty} % Page style needs to be empty for this page
\dedicatory{Dedicated to LGCPVAIA.} % Dedication text
\addtocontents{toc}{\vspace{2em}} % Add a gap in the Contents, for aesthetics
%----------------------------------------------------------------------------------------
% ABSTRACT PAGE
%----------------------------------------------------------------------------------------
\addtotoc{Abstract} % Add the "Abstract" page entry to the Contents
\abstract{\addtocontents{toc}{\vspace{1em}} % Add a gap in the Contents, for aesthetics
Pancreaticoduodenectomy with or without adjuvant chemotherapy remains the only modality of possible cure in patients with cancer involving the head of the pancreas and the periampullary region.
While mortality rates after pancreaticoduodenectomy have improved considerably over the course of the last century, morbidity remains high.
Patient selection is of paramount importance in ensuring that major surgery is offered to individuals who will most benefit from a pancreaticoduodenectomy.
Moreover, identifying preoperative risk factors provides potential targets for prehabilitation and optimisation of the patient's physiology before undertaking surgery.
In addition to this, early identification of patients who are likely to develop postoperative complications allows for better allocation of critical care resources and more aggressive management high risk patients.
Cardiopulmonary exercise testing is becoming an increasingly popular tool in the preoperative risk assessment of the surgical patient.
However, very little work has been done to investigate the role of cardiopulmonary exercise testing in predicting complications after pancreaticoduodenectomy.
The impact of jaundice, systemic inflammation and other preoperative clinicopathological characteristics on cardiopulmonary exercise physiology has not been studied in detail before in this cohort of patients.
%The overall aim of the thesis was to evaluate the inter-relationship between cardiopulmonary exercise testing, perioperative clinico-pathological characteristics and postoperative outcomes as well as long-term survival in patients undergoing pancreaticoduodenectomy.
The overall aim of the thesis was to examine the relationships between preoperative clinico-pathological characteristics including cardiopulmonary exercise physiology, obstructive jaundice, body composition and systemic inflammation and complications and the post-surgical systemic inflammatory response in patients undergoing pancreaticoduodenectomy.
\textbf{Chapter \ref{ch_intro}} reviews the existing literature on preoperative cardiopulmonary exercise testing, the impact of obstructive jaundice, perioperative systemic inflammation and the importance of body composition in determining outcomes in patients undergoing major surgery with particular reference to pancreatic surgery.
\clearpage
\textbf{Chapter \ref{ch_cpet_outcomes}} reports on the role of cardiopulmonary exercise testing in predicting postoperative complications after pancreaticoduodenectomy.
The results demonstrate that patients with $\dot{V}_{O_2}$AT less than 10 ml/kg/min are more likely to develop a postoperative pancreatic fistula, stay longer in hospital and less likely to receive adjuvant therapy.
These results emphasise the importance of aerobic fitness to recover from the operative stress of major surgery without significant morbidity.
Cardiopulmonary exercise testing may prove useful in selecting patients for intensive prehabilitation programmes as well as for other optimisation measures to prepare them for major surgery.
\textbf{Chapter \ref{ch_cpet_jaundice}} evaluates the relationship between cardiopulmonary exercise physiology and other clinicopathological characteristics of the patient.
A detailed analysis of cardiopulmonary exercise test parameters in jaundiced versus non-jaundiced patients demonstrates that obstructive jaundice does not impair cardiopulmonary exercise physiology.
This further supports emerging evidence in contemporary literature that jaundiced patients can proceed directly to surgery without preoperative biliary drainage.
The results of this study also show an interesting inverse relationship between body mass index and anaerobic threshold which is analysed in more detail in Chapter \ref{ch_bodycomp}.
\textbf{Chapter \ref{ch_bodycomp}} examines the relationship between preoperative cardiopulmonary exercise physiology and body composition in depth.
All parameters measured at cardiopulmonary exercise test are compared against body composition and body mass index.
The results of this chapter report that the current method of reporting $\dot{V}_{O_2}$, both at peak exercise and anaerobic threshold, is biased against obese subjects and advises caution in the interpretation of cardiopulmonary exercise test results in patients with a high BMI.
This is particularly important as current evidence in literature suggests that postoperative outcomes in obese subjects are comparable to non-obese subjects while cardiopulmonary exercise test results are also abnormally low in this very same cohort of patients.
\clearpage
\textbf{Chapter \ref{ch_pre_post_sirs}} analyses the relationship between preoperative clinico-pathological characteristics including systemic inflammation and the magnitude of the postoperative systemic inflammatory response.
%The results of this chapter suggest that both preoperative systemic inflammation and obstructive jaundice have significant impact on postoperative inflammation.
Obstructive jaundice appears to have an immunosuppressive effect while elevated preoperative CRP and hypoalbuminemia appear to have opposite effects with hypoalbuminemia resulting in a lower response while elevated CRP in the absence of hypoalbuminemia resulted in a greater postoperative systemic inflammatory response.
%\textbf{Chapter \ref{cf_survival}} analyses the relationship between preoperative comorbidity including cardiopulmonary exercise test and long-term survival in patients with pancreatic ductal adenocarcinoma undergoing pancreaticoduodenectomy. The results of this chapter suggest that cardiopulmonary exercise testing parameters are not useful in predicting long-term survival. However, a composite score of preoperative comorbidity as measured by the POSSUM Physiology score appears to predict long-term survival.
\textbf{Chapter \ref{ch_crp_comp}} evaluates the role of the early postoperative systemic inflammatory response in predicting complications after pancreaticoduodenectomy and aims to establish clinically relevant thresholds for C-Reactive Protein for the prediction of complications.
The results of this chapter demonstrate that CRP levels as early as the second postoperative day are associated with complications.
While post-operative CRP was useful in the prediction of infective complications, this was the case only in patients who did not develop a post-operative pancreatic fistula.
The predictive ability of inflammatory markers for infectious complications was blunted in patients with a pancreatic fistula.
%In these patients, outcome was largely determined by the severity of the pancreatic fistula.
\textbf{Chapter \ref{ch_discussion}} summarises the findings of this thesis, their place in current literature and future directions.
The results of this thesis add to the current knowledge regarding the complex pathophysiological abnormalities in patients undergoing pancreaticoduodenectomy, with specific emphasis on the interaction between cardiopulmonary exercise physiology, obstructive jaundice, systemic inflammation and postoperative outcomes.
%The results establish the value of cardiopulmonary exercise test while refuting a commonly held belief that obstructive jaundice significantly affected cardiovascular function.
%The current work paves the way for further study into evaluating the role of cardiopulmonary exercise test in prehabilitation regimens as well as the incorporation of preoperative $\dot{V}_{O_2}$AT and postoperative CRP into existing models for predicting complications after pancreaticoduodenectomy.
%These results will help improve patient selection and preparation for pancreaticoduodenectomy and ultimately improve the short and long-term outcomes after this morbid yet necessary operation.
The work presented in this thesis lays the foundations for further studies aimed at improving outcomes after pancreaticoduodenectomy through the development of individualised, goal-directed therapies that are initiated well before this morbid yet necessary operation is performed.
\clearpage
%----------------------------------------------------------------------------------------
% LIST OF CONTENTS/FIGURES/TABLES PAGES
%----------------------------------------------------------------------------------------
\pagestyle{fancy} % The page style headers have been "empty" all this time, now use the "fancy" headers as defined before to bring them back
\lhead{\emph{Contents}} % Set the left side page header to "Contents"
\tableofcontents % Write out the Table of Contents
\clearpage
\lhead{\emph{List of Figures}} % Set the left side page header to "List of Figures"
\listoffigures % Write out the List of Figures
\clearpage
\lhead{\emph{List of Tables}} % Set the left side page header to "List of Tables"
\listoftables % Write out the List of Tables
\clearpage
%----------------------------------------------------------------------------------------
% ACKNOWLEDGEMENTS
%----------------------------------------------------------------------------------------
\acknowledgements{\addtocontents{toc}{\vspace{1em}} % Add a gap in the Contents, for aesthetics
I would like to thank the following people, for their help, advice and encouragement:
Professor Donald C McMillan,\\
University Department of Surgery, Glasgow Royal Infirmary
Professor Paul Horgan,\\
University Department of Surgery, Glasgow Royal Infirmary
%Nurses and Allied Health Professionals,\\
%Surgical High Dependency Unit, Glasgow Royal Infirmary
%Mr. Euan J Dickson,\\
%West of Scotland Pancreatic Unit, Glasgow Royal Infirmary
}
\clearpage % Start a new page
%----------------------------------------------------------------------------------------
% DECLARATION PAGE
% Your institution may give you a different text to place here
%----------------------------------------------------------------------------------------
\Declaration{
\addtocontents{toc}{\vspace{1em}} % Add a gap in the Contents, for aesthetics
I declare that the work presented in this thesis was carried out solely by me, as a clinical research fellow in the University Dept of Surgery, Royal Infirmary, Glasgow, except where indicated below:
Measurement of biochemical and haematological parameters was performed by the hospital laboratory service.
Cardiopulmonary exercise tests were performed by the Department of Respiratory Medicine at the Glasgow Royal Infirmary.
Statistical analysis was performed with the assistance of Prof Donald C McMillan, Academic Unit of Surgery, Royal Infirmary, Glasgow.
In addition, no work referred to in this thesis has been submitted in support of an application for another degree or qualification in this or any other university.
}
%----------------------------------------------------------------------------------------
% ABBREVIATIONS
%----------------------------------------------------------------------------------------
\input{Chapters/Abbreviations}
%----------------------------------------------------------------------------------------
% THESIS CONTENT - CHAPTERS
%----------------------------------------------------------------------------------------
\mainmatter % Begin numeric (1,2,3...) page numbering
\pagestyle{fancy} % Return the page headers back to the "fancy" style
% Include the chapters of the thesis as separate files from the Chapters folder
%\todo{Abbreviations list-done}
%\todo{All tables must have legends, units-nearly}
%\todo{All values and ranges need defining?}
%\todo{Chapter 5-6 - Reduce to more understandable key issues. Several irrelevant tables should be removed.}
%\input{response_letter} %To allow bibliography in response
\input{Chapters/Introduction} %1
\input{Chapters/CPET_Outcomes} %2
\input{Chapters/CPET_Jaundice} %3
\input{Chapters/BodyComp} %4
\input{Chapters/Pre_Post_SIRS} %5
\input{Chapters/CRP_Complications} %6
\input{Chapters/Discussion} %7
%\input{Chapters/CPET_Survival}
%----------------------------------------------------------------------------------------
% THESIS CONTENT - APPENDICES
%----------------------------------------------------------------------------------------
\addtocontents{toc}{\vspace{2em}} % Add a gap in the Contents, for aesthetics
\appendix % Cue to tell LaTeX that the following 'chapters' are Appendices
\input{Appendices/AppendixAccessDatabase}
\input{Appendices/AppendixExcelMacros}
\input{Appendices/AppendixCPETRawData}
\addtocontents{toc}{\vspace{2em}} % Add a gap in the Contents, for aesthetics
\backmatter
%----------------------------------------------------------------------------------------
% BIBLIOGRAPHY
%----------------------------------------------------------------------------------------
\label{Bibliography}
\lhead{\emph{Bibliography}} % Change the page header to say "Bibliography"
%\bibliographystyle{unsrtnat} % Use the "unsrtnat" BibTeX style for formatting the Bibliography
\printbibliography
%\clearpage
%\listoftodos
\end{document}