我对这张表有点困惑。如您所见,表格没有关闭,我希望其他两列的标题与第一列垂直和水平居中。有什么办法可以解决这个问题吗?
以下是我的脚本片段:
\begin{table}
\begin{center}
\begin{tabular}{| c | c | c |}
\hline
\textbf{Range of the}~\\ \textbf{diameter (in mm)} & $\mathbf{N_{\mathrm{turns}}}$& $\mathbf{N_{\mathrm{turns}}}$ \textbf{per meter}\\ \hline
$0.100 \leq d < 0.250 $ & 33 & 246 \\
$0.250 \leq d < 0.355 $ & 23 & 184 \\
$0.355 \leq d < 0.500 $ & 16 & 128 \\
$0.500 \leq d < 0.710 $ & 12 & 96 \\
$0.710 \leq d < 1.060 $ & 8 & 64 \\ \hline
\end {tabular}
\newline
\end{center}
\end{table}
提前致谢
答案1
\documentclass{article}
\begin{document}
\begin{tabular}{| c | c | c |}
\hline
\textbf{%
\begin{tabular}{@{}c@{}}
Range of the\\
diameter (in mm)
\end{tabular}}
& $\mathbf{N_{\mathrm{turns}}}$& $\mathbf{N_{\mathrm{turns}}}$ \textbf{per meter}\\ \hline
$0.100 \leq d < 0.250 $ & 33 & 246 \\
$0.250 \leq d < 0.355 $ & 23 & 184 \\
$0.355 \leq d < 0.500 $ & 16 & 128 \\
$0.500 \leq d < 0.710 $ & 12 & 96 \\
$0.710 \leq d < 1.060 $ & 8 & 64 \\ \hline
\end {tabular}
\end{document}