I would like to set the size of the "plus" circle smaller. I have tried with minimum size and with radius but nothing changes. Here the minimal document:
\documentclass{beamer}
\usepackage{tikz}
\usetikzlibrary{arrows,positioning}
\tikzset{
%Define standard arrow tip
>=stealth',
%Define style for boxes
punkt/.style={
rectangle,
rounded corners,
draw=black, very thick,
text width=6.5em,
minimum height=2em,
text centered},
% Define arrow style
pil/.style={
->,
thick,
shorten <=2pt,
shorten >=2pt}
}
\begin{document}
\begin{frame}
\begin{tikzpicture}[node distance=1cm, auto,]
nodes
\node[punkt] (boosting) {Boosting};
\node[right=of boosting] (dummy) {};
\node[punkt, right=of dummy, minimum size=0.1cm] (fqi) {Fitted Q-Iteration};
\node[punkt, circle,minimum size=0.1cm, below=of dummy] (plus) {$+$};
\node[punkt, below=of plus] (bfqi) {Boosted Fitted Q-Iteration};
\end{tikzpicture}
\end{frame}
\end{document}
As a plus I also would like to understand how to "fqi" and "bfqi" boxes the same height of "boosting" node (without breaking in two lines).
