IWCS 2011

Oxford, UK

January 12–14

International Conference on Computational Semantics

Information for Authors

Papers should be formatted with a font size of 11pt, with times as font, typeset in one column, and with margins of 25mm all around. Papers should be submitted in PDF A4 paper format using the EasyChair Electronic submission web page. Note that submissions must be anonymous, and not exceed 10 pages (for long papers) or 5 pages (for short papers), including references. The first page should include an abstract of ca. 10 lines. Authors are strongly encouraged to prepare their submission using Latex.

Latex Submissions

Users of latex should use documentclass article with the options a4paper and 11pt, using the packages times and geometry to set font and margins. For citations please use the natbib package with chicago.bst as bibliography style. See below for an example latex file.

\documentclass[a4paper,11pt]{article}

\usepackage{graphicx}  %%% for including graphics
\usepackage{url}       %%% for including URLs
\usepackage{times}
\usepackage{natbib}
\usepackage[margin=25mm]{geometry}

\title{Example Paper for IWCS}
\date{}

\author{Example Author\\
        Affiliation\\ 
        \texttt{example@email.org} 
   \and Someone Else\\
        Another Affiliation\\ 
        \texttt{another@email.org} 
}

\begin{document}
\maketitle
\thispagestyle{empty}
\pagestyle{empty}

\section{Introduction}

....

\bibliographystyle{chicago}
\bibliography{mybib} 

\end{document}