-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaper.tex
87 lines (76 loc) · 1.91 KB
/
paper.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
%\documentclass[twoside]{article}
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[british]{babel}
\usepackage{CJKutf8}
\linespread{1.05}
\usepackage{microtype}
\usepackage{tikz}
\usepackage{graphicx}
\usepackage{environ}
\usepackage{pdfpages}
\usepackage{mdwlist}
% Environment to scale things
\NewEnviron{scale}[1]{%
\begin{tikzpicture}
\node[scale=#1]{%
\BODY
};
\end{tikzpicture}
}
% Make ToC less imposing
% \setcounter{tocdepth}{1}
% Margins
\usepackage[hmarginratio=1:1,top=32mm,columnsep=20pt]{geometry}
% Two-column layout
\usepackage{multicol}
% Custom captions
\usepackage[hang, small,labelfont=bf,up,textfont=it,up]{caption}
% Horizontal rules for tables
\usepackage{booktabs}
% Table & figure positioning.
\usepackage{float}
% Hyperlinks
\usepackage[colorlinks,citecolor=blue]{hyperref}
% Source code
\usepackage{listings}
% Maths mode stuff
\usepackage{amsmath}
% Abstract customization
\usepackage{abstract}
% Bold "Abstract"
\renewcommand{\abstractnamefont}{\normalfont\bfseries}
% Italic abstract
\renewcommand{\abstracttextfont}{\normalfont\small\itshape}
% Custom titles
\usepackage{titlesec}
% Custom section titles
\titleformat{\section}[block]{\large\scshape\centering}{\thesection.}{1em}{}
% Custom subsection titles
\titleformat{\subsection}[block]{\large}{\thesubsection.}{1em}{}
% Document title
\title{\vspace{-15mm}\fontsize{16pt}{10pt}\selectfont
\textbf{Extending the Learning by Teaching Canvas System: Maximising Academic
Learning Time}}
% Document authors
\author{\begin{tabular}{c c c}
Alexander Berntsen \\
\href{mailto:[email protected]}{[email protected]}
\end{tabular}
}
\graphicspath{{fig/}}
\begin{document}
\maketitle
\begin{abstract}
\noindent \input{txt/abstract}
\end{abstract}
\tableofcontents
\listoffigures
\newpage
\begin{multicols}{2}
\input{txt/main}
\end{multicols}
\bibliography{paper}
\bibliographystyle{unsrt}
\newpage
\end{document}