-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.tex
31 lines (24 loc) · 856 Bytes
/
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
\documentclass{cs-assignment}
% Classes for generating our random LaTeX document
\usepackage[english]{babel}
\usepackage{blindtext}
% Include mathematical examples
\blindmathtrue
% Define variables
\newcommand{\assignmentTitle}{Assignment\ \#1} % Assignment title
\newcommand{\assignmentDueDate}{Monday,\ January\ 1,\ 2012} % Due date
\newcommand{\assignmentClass}{COMPSCI\ 101} % Course/class
\newcommand{\assignmentClassTime}{10:00} % Class/lecture time (optional)
\newcommand{\assignmentClassInstructor}{Jones} % Teacher/lecturer (optional)
\newcommand{\authorName}{John Smith} % Your name
\begin{document}
\maketitle
\begin{abstract}
This is abstract text: This simple document shows very basic features of
\LaTeX{} in the context of an Computer Science Assignment.
\end{abstract}
\newpage
\tableofcontents
\newpage
\Blinddocument
\end{document}