[plt-scheme] tex2page addtocontentsline
When generating the table of contents, tex2page does not take into account
entries added using \addcontentsline. Is there a way to work around this in a
.t2p file?
Below is an example that shows the problem. The second section will not be
listed in the TOC. I'm using tex2page version 2003-11-08 (MzScheme 205, unix).
[ My university email is not working, please reply to the list. ]
Thanks.
/david
% example.tex
\documentclass{article}
\title{Example}
\begin{document}
\tableofcontents
\section{First} blah
\section*{Second}\addcontentsline{toc}{section}{Second} blah
\end{document}