从组织模式导出时如何从标题中删除编号?
基本的组织模式标头
* Heading
** Sub-heading
* Another Heading
转换为 html,如下所示
Heading
1.2 副标题
另一个标题
(但想象它们更大并且采用 h1 h2 字体和大小)。如何关闭此功能以使标题不会在输出 html 中编号?
The basic org-mode headers
* Heading
** Sub-heading
* Another Heading
get converted to html like this
Heading
1.2 Sub-heading
Another Heading
(but imagine them larger and in h1 h2 fonts and sizes). How do you turn this off so that the headings are not numbered in the output html?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
奥列格的答案允许您随时禁用所有导出的部分编号。但是,如果您只想在导出时禁用单个文件的编号,您可以使用以下命令:
如果您想将其限制为特定深度,您可以将 nil 替换为一个整数,指定您希望数字显示到哪个标题。例如
#+options: num:1
会将您的示例转换为:请参阅 导出设置,了解可以针对每个文件进行设置的详细信息和其他导出选项。
有关特定于 HTML 的信息,请参阅 HTML 特定设置那些。
Oleg's answer allows you to disable section numbering for all exports at all times. However if you only want to disable numbering on export for a single file you can use the following:
If you want to limit it to only a certain depth you can replace nil with an integer specifying up to which headline you want the numbers to appear. For example
#+options: num:1
would turn your sample into:See Export Setting for the details and other export options that can be set on a per-file basis.
See HTML Specific Settings for HTML specific ones.
您可以自定义组织模式。
然后选择 Org Export/Org Export General/Org Export With Section Numbers
作为替代方案,将以下内容放入您的 .emacs 中
You can customize the org-mode.
Then you choose Org Export/Org Export General/Org Export With Section Numbers
As an alternative put the following in your .emacs