如何使用文章类在节号后面加上句号?

时间:2009-12-17 23:47:12

标签: latex article

我正在使用带有代码的文章类:

\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

我想要的是节号后面的句号:

  1. 酒吧

  2. 我无法改变文章类。我该如何做到这一点?

3 个答案:

答案 0 :(得分:7)

使用 titlesec 包并加入序言:

\titlelabel{\thetitle.\quad}

答案 1 :(得分:3)

\renewcommand{\thesection}{\arabic{section}.}

答案 2 :(得分:-1)

不确定,因为我仍然没有乳胶,重新格式化,但它应该是这样的:

\def\thesection {\arabic{section}.}

你应该把它放在文件的序言中。绝对不确定正确性(现在无法尝试)。