forked from ATLAS-Titan/CSW-BigScience
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
158 lines (124 loc) · 5.2 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
%- LaTeX source file
%- main.tex ~~
%
% This is the "main" document file, which means it is the one that will
% \include all the other source files.
%
% ~~ last updated 25 Sep 2018
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% This is a general template file for the LaTeX package SVJour3
% for Springer journals. Springer Heidelberg 2010/09/16
%
% Copy it to a new file with a new name and use it as the basis
% for your article. Delete % signs as needed.
%
% This template includes a few options for different layouts and
% content for various journals. Please consult a previous issue of
% your journal as needed.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
\RequirePackage{fix-cm}
%
%\documentclass{svjour3} % onecolumn (standard format)
%\documentclass[smallcondensed]{svjour3} % onecolumn (ditto)
\documentclass[smallextended]{svjour3} % onecolumn (second format)
%\documentclass[twocolumn]{svjour3} % twocolumn
\input{include}
\begin{document}
\title{Production Workload Management on Leadership Class Facilities\thanks{Grants or other notes about the article that should go on the front page should be
placed here. General acknowledgments should be placed at the end of the article.}
}
\subtitle{Do you have a subtitle?\\ If so, write it here}
%\titlerunning{Short form of title} % if too long for running head
\author{First Author \and
Second Author %etc.
}
%\authorrunning{Short form of author list} % if too long for running head
\institute{F. Author \at
first address \\
Tel.: +123-45-678910\\
Fax: +123-45-678910\\
\email{[email protected]} % \\
% \emph{Present address:} of F. Author % if needed
\and
S. Author \at
second address
}
\date{Received: date / Accepted: date}
% The correct dates will be entered by the editor
\maketitle
% ---------------------------------------------------------------------------
% ABSTRACT
% ---------------------------------------------------------------------------
\begin{abstract}
Insert your abstract here. Include keywords, PACS and mathematical
subject classification numbers as needed.
\keywords{First keyword \and Second keyword \and More}
% \PACS{PACS code1 \and PACS code2 \and more}
% \subclass{MSC code1 \and MSC code2 \and more}
\end{abstract}
% ---------------------------------------------------------------------------
% I - INTRODUCTION
% ---------------------------------------------------------------------------
\section{Introduction}
\label{sec:intro}
\input{introduction}
% ---------------------------------------------------------------------------
% II - PanDA Workload Management System: Software System Overview
% ---------------------------------------------------------------------------
\section{PanDA Workload Management System: Software System Overview}
\label{sec:overview}
\input{overview}
% ---------------------------------------------------------------------------
% III - Deploying PanDA Workload Management System on Titan
% ---------------------------------------------------------------------------
\section{Deploying PanDA Workload Management System on Titan}
\label{sec:deploying}
\input{deploying}
% ---------------------------------------------------------------------------
% IV - Performance Characterization on Titan
% ---------------------------------------------------------------------------
\section{Performance Characterization on Titan}
\label{sec:performance}
\input{performance}
% ---------------------------------------------------------------------------
% V - Workload Management Beyond HEP
% ---------------------------------------------------------------------------
\section{Workload Management Beyond HEP}
\label{sec:beyond_hep}
\input{beyond_hep}
%%%
%% For one-column wide figures use
%\begin{figure}
%% Use the relevant command to insert your figure file.
%% For example, with the graphicx package use
% \includegraphics{images/example.eps}
%% figure caption is below the figure
%\caption{Please write your figure caption here}
%\label{fig:1} % Give a unique label
%\end{figure}
%%
%% For two-column wide figures use
%\begin{figure*}
%% Use the relevant command to insert your figure file.
%% For example, with the graphicx package use
% \includegraphics[width=0.75\textwidth]{images/example.eps}
%% figure caption is below the figure
%\caption{Please write your figure caption here}
%\label{fig:2} % Give a unique label
%\end{figure*}
%%
%
\begin{acknowledgements}
If you'd like to thank anyone, place your comments here.
\end{acknowledgements}
%- NOTE: I (Sean) chose the bibliography style arbitrarily.
%\bibliographystyle{spbasic} % basic style, author-year citations
%\bibliographystyle{spmpsci} % mathematics and physical sciences
\bibliographystyle{spphys} % APS-like style for physics
\bibliography{bibliography}
%- That's all, folks!
\end{document}
%- vim:set syntax=tex: