Skip to main content
Data Science Wizardry Blog by Attila Vajda

TeX scripts and drawings learning

today's blogpost #

u don't know what to write about

$$ \documentclass{standalone} \usepackage{tikz}

\begin{document} \begin{tikzpicture} % Draw the circle \draw (0,0) circle [radius=2cm];

% Optionally, label the center and radius \node at (0,0) {Center}; \draw[->] (0,0) -- (2,0) node[midway, above] {Radius}; \end{tikzpicture} \end{document} $$