Hi,
> Miguel Ruiz <[email protected]>
> writes:
>
> > Any hint to get rid of the title in a org-export-as-odt
> session?
>
> I don't think you can
org-odt-format-preamble function says:
...
(when title
(concat
(org-odt-format-stylized-paragraph
'title (org-odt-format-tags
'("<text:title>" . "</text:title>") title))
;; separator
"<text:p text:style-name=\"OrgTitle\"/>"))
...
So I only need to find a way to assign nil to title variable inside the
document.
Also I might define a new option with org-export-inbuffer-options-extra, but
the elaboration of the function is beyond my knowledge.
I would appreciate any idea.
>
> > #+OPTIONS: title:nil author:nil timestamp:nil
> toc:nil
>
> ^^^^^^^^^
>
> This option is not supported.
>
> --
> Bastien
>
>
Thanks.