【发布时间】:2022-01-25 18:02:42
【问题描述】:
我正在尝试将图像居中放在页面中间的背页中,但我能找到的所有居中功能似乎只是根据文本而不是整个文档的边距来居中。有没有办法将图像与页面中心对齐,而不是与文本对齐?它最终会按原样向右倾斜。
这是插入图片的代码:
\begin{figure}[H]
\centering
\includegraphics[width=1.1\textwidth, height = 1.5cm]{s_TTCD_data.png}
\caption{Tongue tip constriction location (TTCL) data for /s/.}
\end{figure}
我也试过了,结果一样:
\begin{center}
\begin{figure}[H]
\includegraphics[width=1.1\textwidth, height = 1.5cm]{s_TTCD_data.png}
\caption{Tongue tip constriction location (TTCL) data for /s/.}
\end{figure}
\end{center}
【问题讨论】: