How can I make the curly braces on TikZ to label the x and y as in this picture?
Asked
Active
Viewed 2.2k times
1 Answers
37
You are looking for a brace decoration from the decorations.pathreplacing library:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{decorations.pathreplacing,angles,quotes}
\begin{document}
\begin{tikzpicture}
\draw[->] (0,0) coordinate (O) -- (3,0);
\draw[->] (O) -- (0,4);
\node[inner sep=1.5pt,fill,circle,label={60:$(x,y)$}] at (2,3) (point) {};
\draw (0,0) -- (point);
\draw (1.8,0) -- ++(0,0.2) -- ++(0.2,0);
\draw[dashed] (2,0) coordinate (pointx) -- (point);
\draw[decoration={brace,mirror,raise=5pt},decorate]
(2,0) -- node[right=6pt] {$y$} (point);
\draw[decoration={brace,mirror,raise=5pt},decorate]
(0,0) -- node[below=6pt] {$x$} (2,0);
\path pic ["$\theta$", draw, ->] {angle=pointx--O--point};
\end{tikzpicture}
\end{document}

Gonzalo Medina
- 505,128
-
3Also an option is adding
\usetikzlibrary{bending}for improving arrow tips at the end of curved lines. – Heiko Oberdiek Feb 28 '15 at 03:14 -
@Gonzalo what do the
anglesandquotestikzlibrariescontribute with? Just trying to learn :) – Matt Feb 10 '20 at 22:34
bracedecoration. – Gonzalo Medina Feb 28 '15 at 02:41