我无法更改章节的编号类型

我无法更改章节的编号类型

我的学院对论文有特定的规定。其中之一就是分节。第一张图片是我们学院的类型,第二张图片是默认的 latex 类型。但我无法更改默认类型。我想在数字后面加一个点。请帮帮我。 吉里什

入住 2

答案1

这是一个使用低级 LaTeX 宏的解决方案,称为\@seccntformat。它在节号后插入一个点删除节号后的空格。通过此设置,对节的交叉引用将继续按预期工作。

在此处输入图片描述

\documentclass{article}
\usepackage[turkish]{babel} % is this correct?

% Method proposed in "The LaTeX Companion", 2nd ed.:
\makeatletter
\def\@seccntformat#1{\@ifundefined{#1@cntformat}%
   {\csname the#1\endcsname\space}%    default
   {\csname #1@cntformat\endcsname}}%  enable individual control
\newcommand\section@cntformat{\thesection.}% section-level: period, no space
\makeatother

\begin{document}
\section{G\.IR\.I\c{S}}
\end{document}

相关内容