Update and fix link. PEP 263 now widely supported.
[docutils.git] / docs / user / odt.txt
blob5dcc0b395ccebfc001b555f7f5f700c7c9d116ef
1 =======================
2 Odt Writer for Docutils
3 =======================
5 :Author: Dave Kuhlman
6 :Contact: dkuhlman@rexx.com
7 :Revision: $Revision$
8 :Date: $Date$
9 :Copyright: This document has been placed in the public domain.
11 :abstract: This document describes the Docutils odtwriter
12     (rst2odt.py).
14 .. sectnum::
16 .. contents::
20 Introduction
21 ============
23 What it does -- ``rst2odt.py`` translates reST
24 (reStructuredText) into a Open Document Format ``.odt`` file.  You
25 can learn more about the ODF format here:
27 - `OASIS Open Document Format for Office Applications
28   (OpenDocument) TC`_
30 - `Open Document at Wikipedia`_
32 You should be able to open documents (.odt files) generated with
33 ``rst2odt.py`` in ``OpenOffice/oowriter``.
35 You can learn more about Docutils and reST here: `Docutils`_
38 Requirements
39 ============
41 In addition to the Docutils standard requirements, ``odtwriter``
42 requires:
44 - ElementTree --  Python (version 2.5 or later) now includes
45   ElementTree (``xml.etree.ElementTree``).
47 - Optional -- `Pygments`_ is required if you want syntax
48   highlighting of code in literal blocks.  See section `Syntax
49   highlighting`_.
51 - Optional -- `Python Imaging Library`_ (PIL) is required if on an
52   image or figure directive, you specify ``scale`` but not ``width``
53   and ``height``.  See section `Images and figures`_.
57 How to Use It
58 =============
60 Run it from the command line as follows::
62     $ rst2odt.py myinput.txt myoutput.odt
64 To see usage information and to learn about command line options
65 that you can use, run the following::
67     $ rst2odt.py --help
69 Examples::
71     $ rst2odt.py -s -g python_comments.txt python_comments.odt
73     $ rst2odt.py --source-url=odtwriter.txt --generator --stylesheet=/myconfigs/styles.odt odtwriter.txt odtwriter.odt
76 Command line options
77 --------------------
79 The following command line options are specific to ``odtwriter``:
81 --stylesheet=<URL>      Specify a stylesheet URL, used verbatim. 
82                         Default: writers/odf_odt/styles.odt in the
83                         installation directory.
84 --odf-config-file=<file>
85                         Specify a configuration/mapping file relative to the
86                         current working directory for additional ODF options.
87                         In particular, this file may contain a section named
88                         "Formats" that maps default style names to names to be
89                         used in the resulting output file allowing for
90                         adhering to external standards. For more info and the
91                         format of the configuration/mapping file, see the
92                         odtwriter doc.
93 --cloak-email-addresses
94                         Obfuscate email addresses to confuse harvesters while
95                         still keeping email links usable with standards-
96                         compliant browsers.
97 --no-cloak-email-addresses
98                         Do not obfuscate email addresses.
99 --table-border-thickness=TABLE_BORDER_THICKNESS
100                         Specify the thickness of table borders in thousands of
101                         a cm.  Default is 35.
102 --add-syntax-highlighting
103                         Add syntax highlighting in literal code blocks.
104 --no-syntax-highlighting
105                         Do not add syntax highlighting in literal code blocks.
106                         (default)
107 --create-sections       Create sections for headers.  (default)
108 --no-sections           Do not create sections for headers.
109 --create-links          Create links.
110 --no-links              Do not create links.  (default)
111 --endnotes-end-doc      Generate endnotes at end of document, not footnotes at
112                         bottom of page.
113 --no-endnotes-end-doc   Generate footnotes at bottom of page, not endnotes at
114                         end of document. (default)
115 --generate-list-toc     Generate a bullet list table of contents, not an
116                         ODF/``oowriter`` table of contents.
117 --generate-oowriter-toc
118                         Generate an ODF/``oowriter`` table of contents,
119                         not a bullet list.  (default) **Note:**
120                         ``odtwriter`` is not able to determine page
121                         numbers, so you will need to open the
122                         generated document in ``oowriter``, then
123                         right-click on the table of contents and
124                         select "Update" to insert page numbers.
125 --custom-odt-header=CUSTOM_HEADER
126                         Specify the contents of an custom header line.  See
127                         odf_odt writer documentation for details about special
128                         field character sequences.  See section
129                         `Custom header/footers: inserting page numbers, date, time, etc`_
130                         for details
131 --custom-odt-footer=CUSTOM_FOOTER
132                         Specify the contents of an custom footer line.  See
133                         odf_odt writer documentation for details about special
134                         field character sequences.  See section
135                         `Custom header/footers: inserting page numbers, date, time, etc`_
136                         for details
138                                                                                                                         
140 Styles and Classes
141 ==================
143 ``odtwriter`` uses a number of styles that are defined in
144 ``styles.xml`` in the default ``styles.odt``.  This section
145 describes those styles.
147 Note that with the ``--stylesheet`` command line option, you can
148 use either ``styles.odt`` or ``styles.xml``, as described below. 
149 Use of ``styles.odt`` is recommended over ``styles.xml``.
151 You can modify the look of documents generated by ``odtwriter`` in
152 several ways:
154 - Open (a copy of) ``styles.odt`` in ``OpenOffice/oowriter`` and
155   modify the style you wish to change. Now, save this document,
156   then generate your documents using this modified copy of
157   ``styles.odt``.
159   In my version of ``oowriter``, to modify styles, either (1)
160   press F11 or (2) use menu item "Format/Styles and Formatting",
161   then right-click on the relevant style and select "Modify".
162   Modify the style, then save your document.
164 - Open a document generated by ``odtwriter`` in `oowriter``.  Now,
165   edit the style you are interested in modifying.  Now, you
166   can extract the styles.xml file from your document and either
167   (1) use this as your default styles file or (2) copy and paste
168   the relevant style definition into your styles.xml.
170 - Extract ``styles.xml`` from ``styles.odt`` using your favorite
171   ``zip/unzip`` tool.  Then modify ``styles.xml`` with a text
172   editor.  Now re-zip it back into your own ``styles.odt``, or use
173   it directly by specifying it with the ``--stylesheet`` command
174   line option.  **Hint:** If you intend to extract ``styles.xml``
175   from an ``.odt`` file (and then "re-zip" it), you should turn off
176   XML optimization/compression in ``oowriter``.  In order to this
177   in ``oowriter``, use Tools --> Options...  --> Load-Save -->
178   General and turn off "Size optimization for XML format".
180 - Open an empty (or new) document in ``oowriter``.  Define all of
181   the styles described in this section.  Then, use that document (a
182   .odt file) as your stylesheet.  ``odtwriter`` will extract the
183   ``styles.xml`` file from that document and insert it into the
184   output document.
186 - Some combination of the above.
189 Styles used by odtwriter
190 ------------------------
192 This section describes the styles used by ``odtwriter``.
194 Note that we do not describe the "look" of these styles.  That can
195 be easily changed by using ``oowriter`` to edit the document
196 ``styles.odt`` (or a copy of it), and modifying any of the styles
197 described here.
199 To change the definition and appearance of these styles, open
200 ``styles.odt`` in ``oowriter`` and open the Styles and Formatting
201 window by using the following menu item::
203     Format --> Styles and Formatting
205 Then, click on the Paragraph Styles button or the Character Styles
206 button at the top of the Styles and Formatting window.  You may
207 also need to select "All Styles" from the drop-down selection list
208 at the bottom of the Styles and Formatting window in order to see
209 the styles used by ``odtwriter``.
211 Notice that you can make a copy of file ``styles.odt``, modify it
212 using ``oowriter``, and then use your copy with the
213 ``--stylesheet=<file>`` command line option.  Example::
215     $ rst2odt.py --stylesheet=mystyles.odt test2.txt test2.odt
218 Paragraph styles
219 ~~~~~~~~~~~~~~~~
221 rststyle-attribution
222     The style for attributions, for example, the attribution in a
223     ``.. epigraph::`` directive.  Derived from
224     ``rststyle-blockquote``.
226 rststyle-blockindent
227     An indented block.
229 rststyle-blockquote
230     A block quote.
232 rststyle-blockquote-bulletitem
233     The style for bullet list items inside block quote.
235 rststyle-blockquote-enumitem
236     The style for enumerated list items inside block quote.
238 rststyle-bodyindent
239     An indented block.
241 rststyle-bulletitem
242     An item in an bullet list.
244 rststyle-caption
245     The caption in a figure or image.  Also see
246     ``rststyle-legend``.
248 rststyle-codeblock
249     Literal code blocks -- A block of example code.  Created with
250     double colon ("::") followed by an indented block or with the
251     ``.. parsed-literal::`` directive.  Derived from the
252     ``Preformatted Text`` style in ``oowriter``.
254 rststyle-enumitem
255     An item in an enumerated list.
257 rststyle-epigraph
258     The style for epigraphs, for example, the body of an
259     ``.. epigraph::`` directive.  Derived from
260     ``rststyle-blockquote``.
262 rststyle-epigraph-bulletitem
263     The style for bullet list items inside epigraphs.
265 rststyle-epigraph-enumitem
266     The style for enumerated list items inside epigraphs.
268 rststyle-footer
269     The style for footers.  The footer content originates from the
270     ``..footer::`` directive and in response to the command line
271     flags for generator (``--generator``), date/time generated
272     (``--date`` and ``--time``), and view source link
273     (``--source-link`` and ``--source-url=URL``).
275 rststyle-header
276     The style for headers.  The header content originates from the
277     ``..header::`` directive.
279 rststyle-highlights
280     The style for highlightss, for example, the body of an
281     ``.. highlights::`` directive.  Derived from
282     ``rststyle-blockquote``.
284 rststyle-highlights-bulletitem
285     The style for bullet list items inside highlights.
287 rststyle-highlights-enumitem
288     The style for enumerated list items inside highlights.
290 rststyle-horizontalline
291     A horizontal line, e.g. used for transitions.
293 rststyle-legend
294     The legend in a figure.  See the Docutils figure directive.  Also
295     see ``rststyle-caption``.
297 rststyle-table-title
298     The style for titles of tables.  See section `The table
299     directive`_.
301 rststyle-textbody
302     Normal text.  The style for paragraphs.  Derived from the ``Text
303     body`` style in ``oowriter``.
306 Character styles
307 ~~~~~~~~~~~~~~~~
309 rststyle-emphasis
310     Emphasis.  Normally rendered as italics.
312 rststyle-inlineliteral
313     An inline literal.
315 rststyle-strong
316     Strong emphasis.  Normally rendered as boldface.
318 rststyle-quotation
319     In-line quoted material.
321 rststyle-codeblock-classname
322     Syntax highlighting in literal code blocks -- class names.
324 rststyle-codeblock-comment
325     Syntax highlighting in literal code blocks -- comments.
327 rststyle-codeblock-functionname
328     Syntax highlighting in literal code blocks -- function names.
330 rststyle-codeblock-keyword
331     Syntax highlighting in literal code blocks -- Python language
332     keywords.
334 rststyle-codeblock-name
335     Syntax highlighting in literal code blocks -- other names, for
336     example, variables.
338 rststyle-codeblock-number
339     Syntax highlighting in literal code blocks -- literal numbers,
340     including integers, floats, hex numbers, and octal numbers.
342 rststyle-codeblock-operator
343     Syntax highlighting in literal code blocks -- Python operators.
345 rststyle-codeblock-string
346     Syntax highlighting in literal code blocks -- literal strings.
349 List styles
350 ~~~~~~~~~~~
352 rststyle-bulletlist
353     Bullet lists (but not in the table of contents)
355 rststyle-blockquote-bulletlist
356     Bullet lists in block quotes.
358 rststyle-blockquote-enumlist
359     Enumerated lists in block quotes.
361 rststyle-enumlist-arabic
362     Enumerated lists, arabic (but not in the table of contents)
364 rststyle-enumlist-loweralpha
365     Enumerated lists, lower alpha (but not in the table of contents)
367 rststyle-enumlist-lowerroman
368     Enumerated lists, lower roman (but not in the table of contents)
370 rststyle-enumlist-upperalpha
371     Enumerated lists, upper alpha (but not in the table of contents)
373 rststyle-enumlist-upperroman
374     Enumerated lists, upper roman (but not in the table of contents)
376 rststyle-epigraph-bulletlist
377     Bullet lists in epigraphs.  See the ``.. epigraph::``
378     directive.
380 rststyle-epigraph-enumlist
381     Enumerated lists in epigraphs.  See the ``.. epigraph::``
382     directive.
384 rststyle-highlights-bulletlist
385     Bullet lists in highlights blocks.  See the ``.. highlights::``
386     directive.
388 rststyle-highlights-enumlist
389     Enumerated lists in highlights blocks.  See the ``.. highlights::``
390     directive.
392 rststyle-tocbulletlist
393     Lists in the table of contents when section numbering is off.
395 rststyle-tocenumlist
396     Lists in the table of contents when section numbering is on.
399 Admonition styles
400 ~~~~~~~~~~~~~~~~~
402 rststyle-admon-attention-hdr
403     The style for the attention admonition header/title.
405 rststyle-admon-attention-body
406     The style for the attention admonition body/paragraph.
408 rststyle-admon-caution-hdr
409     The style for the caution admonition header/title.
411 rststyle-admon-caution-body
412     The style for the caution admonition body/paragraph.
414 rststyle-admon-danger-hdr
415     The style for the  admonition header/title.
417 rststyle-admon-danger-body
418     The style for the danger admonition body/paragraph.
420 rststyle-admon-error-hdr
421     The style for the error admonition header/title.
423 rststyle-admon-error-body
424     The style for the error admonition body/paragraph.
426 rststyle-admon-hint-hdr
427     The style for the hint admonition header/title.
429 rststyle-admon-hint-body
430     The style for the hint admonition body/paragraph.
432 rststyle-admon-hint-hdr
433     The style for the hint admonition header/title.
435 rststyle-admon-hint-body
436     The style for the hint admonition body/paragraph.
438 rststyle-admon-important-hdr
439     The style for the important admonition header/title.
441 rststyle-admon-important-body
442     The style for the important admonition body/paragraph.
444 rststyle-admon-note-hdr
445     The style for the note admonition header/title.
447 rststyle-admon-note-hdr
448     The style for the note admonition header/title.
450 rststyle-admon-tip-body
451     The style for the tip admonition body/paragraph.
453 rststyle-admon-tip-hdr
454     The style for the tip admonition header/title.
456 rststyle-admon-warning-body
457     The style for the warning admonition body/paragraph.
459 rststyle-admon-warning-hdr
460     The style for the warning admonition header/title.
462 rststyle-admon-generic-body
463     The style for the generic admonition body/paragraph.
465 rststyle-admon-generic-hdr
466     The style for the generic admonition header/title.
469 Rubric style
470 ~~~~~~~~~~~~
472 rststyle-rubric
473     The style for the text in a rubric directive.
475 The rubric directive recognizes a "class" option.  If entered,
476 odtwriter uses the value of that option instead of the
477 ``rststyle-rubric`` style.  Here is an example which which attaches
478 the ``rststyle-heading1`` style to the generated rubric::
480     .. rubric:: This is my first rubric
481        :class: rststyle-heading1
484 Table styles
485 ~~~~~~~~~~~~
487 A table style is generated by ``oowriter`` for each table that you
488 create.  Therefore, ``odtwriter`` attempts to do something similar. 
489 These styles are created in the ``content.xml`` document in the
490 generated ``.odt`` file.  These styles have names prefixed with
491 "rststyle-table-".
493 There are two ways in which you can control the styles of your
494 tables: one simple, the other a bit more complex, but more
495 powerful.
497 First, you can change the thickness of the borders of all tables
498 generated in a document using the "--table-border-thickness"
499 command line option.
501 Second, you can control additional table properties and you can
502 apply different styles to different tables within the same document
503 by customizing and using tables in your stylesheet: ``styles.odt``
504 or whatever you name your copy of it using the --stylesheet command
505 line option.  Then, follow these rules to apply a table style to 
506 the tables in your document:
508 - The default table style -- Optionally, alter and customize the
509   style applied by default to tables in your document by modifying
510   table "rststyle-table-0" in your stylesheet (``styles.odt`` or a
511   copy).  Caution: Do not change the name of this table.
513 - User-created table styles -- Add one or more new table styles to
514   be applied selectively to tables in your document by doing the
515   following:
517   1. Using ``oowriter``, add a table to your stylesheet and give it
518      a name that starts with the prefix "rststyle-table-", for
519      example "rststyle-table-vegetabledata".  Customize the table's
520      border thickness, border color, and table background color.
522   2. In your reStructuredText document, apply your new table style
523      to a specific table by placing the "..  class::" directive
524      immediately before the table, for example::
526          .. class:: rststyle-table-vegetabledata
528 The default table style will be applied to all tables for which you
529 do not specify a style with the "..  class::" directive.
531 Customize the table properties in ``oowriter`` using the table
532 properties dialog for the table (style) that you wish to customize. 
534 Note that "--table-border-thickness" command line option overrides
535 the border thickness specified in the stylesheet.
537 The specific properties that you can control with this second
538 method are the following:
540 - Border thickness and border color.
542 - Background color -- When you change the background color of a
543   table to be used as a style (in ``styles.odt`` or whatever you
544   name it), make sure you change the background color for the
545   *table* and *not* for a cell in the table.  ``odtwriter`` picks
546   the background color from the table, not from a cell within the
547   table.
550 Line block styles
551 ~~~~~~~~~~~~~~~~~~
553 The line block styles wrap the various nested levels of line
554 blocks.  There is one line block style for each indent level.
556 rststyle-lineblock1
557     Line block style for line block with no indent.
559 rststyle-lineblock2
560     Line block style for line block indented 1 level.
562 rststyle-lineblock3
563     Line block style for line block indented 2 levels.
565 rststyle-lineblock4
566     Line block style for line block indented 3 levels.
568 rststyle-lineblock5
569     Line block style for line block indented 4 levels.
571 rststyle-lineblock6
572     Line block style for line block indented 5 levels.
574 Notes:
576 - ``odtwriter`` does not check for a maximum level of indents
577   within line blocks.  Therefore, you can define additional line
578   block styles for additional levels if you need them.  Define
579   these styles with the names ``rststyle-lineblock7``,
580   ``rststyle-lineblock8``, ...
582 - Since the line block style is used to create indentation, a line
583   block that is inside a block quote will use
584   ``rststyle-lineblock2`` as its first level of indentation.
587 Footnote and citation styles
588 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
590 rststyle-footnote
591     The style for footnotes.  This style affects the footnote
592     content, *not* the footnote reference in the body of the document.
594 rststyle-citation
595     The style for citations.  This style affects the citation
596     content, *not* the citation reference in the body of the document. 
597     You might need to adjust the indentation in this style
598     depending on the length of the label used in your citations.
601 Heading and title styles
602 ~~~~~~~~~~~~~~~~~~~~~~~~~
604 rststyle-heading{1|2|3|4|5}
605     The styles for headings (section titles and sub-titles).  Five
606     levels of sub-headings are provided: rststyle-heading1 through
607     rststyle-heading5.
609 rststyle-title
610     The style for the document title.
612 rststyle-subtitle
613     The style for the document sub-title.
616 Image and figure styles
617 ~~~~~~~~~~~~~~~~~~~~~~~~~
619 rststyle-image
620     The style applied to an image, either an image by itself or an
621     image in a figure.
623 rststyle-figureframe
624     The style applied to a figure (actually to the frame that
625     surrounds a figure).
629 Defining and using a custom stylesheet
630 ---------------------------------------
632 You can create your own custom stylesheet.  Here is how:
634 1. Make a copy of ``styles.odt``, which is in the distribution.
636 2. Open your copy of ``styles.odt`` in ``oowriter``.  Modify styles
637    in that document.  Then, save it.
639 3. When you run ``rst2odt.py``, use the ``--stylesheet`` command
640    line option to use your custom stylesheet.  Run ``rst2odt.py
641    --help`` to learn more about these options.
644 Why custom stylesheets
645 ~~~~~~~~~~~~~~~~~~~~~~~
647 Here are a few reasons and ideas:
649 - The page size is stored in the style sheet.  The default page
650   size is ``Letter``.  You can change the page size (for example,
651   to ``A4``) in your custom stylesheet by opening it in
652   ``oowriter``, then clicking on menu: ``Format/Page...``, then
653   clicking on the ``Page`` tab.
657 Defining and using custom style names
658 -------------------------------------
660 [Credits: Stefan Merten designed and implemented the custom style names
661 capability.  Thank you, Stefan.]
663 You can also instruct ``odtwriter`` to use style names of your own
664 choice.
667 Why custom style names
668 ~~~~~~~~~~~~~~~~~~~~~~
670 Here are a few reasons and ideas:
672 - Suppose that your organization has a standard set of styles in
673   OOo ``oowriter`` and suppose that the use of these styles is
674   required. You would like to generate ODF documents from
675   reST text files, and you want the generated documents to contain
676   these styles.
678 - Suppose that your company or organization has a policy of using a
679   certain MS Word template for some set of documents.  You would
680   like to generate ODF documents that use these custom style names,
681   so that you can export these documents from ODF ``oowriter`` to MS
682   Word documents that use these style names.
684 - Suppose that your documents are written in a language other than
685   English.  You would like the style names visible in the "Styles
686   and Formatting" window in OOo ``oowriter`` (menu item
687   ``Format/Styles and Formatting``) to be understandable in the
688   language of your users.
690 - ``odtwriter`` maps single asterisks/stars (for example, \*stuff\*)
691   to emphasis and double stars to strong.  You'd like to reverse
692   these.  Or, you would like to generate headings level 3 and 4
693   where headings level 1 and 2 would normally be produced.
696 How to use custom style names
697 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
699 In order to define custom style names and to generate documents that
700 contain them, do the following:
703 1. Create a configuration file containing a "Formats" section.  The
704    configuration file obeys the file format supported by the Python
705    ConfigParser module: 
706    `ConfigParser -- Configuration file parser --
707    http://docs.python.org/lib/module-ConfigParser.html
708    <http://docs.python.org/lib/module-ConfigParser.html>`_.
710 2. In the "Formats" section of the configuration file, create one
711    option (a name-value pair) for each custom style name that you
712    wish to define.  The option name is the standard ``odtwriter``
713    style name (without "rststyle-"), and the value is your custom
714    style name.  Here is an example::
716        [Formats]
717        textbody: mytextbody
718        bulletitem: mybulletitem
719        heading1: myheading1
720            o
721            o
722            o
724 3. Create a styles document that defines the styles generated by
725    ``odtwriter``.  You can create and edit the styles in OOo
726    ``oowriter``.  It may be helpful to begin by making a copy of the
727    styles document that is part of the ``odtwriter`` distribution
728    (``styles.odt``).
730 4. When you run ``odtwriter``, specify the ``--odf-config-file``
731    option.  You might also want to specify your styles document
732    using the ``--stylesheet`` option in order to include your
733    custom style definitions.  For example::
735        rst2odt.py --odf-config-file=mymappingfile.ini --stylesheet=mystyles.odt mydoc.txt mydoc.odt
738 Classes
739 -------
741 ``odtwriter`` uses the following Docutils class to provide additional
742 control of the generation of ODF content:
744 - Class ``wrap`` -- Use this to cause the wrapping of text around
745   an image.  The default is *not* to wrap text around images. 
746   Here is an example::
748       .. class:: wrap
749       .. image:: images/flower01.png
750           :alt: A bright yellow flower
751           :height: 55
752           :width: 60
755 Roles
756 -------
758 You can use a Docutils custom interpreted text role to attach a
759 character style to an inline area of text.  This capability also
760 enables you to attach a new character style (with a new name) that
761 you define yourself.  Do this by defining your role in a stylesheet
762 as a character style with "rststyle-" prefixed to your role name,
763 then use the ``role`` directive and inline markup to apply your
764 role.
766 In order to use this capability, do the following:
768 - Define the character style for your custom role in a stylesheet
769   (a copy of ``styles.odt``) with the prefix "rststyle-". 
770   Remember: (1) If the name of your custom role is "pretty", then
771   define a character style named "rststyle-pretty".  (2) Define the
772   style as a *character* style, and *not*, for example as a
773   paragraph style.
775 - Declare your role in the source reStructuredText document in a
776   ``role`` directive.  Example::
778       .. role:: pretty
780 - Use inline markup to apply your role to text.  Example::
782       We have :pretty:`very nice` apples.
784 Here is another example::
786     .. role:: fancy
788     Here is some :fancy:`pretty text` that looks fancy.
790 For more on roles see:
791 `Custom Interpreted Text Roles --
792 http://docutils.sourceforge.net/docs/ref/rst/directives.html#custom-interpreted-text-roles
793 <http://docutils.sourceforge.net/docs/ref/rst/directives.html#custom-interpreted-text-roles>`_.
795 **Note:** The ability to base a role on another existing role is
796 *not* supported by ``odtwriter``.
799 Hints and Suggestions and Features
800 ==================================
802 Table of contents
803 -----------------
805 The ``..contents::`` directive causes ``odtwriter`` to generate
806 either:
808 1. A static, outline style table of contents, if the 
809    ``--generate-list-toc`` command line option is specified, or
811 2. An ODF/``oowriter`` style table of contents containing
812    dynamically updated page numbers and with the formatting control
813    that ``oowriter`` gives you.  This is the default, or use the
814    command line option ``--generate-list-toc``.  **Note:**
815    ``odtwriter`` is not able to determine page numbers, so you will
816    need to open the generated document in ``oowriter``, then
817    right-click on the table of contents and select "Update" to
818    insert correct page numbers.
821 Syntax highlighting
822 -------------------
824 ``odtwriter`` can add syntax highlighting to code in code
825 blocks.  In order to activate this, do all of the following:
827 1. Install `Pygments`_ and ...
829 2. Use the command line option ``--add-syntax-highlighting``.
830    Example::
832        $ rst2odt.py --add-syntax-highlight test.txt test.odt
834 The following styles are defined in styles.odt and are used for
835 literal code blocks and syntax highlighting:
837 - Paragraph styles:
839   - rststyle-codeblock -- The style for the code block as a whole.
841 - Character styles:
843   - rststyle-codeblock-classname -- class names.
845   - rststyle-codeblock-comment -- comments.
847   - rststyle-codeblock-functionname -- function names.
849   - rststyle-codeblock-keyword -- Python language keywords.
851   - rststyle-codeblock-name -- other names, for example,
852     variables.
854   - rststyle-codeblock-number -- literal numbers, including
855     integers, floats, hex numbers, and octal numbers.
857   - rststyle-codeblock-operator -- Python operators.
859   - rststyle-codeblock-string -- literal strings.
861 Each of the above styles has a default appearance that is defined
862 in ``styles.odt``.  To change that definition and appearance, open
863 ``styles.odt`` in ``oowriter`` and use menu item::
865     Format --> Styles and Formatting
867 Then, click on the Paragraph Styles button or the Character Styles
868 button at the top of the Styles and Formatting window.  You may
869 also need to select "All Styles" from the drop-down selection list
870 at the bottom of the Styles and Formatting window.
874 The container directive
875 -----------------------
877 There is limited support for the ``container`` directive.  The
878 limitations and rules for the container directive are the following:
880 - Only the first class in the list of classes (arguments) is used.
882 - That class/style must be a paragraph style and not (for example) a
883   character style.
885 - The style/class given to the container directive will have a
886   "rststyle-" prefix in the odt file.
888 So, for example::
890     .. container:: style-1 style-2 style-3
892         a block of text
894 - Only ``style-1`` is used; ``style-2`` and ``style-3`` are ignored.
896 - ``rststyle-style-1`` must be defined.  It should be an existing,
897   predefined style, or you should define it in your stylesheet
898   (``styles.odt`` or the argument to the ``--stylesheet`` command
899   line option).
901 - ``rststyle-style-1`` must be a paragraph style.
903 To define a paragraph style, use the following menu item in
904 ``oowriter``::
906     Format --> Styles and Formatting
908 Then, click on the Paragraph Styles button.
910 The following example attaches the ``rststyle-heading2`` style (a
911 predefined style) to each paragraph/line in the container::
913     .. container:: heading2
915        Line 1 of container.
917        Line 2 of container.
919 More information on how to define a new style (for example, in your
920 ``styles.odt``) can be found in section 
921 `Defining and using custom style names`_.
925 The table directive
926 -------------------
928 The ``table`` directive can be used to add a title to a table.
929 Example::
931     .. table:: A little test table
933         =========== =============
934         Name        Value
935         =========== =============
936         Dave        Cute
937         Mona        Smart
938         =========== =============
940 The above will insert the title "A little test table" at the top of the
941 table.  You can modify the appearance of the title by modifying the
942 paragraph style ``rststyle-table-title``.
945 Footnotes and citations
946 -----------------------
948 Footnotes and citations are supported.
950 There are additional styles ``rststyle-footnote`` and
951 ``rststyle-citation`` for footnotes and citations. See 
952 `Footnote and citation styles`_.
954 You may need to modify the citation style to fit the length of your
955 citation references.
957 Endnotes -- There are command line options that control whether
958 ``odtwriter`` creates endnotes instead of footnotes.  Endnotes
959 appear at the end of the document instead of at the bottom of the
960 page.  See flags ``--endnotes-end-doc`` and
961 ``--no-endnotes-end-doc`` in section `Command line options`_.
964 Images and figures
965 ------------------
967 If on the image or the figure directive you provide the scale option
968 but do not provide the width and height options, then ``odtwriter``
969 will attempt to determine the size of the image using the `Python
970 Imaging Library`_ (PIL).  If ``odtwriter`` cannot find and import
971 Python Imaging Library, it will raise an exception.  If this
972 ocurrs, you can fix it by doing one of the following:
974 - Install the Python Imaging Library or
976 - Remove the ``scale`` option or
978 - Add both the ``width`` and the ``height`` options.
980 So, the rule is: if on any image or figure, you specify scale but
981 not both width and height, you must install the `Python Imaging
982 Library`_ library.
984 For more information about PIL, see: `Python Imaging Library`_.
987 The raw directive
988 -----------------
990 The ``raw`` directive is supported.  Use output format type "odt".
992 You will need to be careful about the formatting of the raw
993 content.  In particular, introduced whitespace might be a problem.
995 In order to produce content for the raw directive for use by
996 ``odtwriter``, you might want to extract the file ``content.xml``
997 from a ``.odt`` file (using some Zip tool), and then clip, paste,
998 and modify a selected bit of it.
1000 Here is an example::
1002     .. raw:: odt
1004         <text:p text:style-name="rststyle-textbody">Determining <text:span text:style-name="rststyle-emphasis">which</text:span> namespace a name is in is static.  It can be
1005         determined by a lexical scan of the code.  If a variable is assigned a
1006         value <text:span text:style-name="rststyle-emphasis">anywhere</text:span> in a scope (specifically within a function or method
1007         body), then that variable is local to that scope.  If Python does not
1008         find a variable in the local scope, then it looks next in the global
1009         scope (also sometimes called the module scope) and then in the
1010         built-ins scope.  But, the <text:span text:style-name="rststyle-inlineliteral">global</text:span> statement can be used to force
1011         Python to find and use a global variable (a variable defined at top
1012         level in a module) rather than create a local one.</text:p>
1015 The meta directive
1016 ------------------
1018 ``odtwriter`` supports the ``meta`` directive.  Two fields are
1019 recognized: "keywords" and "description".  Here is an example::
1021     .. meta::
1022        :keywords: reStructuredText, docutils, formatting
1023        :description lang=en: A reST document, contains formatted
1024            text in a formatted style.
1026 To see the results of the ``meta`` directive in ``oowriter``,
1027 select menu item "File/Properties...", then click on the
1028 "Description" tab.
1031 Footnote references inside footnotes
1032 ------------------------------------
1034 Not supported.
1036 Get a grip.  Be serious.  Try a dose of reality.
1038 ``odtwriter`` ignores them.
1040 They cause ``oowriter`` to croak.
1043 Page size
1044 ---------
1046 The default page size, in documents generated by ``odtwriter`` is
1047 ``Letter``.  You can change this (for example to ``A4``) by using a
1048 custom stylesheet.  See `Defining and using a custom stylesheet`_
1049 for instructions on how to do this.
1051 On machines which support ``paperconf``, ``odtwriter`` can insert
1052 the default page size for your locale.  In order for this to work,
1053 the following conditions must be met:
1055 1. The program ``paperconf`` must be available on your system. 
1056    ``odtwriter`` uses ``paperconf -s`` to obtain the paper size. 
1057    See ``man paperconf`` for more information.
1059 2. The default page height and width must be removed from the
1060    ``styles.odt`` used to generate the document.  A Python script
1061    ``rst2odt_prepstyles.py`` is distributed with ``odtwriter`` and
1062    is installed in the ``bin`` directory.  You can remove the page
1063    height and width with something like the following::
1065        $ rst2odt_prepstyles.py styles.odt
1067 .. warning:: If you edit your stylesheet in ``oowriter`` and then
1068     save it, ``oowriter`` automatically inserts a page height and
1069     width in the styles for that (stylesheet) document.  If that is
1070     not the page size that you want and you want ``odtwriter`` to
1071     insert a default page size using ``paperconf``, then you will
1072     need to strip the page size from your stylesheet each time you
1073     edit that stylesheet with ``oowriter``.
1077 Custom header/footers: inserting page numbers, date, time, etc
1078 ----------------------------------------------------------------
1080 You can specify custom headers and footers for your document from
1081 the command line.  These headers and footers can be used to insert
1082 fields such as the page number, page count, date, time, etc.  See
1083 below for a complete list.
1085 To insert a custom header or footer, use the "--custom-odt-header"
1086 or "--custom-odt-footer" command line options.  For example, the
1087 following inserts a footer containing the page number and page
1088 count::
1090     $ rst2odt.py --custom-odt-footer="Page %p% of %P%" f1.txt f1.odt
1093 Field specifiers
1094 ~~~~~~~~~~~~~~~~~~
1096 You can use the following field specifiers to insert ``oowriter``
1097 fields in your custom headers and footers:
1100     The current page number.
1103     The number of pages in the document.
1105 %d1%
1106     The current date in format 12/31/99.
1108 %d2%
1109     The current date in format 12/31/1999.
1111 %d3%
1112     The current date in format Dec 31, 1999.
1114 %d4%
1115     The current date in format December 31, 1999.
1117 %d5%
1118     The current date in format 1999-12-31.
1120 %t1%
1121     The current time in format 14:22.
1123 %t2%
1124     The current time in format 14:22:33.
1126 %t3%
1127     The current time in format 02:22 PM.
1129 %t4%
1130     The current time in format 02:22:33 PM.
1133     The author of the document (actually the initial creator).
1136     The document title.
1139     The document subject.
1142 **Note:** The use of the above field specifiers in the body of your
1143 reStructuredText document is **not** supported, because these
1144 specifiers are not standard across Docutils writers.
1148 Credits
1149 =======
1151 Stefan Merten designed and implemented the custom style names
1152 capability.  Thank you, Stefan.
1154 Michael Schutte supports the Debian GNU/Linux distribution of
1155 ``odtwriter``.  Thank you, Michael, for providing and supporting
1156 the Debian package.
1158 Michael Schutte implemented the fix that enables ``odtwriter`` to
1159 pick up the default paper size on platforms where the program
1160 ``paperconf`` is available.  Thank you.
1165 .. _`Pygments`:
1166     http://pygments.pocoo.org/
1168 .. _`Docutils`:
1169     http://docutils.sourceforge.net/
1171 .. _`Python Imaging Library`:
1172     http://www.pythonware.com/products/pil/
1174 .. _`Open Document at Wikipedia`:
1175     http://en.wikipedia.org/wiki/OpenDocument
1177 .. _`OASIS Open Document Format for Office Applications (OpenDocument) TC`:
1178     http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=office