I am trying this code
Code: Select all
\tikz \node[circle,radius=0.5cm,color=white, fill=blue]{text};
But the option radius is not working... Could anyone please help me?
Code: Select all
\tikz \node[circle,radius=0.5cm,color=white, fill=blue]{text};
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Code: Select all
\begin{tikzpicture}
\draw[fill=blue] (0,0) circle [radius=0.5cm];
\node[color=white] {text};
\end{tikzpicture}
Code: Select all
\begin{tikzpicture}
\node[circle, inner sep=0pt, minimum size=1cm, color=white, fill=blue]{text};
\end{tikzpicture}
Code: Select all
\tikz \node[circle,scale=0.75,color=white, fill=blue]{text};
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis