如何防止 \subsection 或 \section 之后换行

发布于 2024-09-09 00:14:28 字数 237 浏览 1 评论 0原文

这里我查询了如何识别 \subsection\theorem 的计数器。

结果的外观将是相同的(除了数学特定的内容,例如定理内的内容被强调)。

有办法做到这一点吗?谢谢。

Here I queried how to identify the counters for \subsection and \theorem.

The resulting look would be the same (except for the math-specific things, like the content inside a theorem is put in emphasis) if only there is a way to prevent linebreaks after \subsection.

Is there a way to do this? Thanks.

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

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

发布评论

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

评论(2

南汐寒笙箫 2024-09-16 00:14:28

一种方法是使用 titlesec 包来格式化带有“runin”的部分。一旦您安装了 titlesec 软件包以供使用,您可以将其放在序言中:

\usepackage{titlesec}

\titleformat{\subsection}[runin]
{\normalfont\large\bfseries}{\thesubsection}{1em}{}

除了“runin”选项之外,上面的格式设置是小节的默认设置。这些当然可以修改,例如,如果您希望小节标题与定理标题大小相同,则可以去掉“\large”。

One way is by using the titlesec package to format the section with 'runin'. Once you've installed the titlesec package for use you can put this in the preamble:

\usepackage{titlesec}

\titleformat{\subsection}[runin]
{\normalfont\large\bfseries}{\thesubsection}{1em}{}

The formatting settings above other than the 'runin' option are the default settings for subsections. Those can of course be modified, e.g., you could take out the '\large' if you wanted the subsection headings to be same size as the theorem headings.

蓝海 2024-09-16 00:14:28

Darnit,Herb 在我打字时节拍...

FWIW,titleformat 的完整选项是:

\titleformat{command}[shape]{format}{label}{sep}{before} [after]

这是大约一年前的一个问题:

https://stackoverflow。 com/questions/1469096/no-newline-after-subsection

Darnit, Herb beat as I was typing...

FWIW, the full options to titleformat are:

\titleformat{command}[shape]{format}{label}{sep}{before}[after]

This was a question on SO about a year ago:

https://stackoverflow.com/questions/1469096/no-newline-after-subsection

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