Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132935 views
License: OTHER
1
\documentclass[technote,a4paper,leqno]{IEEEtran}
2
\pdfoutput=1
3
4
\usepackage[utf8]{inputenc} % this is needed for umlauts
5
\usepackage[USenglish]{babel} % this is needed for umlauts
6
\usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
7
\usepackage{amsmath,amssymb}
8
\usepackage[absolute,overlay]{textpos}
9
\usepackage{tikz}
10
\usepackage{csquotes}
11
\usepackage[binary-units=true,detect-weight=true, detect-family=true]{siunitx}
12
\DeclareSIUnit\pixel{px}
13
\usepackage{caption} % nicer captions
14
15
\usepackage{url}
16
\usepackage{breakurl}
17
\usepackage[raiselinks=true,
18
bookmarks=true,
19
bookmarksopenlevel=1,
20
bookmarksopen=true,
21
bookmarksnumbered=true,
22
breaklinks,
23
hyperindex=true,
24
plainpages=false,
25
pdfpagelabels=true,
26
pdfborder={0 0 0.5}]{hyperref}
27
\def\UrlBreaks{\do\/\do-}
28
29
\usepackage{xspace}
30
\newcommand*\elide{\textup{[\,\dots]}\xspace}
31
32
\usepackage[nameinlink, noabbrev,capitalise]{cleveref}
33
34
\title{The HASYv2 dataset}
35
\author{%
36
\IEEEauthorblockN{Martin Thoma}\\
37
\IEEEauthorblockA{E-Mail: info@martin-thoma.de} % ORCID: http://orcid.org/0000-0002-6517-1690
38
}
39
40
\hypersetup{
41
pdfauthor = {Martin Thoma},
42
pdfkeywords = {dataset},
43
pdfsubject = {HASY, HASYv2, dataset},
44
pdftitle = {The HASYv2 dataset},
45
}
46
\usepackage[inline]{enumitem}
47
\usepackage{longtable}
48
\usepackage{booktabs} % \toprule
49
\usepackage{braket} % needed for \Set
50
\usepackage{algorithm,algpseudocode}
51
52
% Packages for symbols
53
\usepackage{mathtools}
54
\usepackage{mathrsfs}
55
\def\wasyfamily{\fontencoding{U}\fontfamily{wasy}\selectfont}
56
\usepackage{upgreek}
57
\usepackage{marvosym}
58
\usepackage{textcomp}
59
\usepackage{dsfont}
60
\usepackage{esint}
61
\usepackage{cmll}
62
\usepackage{stmaryrd}
63
\usepackage{skull}
64
65
% Make document nicer
66
\usepackage{parskip}
67
\usepackage{multirow}
68
\usepackage{microtype}
69
70
% Variables
71
\newcommand{\dbTotalClasses}{369}
72
\newcommand{\dbTotalInstances}{\num{168233}}
73
\newcommand{\dbName}{HASY}
74
\newcommand{\dbNameVersion}{HASYv2}
75
\newcommand{\dbSizeMB}{34.6}
76
\newcommand{\dbDownloadURL}{\url{https://doi.org/10.5281/zenodo.259444}}
77
\newcommand{\dbMDfivesum}{fddf23f36e24b5236f6b3a0880c778e3}
78
79
% Start
80
\begin{document}
81
\maketitle
82
\input{abstract}
83
\input{content}
84
\bibliographystyle{IEEEtranSA}
85
\bibliography{literatur}
86
\input{appendix}
87
88
89
\end{document}
90
91