所以我为我的书的封面设计了一个图像,我想让它垂直居中,我尝试了两种方法,但都失败了。这是一张小图像,没有覆盖整个页面。
我首先厌倦了vspace
,无论如何,它都不会移动图像。
\vspace{3in}
\includegraphics{147.jpg}
\thispagestyle{empty}
而且我也尝试过vfill
。
\vfill
\includegraphics{147.jpg}
\vfill
\thispagestyle{empty}
答案1
应该使用vspace*
而不是vspace
示例:
\vspace*{3in}
\includegraphics{147.jpg}
\thispagestyle{empty}