我想缩进一个段落,以便其每一行都从相同的位置开始,如下所示:
line 1
line 2
line 3
下面的代码LaTeX
生成缩进的段落如下:
line 1
line 2
line 3
如何纠正?
乳胶:
\section*{\hspace{150pt} Motivation}
\hspace{10pt}\begin{normalsize}
tagging conventions to define the general structure of a document (such as
article, book, and letter), to stylise text throughout a document (such as
bold and italic), and to add citations and cross-referencing. A TeX
distribution such as TeXlive or MikTeX is used to produce an output file
(such as PDF or DVI) suitable for printing or digital distribution.
答案1
我尝试一下:
标准行为
标准段落显示了缩进在里面第一行并且段落之间没有空格(\parskip
为零)。
\documentclass{article}
\usepackage{blindtext}
\begin{document}
\blindtext
\blindtext
\end{document}
标准文档类解决方案
您可以使用parskip
包(CTAN链接)来解决您的问题。
来自文档:
适用于任何大小的任何文档类的包。它生成以下段落布局:
零 Parindent 和非零 Parskip。可拉伸胶水
\parskip
可帮助 LaTeX 找到分页符的最佳位置。此外,该包调整列表项之间的跳过。
此包只不过是快速修复;实现如此深远影响的“正确”方法是创建一个新类。示例类可在集合中找到
ntgclass
:artikel3.cls
捆绑
koma-script
类和memoir
类都提供类似的功能,并且它们各自的文档文件讨论了这种方法的优点(例如它们)和缺点。
\documentclass{article}
% new package
\usepackage{parskip}
\usepackage{blindtext}
\begin{document}
\blindtext
\blindtext
\blindlist{itemize}
\end{document}
糟糕的解决方案:手动更改长度
对你来说重要的是,该包parskip
还处理其他事情。有时你会看到人们手动更改参数,如\setlength{\parindent}{0em}
和,\setlength{\parskip}{1em}
但这被认为是不好的,因为它也会改变列表中项目之间的距离等等。但我不是这方面的专家。
替代解决方案:KOMA 方法
还有所谓的 KOMA-Script(CTAN链接) 文档类(与文章和书籍等标准文档类相反)。
parskip
他们提供了一个名为“处理一切”的文档类选项。
\documentclass[parskip]{scrartcl}
\usepackage{blindtext}
\begin{document}
\blindtext
\blindtext
\blindlist{itemize}
\end{document}
PS:我不明白
\section*{\hspace{150pt} Motivation}
\hspace{10pt}\begin{normalsize}
您的代码的一部分。