Related Documentation:
The three above headings are included in all documentation by default.
Text in your document can be colorized with the command
\textcolor{red}{text}
|
for example This is IMPORTANT, green and blue are also recognized arguments.
Two classes of hyperlink exist in the GENESIS Documentation System:
\href{../NewDocument/NewDocument.html}{NewDocument}}
|
for example NewDocument references this document. Note that these links may not work in your LATEX pdf file viewer, but should be testable with the Acrobat Reader or Acrobat Professional packages.
\href{http://www.genesis-sim.org/documentation}{GENESIS Documentation}
|
for example see GENESIS Documentation. Note that these links do not wrap automatically at the end of a line even outside of the verbatim environment.
Figures can easily be added with the following code:
\begin{figure}[h]
\centering \includegraphics[scale=0.6]{figures/dummyfig.eps} \caption{{\bf A Dummy Figure:} Example of Latex code to incorporate a figure into documentation.} \label{fig:df-1} \end{figure} |