initiale Übernahme
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
# Defaults file for IC2S2 template
|
||||
reader: markdown
|
||||
writer: pdf
|
||||
pdf-engine: xelatex
|
||||
template: ./template.tex
|
||||
shift-heading-level-by: 1 # Heading 1 -> Heading 2
|
||||
@@ -0,0 +1,15 @@
|
||||
name: "IC2S2 Conference Abstract"
|
||||
version: 1
|
||||
description: |
|
||||
This template allows you to format your extended conference abstracts for the
|
||||
International Conference of Computational Social Science (IC2S2). This
|
||||
template is valid for IC2S2 2025 (Norrköping, Sweden).
|
||||
authors:
|
||||
original:
|
||||
name: "The International Society for Computational Social Science (ISCSS)"
|
||||
website: "https://iscss.org/"
|
||||
templater:
|
||||
name: "Hendrik Erz"
|
||||
email: "hendrik@zettlr.com"
|
||||
website: "https://www.hendrik-erz.de/"
|
||||
copyright: "ICSSI"
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 28 KiB |
@@ -0,0 +1,83 @@
|
||||
\documentclass[a4paper,12pt]{article}
|
||||
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[english]{babel}
|
||||
\usepackage{authblk}
|
||||
\usepackage{graphicx}
|
||||
\usepackage{mathptmx}
|
||||
\usepackage[singlespacing]{setspace}
|
||||
\usepackage[headheight=1in,margin=1in]{geometry}
|
||||
\usepackage{fancyhdr}
|
||||
|
||||
\renewcommand{\headrulewidth}{0pt}
|
||||
\pagestyle{fancy}
|
||||
\setcounter{secnumdepth}{-\maxdimen} % remove section numbering (taken from Pandoc default template)
|
||||
|
||||
\makeatletter
|
||||
\def\@maketitle{%
|
||||
\newpage
|
||||
|
||||
\begin{center}%
|
||||
\let \footnote \thanks
|
||||
{\LARGE \@title \par}%
|
||||
\end{center}%
|
||||
\par
|
||||
\vskip 0.1em}
|
||||
\makeatother
|
||||
|
||||
\lhead{}
|
||||
\chead{%
|
||||
$$11$$$$^{th}$$ International Conference on Computational Social Science IC$$^{2}$$S$$^{2}$$\\
|
||||
July 21-24, 2025, Norrköping, Sweden%
|
||||
}
|
||||
\rhead{}
|
||||
|
||||
\graphicspath{{images/}}
|
||||
|
||||
\title{$title$}
|
||||
|
||||
$if(date)$
|
||||
\date{$date$}
|
||||
$else$
|
||||
\date{\today}
|
||||
$endif$
|
||||
|
||||
\begin{document}
|
||||
|
||||
\maketitle
|
||||
\thispagestyle{fancy}
|
||||
|
||||
\begin{center}
|
||||
\textit{Keywords: $for(keywords)$$keywords$$sep$, $endfor$}
|
||||
\newline
|
||||
\end{center}
|
||||
|
||||
\section*{Extended Abstract}
|
||||
|
||||
$body$
|
||||
|
||||
$if(nocite-ids)$
|
||||
\nocite{$for(nocite-ids)$$it$$sep$, $endfor$}
|
||||
$endif$
|
||||
|
||||
\section*{References}
|
||||
|
||||
$if(natbib)$
|
||||
$if(bibliography)$
|
||||
$if(biblio-title)$
|
||||
$if(has-chapters)$
|
||||
\renewcommand\bibname{$biblio-title$}
|
||||
$else$
|
||||
\renewcommand\refname{$biblio-title$}
|
||||
$endif$
|
||||
$endif$
|
||||
\bibliography{$for(bibliography)$$bibliography$$sep$,$endfor$}
|
||||
|
||||
$endif$
|
||||
$endif$
|
||||
$if(biblatex)$
|
||||
\printbibliography
|
||||
|
||||
$endif$
|
||||
|
||||
\end{document}
|
||||
Reference in New Issue
Block a user