带绘图坐标的二维系统

带绘图坐标的二维系统

我有需要在乳胶中绘制的图,但是使用乳胶绘制图时遇到了困难。我已经开始绘制图,但是我无法标记所有象限并进行投影。请参阅附图

在此处输入图片描述

这是我开始的代码,如果你能帮助我完成它或建议更好的方法。

\documentclass{standalone}
\usepackage{amssymb,amscd,amsmath}
\usepackage{tikz}
\begin{document}

\begin{tikzpicture}
  \draw [thick, ->] (0,-5) -- (0,5);
  \draw [thick, ->] (-5,0) -- (5,0);
  \node [above] at (0,5) {$\theta_2$};
  \node [right] at (5,0) {$\theta_1$};
\end{tikzpicture}

\end{document}

答案1

\documentclass[tikz,border=3.14mm]{standalone}
\begin{document}
\begin{tikzpicture}[thick,>=stealth,bullet/.style={circle,fill,inner sep=1pt}]
  \draw [->] (0,-5) -- (0,5) node [above] {$\theta_2$};
  \draw [->] (-5,0) -- (5,0) node [right] {$\theta_1$};
  \draw [densely dotted, ->] (-3,3) node[bullet,label=left:$X$]{}-- (0,3) node [right] 
  {$\widetilde{\theta}$};
  \draw [densely dotted, ->] (3,-3) node[bullet,label=below:$X$]{}-- (3,0) node
  [above]   {$\widetilde{\theta}$};
  \draw [densely dotted, ->] (-3,-3) node[bullet,label=below left:$X$]{}-- (0,0);
  \path (4,4) node{$Q_1$} (-4,4) node{$Q_2$} (-4,-2) node{$Q_3$} (4,-2) node{$Q_4$}
   (3,3) node[bullet,label=right:{$X=\widetilde{\theta}$}]{};
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容