自定义图表和表格的标题

自定义图表和表格的标题

我是乳胶的新手,在进行定制时面临困难。

在我的论文中,我所在单位对图表标题的要求是:标题应为“图1.2 xxx”,“表2.3 yyy”

但是,目前我的论文文档的 pdf 报告中的标题类似于“图 1.3:xxx”,“表 2.3:yyy”,如下所示:

在此处输入图片描述

因此它不会全部都是大写字母,并且不应该有“:”。

您能帮我调整标题选项以满足我所在机构的要求吗?

附言

我的工作示例:

相关软件包:

\usepackage{caption}
\captionsetup{justification=raggedright,singlelinecheck=false}
\setlength{\captionmargin}{0pt}
\usepackage{subcaption}
\usepackage{float}
\usepackage{graphicx}

主文本中的图形条目。

\begin{figure}[h]
    \centering
    \includegraphics[width=0.75\linewidth]{figures/error_photoss.pdf}
    \caption[...]{...}
    \label{fig:some_photo}
\end{figure}

最好的祝愿,

答案1

您可以指定\captionsetup[figure]{labelsep=space,labelfont=md},这将解决您的问题。

添加您可以使用的表格\captionsetup[table]{labelsep=space,labelfont=md}

或者你可以“合并”使用\captionsetup{labelsep=space,labelfont=md}

链接到不同的labelsep 自定义浮动环境的标题∗

\documentclass[12pt]{report}

\usepackage{caption} \captionsetup{justification=raggedright,singlelinecheck=false} \setlength{\captionmargin}{0pt}
\usepackage{subcaption}
\usepackage{float}
\usepackage{graphicx}

\captionsetup{labelsep=space,labelfont=md}

\begin{document}

\chapter{Lorem}

\begin{figure}[h]
\centering
\includegraphics[width=0.75\linewidth]{figures/error_photoss.pdf} 
\caption[...]{...}
\label{fig:some_photo}
\end{figure}

\end{document}

相关内容