1# -*- mode: Perl -*-
2# /=====================================================================\ #
3# |  aa                                                                 | #
4# | Implementation for LaTeXML                                          | #
5# |=====================================================================| #
6# | Part of LaTeXML:                                                    | #
7# |  Public domain software, produced as part of work done by the       | #
8# |  United States Government & not subject to copyright in the US.     | #
9# |---------------------------------------------------------------------| #
10# | Thanks to the arXMLiv group for initial implementation              | #
11# |    http://arxmliv.kwarc.info/                                       | #
12# | Released to the Public Domain                                       | #
13# |---------------------------------------------------------------------| #
14# | Bruce Miller <bruce.miller@nist.gov>                        #_#     | #
15# | http://dlmf.nist.gov/LaTeXML/                              (o o)    | #
16# \=========================================================ooo==U==ooo=/ #
17package LaTeXML::Package::Pool;
18use strict;
19use warnings;
20use LaTeXML::Package;
21
22# aa.cls
23#  Astronomy & Astrophysics
24# See https://www.aanda.org/for-authors/latex-issues/texnical-background-information
25#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
26# Class Options
27# Ignorable options
28foreach my $option (qw(10pt 11pt 12pt twoside onecolumn twocolumn
29  draft final referee
30  longauth rnote
31  oldversion
32  runningheads
33  envcountreset envcountsect
34  structabstract traditabstract
35  letter)) {
36  DeclareOption($option, undef); }
37
38# Anything else gets passed to article.
39DeclareOption(undef, sub {
40    PassOptions('article', 'cls', ToString(Expand(T_CS('\CurrentOption')))); });
41
42ProcessOptions();
43
44LoadClass('article');
45RequirePackage('aa_support');
46
47#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
481;
49