/usr/share/perl5/LaTeXML/Package/mathbbol.sty.ltxml is in latexml 0.8.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | # -*- mode: Perl -*-
# /=====================================================================\ #
# | mathbbol.sty | #
# | Implementation for LaTeXML | #
# |=====================================================================| #
# | Part of LaTeXML: | #
# | Public domain software, produced as part of work done by the | #
# | United States Government & not subject to copyright in the US. | #
# |---------------------------------------------------------------------| #
# | Bruce Miller <bruce.miller@nist.gov> #_# | #
# | http://dlmf.nist.gov/LaTeXML/ (o o) | #
# \=========================================================ooo==U==ooo=/ #
package LaTeXML::Package::Pool;
use strict;
use warnings;
use LaTeXML::Package;
#======================================================================
# NOTE: Even to the extent this stuff gets converted to MathML correctly,
# there seems little support for these characters in blackboard bold
# (ie. no double-struck greek in Unicode!)
DefConditional('\ifcspex');
DefConditional('\ifbbgreekl');
#DeclareOption{cspex}{\cspextrue}
#DeclareOption{bbgreekl}{\bbgreekltrue}
#ProcessOptions
# Note that (currently) DefMath doesn't actually arrange for font options
# to be applied to the presentation macro! (presumably a bug)
DefConstructor('\lx@mbfont{}', '#1', bounded => 1, requireMath => 1,
font => { family => 'blackboard', shape => 'upright', forcefamily => 1, forceshape => 1 });
DefMath('\Eins', '\lx@mbfont{1}');
DefMath('\Langle', '\lx@mbfont{<}', role => 'OPEN');
DefMath('\Lbrack', '\lx@mbfont{[}', role => 'OPEN');
DefMath('\Lparen', '\lx@mbfont{(}', role => 'OPEN');
DefMath('\Rangle', '\lx@mbfont{>}', role => 'CLOSE');
DefMath('\Rbrack', '\lx@mbfont{]}', role => 'CLOSE');
DefMath('\Rparen', '\lx@mbfont{)}', role => 'CLOSE');
DefMath('\bbalpha', '\lx@mbfont{\alpha}');
DefMath('\bbbeta', '\lx@mbfont{\beta}');
DefMath('\bbchi', '\lx@mbfont{\chi}');
DefMath('\bbdelta', '\lx@mbfont{\delta}');
# Yes, espilon !
DefMath('\bbespilon', '\lx@mbfont{\epsilon}');
DefMath('\bbeta', '\lx@mbfont{\beta}');
DefMath('\bbgamma', '\lx@mbfont{\gamma}');
DefMath('\bbiota', '\lx@mbfont{i}');
DefMath('\bbkappa', '\lx@mbfont{\kappa}');
DefMath('\bblambda', '\lx@mbfont{\lambda}');
DefMath('\bbmu', '\lx@mbfont{\mu}');
DefMath('\bbnu', '\lx@mbfont{\nu}');
DefMath('\bbomega', '\lx@mbfont{\omega}');
DefMath('\bbphi', '\lx@mbfont{\phi}');
DefMath('\bbpi', '\lx@mbfont{\pi}');
DefMath('\bbpsi', '\lx@mbfont{\psi}');
DefMath('\bbrho', '\lx@mbfont{\rho}');
DefMath('\bbsigma', '\lx@mbfont{\sigma}');
DefMath('\bbtau', '\lx@mbfont{\tau}');
DefMath('\bbtheta', '\lx@mbfont{\theta}');
DefMath('\bbupsilon', '\lx@mbfont{\upsilon}');
DefMath('\bbxi', '\lx@mbfont{\xi}');
DefMath('\bbzeta', '\lx@mbfont{\zeta}');
#======================================================================
1;
|