如何将图形的标题放在“图形”一词下方,而不是图形的图像下方

如何将图形的标题放在“图形”一词下方,而不是图形的图像下方

在此处输入图片描述我一直在尝试将“图”字加粗,并将标题放在“图”字下方,而不是图像下方。我不知道我是否能让人理解,但我不想将标题写在图形下方。因为单词数字应该在 APA 中加粗,标题不应该在分号前面,而应该在分号下面。我附上一张截图来说明我的意思。谢谢

答案1

假设您正在使用与该包兼容的文档类caption,则在序言中运行的以下指令应该可以让您实现与标题相关的格式化目标。

\usepackage{caption}
\captionsetup{labelfont=bf, textfont=it, labelsep=newline,
              singlelinecheck=false}

满满的平均能量损失及其输出:

在此处输入图片描述

\documentclass[]{article}
\usepackage{caption}
\captionsetup{labelfont=bf,textfont=it,labelsep=newline,
              singlelinecheck=false}
\begin{document}
\renewcommand{\familydefault}{\sfdefault} % just for this example

\begin{figure}
\caption{Finsec's Communication Networks}
\end{figure}
\end{document}

相关内容