테이블과 그래프가 정렬되지 않음

테이블과 그래프가 정렬되지 않음

테이블과 그래프가 수직 정렬이 안되어 있는데 어떻게 고쳐야할지 모르겠습니다. 어떤 제안이 있으십니까?

\begin{tabular}{|c|c|} \hline
    $x$     &   $y$ \\ \hline 
    $-2$    &   $-5$    \\ \hline
    $-1$    &   $-3$    \\ \hline
    $0$ &   $-1$    \\ \hline
    $1$ &   $1$ \\ \hline
    $2$ &   $3$ \\ \hline
    $3$ &   $5$ \\ \hline
\end{tabular} 
\hspace{5cm}
\begin{tikzpicture}[scale=.3]
    \begin{scope}
        \clip (-10,-20) rectangle (10,0);
        \draw[step=2cm,gray,very thin]
            (-12,-22) grid (10,0);
    \end{scope} 
    \draw [<->] (-11,-10) -- (11,-10);
    \draw [<->](0,-21) -- (0,1);
    \clip (-10,-20) rectangle (10,0);
\end{tikzpicture}

답변1

다음에서 tfor tabular(current bounding box.base)for 옵션을 사용할 수 있습니다 .baseline=tikzpicture

\documentclass{article}
\usepackage{tikz}

\begin{document}

\begin{tabular}[t]{|c|c|} \hline
    $x$     &   $y$ \\ \hline 
    $-2$    &   $-5$    \\ \hline
    $-1$    &   $-3$    \\ \hline
    $0$ &   $-1$    \\ \hline
    $1$ &   $1$ \\ \hline
    $2$ &   $3$ \\ \hline
    $3$ &   $5$ \\ \hline
\end{tabular}% 
\hspace{5cm}%
\begin{tikzpicture}[baseline=(current bounding box.base),scale=.3]
    \begin{scope}
        \clip (-10,-20) rectangle (10,0);
        \draw[step=2cm,gray,very thin]
            (-12,-22) grid (10,0);
    \end{scope} 
    \draw [<->] (-11,-10) -- (11,-10);
    \draw [<->](0,-21) -- (0,1);
    \clip (-10,-20) rectangle (10,0);
\end{tikzpicture}

\end{document}

여기에 이미지 설명을 입력하세요

%가짜 공백을 제거하기 위해 두 번 추가한 문자를 확인하세요 . 아마도 고정된 수평 공간 대신에 \hfill.

관련 정보