/usr/share/perl5/LaTeXML/Package/mn2e.cls.ltxml is in latexml 0.7.0-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 | # /====================================================================\
# | mn2e.cls for LaTeXML |
# | Generated by texscan --stub --base=article.cls mn2e.cls |
# >====================================================================<
# | Released to public domain. |
# | Bruce Miller <bruce.miller@nist.gov> |
# | http://dlmf.nist.gov/LaTeXML/ |
# \====================================================================/
use strict;
use LaTeXML::Package;
# Generally ignorable options
foreach my $option (qw(draft twocolumn onecolumn letters landscape galley
referee doublespacing)){
DeclareOption($option, undef); }
DeclareOption("usenatbib", sub { AssignValue('@usenatbib'=>1); });
DeclareOption("usedcolum", sub { AssignValue('@usedcolum'=>1); });
DeclareOption("usegraphicx", sub { AssignValue('@usegraphicx'=>1); });
DeclareOption("useAMS", sub { AssignValue('@useAMS'=>1); });
# Anything else is for article.
DeclareOption(undef,sub {
PassOptions('article','cls',ToString(Digest(T_CS('\CurrentOption')))); });
ProcessOptions();
LoadClass('article');
RequirePackage('mn2e_support');
1;
|