我使用文档类编写乳胶IEEEtran
,使用TexLive 2022。
我想要在表格的一个单元格中换行文本(“参与者人数”),如下所示:
\documentclass[journal]{IEEEtran}
\usepackage{tabualarx,caption}
\begin{document}
\begin{table}[ht]
\renewcommand{\arraystretch}{1.25}
\captionof{table}{Participation}
\label{tab:example_MRT}
\noindent\begin{tabularx}{\linewidth} { |
c |
>{\raggedright\arraybackslash}X |
}
\hline
\textbf{The number of participants} & \textbf{Destination} \\
\hline
$1$ & A \\
\hline
$2$ & B \\
\hline
$3$ & C\\
\hline
$4$ & D\\
\hline
\end{tabularx}
\end{table}
\end{document}
但是,结果如下。
需要添加什么代码才能使“参加人数”字样换行成两行?
谢谢。
答案1
您可以\makecell
从makecell
包中使用
\documentclass[journal]{IEEEtran}
\usepackage{tabularx}
\usepackage{caption}
\usepackage{makecell}
\begin{document}
\begin{table}[ht]
\renewcommand{\arraystretch}{1.25}
\captionof{table}{Participation}
\label{tab:example_MRT}
\noindent\begin{tabularx}{\linewidth} { |
c |
>{\raggedright\arraybackslash}X |
}
\hline
\textbf{\makecell{The number of\\participants}} & \textbf{Destination} \\
\hline
$1$ & A \\
\hline
$2$ & B \\
\hline
$3$ & C\\
\hline
$4$ & D\\
\hline
\end{tabularx}
\end{table}
\end{document}
不相关但caption
不兼容IEEEtran
,并且您的\captionof
破坏了表格标题设置。