It seems that I have a lot of questions these days.
I am drawing two ellipses and two circles with tikZ:
Code: Select all
\begin{tikzpicture}
\node[ellipse, draw] at (0,0) {
\begin{tikzpicture}
\node at (0,0.2){$blablabla$};
\node at (0,-0.2){$b$};
\end{tikzpicture}
};
\node[ellipse, draw] at (3.5,0) {
\begin{tikzpicture}
\node at (0,0.2){$b$};
\node at (0,-0.2){$blablabla$};
\end{tikzpicture}
};
\node[circle, draw] at (0,3.5) {
\begin{tikzpicture}
\node at (0,0.2){$blablabla$};
\node at (0,-0.2){$b$};
\end{tikzpicture}
};
\node[circle, draw] at (3.5,3.5) {
\begin{tikzpicture}
\node at (0,0.2){$b$};
\node at (0,-0.2){$blablabla$};
\end{tikzpicture}
};
\end{tikzpicture}
Is it possible to center vertically the texts in the circles without changing the coordinates of the nodes ?