I'm trying to create a workflow where I can typeset a meeting minute using MultiMarkDown syntax and then have it converted in latex and processed to PDF.
Minutes is a great package to format these type of document, but it uses \topic \subtopic and \subsubtopic in place of \section \subsection and \subsubsection. While it make quite a lot of sense in a meeting minute context, it is a problem in my workflow as the MultiMarkDown processor converts headers in \part, \chapter, \section etc.
Can somebody give me a hint on how to redefine the \section command in Minutes in order to act as \topic?
As far as I can see the command definition in the package is:
% \begin{macrocode}
\newcommand*{\topic}[2][\minxx]{
\min@checktitle
% \end{macrocode}
% \begin{macrocode}
\immediate\gdef\thesection{\min@toptext\min@thesection}
\ifx\minxx#1\min@newcoltopic{\section}{#2}{#2}%
\else\min@newcoltopic{\section}{#1}{#2}\fi%
}
Unfortunately it looks like the \topic command definition already rely on \section.
Any help will be much much appreciated.
\documentclassand the appropriate packages so that those trying to help don't have to recreate it. – Peter Grill May 29 '12 at 07:54\let\OldSection\section, and then define\sectionto be the same as the above defintion of\topic, but use\OldSectionwithin this definition instead of\section. – Peter Grill May 29 '12 at 07:57