为什么 PDF 包含文件总是被推入第二页

为什么 PDF 包含文件总是被推入第二页

我正在使用 pdfinclude 包将 pdf 文件包含到 latex 文档中。

问题是:pdf 文件被推入下一页,无法将其附加到同一页。我想让它根据其空间自行调整大小。

能做到吗?

以下是可重现的代码:

\documentclass[paper=a4, fontsize=11pt]{scrartcl} % A4 paper and 11pt font size

\usepackage[T1]{fontenc} % Use 8-bit encoding that has 256 glyphs
\usepackage{fourier} % Use the Adobe Utopia font for the document
\usepackage[english]{babel} % English language/hyphenation 
\usepackage[final]{pdfpages}
\usepackage{graphicx}

\section{Problem Statement}

\includepdf[pages=1-]{problem}
\end{document}

答案1

正如“@ebo”在评论中提到的。

我使用了具有很多选项的 graphicx 包。

可以找到 graphicx 包的指南这里

上述问题的解决方案只是缩放pdf文件:

\includegraphics[scale=0.6, page=1]{problem.pdf}

完整的代码如下:

%----------------------------------------------------------------------------------------
%   LOAD PACKAGE SECTION
%----------------------------------------------------------------------------------------

\documentclass[paper=a4, fontsize=11pt]{scrartcl} % A4 paper and 11pt font size

\usepackage[T1]{fontenc} % Use 8-bit encoding that has 256 glyphs
\usepackage{fourier} % Use the Adobe Utopia font for the document
\usepackage[english]{babel} % English language/hyphenation 
\usepackage[final]{pdfpages}
\usepackage{graphicx}

%----------------------------------------------------------------------------------------
%   PROBLEM 1
%----------------------------------------------------------------------------------------

\section{Problem Statement}

\includegraphics[scale=0.6, page=1]{problem.pdf}

%----------------------------------------------------------------------------------------

\end{document}

相关内容