Pgfplots 的 groupplots、自动图例和轴名称放置

Pgfplots 的 groupplots、自动图例和轴名称放置

所以我一直在研究如何这个问题并致力于使其适应 groupplots,即自动将图例放置在外部边缘,将轴刻度和标签放置在内部,此后我面临 mwe 的两个问题:

  • 如何巧妙地根据侧面打开/关闭轴标签?一种可能的方法是使用 \ifoddpage,但我认为它不太美观。我可能忘记了手册中的一些内容。
  • 如何trim axis group left/right与 Jake 提出的图例放置一起使用这个问题? 修剪坐标轴时,图例放置在原来位置,与预期结果不完全一致...

这是主要文件:

\documentclass{article}
\usepackage{pgfplots}
\usepgfplotslibrary{groupplots}
\usepackage{float}
\usepackage{ifoddpage}


\begin{document}

\begin{figure}[H]
  \input{groupplot}
  \caption{first figure}
\end{figure}

\newpage

\begin{figure}[H]
  \input{groupplot}
  \caption{first figure}
\end{figure}

\end{document}

下图是groupplot.tex

  \checkoddpage
  \ifoddpage
  \def\yticksside{ edge right}
  \else
  \def\yticksside{ edge left}
  \fi

  \centering
  \begin{tikzpicture}%[trim axis group left,trim axis group right]
    \begin{groupplot}[
        group style = {
          group size = 2 by 1,
          horizontal sep=0mm,
    yticklabels at=\yticksside,
        },
        width=0.5\columnwidth,
        ylabel={$y$label},
      ]

      \nextgroupplot[
        xlabel={$x$},
        legend to name=grouplegend,
    ylabel near ticks,
      ]
      \addplot coordinates { (0,0) (1,1) };
      \addlegendentry{Legend entry}

      \nextgroupplot[
        xlabel={$x$},
    ylabel near ticks,
      ]
      \addplot coordinates { (0,0) (1,1) };
    \end{groupplot}

  \checkoddpage
  \ifoddpage
  \def\legendpos{group c1r1.south west}
  \def\legendanchor{north east}
  \else
  \def\legendpos{group c2r1.south east}
  \def\legendanchor{north west}
  \fi

  \node at (\legendpos) [anchor=\legendanchor]  {\ref{grouplegend}};
  \end{tikzpicture}

相关内容