感谢评论,我在书中找到了更好的解决方案2:

感谢评论,我在书中找到了更好的解决方案2:

我正在写一篇论文,我想写一个应该放在目录中的简介。有什么想法可以把它放在目录中吗?

这是我的代码

\thispagestyle{empty}
{\Huge \textbf{Intro}}

\bigskip

\bigskip

\lipsum[1]

编辑

这是我的目录

目录

人物

表格

简介 <- 我想要在这里放我的简介

1 第 1 章 1.1 节

答案1

\documentclass{scrbook}

\begin{document}
\tableofcontents
\addcontentsline{toc}{section}{Introduction} % what looks better section or chapter?
\section*{Introduction} % * prevents the numbering. We already added it manually to toc above
\chapter{Theory}
\chapter{Experiment}
\end{document}

引言示例

感谢评论,我在书中找到了更好的解决方案2

使用其中一个命令

\addpart[short]{long headline}
\addpart*{long headline}
\addchap[short]{long headline}
\addchap*{long headline}
\addsec[short]{long headline}
\addsec*{long headline}

工作示例

\documentclass{scrbook}

\begin{document}
\tableofcontents

\addpart[Day 1]{Day one}
\addsec*{Introduction}
\addchap{Theory}
\addpart[Experiments]{Nice experiments}
\end{document}

コマナ 第 115 页在 Kohm, Markus 和 Morawski, Jens-Uwe 著:KOMA-Script - Die Anleitung; DANTE eV、Lehmanns Media、4. 扩展选项。 2012 592页(ISBN 978-3-86541-459-5;

答案2

嗯,有使用\frontmatter命令的解决方案:

%& --translate-file=utf-8
\documentclass{book}
\usepackage[utf8]{inputenc}

\begin{document}

\frontmatter
\chapter*{Intro}
\addcontentsline{toc}{section}{Intro}

Some text 

\mainmatter

\chapter{FIRST}
 Some more text

\backmatter

\tableofcontents

\end{document}

相关内容