撰写memoir
文档时,使用 可以轻松地只关注一个章节\includeonly
。
\documentclass{memoir}
\title{title}
\author{author}
\includeonly{chap-3}
\begin{document}
\include{chap-0}
\mainmatter
\include{chap-1}
\include{chap-2}
\include{chap-3}
\end{document}
但在 Emacs 上使用memoir
through时org-mode
#+title: title
#+author: author
#+LATEX_CLASS: memoir
#+INCLUDE: "chap-0.org"
#+LATEX_HEADER: \mainmatter
#+INCLUDE: "chap-1.org"
#+INCLUDE: "chap-2.org"
#+INCLUDE: "chap-3.org"
该文档变得单一并且不再能够使用\includeonly
。
#+LaTeX_HEADER: \includeonly{chap-3}
\includeonly
当回忆录文档是整体的时候,有没有办法?
再解决两个问题就好了,但我对其中任何一个都不太抱有希望,因为我相信它们不能直接从 LaTeX 中完成。
- 禁用标题页和序言的输出。
include-ded-only
从第 1 页开始对内容进行编号,以方便作为独立的讲义使用。
如果这些问题都没有答案,我很乐于手动编辑文本,使单个章节成为独立的文章,但这并不适用,memoir
因为像 一样koma-script
,只支持书籍类型,而这需要维护一种模仿 下所做事情的额外风格memoir
。
编辑:
提问的另一种方式
写完memoir
稿件后,如何生成一个只有一章的、以独立文章格式的 PDF 文档?