如何从页面中心开始书写并向右移动?

如何从页面中心开始书写并向右移动?

我正在撰写论文中的致谢部分,根据要求,我应该在页面末尾写下我的名字,从页面中心开始向右移动。

有人能给我一些建议吗?如何做到这一点?

是否仅通过缩进来实现,或者是否有更聪明的方法来实现?

编辑:

以下是我希望名称在页面末尾显示的屏幕截图:

在此处输入图片描述

编辑2:

另一个截图

在此处输入图片描述

答案1

您可以在您想要放置姓名的段落后面的环境中尝试vspace和的组合。只需将和中的值更改为您喜欢的值即可。hspacecentervspacehspace

\documentclass{article}

\usepackage{lipsum}

\begin{document}
\lipsum[1]
\begin{center}
\vspace{1cm}
\hspace{2.5cm} Your first name and last name
\end{center}
\end{document}

或者您也可以尝试 Mico 的建议。

在此处输入图片描述

答案2

关键是\noindent

\documentclass{article} % just for the example, it's the same with any class

\begin{document}

\vspace*{\fill}% just to make the text near to the page number
               % so to check the desired alignment

Lastly, I want to thank my wife, Teresa, for having the patience to
watch me sit in front of a CRT and tap keys night after night, with
nothing but this stack of paper to show for it.

\vspace{2\baselineskip}

\noindent\hspace{0.5\columnwidth}Andrew J. Moshalik

\end{document}

在此处输入图片描述

相关内容