另一种章节编号格式

另一种章节编号格式

我当前的章节编号格式如下:

1
1.2
1.2,3

但我希望它是这样的:

1-
1-2-
1-2-3-

我应该怎么办?

答案1

重新定义\thesection\thesubsection\thesubsubsection(计数器的表示):

\documentclass{article}

\renewcommand\thesection{\arabic{section}--}
\renewcommand\thesubsection{\thesection\arabic{subsection}--}
\renewcommand\thesubsubsection{\thesubsection\arabic{subsubsection}--}

\begin{document}

\section{Test section}
\subsection{Test subsection}
\subsubsection{Test subsubsection}

\end{document}

在此处输入图片描述

根据评论,似乎bidi包正在被使用;在这种情况下,只需使用 即可进行更改\SepMark,如下例所示:

\documentclass{book}
\usepackage{bidi}

% Use either the next line or the \renewcommand lines below
\SepMark{--}

%\renewcommand\thesection{\arabic{section}--}
%\renewcommand\thesubsection{\thesection\arabic{subsection}--}

\begin{document}

\chapter{Test chapter}
\section{Test section}
\subsection{Test section}

\end{document}

相关内容