\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}
инструкция предоставлена, а количество столбцов во внешней tabular
среде сокращено с 4 до 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}