This patch allows you to overwrite the layout of sections of modules within
the LATEX output.
The goal is to create a tabular look-like parameterlist - like in HTML.
eg:
1.2.3 int foo(int param1, int param2)
can be converted into
1.2.3 int foo(
mytype param1,
int param2
)
The result is a list which uses the DoxyParamCaption environment.
example:
\subsubsection[{foo}]{\setlength{\rightskip}{0pt plus 5cm}{int} foo (
\begin{DoxyParamCaption}
\item[{mytype}}]{ param1, }
\item[{int}}]{ param2}
\end{DoxyParamCaption}
)}
For compatibliy reasons the default "DoxyParamCaption" environment in
doxygen.sty will produce the same style the output had before.
You can overwrite the DoxyParamCaption (use \renewenvironment) to generate
your own layout.
Best regards
Stefan
|