-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pythonmain.tex
53 lines (43 loc) · 2.03 KB
/
Pythonmain.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
%--------------------------------------------------------------------------------------------%
\documentclass[11pt]{article} % use larger type; default would be 10pt
\usepackage[utf8]{inputenc}
\usepackage{geometry} % to change the page dimensions
\geometry{a4paper}
\usepackage{graphicx}
\usepackage{booktabs} % for much better looking tables
\usepackage{array} % for better arrays (eg matrices) in maths
\usepackage{paralist} % very flexible & customisable lists (eg. enumerate/itemize, etc.)
\usepackage{verbatim} % adds environment for commenting out blocks of text & for better verbatim
\usepackage{subfig}
\usepackage{subfiles}
\usepackage{framed}
\usepackage{subfiles}
\usepackage{fancyhdr} % This should be set AFTER setting up the page geometry
\pagestyle{fancy} % options: empty , plain , fancy
\renewcommand{\headrulewidth}{0pt} % customise the layout...
\lhead{}\chead{Data Analysis with Python}\rhead{}
\lfoot{}\cfoot{\thepage}\rfoot{}
%--------------------------------------------------------------------------------------------%
\usepackage{sectsty}
%\ allsectionsfont{\sffamily\mdseries\upshape}
\usepackage[nottoc,notlof,notlot]{tocbibind} % Put the bibliography in the ToC
\usepackage[titles,subfigure]{tocloft} % Alter the style of the Table of Contents
\renewcommand{\cftsecfont}{\rmfamily\mdseries\upshape}
\renewcommand{\cftsecpagefont}{\rmfamily\mdseries\upshape} % No bold!
%--------------------------------------------------------------------------------------------%
\title{Brief Article}
\author{The Author}
%--------------------------------------------------------------------------------------------%
\begin{document}
\setcounter{tocdepth}{2}
\tableofcontents
\newpage
\newpage
\subfile{KSch13-FlowControl.tex} % Fix Up Required
\subfile{KSch09-ImportingExportingData.tex} % REMOVE SOME MATERIAL
\subfile{KSch22-ManagingFiles.tex} % GOOD
\subfile{KSch12-DataWrangling.tex} % GOOD but needs finishing
\subfile{KSch18-CustomFunctions.tex} %% Fix Up Required
% \subfile{KSch14-datestimes.tex}
\subfile{KSch15-graphics.tex}
\end{document}