我有一张包含两个矩阵的表格。我想将这些矩阵左对齐,而不是居中对齐。我使用的是 IEEE 格式。此外,[]
矩阵的括号非常靠近\hline
表格的括号。我们有什么办法可以在括号和水平线之间留出边距吗?
\begin{table*}[!t]
\renewcommand{\arraystretch}{1.3}
\caption{This is table}
\label{table_network_architecture}
\centering
\begin{tabular}{c|c}
\hline
\bfseries Name & \bfseries Matrix \\
\hline\hline
%Dense 2
Text 1 & $\left[ \begin{array}{c} 30 \times 30 \\ 30 \times 30 \end{array}\right]$\\
\hline
Text 1 & $\left[ \begin{array}{c} 30 \times 30 \\ 30 \times 30 \end{array}\right]-100$\\
\hline
\hline
\end{tabular}
\end{table*}
答案1
我更喜欢booktabs
gernot 展示的方式,但如果你坚持统治你的桌子,你可以使用makecell
:
\documentclass{article}
\usepackage{amsmath}
\usepackage{newtxtext,newtxmath}
\usepackage{makecell}
\begin{document}
\begin{table}[htp]
\centering
\caption{This is table}
\label{table_network_architecture}
\medskip
\setcellgapes{3pt}\makegapedcells
\begin{tabular}{l|l}
\hline
\multicolumn{1}{c|}{\bfseries Name} & \multicolumn{1}{c}{\bfseries Matrix} \\
\hline
Text 1 & $\begin{bmatrix} 30 \times 30 \\ 30 \times 30 \end{bmatrix}$ \\
\hline
Text 2, longer & $\begin{bmatrix} 30 \times 30 \\ 30 \times 30 \end{bmatrix}-100$ \\
\hline
\end{tabular}
\end{table}
\end{document}
答案2
要使列中的元素左对齐,请使用l
而不是c
作为列说明符。
额外空间的问题不能简单地通过增加来解决\arraystretch
,因为它对表的影响与对数组的影响相同。可以\arraystretch
在数组之前立即将重置为 1,但这仍然不会产生良好的间距。解决该问题的一种方法是使用包booktabs
。
最后说明:\left[\begin{array}{c} ... \end{array}\right]
您可以使用\begin{bmatrix} ... \end{bmatrix}
;bmatrix
它是在包中定义的amsmath
。
\documentclass{IEEEtran}
\usepackage{booktabs}
\usepackage{amsmath}
\begin{document}
\begin{tabular}{cl}
\toprule
\bfseries Name & \bfseries Matrix \\
\midrule
Text 1 &
$\begin{bmatrix} 30 \times 30 \\ 30 \times 30 \end{bmatrix}$\\
\midrule
Text 1 &
$\begin{bmatrix} 30 \times 30 \\ 30 \times 30 \end{bmatrix}-100$\\
\bottomrule
\end{tabular}
\end{document}
答案3
可以使用with\fboxsep
在所有边上添加 2pt ( } 间隙。\fbox
\fboxrule=0pt
\documentclass[twocolumn]{article}
\usepackage{mathtools}
\begin{document}
\begin{table*}[!t]
\renewcommand{\arraystretch}{1.3}
\setlength{\fboxrule}{0pt}
\caption{This is table}
\label{table_network_architecture}
\centering
\begin{tabular}{c|l}
\hline
\bfseries Name & \bfseries Matrix \\
\hline\hline
%Dense 2
Text 1 & \fbox{$\left[ \begin{array}{c} 30 \times 30 \\ 30 \times 30 \end{array}\right]$}\\
\hline
Text 1 & \fbox{$\left[ \begin{array}{c} 30 \times 30 \\ 30 \times 30 \end{array}\right]-100$}\\
\hline
\hline
\end{tabular}
\end{table*}
\end{document}
或者,也可以使用以下方法为超大文本添加适当的支柱
\documentclass[twocolumn]{article}
\usepackage{mathtools}
\newcommand{\arraybox}[1]% #1 = extra large text
{\bgroup
\sbox0{#1}% measure
\rule{0pt}{\arraystretch\ht0}% top strut
\rule[-\arraystretch\dp0]{0pt}{0pt}% bottom strut
\box0
\egroup}
\begin{document}
\begin{table*}[!t]
\renewcommand{\arraystretch}{1.3}
\caption{This is table}
\label{table_network_architecture}
\centering
\begin{tabular}{c|l}
\hline
\bfseries Name & \bfseries Matrix \\
\hline\hline
%Dense 2
Text 1 & \arraybox{$\left[ \begin{array}{c} 30 \times 30 \\ 30 \times 30 \end{array}\right]$}\\
\hline
Text 1 & \arraybox{$\left[ \begin{array}{c} 30 \times 30 \\ 30 \times 30 \end{array}\right]-100$}\\
\hline
\hline
\end{tabular}
\end{table*}
\end{document}