-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path004-chapter0-example.tex
34 lines (23 loc) · 1 KB
/
004-chapter0-example.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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% CHAPTER %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter{Example Chapter}%
\label{chap:chap1} % this to reference the chapter later if you want
%\markboth{\MakeUppercase{Example Chapter}}{}% what is printed on top(header)
\addcontentsline{toc}{chapter}{some thing added to contents}% add to the contents page
%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SECTION %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Section One}
\label{section:chap1:sec1}
% this to reference the section later if you want
example reference of chapter (myself)
\ref{chap:chap1}
% obviously files names can't contain space
\input{includes/example/images-ex} % include with out .tex
\input{includes/example/list-of-items} % include with out .tex
\input{includes/example/equ}
\input{includes/example/table}
\input{includes/example/personal-command}
\input{includes/example/code-listing}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%