如何使用文章类在节号后添加句点?

发布于 2024-08-15 11:15:04 字数 342 浏览 2 评论 0原文

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

\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. Foo

  2. Bar

我无法更改来自文章类。我将如何实现这个目标?

I am using the article class with the code:

\documentclass[12pt]{article}

\begin{document}
\section{Foo}
This is an example of foo.
\section{Bar}
This is an example of bar.
\end{document}

This produces:

1 Foo

2 Bar

What I want is a period after the section number:

  1. Foo

  2. Bar

I cannot change away from the article class. How would I accomplish this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

小镇女孩 2024-08-22 11:15:04

使用 titlesec 包并放入序言:

\titlelabel{\thetitle.\quad}

Use the titlesec package and put in the preamble:

\titlelabel{\thetitle.\quad}
温柔戏命师 2024-08-22 11:15:04
\renewcommand{\thesection}{\arabic{section}.}
\renewcommand{\thesection}{\arabic{section}.}
迷路的信 2024-08-22 11:15:04

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

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

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

Not sure, since I have still no latex in my, reformatted, pc but it should be something like:

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

You should put it in preamble of document. Absolutely not sure about correctness (no way to try it now).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文