如果我想在目录的乳胶代码中使用它,我该怎么办

如果我想在目录的乳胶代码中使用它,我该怎么办

我尝试在乳胶中构建目录,但它必须采用此图中的形式。我该怎么做? 在此处输入图片描述

答案1

这是我尝试使用一些简单的 LaTeX 代码模拟您在 Word 中创建的内容(大概)。此代码示例是 @chmhughes 所称的最小工作示例 (MWE),您应该能够编译它。

此示例中有几点需要注意:

1) 此代码向您展示了如何在内容页面中包含章节和子章节的基本工作原理。我没有创建您的目录的精确副本,但为您提供了所有组件以供您自己完成。

2) 我省略了您目录中对目录的引用,因为这有点多余。

\documentclass[12pt,a4paper]{report}

\begin{document}

\pagenumbering{roman}
\chapter*{Thai Abstract}
\addcontentsline{toc}{chapter}{Thai Abstract}

\chapter*{English Abstract}
\addcontentsline{toc}{chapter}{English Abstract}

\chapter*{Acknowledgements}
\addcontentsline{toc}{chapter}{Acknowledgements}

\tableofcontents
\newpage

\addcontentsline{toc}{chapter}{List of Figures}
\listoffigures
\newpage

\addcontentsline{toc}{chapter}{List of Tables}
\listoftables
\newpage

\pagenumbering{arabic}
\chapter{Introduction}
\section{Motivation and literature surveys}
\section{Research objective}
\section{Thesis overview}

\chapter{Example Chapter}
\section{Example section}
\subsection{Example subsection}
\subsubsection{Example subsubsection}

\end{document}

这应该输出类似这样的内容:

在此处输入图片描述

如果您想更改目录页的字体和样式,我建议您查看此问题如何更改字体

使用此模板撰写论文需要将所有内容放在一个文档中,这样会非常难看和混乱。我建议您查看命令\include,因为您可以创建几个较小的文档,例如泰语摘要、英语摘要等,然后使用该\include{filename}命令将这些文档调用到目录页中。请注意,文件名必须是您正在调用的文件的名称,例如\include{thaiabs}将调用您在其中编写泰语摘要的 thaiabs.tex 文件。

所以:

\documentclass[12pt,a4paper]{report}

\begin{document}

\pagenumbering{roman}
\include{thaiabs}
\include{engabs}
\include{acknowledgements}

\tableofcontents
\newpage

\addcontentsline{toc}{chapter}{List of Figures}
\listoffigures
\newpage

\addcontentsline{toc}{chapter}{List of Tables}
\listoftables
\newpage

\pagenumbering{arabic}

\include{introduction}

\include{example}

\end{document}

thaiabs.tex 文件将包含:

\chapter*{Thai Abstract}
\addcontentsline{toc}{chapter}{Thai Abstract}

Type your abstract here.

engabs.tex 文件将包含:

\chapter*{English Abstract}
\addcontentsline{toc}{chapter}{English Abstract}

Type your abstract here.

Introduction.tex 文件将包含:

\chapter{Introduction}
\section{Motivation and literature surveys}
\section{Research objective}
\section{Thesis overview}

example.tex 文件将包含:

\chapter{Example Chapter}
\section{Example section}
\subsection{Example subsection}
\subsubsection{Example subsubsection}

相关内容