\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}
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}