背页中的中心图像有边距而不是文本

Center image in overleaf with margins instead of text

我试图将页面中间的图像置于背页的中央,但我能找到的所有居中功能似乎都只根据文本而不是整个文档的页边距将其居中。有没有办法将图像与页面中心对齐,而不是与文本对齐?它最终有点向右倾斜。

这是插入我的图片的代码:

\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}

尝试:

\begin{figure}[H]
    \centerline{\includegraphics[width=1.1\textwidth, height = 1.5cm]{s_TTCD_data.png}}
    \caption{Tongue tip constriction location (TTCL) data for /s/.}
\end{figure}