forked from jez/latex-homework-class
-
Notifications
You must be signed in to change notification settings - Fork 3
/
homework.cls
204 lines (161 loc) · 5.42 KB
/
homework.cls
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
\NeedsTeXFormat{LaTeX2e}
\LoadClassWithOptions{article}
\ProvidesClass{homework}[2014/12/16 Class file for homework assignments]
% ----- Options ---------------------------------------------------------------
\newcommand\@opanon{0}
\DeclareOption{anonymous}{\renewcommand\@opanon{1}}
\newcommand\@opnewpage{0}
\DeclareOption{newpage}{\renewcommand\@opnewpage{1}}
\newcommand\@oplargemargins{0}
\DeclareOption{largemargins}{\renewcommand\@oplargemargins{1}}
\ProcessOptions
% ----- Packages --------------------------------------------------------------
% Better fonts with accents
\RequirePackage[T1]{fontenc}
% Required for starred commands
\RequirePackage{suffix}
% Math symbols
\RequirePackage{amsmath}
\RequirePackage{amsfonts}
\RequirePackage{amsthm}
\RequirePackage{amssymb}
\RequirePackage{centernot}
% Nice lists
\RequirePackage{enumerate}
\RequirePackage{enumitem}
% Nice images, figures, and listings
\RequirePackage{graphicx}
\RequirePackage{grffile}
\RequirePackage[all]{xy}
\RequirePackage{wrapfig}
\RequirePackage{fancyvrb}
\RequirePackage{listings}
% Conditionals
\RequirePackage{ifthen}
% Header & Page Setup
\RequirePackage{fancyhdr}
\ifthenelse{\equal{\@oplargemargins}{1}}{}{\RequirePackage{fullpage}}
% Links
\RequirePackage{hyperref}
\RequirePackage[extrafootnotefeatures]{xepersian}
\settextfont{IRZar}
% ----- Questions -------------------------------------------------------------
\newcounter{questionCounter}
\newcounter{partCounter}[questionCounter]
% Prefix for questions
\newcommand{\questiontype}[0]{سؤال}
% Use this if your "written" questions are all under one section
% For example, if the homework handout has Section 5: Written Questions
% and all questions are 5.1, 5.2, 5.3, etc. set this to 5
% Use for 0 no prefix. Redefine as needed per-question.
\newcommand{\writtensection}[0]{0}
% Numbered question
\providecommand{\question}{}
\renewcommand{\question}[0]{%
% Emit \newpage if option `newpage` is present
\ifthenelse{\equal{\@opnewpage}{1}}{%
\newpage
}{}
% Wrap in minipage so that we don't get a line break enywhere in between
\begin{minipage}{\linewidth}%
\stepcounter{questionCounter}%
\vspace{.2in}%
\ifx\writtensection\undefined{}
\noindent{\bf \questiontype\ \arabic{questionCounter}.}%
\else
\if\writtensection0
\noindent{\bf \questiontype\ \arabic{questionCounter}.}%
\else
\noindent{\bf \questiontype\ \writtensection.\arabic{questionCounter}}%
\fi
\vspace{0.3em} \hrule \vspace{.1in}%
\end{minipage}
}
% Named question, takes one argument
\WithSuffix\providecommand\question*{}
\WithSuffix\renewcommand\question*[1]{%
% Emit \newpage if option `newpage` is present
\ifthenelse{\equal{\@opnewpage}{1}}{%
\newpage%
}{}%
% Wrap in minipage so that we don't get a line break enywhere in between
\begin{minipage}{\linewidth}%
\addtocounter{questionCounter}{1}%
\setcounter{partCounter}{0}%
\vspace{.2in}%
\noindent{\bf \arabic{questionCounter}. #1}%
\vspace{0.3em} \hrule \vspace{.1in}%
\end{minipage}
}
% Override normal section defintions
\renewcommand{\section}[0]{\question}
\WithSuffix\newcommand\section*[1]{\question*{#1}}
% ----- Question Parts --------------------------------------------------------
\newenvironment{alphaparts}[0]{%
\begin{enumerate}[label=\textbf{(\alph*)}]%
}{\end{enumerate}}
\newenvironment{arabicparts}[0]{%
\begin{enumerate}[label=\textbf{\arabic{questionCounter}.\arabic*})]%
}{\end{enumerate}}
\newcommand{\questionpart}[0]{\item}
% ----- Induction Environment -------------------------------------------------
\newenvironment{induction}[0]{%
\begin{description}
}{\end{description}}
\newcommand{\basecase}{\item[پایه استقرا]\mbox{}\\}
\newcommand{\indhyp}{\item[فرض استقرا]\mbox{}\\}
\newcommand{\indstep}{\item[گام استقرا]\mbox{}\\}
% ----- Answer Box ------------------------------------------------------------
\newcommand{\answerbox}[1]{%
\begin{framed}
\vspace{#1}
\end{framed}}
% ----- Page Setup ------------------------------------------------------------
% Use block style paragraphs
\setlength{\parindent}{0pt}
\setlength{\parskip}{5pt plus 1pt}
\def\indented#1{\list{}{}\item[]}
\let\indented=\endlist
% ----- Title & Header --------------------------------------------------------
\pagestyle{empty}
\pagestyle{fancy}
%\if\@opanon%
\ifthenelse{\equal{\@opanon}{0}}{%
\renewcommand{\maketitle}[0]{%
% Setup header
\setlength{\headheight}{15.2pt}
\setlength{\headsep}{0.2in}
\lhead{\hwclass{}}%
\chead{\hwname{} (ش.د.\hwsn)}%
\rhead{\hwtype{} \hwnum}%
% Setup hrule in header
\renewcommand{\headrulewidth}{0pt}
\headrule{}
% Don't put header on first page
\thispagestyle{plain}
\begin{center}
{\Large \hwclass{}، \hwtype{} \hwnum}
\hwname{} (ش.د.\hwsn)
\today
\end{center}
\renewcommand{\headrulewidth}{0.4pt}
}
}%
{%
\renewcommand{\maketitle}[0]{%
% Make all pages plain
\pagestyle{plain}
% Put header on it's own page
\begin{center}
{\Large \hwclass{} \hwtype{} \hwnum}
\hwname{} (ش.د.\hwsn)
\today
\end{center}
\renewcommand{\headrulewidth}{0.4pt}
\newpage
}
}
% ----- For usage with pandoc converted documents -----------------------------
\providecommand{\tightlist}{%
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}
% -----------------------------------------------------------------------------