我想创建一个看起来像这样的表格,但是没有任何运气。
但是下面的代码产生了这个问题(看下面),并且在最后一种情况下我遇到了一个比之前更大的问题。
\documentclass{article}
\usepackage{multirow}
\begin{document}
\begin{table}[]
\begin{tabular}{|c|c|c|c|c|l|l|c|l|l|}
\hline
\multirow{2}{*}{Les Expressions} & \multicolumn{2}{c|}{Polynôme ?} & $\rm{d^{\circ}}(P(x))$ & \multicolumn{6}{c|}{Coef de monôme de degré} \\ \cline{2-10}
& Oui & Non & 4 & \multicolumn{3}{c|}{2} & \multicolumn{3}{c|}{3} \\ \hline
$x^{6}+24x^{2}+\frac{\sqrt{2}}{5}$ & Oui & Non & 4 & \multicolumn{3}{c|}{2} & \multicolumn{3}{c|}{3} \\ \hline
\end{tabular}
\end{table}
\end{document}
答案1
表格数组如果您想快速绘制更加个性化的表格,这非常方便:
\documentclass{article}
\usepackage{tabularray}
\begin{document}
\begin{table}[tbh]
\footnotesize
\centering
\begin{tblr}{
width = \linewidth,
stretch = 1.75,
colspec = {X[4,c] *2{X[1,c]} X[5,c] *2{X[3,c]}},
%%% More customised lines
hline{1,Z} = {0.8pt},
hline{3} = {0.5pt},
hline{2} = {2-3}{0.3pt,rightpos=-1,endpos},
hline{2} = {4}{0.3pt,leftpos=-1,rightpos=-1},
hline{2} = {5-6}{0.3pt,leftpos=-1,endpos},
%%% Alternatively just use regular lines
% vlines,hlines,
cell{1}{1} = {r=2}{},
cell{1}{2} = {c=2}{},
cell{1}{5} = {c=2}{},
}
Les Expressions & Polynôme ? & & $\rm{d^{\circ}}(P(x))$ & Coef de monôme de degré & \\
& Oui & Non & 4 & 2 & 3 \\
$x^{6}+24x^{2}+\frac{\sqrt 2}{5}$ & Oui & Non & 4 & 2 & 3 \\
$x^{6}+24x^{2}+\frac{\sqrt 2}{5}$ & Oui & Non & 4 & 2 & 3 \\
$x^{6}+24x^{2}+\frac{\sqrt 2}{5}$ & Oui & Non & 4 & 2 & 3 \\
\end{tblr}
\end{table}
\end{document}
如果您想要使用标准 LaTeX 的常规规则和条形图,请删除以 开头的所有行的代码部分hline{}...
并取消注释vlines,hlines,
。
编辑。带有水平线和垂直线的表格。
\documentclass{article}
\usepackage{tabularray}
\begin{document}
\begin{table}[tbh]
\footnotesize
\centering
\begin{tblr}{
width = \linewidth,
stretch = 1.75,
colspec = {X[4,c] *2{X[1,c]} X[5,c] *2{X[3,c]}},
vlines, hlines,
cell{1}{1} = {r=2}{},
cell{1}{2} = {c=2}{},
cell{1}{5} = {c=2}{},
}
Les Expressions & Polynôme ? & & $\rm{d^{\circ}}(P(x))$ & Coef de monôme de degré & \\
& Oui & Non & 4 & 2 & 3 \\
$x^{6}+24x^{2}+\frac{\sqrt 2}{5}$ & Oui & Non & 4 & 2 & 3 \\
$x^{6}+24x^{2}+\frac{\sqrt 2}{5}$ & Oui & Non & 4 & 2 & 3 \\
$x^{6}+24x^{2}+\frac{\sqrt 2}{5}$ & Oui & Non & 4 & 2 & 3 \\
\end{tblr}
\end{table}
\end{document}