Exibindo dois gráficos adjacentes um ao outro com seus eixos x alinhados

Exibindo dois gráficos adjacentes um ao outro com seus eixos x alinhados

Como alinho os dois gráficos a seguir para que seus eixos x fiquem alinhados? Em ambos os gráficos, o topo do eixo y é mais alto do que eu desejo. Parece estar a uma altura entre 13 e 14. Como faço para que eles atinjam a altura de 11?

\documentclass{amsart}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=1.11}

\begin{document}

\begin{tikzpicture}
\begin{axis}[width=3in,axis equal image,
    axis lines=middle,
    xmin=-4,xmax=8,samples=101,
    xlabel=$x$,ylabel=$y$,
    ymin=-2,ymax=10,
    restrict y to domain=-2:10,
    enlargelimits={abs=1cm},
    axis line style={latex-latex},
    ticklabel style={font=\tiny,fill=white},
    xtick={2,10},ytick={},
    xlabel style={at={(ticklabel* cs:1)},anchor=north west},
    ylabel style={at={(ticklabel* cs:1)},anchor=south west}
]
\addplot [latex-latex,domain=-4:8] {x + 2} node [pos=0.9, anchor=north west, font=\footnotesize] {$y=f(x)$};
\draw [fill=white] (2,4) circle [radius=1.5pt] node[right,font=\tiny]{$(2, \, 4)$};
\end{axis}
\end{tikzpicture}

\begin{tikzpicture}
\begin{axis}[width=3in,axis equal image,
    axis lines=middle,
    xmin=-4,xmax=8,samples=101,
    xlabel=$x$,ylabel=$y$,
    ymin=-2,ymax=10,
    restrict y to domain=-2:10,
    enlargelimits={abs=1cm},
    axis line style={latex-latex},
    ticklabel style={font=\tiny,fill=white},
    xtick={2,10},ytick={},
    xlabel style={at={(ticklabel* cs:1)},anchor=north west},
    ylabel style={at={(ticklabel* cs:1)},anchor=south west}
]
\addplot [latex-latex,domain=-4:8] {x + 2} node [pos=0.9, anchor=north west, font=\footnotesize] {$y=g(x)$};
\draw [fill=white] (2,4) circle [radius=1.5pt] node[right,font=\tiny]{$(2, \, 4)$};
\draw [fill] (2,0) circle [radius=1.5pt];
\end{axis}
\end{tikzpicture}
\hspace{\fill}


\end{document}

Responder1

Para que os valores máximos de y sejam idênticos, elimine enlargelimitse especifique o desejado ymax=11para ambos os gráficos:

insira a descrição da imagem aqui

Notas:

  • Para que os dois gráficos fiquem próximos um do outro, você precisa eliminar a linha em branco entre \end{tikzpicture}e \begin{tikzpicture}.
  • Isso também exigiu a adição de uma leftopção ao posicionamento do rótulo do gráfico.

Código:

\documentclass{amsart}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=1.11}

\begin{document}

\begin{tikzpicture}
\begin{axis}[width=3in,axis equal image,
    axis lines=middle,
    xmin=-4,xmax=8,samples=101,
    xlabel=$x$,ylabel=$y$,
    ymin=-2,ymax=11,
    restrict y to domain=-2:10,
    %enlargelimits={abs=1cm},
    axis line style={latex-latex},
    ticklabel style={font=\tiny,fill=white},
    xtick={2,10},ytick={},
    xlabel style={at={(ticklabel* cs:1)},anchor=north west},
    ylabel style={at={(ticklabel* cs:1)},anchor=south west}
]
\addplot [latex-latex,domain=-4:8] {x + 2} node [pos=0.9, anchor=north west, font=\footnotesize, left] {$y=f(x)$};
\draw [fill=white] (2,4) circle [radius=1.5pt] node[right,font=\tiny]{$(2, \, 4)$};
\end{axis}
\end{tikzpicture}
%
\begin{tikzpicture}
\begin{axis}[width=3in,axis equal image,
    axis lines=middle,
    xmin=-4,xmax=8,samples=101,
    xlabel=$x$,ylabel=$y$,
    ymin=-2,ymax=11,
    restrict y to domain=-2:10,
   % enlargelimits={abs=1cm},
    axis line style={latex-latex},
    ticklabel style={font=\tiny,fill=white},
    xtick={2,10},ytick={},
    xlabel style={at={(ticklabel* cs:1)},anchor=north west},
    ylabel style={at={(ticklabel* cs:1)},anchor=south west}
]
\addplot [latex-latex,domain=-4:8] {x + 2} node [pos=0.9, anchor=north west, font=\footnotesize, left] {$y=g(x)$};
\draw [fill=white] (2,4) circle [radius=1.5pt] node[right,font=\tiny]{$(2, \, 4)$};
\draw [fill] (2,0) circle [radius=1.5pt];
\end{axis}
\end{tikzpicture}
\end{document}

informação relacionada