테이블 내부에 라텍스로 테이블 만들기

테이블 내부에 라텍스로 테이블 만들기

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

\documentclass{article}

\begin{document}


  \begin{center}
       \begin{tabular}{|c|c|c|c|}
       \hline
        Type of Variation & C& B\\
    \hline \hline
          SNP & 
            \begin{center}
          \begin{tabular}[t]{cccc}
          \centering
          1&2&3&4\\ A&C&G&T\\ A&T&G&T 
          \end{tabular} 
                     \end{center}\\ &&
         \begin{center}
                 \begin{tabular}[t]{ccc}
          POS & REF & ALT\\ 
          2 & C & T \\ 
          \end{tabular}
               \end{center}\\ \hline
          \end{tabular}
          \end{center}
    \end{table}

\end{document}

답변1

나는 다음이 당신이 찾고 있는 것일지도 모른다고 생각합니다. 모든 center환경이 제거되고, 단일 \centering명령어가 가장 바깥쪽 환경 바로 앞에 제공되고 tabular, 누락된 \begin{table}명령어가 제공되며, 외부 환경의 열 수가 tabular4에서 3으로 줄어드는 것을 확인하세요.

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

\documentclass{article}
\usepackage{array} % for "\extrarowheight" macro
\usepackage[skip=0.333\baselineskip]{caption}
\begin{document}

\begin{table}
\setlength\extrarowheight{2pt} % for a slightly more open "look"
\centering
\caption{Nested \texttt{tabular} environments}
\begin{tabular}{|c|c|c|}
\hline
Type of Variation & C & B \\
\hline \hline
      SNP & 
      \begin{tabular}[t]{@{}cccc@{}} % "@{}" omits side padding
         1&2&3&4 \\ 
         A&C&G&T \\ 
         A&T&G&T \\
      \end{tabular} &
      \begin{tabular}[t]{@{}ccc@{}}
         POS & REF & ALT\\ 
         2   & C   & T  \\ 
      \end{tabular} \\ 
\hline
\end{tabular}
\end{table}

\end{document}

관련 정보