From mboxrd@z Thu Jan 1 00:00:00 1970 From: Qiang Fang Subject: how to modify caption styles in odt file exported with org-odt-export-to-odt Date: Mon, 19 Sep 2016 00:57:36 +0800 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44271) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1blfQT-0007w3-7M for emacs-orgmode@gnu.org; Sun, 18 Sep 2016 12:58:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1blfQN-00082Y-Ah for emacs-orgmode@gnu.org; Sun, 18 Sep 2016 12:58:44 -0400 Received: from mail-wm0-f44.google.com ([74.125.82.44]:34955) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1blfQN-000824-4x for emacs-orgmode@gnu.org; Sun, 18 Sep 2016 12:58:39 -0400 Received: by mail-wm0-f44.google.com with SMTP id l132so114843329wmf.0 for ; Sun, 18 Sep 2016 09:58:38 -0700 (PDT) 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" To: emacs-orgmode@gnu.org Hello everyone, My work requires me to use libreoffice. I have several questions using org mode with libreoffice. 1 How to remove colon seperator in figure caption in odt files exported from org mode? 2 How to change equation numbering to latex style, like e=mc2 (Equation 1-1) I am trying to get equation numbers aligned to the right, with section number before equaiton number in that section, such as 1-1, 1-2, 2-1 ... Just like the libreoffice TexMaths extension. Is there a way to number the png images of the converted equations. The following is an excerpt from my file: #+OPTIONS: AUTHOR:nil toc:nil tex:imagemagick #+name: eq:sinh #+begin_equation \begin{equation*} \label{eq:sinh} \dot{\epsilon}=AFexp[-Q/(RT)] \end{equation*} #+end_equation Thank you so much!