1
# -*- CPERL -*-
2
# /=====================================================================\ #
3
# | unicode-math | #
4
# | Implementation for LaTeXML | #
5
# |=====================================================================| #
6
# | Part of LaTeXML: | #
7
# | Public domain software not subject to copyright in the US. | #
8
# |---------------------------------------------------------------------| #
9
# | Tim Vismor #_# | #
10
# | https://vismor.com/ (o o) | #
11
# \=========================================================ooo==U==ooo=/ #
12
use LaTeXML::Package;
13
use strict;
14
15
# Ignore unicode-math commands.
16
#DefMacro('\defaultfontfeatures{}','');
17
#DefMacro('\setmainfont{}','');
18
#DefMacro('\setsansfont{}','');
19
#DefMacro('\setmonofont{}','');
20
DefMacro('\setmathfont[]{}','');
21
22
# Don't forget this, so perl knows the package was processed.
23
1;