# -*- CPERL -*-
# /=======================================================\ #
# |  cimento.cls - Implementation for LaTeXML             | #
# |                                                       | #
# |=======================================================| #
# |  Part of LaTeXML : http://dlmf.nist.gov/LaTeXML/      | #
# | Copyright (c) 2006 arXMLiv group                      | #
# | Released under the GNU Public License                 | #
# \=======================================================/ #

package LaTeXML::Package::Pool;
use strict;
use LaTeXML::Package;

LoadClass('article');
RequirePackage('cite');

# no decorations
DefConstructor('\titlerunning',"");
DefConstructor('\authorrunning',"");
DefConstructor('\frontmatter',"");
DefConstructor('\mainmatter',"");
DefConstructor('\backmatter',"");
DefConstructor('\institute',"");

# frontmatter stuff
DefConstructor('\@institute{}',"^ <ltx:contact role='institute'>#1</ltx:contact>", bounded=>1);
DefMacro('\institute{}','\@add@to@frontmatter{ltx:creator}{\@affiliation{#1}}');
DefConstructor('\inst{}','(1)');

#**********************************************************************
1;

