Some standalone math equations to use in other documents.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
606 B

\documentclass{standalone}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
%\usepackage{lmodern}
\usepackage{tikz}
\author{Kenneth John Odle}
\begin{document}
% Minipage environment
% See https://www.sascha-frank.com/latex-minipage.html
\begin{minipage}[t][1.8cm][c]{2cm}
\begin{tikzpicture}
\draw [thin] circle(0.75cm);
\filldraw [black] (0,0) circle(1pt);
\end{tikzpicture}
\end{minipage}
\begin{minipage}[t][1.8cm][c]{3.5cm}
\begin{center}
\textbf{Circle}
\end{center}
$ Area = \pi r^2 $ \\
$ Circumference = \pi D $
\end{minipage}
\end{document}