さまざまなPDFファイル1.pdf
、2.pdf
などがあり、それらを1つのファイルにマージし、すべてのPDFを1ページに並べて表示します。
現在、pdftk
これらのファイルをマージしようとしましたが、別のページに配置されています。
pdftk 1.pdf 2.pdf ... cat output merged.pdf
代わりに、個々のPDFファイルを1つのマスターページにタイル表示する方法はありますmerged.pdf
か?
さまざまなPDFファイル1.pdf
、2.pdf
などがあり、それらを1つのファイルにマージし、すべてのPDFを1ページに並べて表示します。
現在、pdftk
これらのファイルをマージしようとしましたが、別のページに配置されています。
pdftk 1.pdf 2.pdf ... cat output merged.pdf
代わりに、個々のPDFファイルを1つのマスターページにタイル表示する方法はありますmerged.pdf
か?
回答:
今日これをテストしました:
pdfjam Page1.pdf Page2.pdf --nup 2x1 --landscape --outfile Page1+2.pdf
1ページに2ページを配置します。
--nup 1x2 --no-landscape
--noautoscale true
このスクリプトは、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
使用できます ImageMagickのモンタージュを
$ montage *.pdf merged.pdf
また見なさい http://www.imagemagick.org/script/montage.php参照してください
ファイル名が「システム固有」の順序にある場合、正常に機能する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など
pdftk
入力PDFをタイルとして含む1ページのPDFを作成する方法を探しています。
pdfnup
かpdfjam
と--nup
オプション。
*
は使用しているシェルによって展開されます。pdfnup
見ることはありませんが*.pdf
、代わりに作業ディレクトリ内のすべてのファイルのリストとファイル名が.pdf
。
あなたは1 folderstructureでPDFファイルの多数を持っている、場合とあなたはTeXのインストールを持って、このスクリプトは、すべてのPDFファイルを置くrecursivly一つの大きなファイルに:
#!/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-dl&T=0&P=10771
とても便利です。ドイツ語のコメントを英語に翻訳しました。
よろしく、アレクサンダー
このリンク: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 Stitcherが縦方向または横方向にジョブを実行できることを示しています。ダウンロード:http : //www.verypdf.com/app/pdf-stitch/index.html