我正在使用KOMA-script
LYX 2.3 编写一本书。前两章(前言和简介_)没有编号。我可以使用例如将它们添加到目录中。 \addcontentsline{toc}{chapter}{Preface}
但是,页眉不显示章节名称。
我尝试将其添加\usepackage{scrlayer-scrpage}
到 LaTeX 序言和\pagehead {Preface}
正文中。结果出现错误消息:
尝试输出 pdf 时出现“未定义的控制序列”。
有什么建议吗?
答案1
使用文档类,您可以在前言中scrbook
使用\frontmatter
和\mainmatter
和来表示未编号的章节。\chapter
例子:
\documentclass{scrbook}
\usepackage{lipsum}% only for dummy text
\begin{document}
\frontmatter
\tableofcontents
\chapter{Preface}
\lipsum
\chapter{Introduction}
\lipsum
\mainmatter
\chapter{Foo}
\lipsum
\end{document}
或者您可以将其用于\addchap
无编号章节。
例子:
\documentclass{scrbook}
\usepackage{lipsum}% only for dummy text
\begin{document}
\tableofcontents
\addchap{Preface}
\lipsum
\addchap{Introduction}
\lipsum
\chapter{Foo}
\lipsum
\end{document}