Для тех, кто хочет взять 1 или 2 pg pdf и превратить его в pdf с 2 копиями этого бок о бок в альбомной ориентации ( отлично подходит для печати листовок ), сделайте:
Превратите ввод в 1 или 2 pg pdf в вывод, содержащий дублированную копию этих страниц (1-pg pdf -> 2-pg pdf, 2-pg pdf -> 4-pg pdf и т. Д.):
pdfunite in.pdf in.pdf out.pdf
Объедините этот файл с дубликатами-копиями в файл формата 2 страницы на сторону в альбомной ориентации, например, для печати листовок:
pdfnup out.pdf
Или все в одной строке:
pdfunite in.pdf in.pdf out.pdf && pdfnup out.pdf
Обратите внимание, что out.pdf
это вход для pdfnup
. Полученный выходной файл pdfnup
будет называться « out-nup.pdf ».
Кроме того, просмотрите выходные данные pdfnup
команды, и вы увидите подробный вид команды, которую она фактически выполняет, что дает вам некоторое представление о параметрах, которые вы можете передать ей. Видимо pdfnup
использует pdfjam
под капотом:
pdfjam: эффективный вызов для этого прогона pdfjam:
/usr/bin/pdfjam --suffix nup --nup '2x1' --landscape -- out.pdf -
Пример:
Оригинальный PDF (1 обычный pg в книжной ориентации ), " in.pdf ":
Итоговый PDF (2 стр. Бок о бок в альбомной ориентации ), « out-nup.pdf »:
- теперь можно разрезать пополам по центру, чтобы получить листовки
Простая функция Bash: make_flyer
Скопируйте и вставьте эту функцию bash в конец файла "~ / .bashrc", чтобы получить доступ к простой и удобной в использовании команде make flyer
:
# Description: outputs a landscape-oriented flyer pdf ("my/pdf/input--flyer.pdf") for each 1 or more pg input pdf ("my/pdf/input.pdf")
# - 1-pg input PDFs are converted to a 1-sided landscape, printable flyer that you cut down the center to make
# 2 flyers
# - 2-pg input PDFs are converted to a 2-sided landscape, printable flyer (flip on short edge when printing
# double-sided), and also cut down the middle to make 2 flyers
# - **3+ pg input PDFs**: using `pdfnup` directly in this case would make more sense, since this function will
# otherwise unneccessarily create 2 copies
# - 3 and 4-pg input PDFs are converted to a single piece of paper, double-sided, flipped on short edge, x 2 copies.
# No cutting is necessary
# - 5+ pg input PDFs simply require half as much paper to print is all since you get 2 pages per side of paper;
# they do NOT print like booklets, but rather just as a landscape-printed, flipped-on-short-edge bundle of pages
# (like a deck of slides). You get *2 copies* per print though, so just print half the pages.
make_flyer() {
num_args=$# # see: https://stackoverflow.com/questions/4423306/how-do-i-find-the-number-of-arguments-passed-to-a-bash-script/4423321#4423321
suffix="flyer"
loop_cnt=0
for inputpdf in "$@"
do
((loop_cnt++))
echo "==== CONVERTING PDF $loop_cnt OF $num_args ===="
echo " INPUT: \"$inputpdf\""
# Strip off the .pdf extension from the input path, while retaining the rest of the path
# - See: https://stackoverflow.com/questions/12152626/how-can-i-remove-the-extension-of-a-filename-in-a-shell-script/32584935#32584935
input_path_base="$(echo "$inputpdf" | rev | cut -f 2- -d '.' | rev)"
input_file_base="$(basename "$inputpdf" .pdf)"
temp_pdf="${input_path_base}-.pdf" # is "input_path_base-.pdf"
echo " OUTPUT: \"$(pwd)/${input_file_base}--${suffix}.pdf\""
# Convert a single 1-pg pdf into a temporary 2-pg pdf
pdfunite "$inputpdf" "$inputpdf" "$temp_pdf"
# Lay out the temporary 2-pg pdf into a side-by-side 1-sided flyer to print; creates "input_path_base--flyer.pdf"
# Note that `pdfnup` places the output from this operation in the location from where you call this script
# (ie: in your `pwd` [Present Working Directory])!--NOT the location where temp_pdf is located!
pdfnup "$temp_pdf" --suffix $suffix
# Delete the temporary 2-pg pdf, called "input_path_base-.pdf", thereby leaving only the original
# "input_path_base.pdf" and the new "input_path_base--flyer.pdf"
rm "$temp_pdf"
done
}
alias make_flyer_help='echo -e "Ex usage: make_flyer \"path/to/inputpdf.pdf\" - Creates a landscape-side-by-side flyer version called \"inputpdf--flyer.pdf\"\n *in your pwd* from a 1 or 2 pg input pdf called \"path/to/inputpdf.pdf\". Accepts multiple arguments. Ex:\n make_flyer \"path/to/inputpdf1.pdf\" \"path/to/inputpdf2.pdf\""'
Пример использования:
make_flyer "path/to/inputpdf1.pdf" "path/to/inputpdf2.pdf"
См. Справочную информацию:
make_flyer_help
Выход:
$ make_flyer_help
Ex usage: make_flyer "path/to/inputpdf.pdf" - Creates a landscape-side-by-side flyer version called "inputpdf--flyer.pdf"
*in your pwd* from a 1 or 2 pg input pdf called "path/to/inputpdf.pdf". Accepts multiple arguments. Ex:
make_flyer "path/to/inputpdf1.pdf" "path/to/inputpdf2.pdf"
Ссылки:
- https://superuser.com/a/948095/425838
- https://stackoverflow.com/a/11280219/4561887
Связанный:
- https://askubuntu.com/questions/214538/printing-in-booklet-format/1095789#1095789
Bash Рекомендации:
- Bash Как передать аргументы в функцию bash: https://bash.cyberciti.biz/guide/Pass_arguments_into_a_function
- Конкатенация строк в Bash: https://linuxize.com/post/bash-concatenate-strings/
- Bash выполнить cmd, хранящийся в виде строки! https://stackoverflow.com/questions/2005192/how-to-execute-a-bash-command-stored-as-a-string-with-quotes-and-asterisk
- Перебрать Bash по всем входным данным в cmd: https://stackoverflow.com/questions/255898/how-to-iterate-over-arguments-in-a-bash-script/255913#255913
- Bash передавая параметры в функцию: https://stackoverflow.com/questions/6212219/passing-parameters-to-a-bash-function/6212408#6212408
- Как преобразовать 1-pg pdf во флаер [мои собственные ответы!]: Как преобразовать 1-страничный PDF-файл в 2-страничный PDF-файл на листе?