Skip to content

Instantly share code, notes, and snippets.

@zr-tex8r
zr-tex8r / bxkvcmd-sty
Created January 4, 2021 10:45
LaTeX:key-value型の引数指定をもつユーザ命令を(LaTeXレベルで)定義する
%%
%% This is file 'bxkvcmd.sty'.
%%
%% Copyright (c) 2021 Takayuki YATO (aka. "ZR")
%% GitHub: https://github.com/zr-tex8r
%% Twitter: @zr_tex8r
%%
%% This package is distributed under the MIT License.
%%
@munepi
munepi / pdf2pdfx1a.sh
Created February 24, 2017 05:45
a command line interface that can convert PDF to PDF/X-1a via Adobe PostScript with Adobe Acrobat X Pro
#!/bin/bash
set -e
showHelp(){
echo usage: $(basename $0) path/to/input.pdf
return 0
}
if [ $# -ne 1 ]; then