From aa20053803333df7295a81e641683a0977dcaff5 Mon Sep 17 00:00:00 2001 From: Jambunathan K Date: Wed, 21 Mar 2012 02:47:55 +0530 Subject: [PATCH] org.texi (Customizing tables in ODT export): Fix errors * doc/org.texi (Customizing tables in ODT export): Correct few errors. --- doc/org.texi | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/org.texi b/doc/org.texi index 6c137274d..193c4b977 100644 --- a/doc/org.texi +++ b/doc/org.texi @@ -11540,7 +11540,7 @@ the table that follows. @end lisp @example -#+ATTR_ODT: TableWithHeaderRowAndColumn +#+ATTR_ODT: :style "TableWithHeaderRowAndColumn" | Name | Phone | Age | | Peter | 1234 | 17 | | Anna | 4321 | 25 | @@ -11645,9 +11645,9 @@ To define a table style, create an entry for the style in the variable @end itemize For example, the entry below defines two different table styles -@samp{TableWithHeaderRowsAndColumns} and @samp{TableWithHeaderColumns} based -on the same template @samp{Custom}. The styles achieve their intended effect -by selectively activating the individual cell styles in that template. +@samp{TableWithHeaderRowAndColumn} and @samp{TableWithFirstRowandLastRow} +based on the same template @samp{Custom}. The styles achieve their intended +effect by selectively activating the individual cell styles in that template. @lisp (setq org-export-odt-table-styles @@ -11667,7 +11667,7 @@ To do this, specify the table style created in step (2) as part of the @code{ATTR_ODT} line as shown below. @example -#+ATTR_ODT: TableWithHeaderRowAndColumn +#+ATTR_ODT: :style "TableWithHeaderRowAndColumn" | Name | Phone | Age | | Peter | 1234 | 17 | | Anna | 4321 | 25 |