From mboxrd@z Thu Jan 1 00:00:00 1970 From: hack writer Subject: Omitting title in odt-export Date: Tue, 21 Oct 2014 00:13:11 +0200 Message-ID: <20141021001311.9c7b2bde27d0d8d9c9159e81@bookhacker.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33894) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XgLCc-0004p9-5M for emacs-orgmode@gnu.org; Mon, 20 Oct 2014 18:13:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XgLCU-0000Rf-NK for emacs-orgmode@gnu.org; Mon, 20 Oct 2014 18:13:22 -0400 Received: from ngcobalt01.manitu.net ([217.11.48.101]:50013) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XgLCU-0000RM-Gp for emacs-orgmode@gnu.org; Mon, 20 Oct 2014 18:13:14 -0400 Received: from b2-netbook (HSI-KBW-37-49-87-125.hsi14.kabel-badenwuerttemberg.de [37.49.87.125]) (Authenticated sender: bb) by ngcobalt01.manitu.net (Postfix) with ESMTPA id 2A4601A0040 for ; Tue, 21 Oct 2014 00:13:14 +0200 (CEST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi there, I have problems omitting the OrgTitle from an exported odt-document. Through the following preamble in my .org-file I am able to omit most of the default title/author/etc. information at the beginning of the .odt-document: #+ODT_STYLES_FILE: "/path/to/template.ott" #+TITLE: #+DATE: #+AUTHOR: #+OPTIONS: ':nil *:t -:t ::t <:t H:3 \n:nil ^:t arch:headline #+OPTIONS: author:nil c:nil creator:comment d:(not LOGBOOK) date:nil e:t #+OPTIONS: email:nil f:t inline:t num:t p:nil pri:nil stat:t tags:t #+OPTIONS: tasks:t tex:t timestamp:t toc:t todo:t |:t #+CREATOR: #+DESCRIPTION: #+EXCLUDE_TAGS: noexport #+KEYWORDS: #+LANGUAGE: de #+SELECT_TAGS: export #+BEGIN_ODT // // .odt stuff in here // #+END_ODT but there are still two empty paragraphs at the beginning of my file. When looking at the source code of the odt-file (content.xml) the empty paragraphs are before my real text begins. So how can I get rid of these empty paragraphs (I already tried things like title:nil but they didn't work)?