~ubuntu-branches/ubuntu/oneiric/latexml/oneiric

« back to all changes in this revision

Viewing changes to lib/LaTeXML/Package/amsbsy.sty.ltxml

  • Committer: Bazaar Package Importer
  • Author(s): Atsuhito KOHDA
  • Date: 2010-06-09 08:15:06 UTC
  • Revision ID: james.westby@ubuntu.com-20100609081506-1asj0n4u3w4q6jem
Tags: upstream-0.7.0
ImportĀ upstreamĀ versionĀ 0.7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- CPERL -*-
 
2
# /=====================================================================\ #
 
3
# |  amsbsy                                                             | #
 
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
# | Bruce Miller <bruce.miller@nist.gov>                        #_#     | #
 
11
# | http://dlmf.nist.gov/LaTeXML/                              (o o)    | #
 
12
# \=========================================================ooo==U==ooo=/ #
 
13
 
 
14
#**********************************************************************
 
15
# See amsldoc
 
16
#**********************************************************************
 
17
use strict;
 
18
use LaTeXML::Package;
 
19
 
 
20
DefConstructor('\boldsymbol{}', '#1', bounded=>1, requireMath=>1, font=>{forcebold=>1});
 
21
 
 
22
# I think the intent is that you use \pmb to get bold, but your current font doesn't supply
 
23
# a bold for those glyphs.  Since we're just forcing the glyph to be bold, 
 
24
# \pmb is probably \boldsymbol. or... ??
 
25
Let('\pmb','\boldsymbol');
 
26
 
 
27
#**********************************************************************
 
28
1;