emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: "Maik Schünemann" <maikschuenemann@gmail.com>
To: emacs-orgmode@gnu.org
Subject: Documentclass for latex preview images
Date: Fri, 5 Aug 2016 15:22:22 +0200	[thread overview]
Message-ID: <CAGXfcpwO9547woqm7dBpA+=pc8ofMHZoPfah3zH2fyX2Vvhuhg@mail.gmail.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 1257 bytes --]

Hi,

Is there an option to set the documentclass that is used in temporary files
to create latex preview images?

I am writing math texts with org mode and am using amsthm for theorems etc
and let them be counted by chapter:

#+LATEX_HEADER: \usepackage{amsthm}
#+LATEX_HEADER: \newtheorem{thm}{Theorem}[chapter]
#+LATEX_HEADER: \newtheorem{defn}{Definition}[chapter]
#+LATEX_HEADER: \newtheorem{prop}{Proposition}[chapter]

After I put these lines in my .org file, latex preview images stopped
working although latex export still did. The problem is that in the
temporary files used to generate the preview images, the documentclass
article is used which doesn't define the counter chapter.

I managed to resolve this issue for me by checking for presence of the
counter.
#+LATEX_HEADER: \makeatletter
#+LATEX_HEADER: \newcommand\ifcounter[3]{\@ifundefined{c@#1}{#3}{#2}}
#+LATEX_HEADER: \makeatother
#+LATEX_HEADER: \ifcounter{chapter}{
#+LATEX_HEADER: \newtheorem{thm}{Theorem}[chapter]
#+LATEX_HEADER: \newtheorem{defn}{Definition}[chapter]
#+LATEX_HEADER: \newtheorem{prop}{Proposition}[chapter]
#+LATEX_HEADER: }{}


Is there a downside to using the same document class as the org file
specifies for export to create the preview images?

Thanks,
Maik

[-- Attachment #2: Type: text/html, Size: 1632 bytes --]

             reply	other threads:[~2016-08-05 13:22 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-05 13:22 Maik Schünemann [this message]
2016-08-07 20:38 ` Documentclass for latex preview images John Kitchin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAGXfcpwO9547woqm7dBpA+=pc8ofMHZoPfah3zH2fyX2Vvhuhg@mail.gmail.com' \
    --to=maikschuenemann@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).