I am trying to add bullets to each item. However, the itemize isnt showing the bullets. Could someone tell me what the issu is?
Also how do I get the item to automatically fill the box and wrap?
% EPC flow charts
% Author: Fabian Schuh
\documentclass{minimal}
\usepackage{pgf}
\usepackage{tikz}
%%%<
\usepackage{verbatim}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{5pt}%
%%%>
\begin{comment}
:Title: EPC flow charts
:Grid: 1x2
\end{comment}
\usepackage[utf8]{inputenc}
\usetikzlibrary{arrows,automata}
\usetikzlibrary{positioning}
\tikzset{
state/.style={
rectangle,
rounded corners,
draw=black, very thick,
minimum height=2em,
inner sep=2pt,
text centered,
},
}
\begin{document}
\begin{tikzpicture}[->,>=stealth']
% Position of QUERY
% Use previously defined 'state' as layout (see above)
% use tabular for content to get columns/rows
% parbox to limit width of the listing
\node[state] (QUERY)
{\begin{tabular}{l}
\textbf{Query}\\
\parbox{4cm}{\begin{itemize}
\item Start
\item Parameter $Q$
\item Zufallszahl aus \mbox{$[0, 2^Q-1]$} in Slotzähler $SC$
\end{itemize}
}\\[4em]
\textbf{QueryAdjust}\\
\parbox{4cm}{\begin{itemize}
\item Variiere Q
\item neue Zufallszahl
\end{itemize}
}
\end{tabular}};
\end{tikzpicture}
\end{document}

minimaldocument class. – Werner Apr 19 '18 at 00:18minimalclass that does no definition to\labelitemi(besides not defining several other things). – egreg Apr 19 '18 at 08:57