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.

27 lines
555 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. \begin{tikzpicture}
  11. \draw [thin] circle(0.75cm);
  12. \filldraw [black] (0,0) circle(1pt);
  13. \end{tikzpicture}
  14. % Minipage environment
  15. % See https://www.sascha-frank.com/latex-minipage.html
  16. \begin{minipage}[t][1cm][b]{3.5cm}
  17. \begin{center}
  18. \textbf{Circle}
  19. \end{center}
  20. $ Area = \pi r^2 $ \\
  21. $ Circumference = \pi D $
  22. \end{minipage}
  23. \end{document}