温度/大气图形

温度/大气图形

我想画下面的图像但我不知道如何处理它(包?Tikz?)。

在此处输入图片描述

我非常感谢您的宝贵帮助。

答案1

这是 PGFplots 中的一个版本,通过更改链接答案中的标签和方程式并添加一些选项生成。我猜想了一个合适的方程式。我对 PGFplots 一无所知,但我很想了解更多,所以我在手册。我必须承认,我觉得手册有点让人不知所措,但一开始确实有一些更简单的介绍部分。整个练习花了我大约 20 分钟;我将把任何进一步的定制留给“读者练习”。

\documentclass{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
  \begin{axis}[ 
          width=5in, height=3in,
          domain=0.1768:2.828,
          xtick={0.0,0.5,...,3.0},
          ymin=50,ymax=130,
          ytick={50,60,...,130},
          grid=both, no markers, smooth
          xlabel={$P$ Atmospheres},
          ylabel={$T$ ${}^\circ$C}
      ]  
  \addplot {100 + 20/ln(2)*ln(x)}; 
  \end{axis}
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容