PDFの各ページを回転して挿入

PDFの各ページを回転して挿入

- liki の投稿
返信数: 3

3ページあるPDFで、各ページのサイズは同じ。pdfinfoで見てもナントカboxの値はすべて同じ。

\newpage

\includegraphics[angle=90,width=\textwidth,page=1]{hoge.pdf}

\newpage

\includegraphics[angle=90,width=\textwidth,page=2]{hoge.pdf}

\newpage

\includegraphics[angle=90,width=\textwidth,page=3]{hoge.pdf}

と挿入すると、1ページ目だけ右へ少しずれます。

uplatex+dvipdfmxとlualatexのどちらでもずれます。

回転しなくても(angle指定無し)やはり右にずれます。

liki への返信

Re: PDFの各ページを回転して挿入

- KUROKI Yusuke の投稿
TeXWiki:エラー報告用の標準データセット の tiger.pdf を使って,

%#! ptex2pdf -l texforum-9674.tex
\documentclass{jsarticle}
\usepackage[dvipdfmx]{graphicx}
\setlength{\parindent}{0pt}
\pagestyle{empty}
\begin{document}
\newpage

\includegraphics[width=\textwidth]{tiger.pdf}

\newpage

\includegraphics[width=\textwidth]{tiger.pdf}

\newpage

\includegraphics[width=\textwidth]{tiger.pdf}
\end{document}


%#! ptex2pdf -l texforum-9674a.tex
\documentclass{jsarticle}
\usepackage[dvipdfmx]{graphicx}
%\setlength{\parindent}{0pt}
\pagestyle{empty}
\begin{document}
\newpage

\includegraphics[angle=90,width=\textwidth,page=1]{texforum-9674.pdf}

\newpage

\includegraphics[angle=90,width=\textwidth,page=2]{texforum-9674.pdf}

\newpage

\includegraphics[angle=90,width=\textwidth,page=3]{texforum-9674.pdf}
\end{document}

を作って試しましたが,ずれないですよ.
liki への返信

Re: PDFの各ページを回転して挿入

- TONE Kozaburo の投稿
よく分かりませんが \parindent を 0pt にするとどうでしょうか。

もしくは \incudegraphics の前に \noindent を追加してみる。
TONE Kozaburo への返信

Re: PDFの各ページを回転して挿入

- liki の投稿

ありがとうございます。

\noindent

うっかりしてました。インデントされていたのですね。