-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
121 lines (92 loc) · 2.49 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
\documentclass[sunil1,ChapterTOCs]{sunil}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{subfig}
\usepackage{makeidx}
%\usepackage[breaklinks]{hyperref}
\usepackage[pdfborder={0 0 0}]{hyperref}
\usepackage{multirow}
\usepackage{multicol}
\usepackage{tabulary}
\usepackage{listings}
\usepackage{wrapfig}
\frenchspacing
\tolerance=5000
% Thanks to Wes Bethel (LBL) for providing us with the template for this document
\usepackage{url}
\usepackage[sectionbib]{bibunits}
\usepackage{ifthen}
\newboolean{useColorImgs}
%\setboolean{useColorImgs}{false}
\setboolean{useColorImgs}{true}
\newcommand{\myIfColor}{\ifthenelse{\boolean{useColorImgs}}}
%\makeatletter
%\makeatother
\makeindex
%\newcommand{\fix}[1]{{\textbf{\textit{#1}}}}
%\newcommand{\todo}[1]{{\textbf{\textit{#1}}}}
%\newcommand{\fix}[1]{\textcolor{red}{\textbf{\textit{#1}}}}
%\newcommand{\todo}[1]{\textcolor{red}{\textbf{\textit{#1}}}}
% todo: adds a note in the margin
\usepackage{xcolor}
\newcommand{\todo}[1]{
\addcontentsline{tdo}{todo}{\protect{#1}}
\marginpar{\colorbox{white!90!black}{\textcolor{red}{
\parbox{2.1cm}{\scriptsize\bf\raggedright #1}
}}}
}
\newcommand{\fix}[1]{
\addcontentsline{tdo}{todo}{\protect{#1}}
\marginpar{\colorbox{white!90!black}{\textcolor{red}{
\parbox{2.1cm}{\scriptsize\bf\raggedright #1}
}}}
}
\newenvironment{tightItemize}{
\begin{itemize}
\setlength{\itemsep}{1pt}
\setlength{\parskip}{0pt}
\setlength{\parsep}{0pt}
}{\end{itemize}
}
\newenvironment{tightEnumerate}{
\begin{enumerate}
\setlength{\itemsep}{1pt}
\setlength{\parskip}{0pt}
\setlength{\parsep}{0pt}
}{\end{enumerate}
}
\include{hyphenation-list}
\include{common-macros}
\begin{document}
\bibliographyunit[\chapter]
\defaultbibliographystyle{plain}
\title{High Performance Parallel I/O}
\author{Prabhat, Quincey Koziol}
%\maketitle
%\frontmatter
%\include{frontmatter/Foreword}
%\include{frontmatter/preface}
%\include{frontmatter/contributors}
%\listoffigures
%\listoftables
%\tableofcontents
%\include{acknowledgments}
\mainmatter
%\include{Chapters/symbollist}
\setcounter{page}{1}
%% part 0
%\part{Title of Part/Section Goes Here}
% chapter 1 - introduction.
%% part III
%\part{I/O Libraries}
%\label{part:IOLibraries}
\begin{bibunit}[plain]
\include{Chapters/part3-ch6-adios/part3-ch6-adios}
\end{bibunit}
\begin{bibunit}[plain]
\include{Chapters/part4-ch5-s3d/part4-ch5-s3d}
\end{bibunit}
\clearpage
\printindex
\end{document}