ChatGPT解决这个技术问题 Extra ChatGPT

在 LaTeX 中插入 PDF 文件

我正在尝试在我的 LaTeX 文件中插入 PDF 或 doc 文件作为附录。你知道我该怎么做吗?

您只是附加 pdf,还是想像图片一样嵌入它?
请注意任何想建议我们将其迁移到 text.stackexchange 的人 - 我们不能。它是从 2010 年开始的,这使得它太旧而无法迁移。

I
IcyFlame

使用 pdfpages 包。

\usepackage{pdfpages}

要在 PDF 文件中包含所有页面:

\includepdf[pages=-]{myfile.pdf}

要仅包含 PDF 的第一页:

\includepdf[pages={1}]{myfile.pdf}

在 shell 中运行 texdoc pdfpages 以查看 pdfpages 的完整手册。


为了清楚起见,您需要指定要包含的页面,即 \includepdf[pages={1,3,5}]{myfile.pdf} 将包含文件的第 1、3 和 5 页。要包含整个文件,请指定 pages={-},其中 {-} 是一个范围,没有指定端点,默认分别为第一页和最后一页。
我还必须做的前两件事是缩放并重新启用我的外部页面设计(再次显示页码),这两者都可以使用配置进行设置,例如:\includepdf[pages=-,scale=.8,pagecommand={}]{file}
它似乎不适用于乳胶投影仪;这是使用投影仪的方法:tex.stackexchange.com/questions/57441/…
偏移选项很有用\includepdf[page={-},offset=<offset in x>mm <offset in y>mm]{myfile.pdf}
(docs)[mirrors.sorengard.com/ctan/macros/latex/contrib/pdfpages/… 中的@Kusavil,您可以指定范围,例如,如果您想从 100 页中删除第 49 页,则可以使用 pages={1-48,50-100}。不像说 pages={!49} 这样简单,但也没有那么困难。
R
RobinAugy

要将整个 pdf 放入文件中,而不仅仅是 1 页,请使用:

\usepackage{pdfpages}

\includepdf[pages=-]{myfile.pdf}

你可以只使用 \includepdf{myfile.pdf}
@CroCo 是的,由于某种原因,有时它有效,有时无效,抱歉误导您:(
d
dagray
\includegraphics{myfig.pdf}

是的,我知道如何包含 figure.pdf,但我必须包含的文件超过 1 页。
嗨 dagray,您的答案可能是 Guido 正在寻找的,但即便如此,只是编写一小段代码而没有任何进一步的解释是没有帮助的。
@LeoR 我不同意。问题本质上是:“如何在乳胶中插入pdf?”答案是达格雷写的。问题不是“你如何将 pdf 插入乳胶中,你能解释它是如何工作的”。这个答案中有足够的信息可以自己找出其余的信息。
尽管如此,该问题仍明确声明它是附录的 DOC/PDF,因此它可能不是一页长。
请注意,需要 \usepackage{graphicx} 才能使用此命令
M
MattAllegro

\includegraphics 函数有一个 page 选项,用于将 PDF 文件的特定页面作为图形插入。默认值为 1,但您可以更改它。

\includegraphics[scale=0.75,page=2]{multipage.pdf}

您可以找到更多here


y
yCalleecharan

我认为不会有自动的方法。您可能还想在附录中正确添加页码。假设您已经拥有多页的 pdf 文档,您必须首先使用 Adobe Acrobat Professional 提取 pdf 文档的每一页,然后将它们分别保存为单独的 pdf 文件。然后,您必须在每页(每页 1 个)的基础上将每个 pdf 文档包含为图像,并在每页之间使用 newpage,例如,

\appendix
\section{Quiz 1}\label{sec:Quiz}
\begin{figure}[htp] \centering{
\includegraphics[scale=0.82]{quizz.pdf}}
\caption{Experiment 1}
\end{figure}  

\newpage
\section{Sample paper}\label{sec:Sample}
\begin{figure}[htp] \centering{
\includegraphics[scale=0.75]{sampaper.pdf}}
\caption{Experiment 2}
\end{figure}

现在每页将显示每页 1 个 pdf 图像,并且您将在底部有一个正确的页码。如我的示例所示,您必须对每个图像的比例因子进行一些调整,以使其具有适合单个页面的正确尺寸。希望有帮助...


问题是关于按原样插入整个页面,而不是关于如何将 pdf 文件的内容包含在现有页面中,否则该页面是由乳胶格式化和生成的。
p
pachadotdev

在 pdflatex 下有一个没有附加软件包的选项

修改此代码

\begin{figure}[h]
    \centering
    \includegraphics[width=\ScaleIfNeeded]{figuras/diagrama-spearman.pdf}
    \caption{Schematical view of Spearman's theory.}
\end{figure}

“diagrama-spearman.pdf”是使用 TikZ 生成的图,这是代码(它是另一个 .tex 文件,与我要插入 pdf 的 .tex 文件不同)

\documentclass[border=3mm]{standalone}
\usepackage[applemac]{inputenc}
\usepackage[protrusion=true,expansion=true]{microtype}
\usepackage[bb=lucida,bbscaled=1,cal=boondoxo]{mathalfa}
\usepackage[stdmathitalics=true,math-style=iso,lucidasmallscale=true,romanfamily=bright]{lucimatx}
\usepackage{tikz}
\usetikzlibrary{intersections}
\newcommand{\at}{\makeatletter @\makeatother}

\begin{document}

\begin{tikzpicture}
\tikzset{venn circle/.style={draw,circle,minimum width=5cm,fill=#1,opacity=1}}
\node [venn circle = none, name path=A] (A) at (45:2cm) { };
\node [venn circle = none, name path=B] (B) at (135:2cm) { };
\node [venn circle = none, name path=C] (C) at (225:2cm) { };
\node [venn circle = none, name path=D] (D) at (315:2cm) { };
\node[above right] at (barycentric cs:A=1) {logical}; 
\node[above left] at (barycentric cs:B=1) {mechanical}; 
\node[below left] at (barycentric cs:C=1) {spatial}; 
\node[below right] at (barycentric cs:D=1) {arithmetical}; 
\node at (0,0) {G};    
\end{tikzpicture}

\end{document} 

这是我包含的图表

https://i.stack.imgur.com/D3wEq.jpg


值得一提的是,页面参数也适用于使用 graphicsx \includegraphics[page=2,width=0.5\textwidth,height = 0.3\textheight]{file.pdf} 的参数
我认为 qn 要求包含多个页面。