右对齐文本

右对齐文本

在下面的图片中,我想将两行的开头对齐到右侧,也就是编号的开始位置。我使用了 \hspace{} 命令,但是不起作用。我该如何解决这个问题?

提前感谢您的帮助。

这是使用的代码:- 1. 自动:- \ \hspace{5mm} 首先,FSI Mapper 应用粗略变换,然后在源网格上进行精细变换,使其更靠近在此处输入图片描述到目标网格位置。\

答案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} 

相关内容