创建 Excel 相似表

创建 Excel 相似表

我想使用创建一个 Excel 2016 相似表tabular。它必须显示左上角,您可以在其中看到 A、B、C 等。

结果不必包含“酷的东西”:三角形或阴影规则。如果连基本的东西都正确,我就很感激了。

在此处输入图片描述

我尝试垂直对齐文本并更改列宽失败:

在此处输入图片描述

\documentclass{standalone}
%\usepackage{fontspec}
%\newfontfamily\Calibri{Calibri.ttf}
\usepackage{colortbl}
\definecolor{excelGray}{RGB}{230,230,230}
\definecolor{excelLineGray}{RGB}{212,212,212}

\begin{document}

%\Calibri{
%\renewcommand{\arraystretch}{.8} % EDIT: commented this out
\begin{tabular}{>{\columncolor{excelGray}}c!{\color{excelLineGray}\vrule}c!{\color{excelLineGray}\vrule}c!{\color{excelLineGray}\vrule}c!{\color{excelLineGray}\vrule}}
\rowcolor{excelGray}
& A & B & C\\
\arrayrulecolor{excelLineGray}\hline
1 & 2 & 3,2\\
\arrayrulecolor{excelLineGray}\hline
2 & 4 & 4,2\\
\arrayrulecolor{excelLineGray}\hline
\end{tabular}
%}

\end{document}

相关内容