可能重复:
数字表也可以看看:
如何对角线划分表格单元格
是否可以将“x\y”样式的图例放在表格的一个单元格中(可能由多个单元格组成)?如果将“x”设置得略低一些,将“y”设置得略高一些,那就太好了。
请参阅下图以了解详情:
非常感谢。
答案1
据我所知,有两个包可用于此目的。一个是我的diagbox
(更换旧的slashbox
)另一个是makecell
\diaghead
。下面是 的一个例子makecell
:
\documentclass{article}
\usepackage{diagbox}
\usepackage{makecell}
\begin{document}
\section*{diagbox}
\begin{tabular}{|l|c|c|}\hline
\theadfont\diagbox[width=11em]{Diag\\Column Head I}{Diag Column\\Head II}&
\thead{Second\\column}&\thead{Third\\column}\\ \hline
& foo & bar \\ \hline
\end{tabular}
\section*{makecell}
\begin{tabular}{|l|c|c|}\hline
\diaghead{\theadfont Diag ColumnmnHead II}%
{Diag\\Column Head I}{Diag Column\\Head II}&
\thead{Second\\column}&\thead{Third\\column}\\ \hline
& foo & bar \\ \hline
\end{tabular}
\end{document}