blob: ba0a7928832cbf18786fe10c74ae059b1c35f391 (
plain)
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
|
# -*- CPERL -*-
# /=======================================================\ #
# | ed.sty - 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;
DefConstructor('\ednote[]{}','');
DefConstructor('\Ednote[]{}','');
DefConstructor('\tweak[]{}','');
DefConstructor('\Tweak[]{}','');
DefConstructor('\issue[]{}','');
DefConstructor('\Issue[]{}','');
DefEnvironment('{newpart}[]','#body');
DefEnvironment('{Newpart}[]','#body');
DefEnvironment('{oldpart}[]','#body');
DefEnvironment('{Oldpart}[]','#body');
DefEnvironment('{todo}[]','');
DefEnvironment('{Todo}[]','');
DefConstructor('\ednotemessage','');
#**********************************************************************
1;
|