forked from john-b-schneider/uFDTD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sisyphus.tex
118 lines (94 loc) · 2.41 KB
/
sisyphus.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[twoside,12pt]{book}
%\documentclass[12pt]{report}
\topmargin -.25in
%\headheight 0pt
%\headsep 0pt
\textwidth 6.5in
\textheight 9.0in
\oddsidemargin 0in
\evensidemargin 0in
\raggedbottom
\usepackage{times} % For making nicer PDF files:
\usepackage[intlimits]{amsmath} % Good math stuff
\usepackage{epsfig}
\usepackage{url}
% Add hyperlinks crossrefs inside pdf book (e.g. table of contents,
% refs to figures and equations)
\usepackage[pdftex,unicode,colorlinks, citecolor=blue,%
filecolor=black, linkcolor=blue, urlcolor=black]{hyperref}
% The ref to the figure and table will point to the top of the figure
% (not to the caption)
\usepackage[figure,table]{hypcap}
\usepackage{makeidx}
\usepackage{multirow}
\usepackage{fancyvrb}
\usepackage{listings}
\pagestyle{headings}
\input{commands}
%\includeonly{%
%numerical-issues,%
%em-review,%
%fdtd-intro,%
%fdtd-improved-code%
%fdtd-dimensionless,%
%fdtd-abc,%
%fdtd-dispersion,
%fdtd-multidimensional,
%fdtd-3d,
%fdtd-dispersive-material,%
%fdtd-pml,%
%fdtd-acoustics,%
%fdtd-near-to-far,%
%parallel-processing,%
%mom-intro,%
%appendices,%
%postscript-primer%
%}
\makeindex
\begin{document}
\lstset{language=C,
moredelim=[is][\bfseries]{/*b*/}{/*n*/}, % /*b*/=bold, /*n*/='normal'
numbers=left,
numberstyle=\tiny,
% stringstyle=\ttfamily,
% columns=fixed,
basicstyle=\ttfamily\small,
keywordstyle=\ttfamily\small,
escapeinside={/*@}{@*/},
showstringspaces=false
}
\renewcommand{\thepage}{\roman{page}}
\title{Understanding the Finite-Difference Time-Domain Method}
\author{John B. Schneider}
\date{\today}
\maketitle
\tableofcontents
\newpage
%\renewcommand{\thepage}{\arabic{chapter}.\arabic{page}}
\renewcommand{\thepage}{\arabic{page}}
\include{numerical-issues}
\include{em-review}
\include{fdtd-intro}
\include{fdtd-improved-code}
\include{fdtd-dimensionless}
\include{fdtd-abc}
\include{fdtd-dispersion}
\include{fdtd-multidimensional}
\include{fdtd-3d}
\include{fdtd-dispersive-material}
\include{fdtd-pml}
\include{fdtd-acoustics}
\include{parallel-processing}
\include{fdtd-near-to-far}
%\include{mom-intro}
\appendix
\renewcommand{\thepage}{\Alph{chapter}.\arabic{page}}
\include{appendices}
\include{postscript-primer}
\renewcommand{\thepage}{\arabic{page}}
\cleardoublepage
\addcontentsline{toc}{chapter}{Index}
\printindex
\bibliographystyle{unsrt}
\bibliography{fdtd,this-paper}
\end{document}