如何将段落放在框内的页面中心?

如何将段落放在框内的页面中心?

我想将以下段落放在页面中央的方框内。请建议如何操作。

Z.<x> = ZZ[] 

f = (x^3 - 45*x^2 - 11637*x - 344520) 

K.<a> = f.root_field()

K

L.<b> = K.galois_closure();L

答案1

我不确定,在这种情况下页面的中心和框是什么,以及数学又是什么,因此这只是一个建议。

\documentclass{article}
\usepackage{url}
\begin{document}


\noindent\rule{\linewidth}{0.2pt} % only to show horizozontal centering

\null\vfill

\noindent\null\hfil\framebox[8cm][l]{\vbox{
\obeylines\obeyspaces
Z. = ZZ[]

$f = (x^3 - 45*x^2 - 11637*x - 344520)$

\url{K. = f.root_field()}

K

\url{L. = K.galois_closure();L}
}}\hfil


\vfill
\end{document}

在此处输入图片描述

一些解释。该url包为我们提供了一种获取下划线的简单方法;\obeylines\obeyspaces覆盖了处理换行符和多个空格的标准 TeX 规则。

相关内容