|
To manipulate the text in Perception, it is often useful
to use html tags. To use any tag, edit the question in QML.
This can be done by right-clicking on the appropriate question
and selecting Edit in QML. In a number of places in the QML,
youll see text/plain. Change this so it
is text/html.
To create a subscript
Html tag: <sub> </sub>
How to use tag: Whenever a subscript is needed
Example: T<sub>3</sub> is a common subscript.
Will look like: T3 is a common subscript.
*note that while the 3 is smaller here, Perception does not
automatically make it smaller, you'll need to use the font
size tag to do that
To create a superscript
Html tag: <sup> </sup>
How to use tag: Whenever a superscript is needed
Example: x<sup>2</sup> is x squared
Will look like: x2 is x squared
*note that while the 2 is smaller in this example, Perception
does not automatically make it smaller, you'll need to use
the font size tag to do that
To make the subscripts or superscripts smaller
Html tag: <font size =-1> </font>
How to use tag: These font tags are used in conjunction with
the <sub> or <sup> tags to make the subscript
or superscript smaller than the rest of the text.
Example:
It is very important that you enter the tags in the order
shown here.
T<font size =-1><sub>3</sub></font>
is a common subscript.
Will look like: T3 is a common
subscript.
*note that using these tags in Perception will make the 3
closer in size to what you see in this example.
back to top
|