맞춤형 테이블 생성

맞춤형 테이블 생성

아래 그림과 같이 LaTeX에서도 사용자 정의 테이블을 생성할 수 있는지 궁금합니다. 온라인에서 광범위하게 검색했지만 만족스러운 해결책을 찾지 못했습니다. 나는 당신이 나를 도울 수 있기를 바랍니다여기에 이미지 설명을 입력하세요

그게 내 시도야

\documentclass{article}
\usepackage{xcolor}
\usepackage{tabularray}
\definecolor{rowcol}{rgb}{0.7, 0.7, 0.7}

\begin{document}
\begin{table}
  \centering
  \begin{tblr}{
          colspec={Q[c,m,wd=3cm] *{4}{Q[c,m]}},
          cells={font=\large},
          cell{1}{1}={r=2}{},
          cell{1}{2}={c=3}{},
          row{7-8}={bg=rowcol},
          hline{1-Z}={1}{-}{leftpos=0, rightpos=0},
          hline{3}={2}{-}{leftpos=0, rightpos=0},
          vlines,
          vline{2}={2}{-}{},
      }
      & Countries \\
      & 1 & 2 & $\ldots$ & N \\
      Inputs & $Z_{11}$ & $Z_{12}$ & $\ldots$ & $Z_{1N}$ \\
      Inputs & $Z_{21}$ & $Z_{22}$ & $\ldots$ & $Z_{2N}$ \\
      Inputs & $\vdots$ & $\vdots$ & $\vdots$ & $\vdots$ \\
      Inputs & $Z_{N1}$ & $Z_{N2}$ & $\ldots$ & $Z_{NN}$ \\
      Value Added & VA$_1$ & VA$_2$ & $\ldots$ & VA$_4$ \\
      Total Output & $X_1$ & $X_2$ & $\ldots$ & $X_4$ \\
  \end{tblr}
  \caption{Caption}
\end{table}

\end{document}

가독성을 높이고(예: "입력" 단어가 반복되어서는 안 되며 $N$ 열이 분리된 것처럼 보임) 테이블이 부동 상태가 아닌지 확인할 수 있습니까?

답변1

이 같은?

나는 떠 다니는 것을 피하기 위해 center환경 ( )을 사용했습니다.\captionof

\documentclass{article}
\usepackage{xcolor}
\usepackage{tabularray}
\usepackage{caption}
\definecolor{rowcol}{rgb}{0.7, 0.7, 0.7}

\begin{document}
\begin{center}
  \begin{tblr}{
    colspec={Q[c,m,wd=3cm]Q[c,m] *{4}{Q[.7cm,c,m]}},
    cells={font=\large},
    row{Y-Z}={bg=rowcol},
    hline{2,X-Z}={1-Z}{leftpos=0, rightpos=0},
    hline{3-W}={3-Z}{leftpos=0, rightpos=0},
    vline{3,Z}={1-Z}{solid},
    vline{1,2,4-Y}={2-Z}{solid},
    rowsep=6pt,
    }
    & Countries & 1 & 2 & $\ldots$ & N \\
    \SetCell[r=4]{c,m}Inputs &1& $Z_{11}$ & $Z_{12}$ & $\ldots$ & $Z_{1N}$ \\
    &2& $Z_{21}$ & $Z_{22}$ & $\ldots$ & $Z_{2N}$ \\
    & $\vdots$ & $\vdots$ & $\vdots$ & $\vdots$ & $\vdots$ \\
    &$N$& $Z_{N1}$ & $Z_{N2}$ & $\ldots$ & $Z_{NN}$ \\
    \SetCell[c=2]{l}Value Added && VA$_1$ & VA$_2$ & $\ldots$ & VA$_4$ \\
    \SetCell[c=2]{l}Total Output && $X_1$ & $X_2$ & $\ldots$ & $X_4$ \\
  \end{tblr}
  \captionof{table}{Caption}
\end{center}
\end{document}

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

답변2

의 .{NiceTabular}nicematrix

\documentclass{article}
\usepackage{geometry}
\usepackage{xcolor}
\usepackage{nicematrix}

\begin{document}

\renewcommand{\arraystretch}{1.4}
\begin{NiceTabular}{w{c}{2cm}cccw{c}{1cm}c}[hvlines,corners]
                    & countries & 1 & 2 & $\cdots$ & $N$ \\
\Block{4-1}{Inputs} & $1$ & $Z_{11}$ & $Z_{12}$ & $\cdots$ & $Z_{1N}$ \\
                    & $2$ & $Z_{21}$ & $Z_{22}$ & $\cdots$ & $Z_{2N}$ \\
                    \\[1cm]
%                    & $\vdots$  & $\vdots$ & $\vdots$   &  & $\vdots$ \\
                    & $N$ & $Z_{N1}$ & $Z_{N2}$ & $\cdots$ & $Z_{NN}$ \\
\Block[l]{1-2}{Value Added} & & VA$_1$ & VA$_2$ & $\cdots$ & VA$_4$ \\
\Block[l]{1-2}{Total output} & & $X_1$ & $X_2$  & $\cdots$ & $X_4$ \\
\CodeAfter
  \line[shorten=12pt]{3-2}{5-2}
  \line[shorten=12pt]{3-3}{5-3}
  \line[shorten=12pt]{3-4}{5-4}
  \line[shorten=12pt]{3-6}{5-6}
\end{NiceTabular}

\end{document}

여러 컴파일이 필요합니다( nicematrix내부적으로 PGF/TikZ 노드를 사용하기 때문에).

위 코드의 출력

관련 정보