标题与形象分离的冲突

标题与形象分离的冲突

尽管页面上有足够的空间,但我的标题和图片还是分开了。我该如何解决这个问题?

在此处输入图片描述

我的代码是:

\begin{document}

\usepackage {landscape}
The
\usepackage {graphicx}

\begin{landscape}

\chapter{TOTAL ACHIEVEMENT SCORES IN QUESTIONNAIRE}

\begin{figure}[p]

\includegraphics[width=50mm,scale=1.5]{AP2.png}

\end{figure}

\end{landscape}

\end{document}

答案1

[p]告诉乳胶,该图应该放在单独的. 类似的东西[htbp]会首先测试图形是否可以放置这里

land­scape早已被取代。我改用了lscape包。

\documentclass{report}

\usepackage{lscape}
\usepackage{graphicx}

\begin{document}

\begin{landscape}

    \chapter{TOTAL ACHIEVEMENT SCORES IN QUESTIONNAIRE}

    \begin{table}[htbp]
        \includegraphics[width=.6\textwidth]{example-image-16x9}
    \end{table}

\end{landscape}

\end{document}

在此处输入图片描述

答案2

您想使用 both figurenor table

\documentclass{article}
\usepackage{lscape}
\usepackage{graphicx}

\begin{document}

\begin{landscape}

\section{TOTAL ACHIEVEMENT SCORES IN QUESTIONNAIRE}

\vspace{\fill}

\begin{flushleft}
\includegraphics[height=.7\textheight]{example-image}
\end{flushleft}

\vspace*{\fill}

\end{landscape}

\end{document}

我使用了 ,article因为您的类别未指定,并且使用非标准章节标题,但想法是一样的。调整维度以适应,但请记住,同时使用widthscale并不是一个好主意:最好使用widthheight

在此处输入图片描述

相关内容