-
Notifications
You must be signed in to change notification settings - Fork 0
/
book.tex
63 lines (47 loc) · 1.77 KB
/
book.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
% LaTeX source for ``Algorithms for Computer Simulation of Molecular Systems''
% Copyright (c) 2023 รังสิมันต์ เกษแก้ว (Rangsiman Ketkaew).
% License: Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)
% https://creativecommons.org/licenses/by-nc-nd/4.0/
\documentclass[a4paper,12pt,twoside,openany]{extbook}
\input{book_style}
%% Avoid create page after chapter
\let\cleardoublepage\clearpage
% \let\clearpage\relax
% Book metadata
\title{Algorithms for Computer Simulation of Molecular Systems}
\author{รังสิมันต์ เกษแก้ว}
\begin{document}
% Book front cover
\includepdf[pages=-]{cover/cover_front.pdf}
\newpage
% empty page
\pagenumbering{gobble}
\newpage
\frontmatter
\include{front_matter/cover_front_inside}
\include{front_matter/copyright}
\include{front_matter/toc}
\include{front_matter/preface}
\include{front_matter/acknowledgement}
\include{front_matter/about-this-book}
\include{front_matter/quote}
\pagestyle{fancy} % Add header from this page on
\mainmatter
\include{chapter/01} % Molecular Quantum Mechanics
\include{chapter/02} % Classical Molecular Dynamics
\include{chapter/03} % Ab Initio Molecular Dynamics
\include{chapter/04} % Software Development for Computational Chemistry
\include{chapter/05} % High-Performance Scientific Computing
\appendix
\begin{appendices}
\renewcommand{\thesection}{\arabic{section}} % remove chapter number
\fancyhead[RE,LO]{\textbf{ภาคผนวก}}
\include{appendix/ap_es} % Electronic Structure Techniques
\include{appendix/ap_cp2k} % CP2K
\include{appendix/ap_eos} % Equation of State
\end{appendices}
\backmatter
\include{back_matter/references}
\include{back_matter/index}
\include{back_matter/author_bio}
\end{document}