如何在乳胶中垂直和水平居中引用?

发布于 2024-09-03 23:42:29 字数 162 浏览 11 评论 0原文

我在乳胶的空白页上有一个报价。我已经设法将其水平居中,但是,当我尝试将其垂直居中时,它给我带来了一些问题。我已经尝试过

\vspace{}
\begin{quote}
\centering
quote
\end{quote}

但是它不起作用。

I have a quote on a blank page in latex. I have managed to center it horizontally, however, when i try to center it vertically it gives me some problems. I have tried

\vspace{}
\begin{quote}
\centering
quote
\end{quote}

However it doesnt work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

寂寞花火° 2024-09-10 23:42:29

试试这个:

\vspace*{\fill} 
\begin{quote} 
\centering 
quote 
\end{quote}
\vspace*{\fill}

Try this:

\vspace*{\fill} 
\begin{quote} 
\centering 
quote 
\end{quote}
\vspace*{\fill}
悸初 2024-09-10 23:42:29

您还可以使用 \paperheight 的增量。例如,如果您希望将报价放在页面下方 1/3 处,您可以

\vspace*{0.15\pageheight}  

\begin{quote} 
    \centering 
    quote 
\end{quote}

\newpage

注意
倍增因子基于两倍的页高,因此 1/3 = 0.3 。 0.3/2=0.15→ 0.15\pageheight

与在下方添加一小部分垂直空间相比,使用 \newpage 告诉连续内容从下一页的顶部开始更容易。

You can also use increments of \paperheight. For instance if you wish to have the quote 1/3 down the page you can do

\vspace*{0.15\pageheight}  

\begin{quote} 
    \centering 
    quote 
\end{quote}

\newpage

Note:
The multiplication factor is based on having twice the pageheight, therefore 1/3 = 0.3 . 0.3/2 = 0.15 -> 0.15\pageheight

Rather than adding a fraction of vertical space underneath it is easier to tell continuing content to start at the top of the next page with \newpage.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文