不同类型的压痕

不同类型的压痕

我试图在文档中增加更长的缩进。目前我有:

\documentclass{article}
\usepackage[utf8]{inputenc}
\documentclass[11pt]{article}
\usepackage[a4paper, total={6in, 9in}]{geometry}
\usepackage{tocloft}
\usepackage{textcomp}
\usepackage{tipa}\setlength{\parindent}{1em}
\setlength{\parskip}{1em}
\renewcommand{\baselinestretch}{1.5}

\begin{document}
\begin {center}
\Large \bfseries{Table of Contents}
\end{center} \\ 
\vspace{1cm}
\noindent
\textbf {1 Introduction} \dotfill 4 \\
\indent \emph {1.1 Text} \dotfill 3 \\
\indent \emph {1.1.1 more text}  \dotfill 3\\
\end{document}

我想做的是将“1.1.1 更多文本”从之前的“1.1 文本”向右移动。我尝试过 \hspace{1cm}、\parident 和其他类似的编码。我的文档对这些都没有反应,似乎保持不变。我希望用一个简单的代码来实现,不需要章节和子章节。我是不是用错了包?

提前感谢您,如果这是一个显而易见的问题,我很抱歉。

答案1

正如我提到的,你的文档应该看起来更像这样:

\documentclass[a4paper, 11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[total={6in, 9in}]{geometry}
\usepackage{tocloft}
\usepackage[onehalfspacing]{setspace}
\renewcommand*\contentsname{Table of Contents}
\renewcommand\cftsubsecfont{\itshape}
\renewcommand\cftsubsubsecfont{\itshape}
\renewcommand\cftdotsep{2}
\begin{document}
\tableofcontents
\section{Introduction}
Some text here.
\newpage Some text here.
\newpage Some text here.
\subsection{Text}
Some text here.
\newpage
\subsubsection{More text}
\end{document}

语义标记结果

结果可能还不是您想要的 - 可能需要进一步调整,但基本结构应该是这样的。(尽管您不需要人为地添加内容\newpage只是为了在后面的页面上获得示例。)

也就是说,文档主体说明了文档的每个部分是什么样的东西:这是章节标题,这是目录,这是参考书目。

如果你想改变结果看起来您可以在序言中使用包等进行配置。

您让 LaTeX 确定 9.8.5 子节从哪个页码开始,这样如果它发生变化,您就不必考虑它。页面样式、页眉、页脚等也同样如此。

它不像文字处理软件,需要花点时间去适应,因为如果你已经使用文字处理软件很长时间了,当然按照你习惯的方式做似乎更简单。但从长远来看,这会变得更加复杂,产生不一致和不灵活的结果,并迫使你思考所有计算机擅长而人类无能为力的事情。此外,以这种方式使用 LaTeX 确实不容易。你可以这样做,但你会希望你继续使用文字处理器,因为你会得到 LaTeX 的所有缺点而得不到任何优点。

相关内容