I am using the flow program to generate some flow charts.. for those unfamiliar, flow is a program written in C that takes in a markup language style file and generates from it some latex code that you paste into your latex document. The input file contains parameters for the flow chart and this is also where you place any writing that you want in the flowchart.
The problem is that using an itemize environment inside of the flowchart throws many errors when I compile the document, so I am assuming that there is some conflict between the picture environment and the itemize environment.
I have attached the markup file as well as the generated latex code.
Markup File:
Code: Select all
Oval
Entry point
Down 1
Box 4 2
\begin{itemize}
\item Item 1
\item Item 2
\end{itemize}
Code: Select all
\begin{picture}(4.000000,6.000000)(0.000000,-6.000000)
% picture environment flowchart generated by flow 0.99f
\put(2.0000,-1.0000){\oval(4.0000,2.0000)}
\put(0.0000,-2.0000){\makebox(4.0000,2.0000)[c]{\shortstack[c]{
Entry point
}}}
\put(2.0000,-2.0000){\line(0,-1){1.0000}}
\put(2.0000,-3.0000){\vector(0,-1){1.0000}}
\put(0.0000,-6.0000){\framebox(4.0000,2.0000)[c]{\shortstack[c]{
\begin{itemize}\\
\item Item 1\\
\item Item 2\\
\end{itemize}
}}}
\end{picture}
Chris