![região de estabilidade do gráfico](https://rvso.com/image/472721/regi%C3%A3o%20de%20estabilidade%20do%20gr%C3%A1fico.png)
Quero traçar esta figura e este é meu código e resultado. Quero que a linha vertical que marquei na figura seja removida e também que o ponto $q pi/2$ se afaste do arco e não grude nele como na figura original..
\begin{tikzpicture}
\draw[fill=gray!10]
(-3,-3) -- (-3,3) -- (0,0) -- cycle;
\draw[very thick, ->] (-3,0) -- (3,0) node[right] {Re};
\draw[very thick, ->] (0,-3) -- (0,3.5) node[above] {Im};
\draw[very thick, <->]
(0:1) arc[start angle=0, end angle=135, radius=1]
node[midway, right] {$q\frac{\pi}{2}$};
\node[align=center] at (2.3,-1) {unstable region};
\node[align=center] at (-2,-1) {stable region};
\end{tikzpicture}
Responder1
se você não quiser que o triângulo cinza seja fechado, não feche o caminho com
-- cycle
você pode mudar o nó, por exemplo, com
xshift=
eyshift=
. Alternativamente, você pode aumentar oouter sep=
do nó.
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw[fill=gray!10] (-3,-3) -- (0,0) -- (-3,3);
\draw[very thick, ->] (-3,0) -- (3,0) node[right] {Re};
\draw[very thick, ->] (0,-3) -- (0,3.5) node[above] {Im};
\draw[very thick, <->]
(0:1) arc[start angle=0, end angle=135, radius=1]
node[midway, right,xshift=0.25cm,yshift=0.25cm] {$q\frac{\pi}{2}$};
\node[align=center] at (2.3,-1) {unstable region};
\node[align=center] at (-2,-1) {stable region};
\end{tikzpicture}
\end{document}