我如何确保图像显示在正确的页面上?

我如何确保图像显示在正确的页面上?

我是 Latex 新手,在尝试在正确的页面上显示图像时遇到问题。这是我正在运行的代码:

\documentclass[a4paper]{article}

\begin{document}
    \section{Conclusion}
 
        \begin{figure}[ht!]
            \begin{center}
                \includegraphics[scale=0.54,angle=90,origin=c]{Courbes/Bilan.png}
            \end{center}
            \caption{Bilan}
        \end{figure}
\end{document}

Latex 编译的结果如下: 我目前得到的结果

以下是实际图片: 图片

问题是,我希望图片占据更多空间,但如果我将比例变量增加到 0.55,它就会出现在下一页

感谢您的帮助 !

答案1

包含章节标题的图片的最大尺寸可以

在此处输入图片描述

并由以下方式获得:

\documentclass[a4paperm]{article}
%---------------- show page layout. don't use in a real document!
\usepackage{showframe}
\renewcommand\ShowFrameLinethickness{0.15pt}
\renewcommand*\ShowFrameColor{\color{red}}
%---------------------------------------------------------------%
\renewcommand{\topfraction}{.95}
\renewcommand{\textfraction}{.05}

\usepackage[demo]{graphicx}

\begin{document}
    \section{Conclusion}
    \begin{figure}[ht!]
\centering
\includegraphics[height=\textwidth, width=0.9\textheight, keepaspectratio,
                 angle=90,origin=c]{Courbes/Bilan.png}
            \caption{Bilan}
\end{figure}
\end{document}

\文本宽度

答案2

您实际上并不需要图形环境:

\documentclass[a4paper]{article}
\usepackage{caption}
\begin{document}
    \section{Conclusion}
    \begin{center}
       \includegraphics[scale=0.54,angle=90,origin=c]{Courbes/Bilan.png}
       \captionof{figure}{Bilan}
    \end{center}
\end{document}

的目的figure是让图像浮动到 TeX 认为最佳的位置。如果您不想这样,那么您可以随意更改大小。

相关内容