From: Nick Dokos <ndokos@gmail.com>
To: emacs-orgmode@gnu.org
Subject: Re: customizing preamble for org-preview-latex-fragment
Date: Sun, 15 Sep 2013 17:56:42 -0400 [thread overview]
Message-ID: <87vc21iw9x.fsf@gmail.com> (raw)
In-Reply-To: 87txhmuqxa.fsf@free.fr
Julien Cubizolles <j.cubizolles@free.fr> writes:
> How can I change the default packages used in the latex file generated
> by org-preview-latex-fragment ?
>
They are produced by the function org-create-formula--latex-header,
which uses the variables
org-latex-default-packages-alist
org-latex-packages-alist
to construct the header of the latex file. These two have the same
format: they are both lists of three-element sublists, where each
sublist is of the form:
("options" "package" snippet-flag)
Note the snippet-flag. See the docstrings of the variables for
more details.
If the package you want to include is missing completely from these two
lists, then add it to the second variable above with a snippet-flag
setting of ``t'':
--8<---------------cut here---------------start------------->8---
(add-to-list 'org-latex-packages-alist
'("options" "package" t))
--8<---------------cut here---------------end--------------->8---
If the package is included in one of them (probably the default list)
but has been banned from being included in a snippet (by setting its
snippet-flag to nil), then unban it by setting the flag to ``t''. It's
probably best to do that through the customize interface.
Untested, but I can't imagine anything going wrong - famous last words
:-) ...
--
Nick
next prev parent reply other threads:[~2013-09-15 21:57 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-15 13:59 customizing preamble for org-preview-latex-fragment Julien Cubizolles
2013-09-15 21:56 ` Nick Dokos [this message]
2013-09-16 10:49 ` Rasmus
2013-09-16 16:29 ` Julien Cubizolles
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87vc21iw9x.fsf@gmail.com \
--to=ndokos@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 external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.