基本上我想做的是使用类似
\input{details.txt}
其中包含:
____这里有一些随机的细节,到处都是东西。这是为了看看 latex 是否能正确使用它并格式化它。如果没有……就会出现问题。这里有一些随机的细节,到处都是东西。这是为了看看 latex 是否能正确使用它并格式化它。如果没有……就会出现问题。这里有一些随机的细节,到处都是东西。这是为了看看 latex 是否能正确使用它并格式化它。如果没有……就会出现问题。这里有一些随机的细节,到处都是东西。这是为了看看 latex 是否能正确使用它并格式化它。如果没有……就会出现问题。这里有一些随机的细节,到处都是东西。这是为了看看 latex 是否能正确使用它并格式化它。如果没有……就会出现问题。
____这里有一些随机的细节,到处都是东西。这是为了看看 latex 是否能正确使用它并格式化它。如果没有...就会出现问题。这里有一些随机的细节,到处都是东西。这是为了看看 latex 是否能正确使用它并格式化它。如果没有...就会出现问题。这里有一些随机的细节,到处都是东西。这是为了看看 latex 是否能正确使用它并格式化它。如果没有...就会出现问题。这里有一些随机的细节,到处都是东西。这是为了看看 latex 是否能正确使用它并格式化它。如果没有...就会出现问题。等等。
*下划线是包含的实际空格。
我希望它看起来像这样:
我觉得这是一个相当琐碎的问题,但我似乎想不出答案。就获取空格而言,Verbatim 是我最接近的方法,但我遇到了自动换行问题。目前我正在处理一个不相关的部分,文本只是在顶部输入代码。这还不错,但段落之间没有制表符或空格。
答案1
您可以在序言中输入以下内容来设置缩进长度(如果您想影响整个文档):
\setlength{\parindent}{1em}
1em
您要考虑的长度是多少? 也可能是 3 毫米或您认为合适的任何其他长度。
例如:
\documentclass{report}
\usepackage[showframe]{geometry} % Just to show you the text block
\begin{document}
\noindent Line zero to show no indentation.
First line with default indentation.
\setlength{\parindent}{15mm}Second line a little more indented.
\setlength{\parindent}{25mm} Why not going to extreme?
\end{document}
结果如下:
答案2
尝试这个
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{details.txt}
Here are some random details [ ] with stuff everywhere. This
is
to
see
if
latex
will use this properly and format it obeying spaces such as [ ] but not
necessarily linebreaks. If not... Problems occur. Here are some random
details with stuff everywhere. This is to see if latex
will use this properly and format it obeying spaces such as [ ] but not
necessarily linebreaks. If not... Problems occur. Here are some random
details with stuff everywhere. This is to see if latex
will use this properly and format it obeying spaces such as [ ] but not
necessarily linebreaks. If not... ( ) Problems occur.
\end{filecontents*}
\begin{document}
\begingroup
\makeatletter\@vobeyspaces\makeatother
\noindent\input{details.txt}
\makeatletter\def {\hspace{0.2pt\@plus0.1pt\@minus0.1pt}$\cdot$}\makeatother%
\noindent\input{details.txt}
\endgroup
\end{document}