如何将标题编号设置为左侧

如何将标题编号设置为左侧

我有字幕设置:

\captionsetup*[figure]{labelsep=period, name=pav}

结果如下:

在此处输入图片描述

我想要剩下的数字:
“4 pav. Grafinės sąsajos prototimas。”

答案1

这里是;

\documentclass[a4paper,11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx, caption} %

\DeclareCaptionLabelFormat{swap}{#2~#1}

\begin{document}%

\begin{figure}
\captionsetup{labelformat=swap, name = pav, labelsep = period}
  \caption{The Larch}
  \centering%
  \includegraphics[scale = 0.5]{TheLarch}
\end{figure}

\end{document} 

在此处输入图片描述

相关内容