隐藏 {report} 文档类任何部分标题中的“0”

隐藏 {report} 文档类任何部分标题中的“0”

我有一份结构化部分的报告,如下所示:

\documentclass{report}  
\usepackage[compact,explicit]{titlesec}  
\begin{document}  
\titleformat{\section}[runin]{\large\bfseries}{}{0pt}{#1\quad\thesection}  

\section{Pasal}  
\section{Pasal}  
\section{Pasal}  
\section{Pasal}  
\section{Pasal}  

\end{document} 

所有 \section{Pasal}生成的标题部分 Pasal 0.1、Pasal 0.2 等。请帮忙,我不知道如何删除 0。

答案1

在此处输入图片描述

\documentclass{report}  
\usepackage[compact,explicit]{titlesec}
\renewcommand{\thesection}{\arabic{section}} 
\begin{document}  
\titleformat{\section}[runin]{\large\bfseries}{}{0pt}{#1\quad\thesection}  

\section{Pasal}  
\section{Pasal}  
\section{Pasal}  
\section{Pasal}  
\section{Pasal}  

\end{document}

相关内容