-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.tex
56 lines (47 loc) · 1006 Bytes
/
template.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
\documentclass{report}
\input{../preamble}
\input{../macros}
\input{../letterfonts}
\title{\Huge{Some Class}\\Random Examples}
\author{\huge{Rohan Jain}}
\date{}
\begin{document}
\maketitle
\newpage% or \cleardoublepage
% \pdfbookmark[<level>]{<title>}{<dest>}
\pdfbookmark[section]{\contentsname}{toc}
\tableofcontents
\pagebreak
\chapter{}
\section{Random Examples}
\qs{1}
% \section{Algorithms}
% \begin{algorithm}[H]
% \KwIn{This is some input}
% \KwOut{This is some output}
% \SetAlgoLined
% \SetNoFillComment
% \tcc{This is a comment}
% \vspace{3mm}
% some code here\;
% $x \leftarrow 0$\;
% $y \leftarrow 0$\;
% \uIf{$ x > 5$} {
% x is greater than 5 \tcp*{This is also a comment}
% }
% \Else {
% x is less than or equal to 5\;
% }
% \ForEach{y in 0..5} {
% $y \leftarrow y + 1$\;
% }
% \For{$y$ in $0..5$} {
% $y \leftarrow y - 1$\;
% }
% \While{$x > 5$} {
% $x \leftarrow x - 1$\;
% }
% \Return Return something here\;
% \caption{what}
% \end{algorithm}
\end{document}