/usr/share/perl5/LaTeXML/Package/book.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 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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | # -*- CPERL -*-
# /=====================================================================\ #
# | book | #
# | 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=/ #
use strict;
use LaTeXML::Package;
package LaTeXML::Package::Pool;
#**********************************************************************
# Option handling
foreach my $option (qw(10pt 11pt 12pt
letterpaper legalpaper executivepaper a4paper a5paper b5paper
landscape
final draft
oneside twoside
openright openany
onecolumn twocolumn
notitlepage titlepage
openbib
leqno fleqn)){
DeclareOption($option,undef); }
ProcessOptions();
#**********************************************************************
# Document structure.
RelaxNGSchema("LaTeXML");
DefMacro('\@ptsize','0'); # should depend on options...
RawTeX(<<'EOTeX');
\newif\if@restonecol
\newif\if@titlepage
\@titlepagefalse
EOTeX
#**********************************************************************
# The core sectioning commands are defined in LaTeX.pm
# but the counter setup, etc, depends on article
Let('\thedocument@ID','\@empty');
NewCounter('part', 'document', idprefix=>'Pt', nested=>['chapter']);
NewCounter('chapter', 'document', idprefix=>'Ch', nested=>['section']);
NewCounter('section', 'chapter', idprefix=>'S', nested=>['subsection']);
NewCounter('subsection', 'section', idprefix=>'SS', nested=>['subsubsection']);
NewCounter('subsubsection','subsection', idprefix=>'SSS',nested=>['paragraph']);
NewCounter('paragraph', 'subsubsection',idprefix=>'P', nested=>['subparagraph']);
NewCounter('subparagraph', 'paragraph', idprefix=>'SP', nested=>['equation','figure','table']);
DefMacro('\thepart', '\Roman{part}');
DefMacro('\thechapter', '\arabic{chapter}');
DefMacro('\thesection', '\thechapter.\arabic{section}');
DefMacro('\thesubsection', '\thesection.\arabic{subsection}');
DefMacro('\thesubsubsection','\thesubsection.\arabic{subsubsection}');
DefMacro('\theparagraph', '');
DefMacro('\thesubparagraph', '');
NewCounter('equation', 'chapter', idprefix=>'E');
NewCounter('figure', 'chapter', idprefix=>'F');
NewCounter('table', 'chapter', idprefix=>'T');
DefMacro('\theequation', '\thechapter.\arabic{equation}');
DefMacro('\thefigure', '\thechapter.\arabic{figure}');
DefMacro('\thetable', '\thechapter.\arabic{table}');
NewCounter('@itemizei', 'chapter', idprefix=>'I');
NewCounter('@itemizeii', '@itemizei', idprefix=>'I');
NewCounter('@itemizeiii', '@itemizeii', idprefix=>'I');
NewCounter('@itemizeiv', '@itemizeiii',idprefix=>'I');
NewCounter('@itemizev', '@itemizeiv', idprefix=>'I');
NewCounter('@itemizevi', '@itemizev', idprefix=>'I');
NewCounter('enumi', '@itemizei', idprefix=>'i');
NewCounter('enumii', '@itemizeii', idprefix=>'i');
NewCounter('enumiii','@itemizeiii', idprefix=>'i');
NewCounter('enumiv', '@itemizeiv', idprefix=>'i');
# A couple of more levels, since we use these for ID's!
NewCounter('enumv', '@itemizev', idprefix=>'i');
NewCounter('enumvi', '@itemizevi', idprefix=>'i');
DefMacro('\theenumi', '\arabic{enumi}');
DefMacro('\theenumii', '\alph{enumii}');
DefMacro('\theenumiii', '\roman{enumiii}');
DefMacro('\theenumiv', '\Alph{enumiv}');
Tag('ltx:appendix',autoClose=>1);
AssignValue(counter_for_appendix=>'chapter');
DefMacro('\appendix@chapter', '\@startsection{appendix}{}{}{}{}{}');
DefPrimitive('\appendix',sub{
NewCounter('chapter', 'document', idprefix=>'A',nested=>['section']);
DefMacro('\thechapter', '\Alph{chapter}',scope=>'global');
Let(T_CS('\chapter'),T_CS('\appendix@chapter'),'global');
Let(T_CS('\appendix'),T_CS('\relax'),'global');
});
# General document structure:
# \documentclass{..}
# preamble
# \begin{document}
# \frontmatter
DefPrimitive('\frontmatter',undef); # Do we need this?
# frontmatter stuff
# \maketitle
# \include various preface, introduction, etc
# \mainmatter
DefPrimitive('\mainmatter',undef);
# \include various chapters, appendices
# \backmatter
DefPrimitive('\backmatter',undef);
# commands for bibliography, indices
# \end{document}
#**********************************************************************
1;
|