在 Latex 中建立一个表格

在 Latex 中建立一个表格

在此处输入图片描述

这是我的新代码,但我有一个新的 pb:

\begin{table}[!h]
\begin{center}
\begin{tabular}{l|p{0.9cm}|p{0.9cm}|p{0.9cm}|p{0.9cm}|p{0.9cm}|p{0.9cm}|p{0.9cm}|p{0.9cm}|p{0.9cm}|p{0.9cm}|}
\cline{2-11}
&\multicolumn{2}{|p{2.5cm}|} {\bf 100 Pages }& \multicolumn{2}{|p{2.5cm}|} {\bf 250 Pages }& \multicolumn{2}{|p{2.5cm}|} {\bf 500 Pages }& \multicolumn{2}{|p{2.5cm}|} {\bf 750 Pages }& \multicolumn{2}{|p{2.5cm}|} {\bf 1000 Pages }\\
\cline{2-11}
&\bf R1& \bf R2& \bf R3& \bf R4& \bf R5& \bf R6& \bf R7& \bf R8& \bf R9& \bf R10\\
\hline
Nb Pages Publiques &\bf R1& \bf R2& \bf R3& \bf R4& \bf R5& \bf R6& \bf R7& \bf R8& \bf R9& \bf R10\\
\hline
Nb Pages Amis \\et leurs Amis &\bf R1& \bf R2& \bf R3& \bf R4& \bf R5& \bf R6& \bf R7& \bf R8& \bf R9& \bf R10\\
\hline
Text&\bf R1& \bf R2& \bf R3& \bf R4& \bf R5& \bf R6& \bf R7& \bf R8& \bf R9& \bf R10\\
\hline

\end{tabular}
\end{center}

\bf{\caption{Caractéristiques du Réseau 1}}
\end{table}

当我插入Nb pages Amis\\ et leurs Amis一行空白时,我想消除这个

答案1

要将文本垂直居中在跨左上角,请使用多行。

\usepackage{multirow}

节省了一些您未在单元格中同时使用多行和多列的工作。要重现您概述的表格,您可以使用此示例代码。我稍微更改了大小以使其适合我的示例文档,因此您必须对其进行一些调整以供使用。

multirow:第一个参数是跨越多少行,第二个参数用于指定宽度,* 表示自动调整内容长度,第三个参数是单元格的内容。

cline:参数是应该从哪列到哪列画线。

http://en.wikibooks.org/wiki/LaTeX/Tables#Spanning

\begin{table}[!h]
\centering
\begin{tabular}{|p{0.65cm}|p{0.65cm}|p{0.65cm}|p{0.65cm}|p{0.65cm}|p{0.65cm}|p{0.65cm}|p{0.65cm}|p{0.65cm}|p{0.65cm}|p{0.65cm}|}\hline
    \multirow{2}{*}{ct} & \multicolumn{2}{|c|}{ct} & \multicolumn{2}{|c|}{ct} & \multicolumn{2}{|c|}{ct} & \multicolumn{2}{|c|}{ct}& \multicolumn{2}{|c|}{ct}     \\ \cline{2-11}
    & sub& sub& sub& sub& sub& sub& sub& sub& sub& sub\\ \hline
    row & fill& fill& fill& fill& fill& fill& fill& fill& fill& fill\\\hline
    row & fill& fill& fill& fill& fill& fill& fill& fill& fill& fill\\\hline
    row & fill& fill& fill& fill& fill& fill& fill& fill& fill& fill\\\hline
\end{tabular}
\end{table}

答案2

也许是这样的?

在此处输入图片描述

\documentclass[landscape]{scrartcl}
\usepackage{geometry}
\begin{document}
\begin{table}[!h]
\begin{center}
\begin{tabular}{p{1.3cm}|p{1.3cm}|p{1.3cm}|p{1.3cm}|p{1.3cm}|p{1.3cm}|p{1.3cm}|p{1.3cm}|p{1.3cm}|p{1.3cm}|p{1.3cm}|}
\cline{2-11}
&\multicolumn{2}{|p{2.5cm}|} {\bf 100 Pages }& \multicolumn{2}{|p{2.5cm}|} {\bf 250 Pages }& \multicolumn{2}{|p{2.5cm}|} {\bf 500 Pages }& \multicolumn{2}{|p{2.5cm}|} {\bf 750 Pages }& \multicolumn{2}{|p{2.5cm}|} {\bf 1000 Pages }\\
\cline{2-11}
&\bf R1& \bf R2& \bf R3& \bf R4& \bf R5& \bf R6& \bf R7& \bf R8& \bf R9& \bf R10\\
\hline
Text&\bf R1& \bf R2& \bf R3& \bf R4& \bf R5& \bf R6& \bf R7& \bf R8& \bf R9& \bf R10\\
\hline
Text&\bf R1& \bf R2& \bf R3& \bf R4& \bf R5& \bf R6& \bf R7& \bf R8& \bf R9& \bf R10\\
\hline
Text&\bf R1& \bf R2& \bf R3& \bf R4& \bf R5& \bf R6& \bf R7& \bf R8& \bf R9& \bf R10\\
\hline

\end{tabular}
\end{center}

\bf{\caption{Caractéristiques du Réseau 1}}
\end{table}

\end{document}

相关内容