diff options
-rw-r--r-- | Master/tlpkg/tlpostcode/ptex2pdf-tlpost.pl | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/Master/tlpkg/tlpostcode/ptex2pdf-tlpost.pl b/Master/tlpkg/tlpostcode/ptex2pdf-tlpost.pl index 5cd236f2fa5..fb1c5c6a5bc 100644 --- a/Master/tlpkg/tlpostcode/ptex2pdf-tlpost.pl +++ b/Master/tlpkg/tlpostcode/ptex2pdf-tlpost.pl @@ -36,25 +36,25 @@ require("TeXLive/trans.pl"); my %ptex2pdf = ( '1' => { - 'name' => 'pTeX to pdf', + 'name' => 'pTeX (ptex2pdf)', 'program' => 'ptex2pdf', 'arguments' => '-ot, -kanji=utf8 $synctexoption, $fullname', 'showPdf' => 'true' }, '2' => { - 'name' => 'pLaTeX to pdf', + 'name' => 'pLaTeX (ptex2pdf)', 'program' => 'ptex2pdf', 'arguments' => '-l, -ot, -kanji=utf8 $synctexoption, $fullname', 'showPdf' => 'true' }, '3' => { - 'name' => 'upTeX to pdf', + 'name' => 'upTeX (ptex2pdf)', 'program' => 'ptex2pdf', 'arguments' => '-u, -ot, $synctexoption, $fullname', 'showPdf' => 'true' }, '4' => { - 'name' => 'upLaTeX to pdf', + 'name' => 'upLaTeX (ptex2pdf)', 'program' => 'ptex2pdf', 'arguments' => '-u, -l, -ot, $synctexoption, $fullname', 'showPdf' => 'true' @@ -66,11 +66,23 @@ my %ptex2pdf = ( 'showPdf' => 'false' }, '6' => { + 'name' => 'upBibTeX (Unicode pBibTeX)', + 'program' => 'upbibtex', + 'arguments' => '$basename', + 'showPdf' => 'false' + }, + '7' => { 'name' => 'mendex (Japanese MakeIndex)', 'program' => 'mendex', 'arguments' => '$basename', 'showPdf' => 'false' }, + '8' => { + 'name' => 'upmendex (Unicode mendex)', + 'program' => 'upmendex', + 'arguments' => '$basename', + 'showPdf' => 'false' + }, ); # |