Created
January 27, 2017 15:06
-
-
Save cpmpercussion/aeb1854e16d0ed6ae0a8421b9dfcda9a to your computer and use it in GitHub Desktop.
Pandoc Template for NIME Papers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% Pandoc template for creating NIME papers | |
%% Adapted from NIME paper template and Pandoc latex template. | |
\documentclass[$if(fontsize)$$fontsize$,$endif$$if(lang)$$lang$,$endif$$if(papersize)$$papersize$,$endif$$for(classoption)$$classoption$$sep$,$endfor$]{$documentclass$} | |
\usepackage{hyperref} | |
\makeatletter | |
\def\maxwidth{\ifdim\Gin@nat@width>\linewidth\linewidth\else\Gin@nat@width\fi} | |
\def\maxheight{\ifdim\Gin@nat@height>\textheight\textheight\else\Gin@nat@height\fi} | |
\makeatother | |
\setkeys{Gin}{width=\maxwidth,height=\maxheight,keepaspectratio} | |
$if(tables)$ | |
\usepackage{longtable,booktabs} | |
\makeatletter | |
\let\oldlt\longtable | |
\let\endoldlt\endlongtable | |
\def\longtable{\@ifnextchar[\longtable@i \longtable@ii} | |
\def\longtable@i[#1]{\begin{figure}[tbh] | |
\onecolumn | |
\begin{minipage}{0.5\textwidth} | |
\oldlt[#1] | |
} | |
\def\longtable@ii{\begin{figure}[t] | |
\onecolumn | |
\begin{minipage}{0.5\textwidth} | |
\oldlt | |
} | |
\def\endlongtable{\endoldlt | |
\end{minipage} | |
\twocolumn | |
\end{figure}} | |
\makeatother | |
$endif$ | |
%% Macros from the Pandoc default commands: | |
\providecommand{\tightlist}{% | |
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}} | |
\begin{document} | |
\conferenceinfo{NIME'17,}{May 15-19, 2017, Aalborg University Copenhagen, Denmark.} | |
\title{$title$} | |
$if(author)$ | |
\numberofauthors{3} | |
\author{ | |
$for(author)$ | |
\alignauthor | |
$author.name$ \\ | |
\affaddr{$author.affiliation$}\\ | |
\email{$author.email$} | |
$endfor$ | |
} | |
$endif$ | |
\maketitle | |
\begin{abstract} | |
$abstract$ | |
\end{abstract} | |
\keywords{$keywords$} | |
\acmclassification1998{$acmClass$} | |
$body$ | |
$if(natbib)$ | |
\bibliographystyle{abbrvurl} | |
\bibliography{$bibliography$} | |
$endif$ | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment