更新节命令后,标题编号自定义浮动出现问题

更新节命令后,标题编号自定义浮动出现问题

我怎样才能避免在不删除的情况下出现标题中的这个额外点 \renewcommand{\thesection}{\arabic{section}.}

\documentclass[12pt,a4paper]{article}
\usepackage[croatian]{babel}
\usepackage{float} 

\renewcommand{\thesection}{\arabic{section}.}

\floatstyle{plain}
\newfloat{graphic}{thp}{lop}[section] 
\floatname{graphic}{Grafikon}

\begin{document}

\begin{graphic}
\caption{some fancy \texttt{caption} }
\label{fig:flowchart}
\end{graphic}

\end{document}

答案1

您不想在中添加句点\thesection,而是想修改章节标题的排版方式,在数字后添加句点;不幸的是,没有“官方”用户界面来实现这一点,但这也不难。

\documentclass[12pt,a4paper]{article}
\usepackage[croatian]{babel}
\usepackage{float}

\makeatletter
\renewcommand{\@seccntformat}[1]{\csname the#1\endcsname.\quad}
\makeatother

\floatstyle{plain}
\newfloat{graphic}{thp}{lop}[section]
\floatname{graphic}{Grafikon}

\begin{document}
\section{Grafikon}
\begin{graphic}
\caption{some fancy \texttt{caption}}
\label{fig:flowchart}
\end{graphic}

\end{document}

在此处输入图片描述

相关内容