更改标题中的行

更改标题中的行

我想使用 IEEE Access 模板为图形放置多行标题。模板如下:

\Figure[t!](topskip=0pt, botskip=0pt, midskip=0pt){fig1.png}{<caption>\label{fig1}}

我尝试过使用\\\newline但没有效果。这可能吗?

编辑:我提供了一个代码片段

\documentclass{ieeeaccess}
\usepackage{graphicx}
\begin{document}
Text
\Figure[](topskip=0pt,botskip=0pt,midskip=0pt)[width=1\textwidth]{fig1.png}
    {First line\\
     Second line\\
     Third line
     \label{<figure_label>}}
\end{document}

以及模板的链接:IEEE 访问模板。由于我对此还很陌生,因此对于任何错误我深表歉意!

答案1

这是可能的,但我不确定我们所做的更改是否会扭曲模板。因为图形或表格的多行标题需要该caption包。您的模板不使用此包。

当然,用与不用取决于你。

将以下代码行添加到你的序言中:

\usepackage{caption}
\DeclareCaptionFont{ieeeblue}{\color{accessblue}}
\DeclareCaptionLabelFormat{myformat}{\figcapfont{\textbf{#1}\textbf{#2}}}
\captionsetup{labelfont={bf,ieeeblue},labelformat=myformat}

输出:

在此处输入图片描述

相关内容