1 또는 2 페이지의 PDF를 타고 (즉, 나란히 가로보기 2 부와 PDF로 돌려 싶은 누군가를 위해 전단지를 인쇄 큰 ), 수행
1 또는 2pg pdf 입력을 해당 페이지의 사본이 포함 된 출력으로 변환하십시오 (1-pg pdf-> 2-pg pdf, 2-pg pdf-> 4-pg pdf 등).
pdfunite in.pdf in.pdf out.pdf
예를 들어 전단지를 인쇄하기 위해 복사 된 pdf를 가로 당 2 페이지의 pdf로 결합하십시오.
pdfnup out.pdf
또는 모두 한 줄로 :
pdfunite in.pdf in.pdf out.pdf && pdfnup out.pdf
참고 out.pdf
는 IS 를 입력 으로 pdfnup
. 의 결과 출력 파일은 pdfnup
" out-nup.pdf "입니다.
또한 pdfnup
명령 의 출력을 살펴보면 실제로 실행중인 명령의 자세한 형태를 볼 수 있으며이를 통해 전달할 수있는 옵션에 대한 통찰력을 얻을 수 있습니다. 분명히 후드 아래에서 pdfnup
사용 pdfjam
합니다.
pdfjam :이 pdfjam 실행에 대한 효과적인 호출 :
/usr/bin/pdfjam --suffix nup --nup '2x1' --landscape -- out.pdf -
예:
원본 PDF (세로보기에서 1 페이지), " in.pdf ":
최종 PDF (가로보기에서 나란히 2 pgs), " out-nup.pdf ":
-이제 중간으로 반으로 잘라 전단지로 전달할 수 있습니다.
간단한 배쉬 기능 : 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 함수에 인수를 전달하는 방법 : https://bash.cyberciti.biz/guide/Pass_arguments_into_a_function
- 배쉬 연결 문자열 : 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
- cmd에 대한 모든 입력을 bash로 반복 하십시오 : https : //.com
- Bash 전달 매개 변수 : https : //.com/questions/6212219/passing-parameters-to-a-bash-function/6212408#6212408
- 1pg pdf를 전단지 로 변환하는 방법 [나만의 ans!] : 1 페이지 PDF를 시트 당 2 페이지로 변환하는 방법은 무엇입니까?