PGFPlots: 外側の凡例を隣接するサブ図と揃える

PGFPlots: 外側の凡例を隣接するサブ図と揃える

私はグラフィックスに のライブラリを使用しており、コンプライアンス上の理由からパッケージを使用する必要がpgfplotsありtikzます。externalsubfigure

下の mwe (「試行 1」の部分) でわかるように、figure*環境 (使用する必要がある) 内に 2 つの小さなサブ図を配置し、凡例 (両方の図に共通) をそれらの間の、できれば中間の高さに配置します。ただし、凡例の位置のさまざまな指定を試しましたが、何をしても凡例は 1 ミリメートルも動きません。

\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[pdftex]{graphicx}
\graphicspath{{./img/}}
\DeclareGraphicsExtensions{.pdf}
\usepackage{subfigure}
\usepackage{pgfplots}
\usetikzlibrary{external}
\tikzexternalize
\tikzsetexternalprefix{tikzpics/}
\pgfplotsset{compat=newest, every mark/.append style={mark size=1pt, mark line=solid}}
\begin{document}

%%%%%%%%% Attempt 1

\begin{figure*}[t!]
\centering
\subfigure[First]{
\begin{tikzpicture}
    \begin{axis}[width=0.4\textwidth,xlabel={X axis}, ylabel={Y axis},]
        \addplot [blue, mark=diamond*, densely dashed, ultra thick, mark options={solid,scale=1.5}] coordinates {(-0.5,-1) (1,1)};
        \addplot [green, mark=*, ultra thick] coordinates {(-0.5,-0.9) (1,1.1)};
        \addplot [red, mark=square*, dotted, ultra thick] coordinates {(-0.5,-1.1) (1,0.9)};
    \end{axis}
\end{tikzpicture}}\hfil
\subfigure{
\begin{tikzpicture}
\begin{axis}[width=0.2\textwidth, height=0.2\textwidth, hide axis, xmin=0, xmax=10, ymin=0, ymax=0.2,legend columns=1,
            legend style={draw=white!15!black,legend cell align=left, at={(0.5,0.5)}},]
    \addlegendimage{blue, mark=diamond*, densely dashed, ultra thick, mark options={solid,scale=1.5}}
    \addlegendentry{Trace 1}
    \addlegendimage{green, mark=*, ultra thick}
    \addlegendentry{Trace 2}
    \addlegendimage{red, mark=square*, dotted, ultra thick, mark options={solid,scale=1.5}}
    \addlegendentry{Trace 3}
\end{axis}
\end{tikzpicture}}\hfil
\subfigure[Second]{
\begin{tikzpicture}
    \begin{axis}[width=0.4\textwidth,xlabel={X axis}, ylabel={Y axis},]
        \addplot [blue, mark=diamond*, densely dashed, ultra thick, mark options={solid,scale=1.5}] coordinates {(-0.5,-1) (1,1)};
        \addplot [green, mark=*, ultra thick] coordinates {(-0.5,-0.9) (1,1.1)};
        \addplot [red, mark=square*, dotted, ultra thick] coordinates {(-0.5,-1.1) (1,0.9)};
    \end{axis}
\end{tikzpicture}}
\caption{Caption.}
\end{figure*}

%%%%%%%%% Attempt 2

\begin{figure*}[t!]
\centering
\subfigure[First]{
\begin{tikzpicture}
    \begin{axis}[width=0.4\textwidth,xlabel={X axis}, ylabel={Y axis}, legend style={overlay, at={(1.2,0.5)},anchor={north}}]
        \addplot [blue, mark=diamond*, densely dashed, ultra thick, mark options={solid,scale=1.5}] coordinates {(-0.5,-1) (1,1)};
        \addplot [green, mark=*, ultra thick] coordinates {(-0.5,-0.9) (1,1.1)};
        \addplot [red, mark=square*, dotted, ultra thick] coordinates {(-0.5,-1.1) (1,0.9)};
        \legend{Trace 1, Trace 2, Trace 3};
    \end{axis}
\end{tikzpicture}}\hfil
\subfigure[Second]{
\begin{tikzpicture}
    \begin{axis}[width=0.4\textwidth,xlabel={X axis}, ylabel={Y axis},]
        \addplot [blue, mark=diamond*, densely dashed, ultra thick, mark options={solid,scale=1.5}] coordinates {(-0.5,-1) (1,1)};
        \addplot [green, mark=*, ultra thick] coordinates {(-0.5,-0.9) (1,1.1)};
        \addplot [red, mark=square*, dotted, ultra thick] coordinates {(-0.5,-1.1) (1,0.9)};
    \end{axis}
\end{tikzpicture}}
\caption{Caption.}
\end{figure*}

