| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <?xml version="1.0" encoding="us-ascii"?>
- <AssetDeclaration xmlns="uri:ea.com:eala:asset">
- <!--
- Font substitutions go in here
-
- The Font manager will interpolate sizes between adjacent values, and will
- always use the font name specified for the value less than or equal to the
- font size requested. Values are clamped to the lowest and highest sizes
- specified. Adding the Bold attribute in the FontDesc tag will replace a
- font with the bold version.
-
- EXAMPLE:
-
- <FontSubstitution Name="Albertus MT"> ( Substitute requests for Albertus MT font )
- <Substitute Size="10">
- <Font Name="Arial" Size="10" />
- </Substitute>
-
- <Substitute Size="20">
- <Font Name="Arial" Size="16" />
- </Substitute>
-
- <Substitute Size="24">
- <Font Name="Times New Roman" Size="18" />
- </Substitute>
-
- <Substitute Size="48">
- <Font Name="Times New Roman" Size="36" />
- </Substitute>
- </FontSubstitution>
-
- i.e. in the above example
- Requesting 9pts or below, will return 10pt Arial
- Requesting 10pts, will return 10pt Arial
- Requesting 15pts, will return 13pt Arial
- Requesting 22pts, will return 17pt Arial ( because it uses the font name from the lower size, but still interpolates between the two values )
- Requesting 24pts, will return 18pt Times New Roman
- Requesting 72pts, will return 36pt Times New Roman
- -->
- <!--
- <FontSubstitution Name="Courier New" id="CourierNew">
- <Substitute Size="2">
- <Font Name="Lucida Sans Unicode" Size="2" />
- </Substitute>
- <Substitute Size="1000">
- <Font Name="Lucida Sans Unicode" Size="1000" />
- </Substitute>
- </FontSubstitution>
- -->
- <FontSubstitution Name="Arial" id="Arial">
- <Substitute Size="2">
- <Font Name="Lucida Sans Unicode" Size="2" />
- </Substitute>
- <Substitute Size="1000">
- <Font Name="Lucida Sans Unicode" Size="1000" />
- </Substitute>
- </FontSubstitution>
- <FontSubstitution Name="Lucida Sans" id="LucidaSans">
- <Substitute Size="2">
- <Font Name="Lucida Sans Unicode" Size="2" />
- </Substitute>
- <Substitute Size="1000">
- <Font Name="Lucida Sans Unicode" Size="1000" />
- </Substitute>
- </FontSubstitution>
- <FontSubstitution Name="Times New Roman" id="TimesNewRoman">
- <Substitute Size="2">
- <Font Name="Lucida Sans" Size="2" />
- </Substitute>
- <Substitute Size="1000">
- <Font Name="Lucida Sans" Size="1000" />
- </Substitute>
- </FontSubstitution>
- <FontSubstitution Name="RussellSquare" id="RussellSquare">
- <Substitute Size="2">
- <Font Name="Lucida Sans Unicode" Size="2" />
- </Substitute>
- <Substitute Size="1000">
- <Font Name="Lucida Sans Unicode" Size="1000" />
- </Substitute>
- </FontSubstitution>
- <FontSubstitution Name="Red Alert" id="RedAlert">
- <Substitute Size="2">
- <Font Name="Red Alert Extended" Size="2" />
- </Substitute>
- <Substitute Size="1000">
- <Font Name="Red Alert Extended" Size="1000" />
- </Substitute>
- </FontSubstitution>
- </AssetDeclaration>
|