数字问题

数字问题

在此处输入图片描述

一旦我加载一个图形,它总是在页面的右侧,并且我怎样才能将其居中?

\documentclass[12pt]{report}
\usepackage{graphicx}
\begin{center}
\includegraphics[scale=0.5]{../Dropbox/TesiDellOlmo/Tesi scritto/immagini/prices.png} 
\end{center} `

答案1

问题可能是文件路径中有空格。请尝试加载\usepackage[space]{grffile} 以避免文件中出现空格问题。

您不应该使用,\begin{center}...\end{center}因为它会在您的图形周围增加额外的空间。只需\centering在之前使用\includegraphics

相关内容