无法将图像置于 LaTeX 中央

无法将图像置于 LaTeX 中央

我想让图像居中,代码如下:

\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[urw-garamond]{mathdesign}
\usepackage[margin=1in]{geometry}
\usepackage{graphicx}
\usepackage{enumitem}
\pagenumbering{gobble}

\begin{document}

\author{[redacted]}
\title{Test Exercise 1}
\date{\today}
\maketitle

\begin{enumerate}[label=(\alph*)]
  \item Here is the scatter plot where advertising is the independent variable
    and sales the dependent variable:

    \begin{figure}[h]
      \centering
      \includegraphics{11}
    \end{figure}
\end{enumerate}

\end{document}

但结果并不是我想要的。以下是屏幕截图:

diagnostic screenshot

这里出了什么问题?

答案1

\begin{figure}[h]
  \centering
  \includegraphics{11}
\end{figure}

这里[h]主要指定的效果是,图形不能位于t底部bp浮动的上方,因此最有可能的是,它会移动到文档的末尾,而上面的段落则没有任何内容。

最好使用

\begin{center}
  \includegraphics[width=.9\linewidth]{11}
\end{center}

这样,图像就是列表内容的一部分,而不是浮动插入,而且图像可以缩放到足够小,位于列表文本块的中心。([width=\linewidth]如果您希望它占据文本块的整个宽度,则可以使用)

相关内容