如何更改表格标题的字体,同时保持其字体类型不变

如何更改表格标题的字体,同时保持其字体类型不变

我正在使用的IEEEtran模板,其中表格标题的字体大小看起来比其已发表的论文小。

模板代码:

\documentclass[10pt,journal,compsoc]{IEEEtran}
\begin{document}
\title{Bare Demo of IEEEtran.cls for\\ IEEE Computer Society Journals}
\markboth{Journal of \LaTeX\ Class Files,~Vol.~14, No.~8, August~2015}%
\IEEEraisesectionheading{\section{Introduction}\label{sec:introduction}}
\IEEEPARstart{T}{his} demo file
\begin{table}[!t]
    \renewcommand{\arraystretch}{1.3}
    \caption{A Simple Example Table} \label{table_example}
    \centering
    \begin{tabular}{c||c} \hline
      \bfseries First & \bfseries Next\\
      \hline\hline 1.0 & 2.0\\
      \hline
    \end{tabular}
\end{table}
\end{document}

输出:

在此处输入图片描述

这里表格标题的字体与整篇论文不同,我无法增加其字体,同时保持表格独特的字体类型不变。


以 IEEE 发表的论文为例,当我放大时,表格标题的字体会稍微大一点(我只能捕获其 pdf 视图,不确定这是否有帮助)。当我并排放置右侧表格时(已发表论文的标题字体看起来更大。)

在此处输入图片描述

我只是想稍微增加表格标题的字体大小,同时保持其原始字体类型不变。

答案1

对您的 MWE 进行轻微更改:

% captionprob.tex  SE 664313
\documentclass[10pt,journal,compsoc]{IEEEtran}
\begin{document}
\title{Bare Demo of IEEEtran.cls for\\ IEEE Computer Society Journals}
\markboth{Journal of \LaTeX\ Class Files,~Vol.~14, No.~8, August~2015}%
\IEEEraisesectionheading{\section{Introduction}\label{sec:introduction}}
\IEEEPARstart{T}{his} demo file
\begin{table}[!t]
    \renewcommand{\arraystretch}{1.3}
%    \caption{A Simple Example Table} \label{table_example}
    \caption{{\Huge A Simple Example Table}} \label{table_example} %%% change here
    \centering
    \begin{tabular}{c||c} \hline
      \bfseries First & \bfseries Next\\
      \hline\hline 1.0 & 2.0\\
      \hline
    \end{tabular}
\end{table}
\end{document}

相关内容