-
Notifications
You must be signed in to change notification settings - Fork 4
/
table_template.tex
37 lines (35 loc) · 1.12 KB
/
table_template.tex
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
\documentclass[journal]{IEEEtran}
\usepackage[utf8]{inputenc}
\usepackage{booktabs}
\usepackage{adjustbox}
\usepackage{multirow}
\title{Table Test}
\author{PyKEEN Core Team}
\date{\today}
\begin{document}
{{ size_table }}
{% for dataset, tabled in table_results %}
{{ "\section{" }}{{ dataset }} Evaluation{{ "}" }}
{{ "\subsection{" }}{{ dataset }} Average}
\begin{table*}
\caption{Reproduction Results on {{ dataset }} Based on an Average Ranking}
\label{tab:{{ dataset.lower() }}_full_results_average_ranking}
\centering
{{ tabled['avg'] }}
\end{table*}
{{ "\subsection{" }}{{ dataset }} Best}
\begin{table*}
\caption{Reproduction Results on {{ dataset }} Based on an Optimistic Ranking}
\label{tab:{{ dataset.lower() }}_full_results_optimistic_ranking}
\centering
{{ tabled['best'] }}
\end{table*}
{{ "\subsection{" }}{{ dataset }} Worst}
\begin{table*}
\caption{Reproduction Results on {{ dataset }} Based on a Pessimistic Ranking}
\label{tab:{{ dataset.lower() }}_full_results_pessimistic_ranking}
\centering
{{ tabled['best'] }}
\end{table*}
{% endfor %}
\end{document}