我想要制作一张表格,其中有一列必须很粗!有人可以修复它吗?
\begin{table}[!h]\label{Table}
\caption{random symmetrized instances}
\begin{center}
\begin{tabular}{|c|c|c|}
Name & The generators of the symmetry group & Dimension & \\
\hline
NS1 & $(1,7,12,16,19,21,6)(2,8,13,17,20,5,11)(3,9,14,18,4,10,15),
(4,6,5)(9,11,10)(13,15,14)(16,18,17)(19,20,21)$ & 21 \\
\hline
NS2 & $ (1,2,3,4,5)$ & 5
\hline
\end{tabular}
\end{center}
\end{table}
答案1
tabularx
允许您拥有“尽可能宽”的列。
\documentclass{article}
\usepackage{tabularx}
\usepackage{booktabs}
\begin{document}
\begin{table}[!h]\label{Table}
\caption{random symmetrized instances.}
\begin{tabularx}{\textwidth}{c>{\centering}Xc}
\toprule
Name & The generators of the symmetry group & Dimension \\
\midrule
NS1 & $(1,7,12,16,19,21,6)$, $(2,8,13,17,20,5,11)$, $(3,9,14,18,4,10,15)$,
$(4,6,5)$, $(9,11,10)$, $(13,15,14)$, $(16,18,17)$, $(19,20,21)$ & 21 \\
\midrule
NS2 & $ (1,2,3,4,5)$ & 5\\
\bottomrule
\end{tabularx}
\end{table}
\end{document}
市场上对表格有不同的看法。有人说应该这样bookmarks
做,我在这里也这么说过。但我的个人看法是,最好的表格是那些可以避免的表格。;-) 但有时这是不可能的。那么这bookmarks
是一个不错的工具。