我重新定义了一个抽象环境,以便将其置于页面中央。我想保留它,但将文本放在左侧而不是中央,但我无法做到这一点。有什么建议吗?
这是我目前的代码:
\newenvironment{abstract} %
{\cleardoublepage\thispagestyle{empty}%
\vspace*{\fill}
\begin{center}\textbf{Abstract\\}\ignorespaces}
{\end{center}
\vspace*{\fill}\cleardoublepage}
编辑:我设法使用以下方法证明这一点:
\begin{justify}\textbf{Abstract\\}\ignorespaces}
{\end{justify}
现在的问题是标题“摘要”也左对齐,但我想将其居中
答案1
如果您理解正确,您希望摘要水平对齐、垂直居中,并且标题“摘要”水平居中。在这种情况下,无需center
尝试以下操作:
\documentclass{article}
\usepackage{blindtext}
\newenvironment{MyAbstract}{%
\cleardoublepage\thispagestyle{empty}%
\vspace*{\fill}%
\hfil\textbf{Abstract}\hfil%
\par\noindent\ignorespaces%
}{
\vspace*{\fill}\cleardoublepage
}
\begin{document}
\begin{MyAbstract}
\blindtext
\end{MyAbstract}
\end{document}