如何使用文章类在节号后添加句点?
我正在使用带有代码的文章类:
\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
我想要的是节号后的句点:
Foo
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:
Foo
Bar
I cannot change away from the article class. How would I accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 titlesec 包并放入序言:
Use the titlesec package and put in the preamble:
不确定,因为我重新格式化的电脑中仍然没有乳胶,但它应该是这样的:
你应该把它放在文档的序言中。绝对不确定正确性(现在无法尝试)。
Not sure, since I have still no latex in my, reformatted, pc but it should be something like:
You should put it in preamble of document. Absolutely not sure about correctness (no way to try it now).