Created
January 5, 2013 11:12
-
-
Save zr-tex8r/4461060 to your computer and use it in GitHub Desktop.
LaTeX: ghost insertion
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
% pxghost.sty | |
%% package declaration | |
\NeedsTeXFormat{pLaTeX2e} | |
\ProvidesPackage{pxghost} | |
%% preparations | |
\def\pxqgg@pkgname{pxghost} | |
%--------------------------------------- | |
% use an arbitrary font available in T1 encoding | |
\font\pxqgg@TI=ec-lmr10 at 1.23456pt | |
\chardef\pxqgg@cwm=23 % compwordmark (in T1) | |
\xspcode\pxqgg@cwm=3 % allow xkanjiskip around | |
%%<*> \eghostguarded{<text>} | |
\newcommand*\eghostguarded{% | |
\ifmmode \expandafter\@firstofone | |
\else \expandafter\pxqgg@eghostguarded@a | |
\fi | |
} | |
\def\pxqgg@eghostguarded@a#1{% | |
{\pxqgg@TI\pxqgg@cwm}% | |
#1% | |
{\pxqgg@TI\pxqgg@cwm}% | |
} | |
%--------------------------------------- | |
%% \pxqgg@fwsp: a zenkaku space (U+3000) | |
\begingroup | |
\kansujichar\@ne=\jis"2121\relax | |
\xdef\pxqgg@fwsp{\kansuji\@ne} | |
\endgroup | |
%%<*> \jghostguarded{<text>} | |
\newcommand*\jghostguarded{% | |
\ifmmode \expandafter\@firstofone | |
\else \expandafter\pxqgg@jghostguarded@a | |
\fi | |
} | |
\edef\pxqgg@jghostguarded@a#1{% | |
\pxqgg@fwsp | |
\kern-1zw\relax | |
#1% | |
\kern-1zw\relax | |
\pxqgg@fwsp | |
} | |
%--------------------------------------- | |
%% all done | |
\endinput |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment