2017-03-12 97 views
0

如何在本地更改\thesection命令? 例如,在所有的章節中,我想要有通常的\thesection,比如 \arabic{chapter}.\arabic{section},但是在一個章節中我寧願只有\arabic{section}本地更改 latex(乳膠)

回答

0

只需設置

{ 
\chapter{Here happen strange things} 
    \renewcommand{\thesection}{\arabic{section}} 
    \section{Without chapter-number} 
} 

通過包裝修改後的章爲支撐,在renewcommand只是將這個單章在工作,而不是外塊。

如果需要,請不要忘記更改subsectionsubsubsection的編號。

+0

非常感謝,它的作品!我以前認爲\ renewcommand只能在\ begin {document} ... \ end {document}之外使用。非常令人驚訝的事情! –