-
Notifications
You must be signed in to change notification settings - Fork 0
/
book-template.tex
55 lines (44 loc) · 1.01 KB
/
book-template.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
%!TEX TS-program = xelatex
%% vim: set fenc=utf-8 ts=1 sw=0 sts=0 sr et si tw=0 fdm=marker fmr=<<<,>>>:
%%
%% Basic LaTeX book template
%% by Andy3153
%%
% <<< Basic document settings
\documentclass[
%draft % Draft mode
12pt, % Font size
a4paper % Paper type
]{book}
% >>>
% <<< Packages
%\usepackage{mathtools} % Math utils
%\usepackage{graphicx} % Graphics support
%\usepackage{multicol} % Multi-column environment
\usepackage{my_style} % My custom stylings, keep last!
%\LoadPackagesForTables % Load packages used for tables
% >>>
% <<< Other settings
% <<< Image location
%\graphicspath{ {./img/} }
% >>>
% >>>
% <<< Custom commands
\renewcommand{\HeaderLEText}{Header Text 1}
\renewcommand{\HeaderROText}{Header Text 2}
% >>>
\begin{document}
% <<< Title page
\begin{titlepage}
\centering\vspace*{6cm}
{ \Huge Title\par }
\vspace{1.5cm}
by
{ \Large\textsc{Author}\par }
\end{titlepage}
% >>>
\CustomToC % Create custom ToC
% <<< Document content
Book
% >>>
\end{document}