pdflatex 目录中的部分

发布于 2024-07-25 06:54:07 字数 358 浏览 6 评论 0原文

我有一篇论文,我想使用 \part 命令将一些章节组合在一起。

我想要的是以下内容:

  • 第一章第一
  • 部分
    • 第 2 章
    • 第三章
  • 第二部分
    • 第 4 章
    • 第 5 章
  • 第 6 章

所以最后一章应该再次与各部分处于同一水平。 在文本的目录中,您无法真正检测到它,因为无论如何,各个部分都处于同一级别。 问题是在 PDF 中,第 6 章被添加到第 II 部分下。 有谁知道有什么方法可以改变这种情况?

I have a thesis in which I want to group some chapters together, using the \part command.

What I would like is to have the following:

  • Chapter 1
  • Part I
    • Chapter 2
    • Chapter 3
  • Part II
    • Chapter 4
    • Chapter 5
  • Chapter 6

So the last chapter should again be on the same level as the parts. In the table of contents of the text you can't really detect it, because Parts are on the same level anyway.
The problem is that in the PDF, the chapter 6 is added under Part II.
Does anyone know of a way to change that?

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

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

发布评论

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

评论(2

那支青花 2024-08-01 06:54:07

bookmark 包可以很好地做到这一点,除此之外。 它还仅使用一次即可将 PDF 书签嵌入到文档中。

\part{...}
\chapter{...}
\bookmarksetup{startatroot}
\chapter{...}

The bookmark package can do this quite nicely, among other things. It also only uses a single pass to embed PDF bookmarks into the document.

\part{...}
\chapter{...}
\bookmarksetup{startatroot}
\chapter{...}
晨光如昨 2024-08-01 06:54:07

LaTeX 做错的事实可能意味着文档的结构有问题: \part 并不意味着对章节进行分组,而是将文档分成几部分。 不同之处在于每一章都应该是一个部分。

尝试使用“简介”或“预备知识”作为包含第 1 章的部分的名称。

也许可以解决此问题,但您必须在整个文档中重新定义命令。 对于不是一次性的章节,手动步进章节计数器,并使用正确的参数手动调用 \addcontentsline 可能是值得的。 然而,恕我直言,这是 LaTeX 的错误使用:对于结构良好的文档,标准 LaTeX 命令应该足够了。

The fact that LaTeX does it wrong probably means that something is wrong with the structure of your document: \part is not meant to group chapters, but to devide the document in parts. The difference is that every chapter should be in a part.

Try 'introduction' or 'preliminaries' as a name for the part containing chapter 1.

It might be possible to work around, but you'd have to redefine command throughout the document. It might be worthwhile to use \chapter* for chapters not in a pat, step the chapter-counter manually, and manually call \addcontentsline with the right argument. However, this is IMHO bad use of LaTeX: for well-structured documents, the standard LaTeX commands should suffice.

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