表格标题问题

表格标题问题

我正在用 Latex 制作表格。一切都很好,但标题部分不是我想要的样子。我希望表格的整个标题在一行中,而不是像现在这样在两行中在此处输入图片描述现在如图所示。我是这样做的。

\begin{table}[h]
\caption {Parameters for Energy Model} 
\begin{center}
\footnotesize
\begin{tabular} {|r|c|}
\hline
\textbf{Parameter}      &   \textbf{Value}   \\
\hline
Power in recieving      &    5W     \\
\hline
Power in sleep mode     &   250mW (assumed 5\% of $P_{Rx}$) \\
\hline
RF efficiency           &   20\%    \\
\hline
Supply loss efficiency  &   10\%    \\
\hline
Cooling efficiency      &   50\%    \\
\hline
Max transmit power      &   5W      \\
\hline
Wakeup Energy           &   50J     \\
\hline
\end{tabular}
\end{center}
\end{table}

答案1

如果您不受期刊关于如何设置此类内容的政策的约束,您可能需要加载可以caption为您“修复”此问题的软件包。请注意,标题的字体大小比以前略大。请阅读手册caption以了解如何调整此类内容。如果只更改表格中的某些内容,它看起来应该像这样\captionsetup[table]{...}编辑:我插入了一些接近默认值的内容。

% arara: pdflatex

\documentclass{IEEEtran} 
\usepackage{caption}
\captionsetup[table]{font={small,sc},labelsep=colon}
\usepackage{siunitx}
\usepackage{booktabs}

\begin{document}
\begin{table}[h]
    \centering
    \caption {Parameters for Energy Model} 
        \footnotesize
        \begin{tabular}{ll}
            \toprule
            \textbf{Parameter} & \textbf{Value} \\
            \midrule
            Power in recieving & \SI{5}{\watt} \\
            Power in sleep mode & \SI{250}{\milli\watt} (assumed \SI{5}{\percent} of $P_{Rx}$) \\
            RF efficiency & \SI{20}{\percent} \\
            Supply loss efficiency & \SI{10}{\percent} \\
            Cooling efficiency & \SI{50}{\percent} \\
            Max transmit power & \SI{5}{\watt} \\
            Wakeup Energy & \SI{50}{\joule} \\
            \bottomrule
        \end{tabular}
\end{table}
\end{document}

在此处输入图片描述

相关内容