- Pre-submission of abstracts (like SoCG) on June 26
- Papers must have "complete proofs": any details that can't fit can go to the appendix.
Ruminations on computational geometry, algorithms, theoretical computer science and life
Tuesday, June 10, 2008
SODA 2009 deadlines: Jun 26/Jul 3
Via CC: SODA 2009 server is up, and the deadline is Jul 3. New things this time:
Subscribe to:
Post Comments (Atom)
Heh. You said "long appendices" he heh hehh
ReplyDeleteNote: you can move automatically selected proofs to the appendix using the "answers.sty" LaTeX package:
ReplyDelete\documentclass{llncs}
\usepackage{answers}
%\usepackage[nosolutionfiles]{answers}
\Newassociation{movedProof}{MovedProof}{movedProofs}
\renewenvironment{MovedProof}[1]{\begin{proof}}{\end{proof}}
\begin{document}
\Opensolutionfile{movedProofs}
%%%% Begining of Paper.
\begin{theorem}\label{th:veryFirstResult}
My very first result
\end{theorem}
\begin{movedProof} (of Theorem~\ref{th:veryFirstResult})\\
The proofs in environnement \texttt{movedProof} are normally moved
to the appendix, except if you use the option
\verb+\usepackage[nosolutionfiles]{answers}+, in which case all the
proofs are normally included where they are defined, and no proof is
included at the end of the file.
\end{movedProof}
%%%%%%%% END OF SUBMISSION %%%%%%
\Closesolutionfile{movedProofs}
\newpage
\setcounter{page}{1}
\begin{center}
\large \textbf{Appendix}
\end{center}
\appendix
\section{Moved Proofs}
\Readsolutionfile{movedProofs}
\end{document}