/usr/share/perl5/LaTeXML/Package/amsart.cls.ltxml is in latexml 0.8.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 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 | # -*- CPERL -*-
# /=====================================================================\ #
# | amsart | #
# | 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. | #
# |---------------------------------------------------------------------| #
# | Thanks to the arXMLiv group for initial implementation | #
# | http://arxmliv.kwarc.info/ | #
# | Released to the Public Domain | #
# |---------------------------------------------------------------------| #
# | 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;
#**********************************************************************
# Document structure.
LoadClass('ams_core', withoptions => 1);
RequireResource('ltx-amsart.css');
# amsart.cls.ltxml : journal article
# amsproc.cls.ltxml : article in book proceedings
# amsbook.cls.ltxml : monograph
# gen-j-l.cls.ltxml "generic journal article" => amsart
# gen-p-l.cls.ltxml "generic proceedings article" => amsproc
# gen-m-l.cls.ltxml "monograph" => amsbook
# # MANY more styles!
# conm-p-l "Contemporary Mathematics proceedings series"
# (conm-p-l-version ?? )
# And, the following from arXMLiv have similar naming format(?)
# crmp-l.cls
# dimacs-l.cls
# era-l.cls
# ert-l.cls
# ert-like.cls
# fic-l.cls
# gsm-l.cls
# iimas-amsproc.cls
# iimas-conm-p-l.cls
# jag-l.cls
# jams-l.cls
# mcom-1.cls
# pcms-l.cls
# proc-l.cls
# psapm-l.cls
# pspum-l.cls
# tran-l.cls
# (and tran-l-1.cls, tran-l2.cls, trans2-l.cls)
#======================================================================
# Sec. 5. Document Body
Let('\specialsection', '\chapter'); # Close enough?
# #======================================================================
1;
|