forked from MIDL-Conference/MIDLLatexTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmidl.cls
33 lines (25 loc) · 946 Bytes
/
midl.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
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{midl}[2018/10/09 v1.0 MIDL Proceedings]
\@ifundefined{ifanonsubmission}{
\newif\ifanonsubmission
\anonsubmissionfalse
}{}
\@ifundefined{iffinalsubmission}{
\newif\iffinalsubmission
\finalsubmissionfalse
}{}
\DeclareOption{anon}{\anonsubmissiontrue}
\DeclareOption{final}{\finalsubmissiontrue}
\ProcessOptions\relax
\LoadClass[pmlr]{jmlr}
\jmlrproceedings{PMLR}{Proceedings of Machine Learning Research}
\renewcommand\cite{\citep}
\newcommand{\midljointauthortext}[1]{\nametag{\thanks{#1}}}
\newcommand{\midlotherjointauthor}{\nametag{\addtocounter{footnote}{-1}\footnotemark}}
\ifanonsubmission
\newcommand{\midlauthor}[1]{\author{\Name{Author(s) names withheld} \Email{email(s) withheld} \\ \addr Address withheld}}
\newcommand{\midlacknowledgments}[1]{\acks{Acknowledgments withheld.}}
\else
\newcommand{\midlauthor}[1]{\author{#1}}
\newcommand{\midlacknowledgments}[1]{\acks{#1}}
\fi