TeX scripts and drawings learning
today's blogpost #
u don't know what to write about
- the awesome feeling of starting to see how mathematics works
$$ \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} $$
- Previous: Vectors and arrows
- Next: setting up tex scripts 🌀