<H1> to <H6>
- This tag is used to mark header sections. Headers are types of paragraphs and so they accept the same attributes as paragraph tags.
<StyleRun>
The stylerun tag is used to change the current style. It accepts the following attributes:
Attribute | Notes | ||
fontsize | The font size for subsequent content, expressed in points. Follow with "pt" to be explicit. | ||
charspacing | The character spacing for subsequent content | ||
wordspacing | The word spacing for subsequent content. | ||
justification | The justification for subsequent content. | ||
hpos | The horizontal positioning for subsequent content. | ||
bold | Whether to apply a synthetic bold style to subsequent content. | ||
italic | Whether to apply a synthetic italic style subsequent content. | ||
underline | Whether to underline subsequent content. | ||
strike | Whether to apply a strike-through effect to subsequent content. | ||
strike2 | Whether to apply a double strike-through effect to subsequent content. | ||
outline | Whether to outline subsequent content. | ||
linespacing |
| ||
paraspacing | The paragraph spacing for subsequent content. | ||
Leftmargin | The left margin for subsequent content. | ||
Indent | The indent for subsequent content. | ||
fixedwidth |
| ||
textrise |
| ||
annots |
| ||
dir |
| ||
| |||
canbreakafter |
| ||
breakengine |
|
<List>
- This tag is used to indicate a list of items. Each list item consists of a marker and some text. Markers may be bullet points, numbers or letters.
- Lists are types of paragraphs and so they accept the same attributes as paragraph tags. They also accept the following additional attributes:
Attribute | Notes |
itemindent |
|
markerident |
|
start |
|
type |
|
<UL>
- The UL tag is used to indicate an unordered list. Unordered lists are types of lists and so they accept the same attributes as list tags. The default marker is the bullet point but the marker will change as lists are nested within each other.
<OL>
- The OL tag is used to indicate an ordered list. Ordered lists are types of lists and so they accept the same attributes as list tags. The default marker type is numeric.
<LI>
This tag is used to indicate an item within a list. It accepts the following attributes.
Attribute
Notes
value
- Specifies the number for this list item.
- Subsequent items are numbered incrementally from this new value.
type
- Specifies the type of marker to use.
- You can use the same types as you find in the type attribute of the list tag.
<B>
- This tag is used to apply a bold text style to subsequent content.
- This tag does not accept any attributes.
<I>
- This tag is used to apply an italic text style to subsequent content.
- This tag does not accept any attributes.
<U>
- This tag is used to apply an underline text style to subsequent content.
- This tag does not accept any attributes.
<Strike>
- This tag is used to apply a strike-through text style to subsequent content.
- This tag does not accept any attributes.
<Sup>
- This tag is used to indicate text to be rendered as superscript.
- This tag does not accept any attributes.
<Sub>
- This tag is used to indicate text to be rendered as subscript.
- This tag does not accept any attributes.
<Font>
- The font tag is used to change the current font style. Fonts are types of styleruns and so they accept the same attributes as stylerun tags.
- They also accept the following additional attributes.
Attribute
Notes
size
- The font size for subsequent content.
- You can set absolute font size by specifying an integer (no decimals) ranging from one to seven (eg size=6). Or you can specify a font size relative to the current base font size (eg size="+1").
- The "fontsize" attribute is preferred over this attribute because it specifies the font size in points.
color
- The color for subsequent content.
- Colors are generally specified as RGB in hexadecimal notation (eg color="#FF0000") or as one of the standard color names (eg color="red").
- You can specify grayscale colors by supplying only one component (eg color="#80") and CMYK colors by supplying four (eg color="#10203040").
- You can specify an alpha value (i.e. partial transparency) for your color by appending a slash and a hex value to the end of your color string (egcolor="#10203040/C0").
cmyk
- The CMYK color for subsequent content may be specified using the syntax:
- <font CMYK=”0,0,0,0”> </font> Substitute the values for CMYK, in the appropriate position, replacing the zero value.
Previous Chapter: Chapter 32 - Supported Tags for Field Scripting
Next Chapter: Chapter 34 Span Tags