在返回的行上书写

在返回的行上书写

我无法解决一个小问题,从解决方案,我已经完成了下面的表格,但现在我想在每一列上写一个单词,类型为第一的第二斜体

例如单词这里为了第二类型 1。但我不知道如何对所有列执行此操作。

我已经这样做了:

\begin{table}[h]
    \centering
    \begin{tabular}{p{1.5cm}p{0.5cm}p{0.5cm}p{0.5cm}}
    type &  1 & 2 & 3 \\ 
    \hline
    \textbf{1}
    \newline \small{\textit{first}} & \\
    \newline \small{\textit{second}} &     here\\
    \textbf{2}  
    \newline \small{first}} &  \\
    \textbf{3} 
    \newline \small{\textit{first}} &  \\
    \end{tabular}
\end{table}

在此处输入图片描述

我想要这个:

在此处输入图片描述

答案1

欢迎来到 TeX.SE!

如果我理解正确的话,您会喜欢下表:

在此处输入图片描述

可以简单设置如下:

\documentclass{article}
\usepackage{array}

\begin{document}
\begin{table}[h]
    \centering
    \begin{tabular}{>{\small}p{1.5cm} *{3}{>{\sffamily}p{0.5cm}} }
\normalsize{type}   & 1     & 2     & 3     \\
    \hline
\textbf{1}          &       &       &       \\
\emph{first}        & here  & here  & here  \\
\emph{second}       & here  & here  & here  \\
\textbf{2}          &       &       &       \\
first               & here  & here  & here  \\
\textbf{3}          &       &       &       \\
\emph{first}        & here  & here  & here  \\
    \end{tabular}
\end{table}
\end{document}

相关内容