-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathessay_1.tex
executable file
·146 lines (108 loc) · 4.9 KB
/
essay_1.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Simple Sectioned Essay Template
% LaTeX Template
%
% This template has been downloaded from:
% http://www.latextemplates.com
%
% Note:
% The \lipsum[#] commands throughout this template generate dummy text
% to fill the template out. These commands should all be removed when
% writing essay content.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%----------------------------------------------------------------------------------------
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
%----------------------------------------------------------------------------------------
\documentclass[12pt]{article} % Default font size is 12pt, it can be changed here
\usepackage[margin=1in]{geometry} % Required to change the page size to A4
\geometry{a4paper} % Set the page size to be A4 as opposed to the default US Letter
\usepackage{graphicx} % Required for including pictures
\usepackage{float} % Allows putting an [H] in \begin{figure} to specify the exact location of the figure
\usepackage{wrapfig} % Allows in-line images such as the example fish picture
\usepackage{hyperref}
\linespread{1.2} % Line spacing
%\setlength\parindent{0pt} % Uncomment to remove all indentation from paragraphs
\graphicspath{{Pictures/}} % Specifies the directory where pictures are stored
\begin{document}
%----------------------------------------------------------------------------------------
% TITLE PAGE
%----------------------------------------------------------------------------------------
\begin{titlepage}
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}} % Defines a new command for the horizontal lines, change thickness here
\center % Center everything on the page
\textsc{\LARGE PrivacyLx}\\[1.5cm] % Name of your university/college
%\textsc{\Large N}\\[0.5cm] % Major heading such as course name
\textsc{\large A citizen organization for Privacy and Digital Rights}\\[0.5cm] % Minor heading such as course title
\HRule \\[0.4cm]
{ \huge \bfseries Workshop and Training Document}\\[0.4cm] % Title of your document
\HRule \\[1.5cm]
\begin{minipage}{0.4\textwidth}
\begin{flushleft} \large
\emph{Authors:}\\
Kevin \textsc{Gallagher} % Your name
Francisco \textsc{Core}\\
\end{flushleft}
\end{minipage}
~
\begin{minipage}{0.4\textwidth}
\begin{flushright} \large
\emph{Organization Leader:} \\
Francisco \textsc{Core} % Supervisor's Name
\end{flushright}
\end{minipage}\\[4cm]
{\large \today}\\[3cm] % Date, change the \today to a set date if you want to be precise
%\includegraphics{Logo}\\[1cm] % Include a department/university logo - this will require the graphicx package
\vfill % Fill the rest of the page with whitespace
\end{titlepage}
%----------------------------------------------------------------------------------------
% TABLE OF CONTENTS
%----------------------------------------------------------------------------------------
\tableofcontents % Include a table of contents
\newpage % Begins the essay on a new page instead of on the same page as the table of contents
%----------------------------------------------------------------------------------------
% INTRODUCTION
%----------------------------------------------------------------------------------------
\section{Introduction} % Major section
\label{sec:Introduction}
\input{tex/Introduction}
%----------------------------------------------------------------------------------------
% MAJOR SECTION 1
%----------------------------------------------------------------------------------------
\section{Motivation} % Major section
\label{sec:Motivation}
\input{tex/Motivation}
%------------------------------------------------
\section{Basic Principles of Security}
\label{sec:Principles}
\input{tex/Principles}
%------------------------------------------------
\section{Data vs. Meta-data}
\label{sec:DataVMetadata}
\input{tex/DataVMetadata}
%------------------------------------------------
\section{Threat Modeling}
\label{sec:ThreatModeling}
\input{tex/ThreatModeling}
%------------------------------------------------
\section{Encryption}
\label{sec:Encryption}
\input{tex/Encryption}
%------------------------------------------------
\section{Privacy, Anonymity, and Anti-censorship Tools}
\label{sec:Tools}
\input{tex/Tools}
%------------------------------------------------
%----------------------------------------------------------------------------------------
% CONCLUSION
%----------------------------------------------------------------------------------------
\section{Conclusion} % Major section
\label{sec:Conclusion}
\input{tex/Conclusion}
%----------------------------------------------------------------------------------------
% BIBLIOGRAPHY
%----------------------------------------------------------------------------------------
\bibliographystyle{abbrv}
\bibliography{citations} % Bibliography - this is intentionally simple in this template
%----------------------------------------------------------------------------------------
\end{document}