在数字后添加缩进

在数字后添加缩进
  1. 英文维基百科是维基百科的第一个版本,至今仍然是最大的版本。它开创了许多想法,如惯例、政策或功能,后来被其他一些语言版本的维基百科所采用。

  2. 虽然英文维基百科存储了图像和音频文件以及文本文件,但许多图像已被移动到同名的维基共享资源中,作为传递文件

在 latex 中添加数字作为点后,我需要像上面那样缩进段落。执行此操作需要哪些脚本?

答案1

\documentclass{article}

\begin{document}
\noindent
Some text before ...
\begin{enumerate}
\item
The English Wikipedia was the first Wikipedia edition and has remained the largest. It has 
pioneered many ideas as conventions, policies or features which were later adopted by 
Wikipedia editions in some of the other languages.
\item
Although the English Wikipedia stores images and audio files, as well as text files,many 
of the images have been moved to Wikimedia Commons with the same name, as passed-through 
files
\end{enumerate}
\end{document}

在此处输入图片描述

相关内容