绘制椭圆轴

绘制椭圆轴

我想在 pgfplots 轴上绘制一个椭圆及其轴。我尝试使用交叉线,但它是斜线交叉,而不是水平和垂直交叉。我想要的轴只是直线,没有任何标签或箭头。有人能告诉我怎么做吗?我想从这个最小的例子开始,并为轴添加一些内容:

\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}

\begin{document}

\begin{tikzpicture}
\begin{axis}[xmin=0, xmax=4, ymin=0, ymax=3, width=\textwidth, height=0.5\textwidth]

\draw [draw, thick] (axis cs:1.7,1.2) ellipse [x radius=0.009, y radius=0.003, rotate=80, xscale=15, yscale=30];

\end{axis}
\end{tikzpicture}

\end{document}

谢谢 !

答案1

我不确定预期的结果。

这是椭圆的图。

\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.11}
\begin{document}
\begin{tikzpicture}
\begin{axis}[width=12cm,height=6cm,trig format plots=rad,variable=t]
\addplot[red,thick,domain=-2*pi:2*pi,samples=200]
({10*cos(t)},{sin(t)});
\draw (0,1) -- (0,-1) (-10,0) -- (10,0);
\end{axis}
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容