ラテックスファイルにPDFまたはdocファイルを付録として挿入しようとしています。私がこれをどうやってできるか知っていますか?
ラテックスファイルにPDFまたはdocファイルを付録として挿入しようとしています。私がこれをどうやってできるか知っていますか?
回答:
pdfpages
パッケージを使用してください。
\usepackage{pdfpages}
PDFファイルにすべてのページを含めるには:
\includepdf[pages=-]{myfile.pdf}
PDFの最初のページのみを含めるには:
\includepdf[pages={1}]{myfile.pdf}
texdoc pdfpages
シェルで実行すると、の完全なマニュアルが表示されpdfpages
ます。
\includepdf[pages={1,3,5}]{myfile.pdf}
、ファイルのページ1、3、および5を含めます。ファイル全体を含めるには、を指定しますpages={-}
。ここ{-}
で、はエンドポイントが指定されていない範囲で、デフォルトではそれぞれ最初と最後のページになります。
\includepdf[pages=-,scale=.8,pagecommand={}]{file}
\includepdf[page={-},offset=<offset in x>mm <offset in y>mm]{myfile.pdf}
pages={1-48,50-100}
。と言うほど単純ではありませんpages={!49}
が、それほど難しいことではありません。
1ページだけでなく、PDF全体をファイルに入れるには、以下を使用します。
\usepackage{pdfpages}
\includepdf[pages=-]{myfile.pdf}
\includegraphics{myfig.pdf}
\usepackage{graphicx}
このコマンドを使用するには、a が必要であることに注意してください
自動的な方法があるとは思いません。付録にページ番号を正しく追加することもできます。すでに数ページのPDFドキュメントがあると仮定すると、Adobe Acrobat Professionalなどを使用してPDFドキュメントの各ページを最初に抽出し、各ページを個別のPDFファイルとして保存する必要があります。次に、各PDFドキュメントを各ページベース(各ページに1つ)の画像として含め、各ページの間に新しいページを使用する必要があります。
\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ページあたり1つのPDF画像が表示され、下部に正しいページ番号が表示されます。私の例で示したように、1ページに収まる適切なサイズにするには、各画像の倍率を少し変える必要があります。お役に立てば幸い...
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で生成されたプロットであり、これはコードです(これは、pdfを挿入する.texファイルとは別の.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}
これは私が含めた図です
\includegraphics[page=2,width=0.5\textwidth,height = 0.3\textheight]{file.pdf}