照片不居中、太大且旋转了 180°

照片不居中、太大且旋转了 180°

代码:

\section{Experiment Photo}
\begin{itemize}
  \item Here is the experiment photo.
  \begin{figure}[h]
    \centering
    \includegraphics[scale=0.05]{photo.png}\\
    \caption{Experiment photo}
  \end{figure}
\end{itemize}

只有一张照片(500x500pt)有这样的问题,其他照片没有。
结果如下: 在此处输入图片描述

这是插入的照片。只显示左下角。 在此处输入图片描述

答案1

请尝试以下操作:

  • 缩放图像\textwidthwidth=\textwidth参见下面的 MWE)
  • 将图形放置选项更改为ht
  • 删除\\之后\includegraphics{...}(如@leandriis 评论中所述)
  • 当图像的宽度与文本宽度相同时,\centering不需要

在此处输入图片描述

\documentclass{article}
\usepackage{graphicx}
%---------------- show page layout. don't use in a real document!
\usepackage{showframe}
\renewcommand\ShowFrameLinethickness{0.15pt}
\renewcommand*\ShowFrameColor{\color{red}}
%---------------------------------------------------------------%

\begin{document}
\section{Experiment Photo}
\begin{itemize}
  \item Here is the experiment photo.
  \begin{figure}[ht] % <---
    \includegraphics[width=\textwidth]{example-image-duck}% <---
    \caption{Experiment photo}
  \end{figure}
  \item Other items.
\end{itemize}
\end{document}

相关内容