I'm using the ntheorem package to make theorems and the like, and I use the \listtheorems command in the end of my document to make a list of the theorems I've made through my book (article class). But I want the list of theorems to be in two columns (without the section-header being it).
This rules out the normal \twocolumn command, which makes a pagebreak before going into two columns. Then I tried to use a minipage environment like the following:
Code: Select all
\section{Oversigt over definitioner og sætninger}
\begin{minipage}{1.0\textwidth}
\twocolumn
\listtheorems{st,defi} }}
\onecolumn
\end{minipage}

How do I make the list of theorems into two columns without this behavior? - I'd guess that I should get rid of the minipage at first (it would end up in something very weird if I got to a too big amount of theorems and there would be need of several pages for the list?)...
I've attached the whole book with this post, if anyone would like to try compiling for themselves.