Code: Select all
\newcommand{\litem}[1]{\item[\raggedleft\textbf{#1}]}
\begin{enumerate}
\setlength{\itemindent}{\leftmargin}
\litem{new Document} The inital call to create the object. This will generate the preamble, and a basic title.
\litem{SetTitle} Sets the title to a new value
\litem{GetTitle} Returns the current title value
\litem{AddBody} Injects pre-formatted tex data into the document (used in conjunction with LongTable and CreateSection
\litem{CreateSection} This will start a new page, add the section command, and inject in the data following the call.
\litem{CreateDoc} This will collate all the settings requested, and return the a string containing all the tex data required to generate a \LaTeX document. This can then be output to a file to be processed by a call to pdflatex.
\end{enumerate}
I have also tried using the description envirenment, but this does not look right... Any suggestions?