web-dev-qa-db-ja.com

複数のPDFファイルをpdftkで1ページにマージする方法は?

PDFファイル1.pdf2.pdfなど]の範囲を1つのファイルにマージし、すべてのPDFを1ページに並べて表示します。

現在、これらのファイルをマージするためにpdftkを試しましたが、それらは別のページに配置されています。

pdftk 1.pdf 2.pdf ... cat output merged.pdf

代わりに、個々のPDFファイルをmerged.pdfの1つのマスターページにタイル表示する方法はありますか?

36
Alex Reynolds

今日これをテストしました:

pdfjam Page1.pdf Page2.pdf --nup 2x1 --landscape --outfile Page1+2.pdf

1ページに2ページを載せます。

32
Ole Tange

PdfLaTeXベースの pdfnup が役立つかもしれません。 pdfファイルがたくさんある場合は、pdfjamの長いパイプを作成するか、数回実行する必要があります。

pythonのpdfnup もあります。

6
micke

tiled on one pageの意味がわかりません。あるページで複数のPDFを別のページの上にマージする方法を探していました。これは、次のようにpdftkを使用して実行できます。

pdftk foreground.pdf background background.pdf output merged.pdf

4
Nik

このスクリプトは、PDFページを並べて表示します。スライスをページごとに必要なものに変更します。

#!/usr/bin/Ruby

latexhead = <<'EOF'
\documentclass{article}
\usepackage[pdftex]{graphicx}
\usepackage[margin=0.1in]{geometry}
\usepackage{pdfpages}
\begin{document}
EOF
latextail = <<'EOF'
\end{document}
EOF

pages = %x[pdfinfo #{ARGV[0]}].split(/\n/).select{|x| x=~ /Pages:/}[0].split(/\s+/)[1].to_i
puts latexhead
s = (1..pages).each_slice(4).to_a
s.each do |a|
  puts "\\begin{figure}"
  a.each do |p|
    puts "\\includegraphics[page=#{p},scale=0.4,width=.5\\textwidth]{#{ARGV[0]}}"
  end
  puts "\\end{figure}"
end
puts latextail
3
anonymous

モンタージュを使用できますImageMagick

$ montage *.pdf merged.pdf

参照 http://www.imagemagick.org/script/montage.php

1
Cesco

このリンク: http://www.verypdf.com/wordpress/201302/how-to-combine-4-page-pdf-into-1-page-pdf-file-to-save-ink-and -papers-34505.html は、VeryPDFを示していますPDFステッチャーは、縦または横にジョブを実行できます。ダウンロード先: http://www.verypdf.com/app/pdf -stitch/index.html

0
Zimba

ファイル名が「システム固有」の順序である場合、pdftk *.pdf cat output merged.pdfは問題なく動作するはずです。

ここに私が「システム固有」の順序で意味するものがあります。

例:
Ubuntu 11.04に3つのファイルがあります:1.pdf、2.pdf、10.pdf
ファイルは次の順序でマージされます:10.pdf 1.pdf 2.pdf(ls -lはマージされたファイルと同じ順序を返しました)

最も安全な命名規則:0001.pdf、0002.pdfなど.

0
szemek

1つのフォルダー構造に多数のPDFがある場合およびTeXインストールがある場合、このスクリプトはすべてのPDFrecursivly1つの大きなファイルに:

    #!/bin/bash
#
# pdfdir OUTPUT_FILE
#
# produces one big PDF file of all PDF files in .
#
if [ $# -ne 1 ] || [ -z "$1" ]; then
  echo "Syntax: pdfdir OUTPUT_FILE"
  exit 1
fi
FILE="$(echo "$1"|sed -e 's/\.\(pdf\|tex\)$//')"
for F in "$FILE" "$FILE.tex" "$FILE.pdf" "$FILE.aux" "$FILE.log" ; do
  if [ -e "$F" ]; then
    echo "$F exists already."
    exit 2
  fi
done
cat >"$FILE.tex" <<EOF
\documentclass{article}%
\usepackage{pdfpages}%
\usepackage{grffile}%
\listfiles%
\begin{document}%
%\tableofcontents%
EOF
# helper functions
exist_pdf_files () {
  [ $(find -L "$1" -name \*.pdf -o -name \*.PDF -type f 2>/dev/null|wc -l) -eq 0 ] && return 1
  return 0
}
list_directories () {
  find -L "$1" -maxdepth 1 -mindepth 1 -type d 2>/dev/null | sort
}
list_pdf_files () {
  # version with " around filenames:
  #find -L "$1" -maxdepth 1 -mindepth 1 -name \*.pdf -o -name \*.PDF -type f 2>/dev/null | sort | \
  #  sed -e 's/^/\\includepdf[pages=-]{"/; s/$/"}%/'
  # version without " around filenames:
  find -L "$1" -maxdepth 1 -mindepth 1 -name \*.pdf -o -name \*.PDF -type f 2>/dev/null | sort | \
    sed -e 's/^/\\includepdf[pages=-]{/; s/$/}%/'
}
tex_headline () {
    echo "$1" | sed -e 's/_/\\_/g'
}
# current folder (lefel 0):
list_pdf_files . >>"$FILE.tex"
# Bearbeite Ebene 1:
list_directories . | while read -r DIR1; do
  # Are there PDFs in folders below that level?
  exist_pdf_files "$DIR1" || continue
  # Yes ...
  tex_headline "\section{${DIR1##*/}}%"
  # those:
  list_pdf_files "$DIR1"
  # Level 2:
  list_directories "$DIR1" | while read -r DIR2; do
    exist_pdf_files "$DIR2" || continue
    tex_headline "\subsection{${DIR2##*/}}%"
    list_pdf_files "$DIR2"
    # Level 3:
    list_directories "$DIR2" | while read -r DIR3; do
      exist_pdf_files "$DIR3" || continue
      tex_headline "\subsubsection{${DIR3##*/}}%"
      list_pdf_files "$DIR3"
      # Level 4:
      list_directories "$DIR3" | while read -r DIR4; do
        exist_pdf_files "$DIR4" || continue
        tex_headline "\paragraph{${DIR4##*/}}%"
        list_pdf_files "$DIR4"
        # Level 5:
        list_directories "$DIR4" | while read -r DIR5; do
          exist_pdf_files "$DIR5" || continue
          tex_headline "\subparagraph{${DIR5##*/}}%"
          list_pdf_files "$DIR5"
        done
      done
    done
  done
done >>"$FILE.tex"
echo "\end{document}%" >>"$FILE.tex"
echo "Sourcecode to PDF directly [J/n]"
read -r ANSWER
case "$ANSWER" in
[JjYy]) ;;
*) exit 0 ;;
esac
pdflatex "$FILE"
[ $? -eq 0 ] && rm -f "$FILE.aux" "$FILE.log" "$FILE.tex"

私はそのコードを書いていませんが、ここのディスカッションからそれを持っています: http://www.listserv.dfn.de/cgi-bin/wa?A2=ind1201&L=tex-d-l&T=0&P = 10771

とても便利です。ドイツ語のコメントの一部を英語に翻訳しました。

よろしく、アレクサンダー

0
Keks Dose