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.

28 lines
606 B

  1. \documentclass{standalone}
  2. \usepackage[utf8]{inputenc}
  3. \usepackage{amsmath}
  4. \usepackage{amsfonts}
  5. \usepackage{amssymb}
  6. %\usepackage{lmodern}
  7. \usepackage{tikz}
  8. \author{Kenneth John Odle}
  9. \begin{document}
  10. % Minipage environment
  11. % See https://www.sascha-frank.com/latex-minipage.html
  12. \begin{minipage}[t][1.8cm][c]{2cm}
  13. \begin{tikzpicture}
  14. \draw [thin] circle(0.75cm);
  15. \filldraw [black] (0,0) circle(1pt);
  16. \end{tikzpicture}
  17. \end{minipage}
  18. \begin{minipage}[t][1.8cm][c]{3.5cm}
  19. \begin{center}
  20. \textbf{Circle}
  21. \end{center}
  22. $ Area = \pi r^2 $ \\
  23. $ Circumference = \pi D $
  24. \end{minipage}
  25. \end{document}