Math & Science ⇒ guidance on package
guidance on package
stepec
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
guidance on package
Code: Select all
\documentclass{minimal}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[thick]
\draw (0,0) -- (1,3) node[midway,left] {c} -- (5,0) node[midway,above right] {a} -- (0,0) node[midway,below] {b};
\draw (0,0) node[below left] {A};
\draw (1,3) node[above] {B};
\draw (5,0) node[below right] {C};
\end{tikzpicture}
\end{document}
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: guidance on package
stepec