pgfplot 中的移位图

pgfplot 中的移位图

我想表示等温理想气体转变的图。我尝试了以下方法:

\begin{tikzpicture}
\begin{axis}[
    axis lines = left,
    xlabel = $V$,
    ylabel = {$p$},
]
\addplot +[
    domain=0.2:5, 
    samples=50,
]
{1/x};

\end{axis}
\end{tikzpicture}

但情节太生的(它在轴上有点,并且捆绑到轴)。我希望它看起来像这样:

在此处输入图片描述

我想在轴上添加这些自定义点,转移剧情。你能提供一些指导吗?

答案1

您的图“与轴绑定”,因为当您更改时轴限制会自动调整domain。因此,只需陈述xminymin值,您几乎就可以得到您想要的东西。

在我的以下解决方案中,我只是做了一些微调,domain希望您能够自己添加标签。(如果不行,请告诉我……)

\documentclass[border=5pt]{standalone}
\usepackage{pgfplots}
    \pgfplotsset{
        compat=1.3,
    }
\begin{document}
\begin{tikzpicture}
    \begin{axis}[
        xmin=0,
        ymin=0,
        axis lines=left,
        xlabel=$V$,
        ylabel={$p$},
        no markers,
        domain=0.5:3,
    ]
        \addplot {1/x};
    \end{axis}
\end{tikzpicture}
\end{document}

该图显示了上述代码的结果

相关内容