Rabu, 25 September 2024

Circle Theorem Using Latex 2

type this following latex code for drawing a circle theorem 2:

\documentclass[border=3mm,tikz]{standalone}
% Loading the package
\usepackage{tikz}
% Loading the library
\usetikzlibrary{positioning}
\usepackage{fourier}

\begin{document}
% Creating A Picture Using An Environment
\begin{tikzpicture}[
Circ/.style={draw,shape=circle,minimum size=30mm, node contents={}}
]
% draw a circle from tikz style above
\node (C1) [Circ];
% create a diameter line
\draw[blue] (C1.mid west) -- (C1.mid east);

% create a diameter label
\node[above, very thick] at (0, 0) {$\textbf{d}$};

% create a diameter point
\fill[black] (C1.mid west) circle (2pt) (C1.mid east) circle (2pt);

% create a label notation description:
\node[below, very thick] at (0, -1.7) {$\textbf{d = diameter}$};
\end{tikzpicture}
\end{document}

save file as circleDiagram1.tex.

Output


< Previous Circle Theorem Using Latex 1 ( latex equation )


to learn other Latex draw topics, click Study About Draw In Latex >>

Bibliography

https://github.com/
http://stackoverflow.com/
https://www.overleaf.com/
https://www.texample.net/

latex equation, latex geometry, latex euclidean, latex shape, tex math and science document sample, latex math and science document example, learn about latex, latex lesson, mathematics, latex equation, latex draw, drawing in latex, latex graphic

Related Post:

Tidak ada komentar:

Posting Komentar

Various Other Posts