-
Notifications
You must be signed in to change notification settings - Fork 82
/
midl.cls
102 lines (84 loc) · 3.55 KB
/
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
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
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{midl}[2022/03/21 v1.4 MIDL Proceedings]
% Note that if the use of NoHyper below still causes
% issues, we could suppress hyperlinks to footnotes entirely
% \PassOptionsToPackage{hyperfootnotes=false}{hyperref}
\@ifundefined{ifanonsubmission}{
\newif\ifanonsubmission
\anonsubmissionfalse
}{}
\@ifundefined{iffinalsubmission}{
\newif\iffinalsubmission
\finalsubmissionfalse
}{}
\DeclareOption{anon}{\anonsubmissiontrue}
\DeclareOption{final}{\finalsubmissiontrue}
\ProcessOptions\relax
\LoadClass[pmlr]{jmlr}
\@ifclasslater{jmlr}{2020/01/17}{%
% Using a post 1.25 version of jmlr.cls - all good
}{%
% Temporary workaround for incompatibility of jmlr class with filename handeling in 2019 latex release
% See https://tex.stackexchange.com/questions/513300/unable-to-compile-with-includegraphics-using-jmlr-cls
% https://github.com/MIDL-Conference/MIDLLatexTemplate/issues/3
% https://ctan.org/ctan-ann/id/[email protected]
\ClassWarning{midl}{Using a pre 1.25 version of jmlr.cls with an midl-specific work around}
\def\set@curr@file#1{\def\@curr@file{#1}}
}
\@ifclasslater{jmlr}{2022/01/29}{%
% Using a post 1.29 version of jmlr.cls - all good
}{%
% Temporary workaround for counting float-only last pages
% See https://github.com/MIDL-Conference/MIDLLatexTemplate/issues/10
\usepackage{placeins}
\let\old@jmlrenddoc\@jmlrenddoc
\renewcommand*\@jmlrenddoc{\FloatBarrier\old@jmlrenddoc}
}
\jmlrproceedings{PMLR}{Proceedings of Machine Learning Research}
\renewcommand\cite{\citep}
\newcommand{\midljointauthortext}[1]{\nametag{\thanks{#1}}}
\newcommand{\midlotherjointauthor}{\nametag{\footnotemark\addtocounter{footnote}{-1}}}
\ifanonsubmission
\newcommand{\midlauthor}[1]{\author{\Name[Anonymous]{Author name(s) withheld} \Email{email(s) withheld} \\ \addr Address withheld}}
\newcommand{\midlacknowledgments}[1]{\acks{Acknowledgments withheld.}}
\else
\newcommand{\midlauthor}[1]{\author{\begin{NoHyper}#1\end{NoHyper}}}
\newcommand{\midlacknowledgments}[1]{\acks{#1}}
\fi
\newcommand*{\@midl@check@packages}{%
\@ifpackageloaded{subcaption}{%
\ClassError{midl}{Package 'subcaption' detected.\MessageBreak
This package conflicts with the midl/jmlr class. \MessageBreak
Please use the jmlr \string\subfigure\space command. \MessageBreak
See http://mirrors.ctan.org/macros/latex/contrib/jmlr/jmlr.pdf%
}{}}{}%
\@ifpackageloaded{cleveref}{%
\ClassError{midl}{Package 'cleverref' detected.\MessageBreak
This package conflicts with the midl/jmlr class. \MessageBreak
Please use the existing jmlr \string\xyzref\space commands. \MessageBreak
See http://mirrors.ctan.org/macros/latex/contrib/jmlr/jmlr.pdf%
}{}}{}%
\@ifpackageloaded{acro}{%
\ClassError{midl}{Package 'acro' detected.\MessageBreak
This package conflicts with the midl/jmlr class. \MessageBreak
Please use the acronym package instead%
}{}}{}%
\@ifpackageloaded{glossaries}{%
\ClassError{midl}{Package ' glossaries' detected.\MessageBreak
This package conflicts with the midl class. \MessageBreak
Please use the acronym package instead%
}{}}{}%
\@ifpackageloaded{times}{%
\ClassError{midl}{Package 'times' detected.\MessageBreak
This package overrides the default font, which affects the page limit.\MessageBreak
Its use is prohibited, please remove its import.%
}{}}{}%
}
\AtBeginDocument{%
\@midl@check@packages
\let\@midl@check@packages\relax
}
\renewcommand*{\@titlefoot}{\scriptsize\copyright\space\@jmlryear\space \href{https://creativecommons.org/licenses/by/4.0/}{CC-BY 4.0},%
\space\@jmlr@authors.\hfill
\@reprint
}