Skip to content

Instantly share code, notes, and snippets.

@mattwarkentin
Last active January 19, 2020 19:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattwarkentin/4b7e9ffff241b5dc024510002e9b3d9c to your computer and use it in GitHub Desktop.
Save mattwarkentin/4b7e9ffff241b5dc024510002e9b3d9c to your computer and use it in GitHub Desktop.
SDSS 2020 Abstract
---
title: "Symposium on Data Science and Statistics (SDSS 2020)"
subtitle: "Submission and Formatting Instructions for Extended Abstracts"
author:
- name: First Author
affiliation:
- Affiliation 1
- Affiliation 2
email: email@domain
- name: Second Author
affiliation:
- Affiliation 1
- Affiliation 2
email: email@domain
- name: Third Author
affiliation:
- Affiliation 1
- Affiliation 2
email: email@domain
abstract: |
This document provides a basic template for the 2-page extended abstract and some submission guidelines. Including an abstract is optional, as the document itself is an extended abstract. If included, an abstract should be a single paragraph.
keywords: "Optional, Yet Potentially, Helpful"
output:
bookdown::pdf_document2:
template: sdss2020-template.tex
keep_tex: yes
bibliography: SampleReferencesForExtendedAbstract.bib # Replace with your .bib file
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
# Introduction
We have based this SDSS template almost entirely on the template for
the annual conference of the Association for Computational Linguistics (ACL), whose template includes the following paragraph of credits:
> Okay to use \small inside quotation environment ONLY
This document has been adapted from the instructions for earlier ACL
proceedings, including those for ACL-2012 by Maggie Li and Michael
White, those from ACL-2010 by Jing-Shing Chang and Philipp Koehn,
those for ACL-2008 by Johanna D. Moore, Simone Teufel, James Allan,
and Sadaoki Furui, those for ACL-2005 by Hwee Tou Ng and Kemal
Oflazer, those for ACL-2002 by Eugene Charniak and Dekang Lin, and
earlier ACL and EACL formats. Those versions were written by several
people, including John Chen, Henry S. Thompson and Donald
Walker. Additional elements were taken from the formatting
instructions of the {\em International Joint Conference on Artificial Intelligence}.
# Methods
In preparing the extended abstract, we strongly encourage using the same four section headings seen here, namely, Introduction, Methods, Data (or Results), and Discussion (or Conclusions). Use of subsections is at the authors' discretion; see Section \@ref(info-on-sections).
## Font Sizes and Layout
Extended abstracts should be no more than two pages, including references, in 10-point Times Roman font and two-column format, and must be submitted as pdf documents.
^[Footnotes are also in smaller font. See Table \@ref(fontsizes) for a list of font sizes.]
Both \LaTeX and MS Word templates may be downloaded by visiting the conference website:
\begin{center}
\textbf{\texttt{amstat.org/meetings/sdss/2020/}}
\end{center}
Margins should not be altered from those used in the template files.
\begin{table}[h]
\begin{center}
\begin{tabular}{|l|rl|}
\hline \bf Type of Text & \bf Font Size & \bf Style \\ \hline
paper title & 15 pt & bold \\
author names & 12 pt & bold \\
author affiliation & 12 pt & \\
the word ``Abstract'' & 12 pt & bold \\
section titles & 12 pt & bold \\
document text & 10 pt &\\
captions & 10 pt & \\
abstract text & 10 pt & \\
bibliography & 10 pt & \\
footnotes & 9 pt & \\
\hline
\end{tabular}
\end{center}
\caption{\label{fontsizes} Sizes and styles of fonts used.}
\end{table}
## Sections {#info-on-sections}
### Numbering Sections
As shown here, all sections, sub-sections, and sub-subsections are numbered.
## Citations
Use pandoc markdown citations like [@LaVange2019; @Nussbaum2018; @Wasserstein2016]
## Footnotes
# Data/Results
We encourage the selective use of tables and/or figures as appropriate.
## Graphics and Tables
Place figures and tables in the paper near where they are first discussed, rather than at the end, if possible. It is acceptable that wide illustrations may run across both columns. The use of color is allowed in extended abstract graphics.
\begin{figure}[ht]
\begin{center}
\centerline{\includegraphics[width=\columnwidth]{bayes}}
\caption{Ironically, Thomas Bayes was never asked to provide additional
simulation studies in the Results sections of his papers.}
\label{bayespic}
\end{center}
\end{figure}
## Captions
Provide a caption below every figure and table; number each one
sequentially in the form shown in Figure \@ref(bayespic) and
Table \@ref(fontsizes).
# Discussion/Conclusions
## Appendices and Acknolwedgement
Please avoid the use of appendices and acknowledgements as separate sections. Any pertinent material should be included in the body of the extended abstract rather than in an appendix. If acknowledgements are necessary, then they should be made using footnotes.
## Computer Code
If you wish to provide links to accompanying code, this is allowable because SDSS encourages best practices for reproducible research. However, all conclusions and exposition relevant to the refereeing process should appear in the body of the extended abstract; furthermore, we cannot guarantee that code will be checked or even consulted during the refereeing process.
## Refereeing Decisions
It is expected that accepted papers will be presented in person at SDSS in Pittsburgh from June 4 to 6, 2020. Accepted papers' authors will be notified in plenty of time to make registration and travel arrangements and for papers not accepted to submit an e-poster to the conference if they so choose.
# References {-}
% File SDSS2020_SampleExtendedAbstract.tex
\documentclass[
$for(classoption)$
$classoption$$sep$,
$endfor$
]{article}
\usepackage{sdss2020} % Uses Times Roman font (either newtx or times package)
\usepackage{url}
\usepackage{latexsym}
\usepackage{amsmath, amsthm, amsfonts}
\usepackage{algorithm, algorithmic}
\usepackage{graphicx}
\usepackage{hyperref}
\title{$title$ \\ \Large $subtitle$}
\date{}
\author{
$for(author)$
$if(author.affiliation)$
$author.name$ \\
$for(author.affiliation)$
$author.affiliation$ \\
$endfor$
$if(author.email)$$author.email$\\$endif$
$endif$
$sep$\\\And
$endfor$
}
$for(header-includes)$
$header-includes$
$endfor$
\begin{document}
\maketitle
\begin{abstract}
$abstract$
\end{abstract}
$if(keywords)$
{\bf Keywords:} $keywords$
$endif$
$for(include-before)$
$include-before$
$endfor$
$body$
$for(include-after)$
$include-after$
$endfor$
\bibliographystyle{sdss2020}
\bibliography{$bibliography$}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment