Skip to main content
The 2024 Developer Survey results are live! See the results
Became Hot Network Question
added 10 characters in body; edited title
Source Link
projetmbc
  • 13.4k
  • 13
  • 54
  • 121

draw arrow in equation by tikz Decorate equations with arrows using TikZ

How can I draw an arrow on a equation in Tikz by defining points? As in the example

Here is a starting code.

\documentclass[a4paper]{book}

\usepackage{tikz}

\begin{document}
\begin{tikzpicture}
\node at (0,0) {$93  \stackrel{12}{\equiv} - 27 \Rightarrow 93 \stackrel{12}{\equiv} \underbrace{-27 + \overbrace{3 \times 12}}_{9} \Rightarrow 93 \stackrel{12}{\equiv} 9$};
\draw[->] (-.75,.5) -- (-.75,1) -- (1,1) -- (1,.75);
\end{tikzpicture}
\end{document}

enter image description here

draw arrow in equation by tikz

How can I draw an arrow on a equation in Tikz by defining points? As in the example.

\documentclass[a4paper]{book}

\usepackage{tikz}

\begin{document}
\begin{tikzpicture}
\node at (0,0) {$93  \stackrel{12}{\equiv} - 27 \Rightarrow 93 \stackrel{12}{\equiv} \underbrace{-27 + \overbrace{3 \times 12}}_{9} \Rightarrow 93 \stackrel{12}{\equiv} 9$};
\draw[->] (-.75,.5) -- (-.75,1) -- (1,1) -- (1,.75);
\end{tikzpicture}
\end{document}

enter image description here

Decorate equations with arrows using TikZ

How can I draw an arrow on a equation in Tikz by defining points?

Here is a starting code.

\documentclass[a4paper]{book}

\usepackage{tikz}

\begin{document}
\begin{tikzpicture}
\node at (0,0) {$93  \stackrel{12}{\equiv} - 27 \Rightarrow 93 \stackrel{12}{\equiv} \underbrace{-27 + \overbrace{3 \times 12}}_{9} \Rightarrow 93 \stackrel{12}{\equiv} 9$};
\draw[->] (-.75,.5) -- (-.75,1) -- (1,1) -- (1,.75);
\end{tikzpicture}
\end{document}

enter image description here

Source Link
H.Gorbanzad
  • 427
  • 2
  • 10

draw arrow in equation by tikz

How can I draw an arrow on a equation in Tikz by defining points? As in the example.

\documentclass[a4paper]{book}

\usepackage{tikz}

\begin{document}
\begin{tikzpicture}
\node at (0,0) {$93  \stackrel{12}{\equiv} - 27 \Rightarrow 93 \stackrel{12}{\equiv} \underbrace{-27 + \overbrace{3 \times 12}}_{9} \Rightarrow 93 \stackrel{12}{\equiv} 9$};
\draw[->] (-.75,.5) -- (-.75,1) -- (1,1) -- (1,.75);
\end{tikzpicture}
\end{document}

enter image description here