documentation/manual/source/display_tags.rst

174 lines
9.3 KiB
ReStructuredText
Raw Normal View History

.. _formatting-tags:
===============
Formatting Tags
===============
OpenLP has the ability to add additional formatting to text in songs and custom
2011-09-05 17:24:27 +00:00
slides through the use of :ref:`g-formatting-tags`. :ref:`g-formatting-tags`
provide a shortcut to use HTML and CSS to format text.
2011-09-05 17:24:27 +00:00
:ref:`g-formatting-tags` consist of two parts, a starting and an ending tag,
each tag consisting of a brace, tag identifier, brace.
2011-08-04 12:18:04 +00:00
**Note:** HTML or CSS cannnot be directly entered into OpenLP. They must be
defined through the use of :ref:`g-formatting-tags`
2011-08-04 11:59:12 +00:00
Using a Formatting Tag
======================
:ref:`g-formatting-tags` can be inserted by typing the tag into the text that
is being edited or by using the mouse to select and insert the tags.
2011-08-04 10:47:03 +00:00
:ref:`g-formatting-tags` can not span across page breaks. If a tag begins with
text on one side of a page break it cannot stretch across the break. Instead,
2011-09-05 20:33:29 +00:00
two sets of tags will need to be used, one set on each side of the break.
Adding Formatting Tags Using Text
---------------------------------
To use :ref:`g-formatting-tags` surround the text with a starting tag {} followed
by the text to be formatted. End the text to be formatted with an ending tag
{/}.
2011-07-27 10:48:50 +00:00
Example of Use
^^^^^^^^^^^^^^
To make a section of text bold you would do the following in a custom slide or
song::
Amazing grace how {st}sweet{/st} the sound.
This will yield the text as:
Amazing grace how **sweet** the sound.
Adding a Formatting Tag Using The Mouse
---------------------------------------
:ref:`g-formatting-tags` can be inserted by selecting the text you wish to
format. Right click on the text and select :menuselection:`Formatting Tags`
followed by selecting the desired formatting.
Example of Use
^^^^^^^^^^^^^^
2011-09-05 17:24:27 +00:00
Select the song or custom slide to edit. Next, highlight the text that you want
to be formatted.
.. image:: /pics/select_text.png
Right click on the selected text and select :menuselection:`Formatting Tags`
2011-09-05 17:24:27 +00:00
followed by selecting the desired formatting for the selected text.
.. image:: /pics/select_formatting.png
The formatting tags should now be inserted.
.. image:: /pics/tags_inserted.png
2011-08-04 12:46:14 +00:00
Included Formatting Tags
------------------------
The following tags are included with OpenLP
* **{r}** red text
* **{b}** black text
* **{bl}** blue text
* **{y}** yellow text
* **{g}** green text
* **{pk}** pink text
* **{o}** orange text
* **{pp}** purple text
* **{w}** white text
* **{su)** superscript text
* **{sb}** subscript text
* **{p}** paragraph
* **{st}** bold
* **{it}** italics
* **{u}** underline
* **{br}** break
2011-08-04 12:46:14 +00:00
Configuring Formatting Tags
===========================
2011-09-05 17:24:27 +00:00
To add new :ref:`g-formatting-tags` go to :menuselection:`Settings --> Configure
Formatting Tags`
.. image:: pics/configure_formatting_tags.png
Click the :guilabel:`New` button to add new :ref:`g-formatting-tags`. Enter the
description of the :ref:`g-formatting-tags` followed by the tag. The tag must be
2011-09-05 17:24:27 +00:00
unique. You do not need to put the in braces {} here, only when using the tag.
2011-06-25 10:12:44 +00:00
Finally, enter in the HTML or CSS for the tag and click :guilabel:`Save` to
complete adding new :ref:`g-formatting-tags`.
2011-06-25 10:12:44 +00:00
To delete :ref:`g-formatting-tags` that you have entered click on the
:ref:`g-formatting-tags` from the list and click :guilabel:`Delete`.
2011-09-05 17:24:27 +00:00
**Note:** if a tag is deleted that is in use in a song or custom slide the slide
2011-06-25 13:19:16 +00:00
will display the tags {} without any formatting. The deleted tags will need to
be manually deleted from the songs or custom slides.
Additional Useful Tags to Add
=============================
The :ref:`g-formatting-tags` included when you installed OpenLP provide many of the commonly used
formating Tags. The following are :ref:`g-formatting-tags` that are used by some of the
user community and may be of use to you.
The alignment Tags can be used to override the Theme formating. A common use
is to Center the Title of a song when the Theme is left justified.
The Font size up and down Tags can be used to make the Theme Font size larger
or smaller for the text between the tags. Both Tags can be combined to provide
multiple size changes.
The Font size 20pt Tag sets the font size to a specific size. The size
'20pt' is not an exact copy of what you would get in a word processor, but will
be comperable in size.
The Font name Tags, Arial and Times New Roman, will change the font used for the
text enclosed by the Tags. The Font name Tags can be combined with Color or
Formating Tags to create easily destiguishable differences on the screen. One use
could be for responsive readings.
The Paragraph with hanging text is used to indent the lines of Text after the
first line of text in a paragraph.
The Column Left and Column Right Tags can be used to create two columns of text,
each left justified.
.. table::
:widths: grid
+-----------------+-------+-----------------------------------------------------------------------------------------------------------------------------+----------------+
| Description | Tag | Start HTML | End HTML |
+=================+=======+=============================================================================================================================+================+
| Align Left | al | ``<div align="left">`` | ``</div>`` |
+-----------------+-------+-----------------------------------------------------------------------------------------------------------------------------+----------------+
| Align Center | ac | ``<div align="center">`` | ``</div>`` |
+-----------------+-------+-----------------------------------------------------------------------------------------------------------------------------+----------------+
| Align Right | ar | ``<div align="right">`` | ``</div>`` |
+-----------------+-------+-----------------------------------------------------------------------------------------------------------------------------+----------------+
| Big font size | fu | ``<big>`` | ``</big>`` |
+-----------------+-------+-----------------------------------------------------------------------------------------------------------------------------+----------------+
| Small font size | fd | ``<small>`` | ``</small>`` |
+-----------------+-------+-----------------------------------------------------------------------------------------------------------------------------+----------------+
| Font size 20pt | f20 | ``<span style="font-size: 20pt">`` | ``</span>`` +
+-----------------+-------+-----------------------------------------------------------------------------------------------------------------------------+----------------+
| Arial | arial | ``<span style="font-family:arial;">`` | ``</span>`` |
+-----------------+-------+-----------------------------------------------------------------------------------------------------------------------------+----------------+
| Times New | times | ``<span style="font-family:times new roman;">`` | ``</span>`` |
| Roman | | | |
+-----------------+-------+-----------------------------------------------------------------------------------------------------------------------------+----------------+
| Paragraph with | phg | ``<div style=" padding-left: 2em;text-indent: -0.5em; adding-left: 2em; padding-bottom:0.1em; margin:4em; float: left; ">`` | ``</div>`` |
| hanging test | | | |
+-----------------+-------+-----------------------------------------------------------------------------------------------------------------------------+----------------+
| Column left | cl | ``<div style="position:absolute; margin-left:0%>`` | ``</div>`` |
+-----------------+-------+-----------------------------------------------------------------------------------------------------------------------------+----------------+
| Column right | cr | ``<div style="position:absolute; margin-left:50%>`` | ``</div>`` |
+-----------------+-------+-----------------------------------------------------------------------------------------------------------------------------+----------------+