同一地块上的不同尺度

同一地块上的不同尺度

我想知道该pgfplots包是否以及如何用于生成具有不同比例的两条曲线的图,如下例所示: 在此处输入图片描述

答案1

请参阅第 4.8.10 节 - “两个纵坐标(轴)或多轴” – 在pgfplots 手册。以下内容摘自第一个例子(添加了序言):

\documentclass{article}

\usepackage{tikz}
\usepackage{pgfplots}

\pgfplotsset{width=7cm,compat=1.3}

\begin{document}

\begin{tikzpicture}
  \begin{axis}[
    scale only axis,
    xmin=-5,xmax=5,
    axis y line*=left,% the ’*’ avoids arrow heads
    xlabel=$x$,
    ylabel=First ordinate]
  \addplot {x^2};
  \end{axis}
  \begin{axis}[
    scale only axis,
    xmin=-5,xmax=5,
    axis y line*=right,
    axis x line=none,
    ylabel=Second ordinate]
    \addplot[red] {3*x};
  \end{axis}
\end{tikzpicture}

\end{document}

相关内容