\end{document}

試行 1

2 回目の試みとして、環境overlayのオプションを使用しようとしましたaxis(上記の mwe の「試み 2」の部分を参照)。今回は、環境によって凡例のプロットの外側にある部分が切り取られていることがわかりましたsubfigure(下の画像を参照)。これを回避するオプションは見つからないようです。

試行2

ちなみに、pgfplots' option legend to name+の使用も試してみました\refが、外部化のさまざまなオプションを試しても成功しませんでした。

ご提案があれば歓迎いたしますので、よろしくお願いいたします。

答え1

baselinesに オプションを使用することもできますtikzpictureが、外部化されたグラフィックにも機能するようです。オプションname=axaxis(またはlegend style) を追加し、3 つすべてに を使用します。また、中央付近の は不要なのでbaseline=(ax.center)削除しました。\subfigure{}tikzpicture

補足として、このような場合にはカスタム サイクル リストを作成すると便利です。そうすれば、プロット スタイルを 3 回複製する必要がなくなります。

ここに画像の説明を入力してください

\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[pdftex]{graphicx}
\graphicspath{{./img/}}
\DeclareGraphicsExtensions{.pdf}
\usepackage{subfigure}
\usepackage{pgfplots}
\usetikzlibrary{external}
\tikzexternalize
\tikzsetexternalprefix{tikzpics/}
\pgfplotsset{
  compat=newest,
  every mark/.append style={mark size=1pt, mark line=solid},
}
% create a custom cycle list:
\pgfplotscreateplotcyclelist{MyList}{
blue, mark=diamond*, densely dashed, ultra thick, mark options={solid,scale=1.5}\\
green, mark=*, ultra thick\\
red, mark=square*, mark options={solid}, mark size=3pt,dotted, ultra thick\\
}
\begin{document}


\begin{figure*}
\centering
\subfigure[First]{
\begin{tikzpicture}[baseline=(ax.center)] % <-- added baseline
    \begin{axis}[
      name=ax, % added
      cycle list name=MyList, % added
      width=0.4\textwidth,
      xlabel={X axis},
      ylabel={Y axis}
]
        \addplot coordinates {(-0.5,-1) (1,1)};
        \addplot coordinates {(-0.5,-0.9) (1,1.1)};
        \addplot coordinates {(-0.5,-1.1) (1,0.9)};
    \end{axis}
\end{tikzpicture}}\hfil
\begin{tikzpicture}[baseline=(leg.center)] % <-- added baseline
\begin{axis}[
   cycle list name=MyList, % added
   width=0.2\textwidth, height=0.2\textwidth,
   hide axis,
   xmin=0, xmax=10, ymin=0, ymax=0.2,
   legend columns=1,
   legend style={ 
     name=leg, % added
     draw=white!15!black,
     legend cell align=left,
      at={(0.5,0.5)}
     }]

    % add three dummy plots, the single point is outside the axis limits, so not shown
    \pgfplotsinvokeforeach{1,2,3}{\addplot coordinates {(0,-1)};}
    \addlegendentry{Trace 1}
    \addlegendentry{Trace 2}
    \addlegendentry{Trace 3}
\end{axis}
\end{tikzpicture}\hfil
\subfigure[Second]{
\begin{tikzpicture}[baseline=(ax.center)] % <-- added baseline option
    \begin{axis}[
       name=ax,  % added
       cycle list name=MyList, % added
       width=0.4\textwidth,
       xlabel={X axis}, ylabel={Y axis},
     ]
        \addplot coordinates {(-0.5,-1) (1,1)};
        \addplot coordinates {(-0.5,-0.9) (1,1.1)};
        \addplot coordinates {(-0.5,-1.1) (1,0.9)};
    \end{axis}
\end{tikzpicture}}
\caption{Caption.}
\end{figure*}
\end{document}

関連情報