我正在使用带有代码的文章类:
\documentclass[12pt]{article}
\begin{document}
\section{Foo}
This is an example of foo.
\section{Bar}
This is an example of bar.
\end{document}
这会产生:
1 Foo
2 Bar
我想要的是节号后面的句号:
富
酒吧
我无法改变文章类。我该如何做到这一点?
答案 0 :(得分:7)
使用 titlesec 包并加入序言:
\titlelabel{\thetitle.\quad}
答案 1 :(得分:3)
\renewcommand{\thesection}{\arabic{section}.}
答案 2 :(得分:-1)
不确定,因为我仍然没有乳胶,重新格式化,但它应该是这样的:
\def\thesection {\arabic{section}.}
你应该把它放在文件的序言中。绝对不确定正确性(现在无法尝试)。