I have a pb of alignement for tikzpicture figure.
I draw two orange fill circles, one empty and one with "1".
But the second one is miss-aligned to the text.
Below, a minimum example.
Code: Select all
\documentclass{beamer}
\usepackage{tikz}
\begin{document}
word
\begin{tikzpicture}%
\fill[orange] (0,0) circle (1ex);%
\end{tikzpicture}
word
\begin{tikzpicture}%
\fill[orange] (0,0) circle (1ex);%
\node at (0,0) {1};%
\end{tikzpicture}
word
\end{document}
Adrien