Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132928 views
License: OTHER
1
\documentclass[12pt]{article}
2
3
\usepackage{fullpage}
4
\usepackage{epic}
5
\usepackage{eepic}
6
\usepackage{graphicx}
7
8
\newcommand{\proof}[1]{
9
{\noindent {\it Proof.} {#1} \rule{2mm}{2mm} \vskip \belowdisplayskip}
10
}
11
12
13
\newtheorem{lemma}{Lemma}[section]
14
\newtheorem{theorem}[lemma]{Theorem}
15
\newtheorem{claim}[lemma]{Claim}
16
\newtheorem{definition}[lemma]{Definition}
17
\newtheorem{corollary}[lemma]{Corollary}
18
19
\setlength{\oddsidemargin}{0in}
20
\setlength{\topmargin}{0in}
21
\setlength{\textwidth}{6.5in}
22
\setlength{\textheight}{8.5in}
23
24
\begin{document}
25
26
\setlength{\fboxrule}{.5mm}\setlength{\fboxsep}{1.2mm}
27
\newlength{\boxlength}\setlength{\boxlength}{\textwidth}
28
\addtolength{\boxlength}{-4mm}
29
\begin{center}\framebox{\parbox{\boxlength}{\bf
30
CS 683: Advanced Algorithms \hfill
31
TOPIC
32
\\
33
DATE
34
\hfill
35
Scribe: NAMES
36
}}\end{center}
37
\vspace{5mm}
38
39
\section{First Section}
40
41
The text of the notes goes here.
42
To include a theorem with proof, use the following format.
43
44
\begin{theorem}
45
This is a theorem statement.
46
\label{thm:sample-statement}
47
\end{theorem}
48
49
\proof{
50
This is a proof.
51
}
52
53
54
55
\end{document}
56
57