.. _print_service: ============= Print Service ============= OpenLP provides the ability to print the service order. This can be useful for a variety of reasons, such as giving the printed service to your music team so they have the song order, or so pastors or speakers can have the flow of the service. To print your service go to :menuselection:`File --> Print Service` or press :kbd:`Control + P`. .. image:: pics/printservice1.png This will bring up a window with the service order for review and printing. .. image:: pics/printservice2.png Toolbar ------- |printbutton| **Print:** This will print the service bringing up the system's print options. Use this when you are ready to print. |optionbutton| **Options:** This gives you a series of ways to customize the service order before printing. See the section on :ref:`options` for more information. |copybutton| **Copy:** Copy the text of the preview window to your clipboard. You can then paste the text into other documents or applications. |copybutton| **Copy HTML:** Copy html code to your clipboard. You can then paste this in a text editor and save as .html. This can then be used to post your service details on a website or anywhere an html document can be used. |zoomin| **Zoom in:** Zooms in on your preview. |zoomout| **Zoom out:** Zooms out to make more of your preview visible. |zoomoriginal| **Zoom to original:** Restores the preview to its original size. .. _options: Options ------- .. image:: pics/printservice3.png **Title:** Gives you the ability to change the title of the printed document. **Custom Footer Text:** Add text to the footer of the printed document. **Other Options** **Include slide text if available:** Check this to include all the text from songs or scripture. **Add page break before each text item:** If you have checked *include slide text if available* you can select this option to put each text item (songs, custom slides, scripture) on a separate page. **Include service item notes:** This option will include any notes you have added to the service items. **Include play length of media items:** This option will print the length of audio and video items in the service. .. _advanced: Customizing with CSS (Advanced) ------------------------------- It is possible to customize the printed service using CSS. To do this go to :menuselection:`Tools --> Open Data Folder` If you have a file named servicePrint.css delete it. Locate the folder in the Data Folder named serviceprint. If you do not have a serviceprint folder in your Data folder, you will need to create a new folder named serviceprint in the Data folder. Create a file named service_print.css in the serviceprint folder and paste the following into service_print.css then make your changes to this file:: /* Edit this service_print.css file to customize the service order print. Note, that not all CSS properties are supported. Please see https://doc.qt.io/qt-5/stylesheet-reference.html for details concerning the supported properties. */ .serviceTitle { font-weight:600; font-size:x-large; color:black; } .item { color:black; } .itemTitle { font-weight:600; font-size:large; } .itemText {} .itemFooter { font-size:8px; } .itemNotes {} .itemNotesTitle { font-weight:bold; font-size:12px; } .itemNotesText { font-size:11px; } .media {} .mediaTitle { font-weight:bold; font-size:11px; } .mediaText {} .imageList {} .customNotes { margin-top: 10px; } .customNotesTitle { font-weight:bold; font-size:11px; } .customNotesText { font-size:11px; } .newPage { page-break-before:always; } The HTML layout should look something like this:: Service Order Sheet

Service Order Sheet

Amazing Grace

Amazing grace how sweet the sound that saved a wretch like me
I once was lost but now I'm found, was blind but now I see.

Twas grace that taught my heart to fear, and grace my fears relieved
How precious did that grace appear the hour I first believed!

John Newton
1982 Jubilate Hymns Limited
Notes: Song Notes
More Notes

And Can It Be

And can be that I should gain,
an interest in my Savior's blood?
Died He for me, who caused His pain?
For me, who Him to death pursued?
Amazing love, how can it be
That thou my Lord should die for me?

Amazing love, how can it be
That thou my God should die for me?

Lindell Cooley
Public Domain

Wildlife.wmv

Notes: Movie Notes
Playing time: 0:00:00

John 3:16-17 (ASV)

3:16 For God so loved the world, that he gave his only begotten Son, that whosoever believeth on him should not perish, but have eternal life.

3:17 For God sent not the Son into the world to judge the world; but that the world should be saved through him.

ASV, Copyright, Permissions
Notes: Bible reading notes

Images

  1. Winter.jpg
  2. Sunset.jpg
Notes: Image notes

Lord's Prayer Traditional

Our Father,
who art in heaven,
hallowed be thy name.
Thy Kingdom come,
thy will be done,
on earth as it is in heaven

Give us this day our daily bread.
And forgive us our trespasses,
as we forgive those
who trespass against us.
And lead us not into temptation,
but deliver us from evil.
For thine is the kingdom,
the power and the glory,
for ever and ever. Amen

Notes: Custom Item Notes

Sermon Presentation.pptx

Notes: Presentation notes
Custom Service Notes: Custom Footer Text Goes here like this
Edit the CSS file to produce the required style. **Note:** Not all CSS properties are supported. See `Qt5 CSS subset `_ for more information. **Example 1:** Item titles with notes on right hand side. This service_print.css assumes the slide text will not be included.:: .itemTitle { font-weight:bold; font-size:large; margin: 0px; } .itemNotes { margin-left: 300px; margin-top: 0px; } .itemNotesTitle { font-weight:bold; } **Example 2:** Bold Item Names and increase Font Size to 24 point for the Item Title and Item Text. For this example, update the following sections of the original CSS file:: .itemTitle { font-weight:bold; font-size:24pt; margin: 0px; } .itemText { font-size:24pt; } **Transfering with Your style changes for editing** After modifying the .css file, the copy button will not capture the output with the changes made to the .css file. The Print function will print with the changes in the .css file and the Copy as HTML button will capture the output with the changes made to the .css file. If you need to edit the output of the service print window here is a workaround that will produce a copy of your .css changes for use in your word processer. 1. Open the service print window. 2. Make any needed changes in the options menu. 3. Select the 'Copy as HTML' button. 4. Open a text editor. 5. Paste the copied text into the text editor. 6. Save the file from the text editor with the .html file extension. 7. Open the file you saved in your web browser. 8. Select and Copy the text in the web browser. 9. Open your word processor. 10. Paste the copied text into your word processor. Note: If the first line in your word processor is not what is shown in your web browser, try a different web browser. Some web browsers will not copy the formating for the first line of text in the browser window. .. The following section defines the inline pics .. |printbutton| image:: pics/general_print.png .. |optionbutton| image:: pics/system_configure.png .. |copybutton| image:: pics/system_edit_copy.png .. |zoomout| image:: pics/general_zoom_out.png .. |zoomin| image:: pics/general_zoom_in.png .. |zoomoriginal| image:: pics/general_zoom_original.png