The package pxeverysel.sty has now been included in platex-tools bundle.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% -*- coding: utf-8 -*- | |
\documentclass[uplatex,dvipdfmx,a5paper,10pt,papersize]{jsbook} | |
\usepackage[utf8]{inputenc} | |
\usepackage[T1]{fontenc} | |
\usepackage[deluxe]{otf} | |
\usepackage{lmodern} | |
\renewcommand{\headfont}{\gtfamily\sffamily\bfseries} | |
%% 日本語フォントを細いものに変更(Notoフォント前提) | |
\special{pdf:mapline uphminr-h unicode NotoSerifCJK-Light.ttc} % 明朝体 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- zrlistttc.lua | |
-- ref. zrdecompttc.lua | |
prog_name = 'zrlistttc' | |
version = '0.4' | |
mod_date = '2019/08/31' | |
---------------------------------------- | |
verbose = false | |
ttc_index = nil | |
content = { 6 } | |
langid = nil |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% pxtatescale.sty | |
\NeedsTeXFormat{pLaTeX2e} | |
\ProvidesPackage{pxtatescale}[2017/01/23 v0.5] | |
\def\pxqtg@pkgname{pxtatescale} | |
\@ifpackageloaded{graphics}{}{%else | |
\PackageError\pxqtg@pkgname{Package 'graphics' not loaded}\@ehc} | |
\begingroup | |
% the patch is necessary only when dvipdfmx.def is used | |
\def\pxqtg@tempa{dvipdfmx.def} | |
\ifx\Gin@driver\pxqtg@tempa %%% if-level 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
echo tcpdfcrop v0.9.4 (2015-08-06) | |
setlocal | |
if /I "%~1"=="/h" ( | |
set BBOX=HiResBoundingBox | |
shift | |
) else ( | |
set BBOX=BoundingBox | |
) | |
set FROMDIR=%~dp1 |