]> rtime.felk.cvut.cz Git - modosist/iidtitlepage.git/blob - iidtitlepage.sty
Fix CC BY-NC-ND shortcut
[modosist/iidtitlepage.git] / iidtitlepage.sty
1 \NeedsTeXFormat{LaTeX2e}
2 \ProvidesPackage{iidtitlepage}
3
4 \RequirePackage[utf8]{inputenc}
5 \RequirePackage[czech]{babel}
6 \RequirePackage{etoolbox}
7 \RequirePackage{geometry}
8 \RequirePackage{graphicx}
9 \RequirePackage{hyperref}
10 \RequirePackage{bibentry}
11 \RequirePackage{natbib}
12 \RequirePackage{hyphenat}
13 \RequirePackage{xcolor}
14 \RequirePackage{mdframed}
15 \RequirePackage{fancyhdr}
16
17 \bibliographystyle{abbrv}
18
19 \newtoggle{iidieee}
20 \newtoggle{iidelsevier}
21 \newtoggle{iidspringer}
22 \newtoggle{iidacm}
23
24 \DeclareOption{ieee}{ \toggletrue{iidieee} }
25 \DeclareOption{elsevier}{ \toggletrue{iidelsevier} }
26 \DeclareOption{springer}{ \toggletrue{iidspringer} }
27 \DeclareOption{acm}{ \toggletrue{iidacm} }
28 \ProcessOptions{}
29
30 \newcommand{\IidTitlePageYear}[1]{
31     \newcommand{\@IidTitlePageYear}{#1}
32 }
33
34 \newcommand{\IidPublishedIn}[1]{
35     \newcommand{\@IidPublishedIn}{#1}
36 }
37
38 \newcommand{\IidTitlePageDoi}[1]{
39     \newcommand{\@IidTitlePageDoi}{#1}
40 }
41
42 \newcommand{\IidTitlePageCiteAs}[1]{
43     \newcommand{\@IidTitlePageCiteAs}{#1}
44 }
45
46 \newcommand{\IidTitlePageSourceCodes}[1]{
47     \newcommand{\@IidTitlePageSourceCodes}{#1}
48 }
49
50 \newcommand{\IidTitlePageVideoLink}[1]{
51     \newcommand{\@IidTitlePageVideoLink}{#1}
52 }
53
54 \newcommand{\IidTitlePage}{
55     \makeatletter
56     \nobibliography*
57     \definecolor{CtuBlue}{RGB}{0,125,198}
58     \fancypagestyle{IidTitlePageFancyStyle}
59     {
60        \fancyhf{}
61        \renewcommand{\headrulewidth}{0pt}
62        \fancyfoot[L]{\footnotesize
63          \iftoggle{iidelsevier}{
64              \copyright~\@IidTitlePageYear. This manuscript version is made available under the CC BY-NC-ND 4.0 license, see \url{http://creativecommons.org/licenses/by-nc-nd/4.0/}
65          }{}
66          \iftoggle{iidspringer}{
67              \copyright~\@IidTitlePageYear. This manuscript version is made available under the CC BY-NC-ND 4.0 license, see \url{http://creativecommons.org/licenses/by-nc-nd/4.0/}
68          }{}
69          \iftoggle{iidieee}{
70              \copyright~\@IidTitlePageYear\ IEEE. Personal use of this material is permitted. Permission from IEEE must be obtained for all other uses, in any current or future media, including reprinting/republishing this material for advertising or promotional purposes, creating new collective works, for resale or redistribution to servers or lists, or reuse of any copyrighted component of this work in other works.
71          }{}
72           \iftoggle{iidacm}{
73                   \copyright~ACM~\@IidTitlePageYear. This is the author's version of the work. It is posted here for your personal use. Not for redistribution. The definitive Version of Record was published in \@IidPublishedIn, \url{\@IidTitlePageDoi}
74          }{}
75        }
76     }
77
78     \begin{titlepage}
79         \thispagestyle{IidTitlePageFancyStyle}
80
81         \begin{figure}
82             \includegraphics[height=28mm]{iid-logo.pdf} % CTU guidelines: recommended height of 28mm on a4 paper.
83         \end{figure}
84         \vspace{5cm}
85
86         \noindent\nohyphens{{\LARGE \textbf{\@title}}}
87
88         \vspace{0.3cm}
89
90         \noindent\nohyphens{{\large \@author}}
91
92
93         \vfill
94         \begin{mdframed}[topline=false,bottomline=false,rightline=false,linecolor=CtuBlue,linewidth=2pt]
95
96         \ifdef{\@IidTitlePageDoi}{
97         \vfill\noindent\nohyphens{\textbf{DOI:} \url{\@IidTitlePageDoi}}
98         }
99
100         \ifdef{\@IidTitlePageCiteAs}{
101         \vfill\noindent\nohyphens{\textbf{Cite as:} \bibentry{\@IidTitlePageCiteAs}}
102         }
103
104
105         \ifdef{\@IidTitlePageSourceCodes}{
106         \vfill\noindent\nohyphens{\textbf{Source code:} \url{\@IidTitlePageSourceCodes}}
107         }
108
109         \ifdef{\@IidTitlePageVideoLink}{
110         \vfill\noindent\nohyphens{\textbf{Video:} \url{\@IidTitlePageVideoLink}}
111         }
112
113         \end{mdframed}
114
115     \end{titlepage}
116     \makeatother
117     \restoregeometry{}
118     \nobibliography{bibfile}
119 }
120
121 \endinput