答案1
那么命令又如何呢\noindent
?
\documentclass[]{article}
\begin{document}
\noindent
1. Automatic:-\\
At first a course transformation is applied by the FSI Mapper followed by a fine transformation on the source mesh to move it closer
\end{document}
答案2
还有一种方法,如果您需要在主要项目之间插入普通段落,或者您喜欢更简单的列表编码,则很有用:
\documentclass{article}
\usepackage{linguex}
\begin{document}
\ex. Automatic:
\a.[] At first a course transformation is applied by
the FSI Mapper followed by a fine transformation
on the source mesh to move it closer
\ex. Manual:
\a. With one finger.
\b. With two fingers.
\end{document}
答案3
正如@Werner所建议的,您可以考虑使用enumerate
环境:
\documentclass[]{article}
\begin{document}
\begin{enumerate}
\item Automatic:-\\
At first a course transformation is applied by the FSI Mapper followed by a fine transformation on the source mesh to move it closer
\end{enumerate}
\end{document}