From: Greg Minshall <minshall@umich.edu>
To: Jean Louis <bugs@gnu.support>
Cc: Org mailing list <emacs-orgmode@gnu.org>
Subject: Re: How to expand macro in LaTeX export? How to use different options per export type?
Date: Thu, 01 Apr 2021 06:47:23 +0300 [thread overview]
Message-ID: <422904.1617248843@apollo2.minshall.org> (raw)
In-Reply-To: Your message of "Wed, 31 Mar 2021 23:04:12 +0300." <YGTVvJT5dv4JKjCj@protected.localdomain>
Jean Louis,
when publishing, one presents a data structure
~org-publish-project-alist~ that defines the back ends and options for
publishing actions. the options are here:
----
https://orgmode.org/manual/Publishing-options.html#Publishing-options
----
below is an example. as you can see, publishing to different back ends
can have different values for a given option. (well, not that i do it
that much here...)
cheers, Greg
----
(setq org-publish-project-alist
'(("ess-org-html"
:with-toc nil
:base-directory "./"
:publishing-directory "./artefacts"
:exclude ".*"
:include ("ess-org.org")
:publishing-function org-html-publish-to-html)
("ess-org-pdf"
:with-toc nil
:base-directory "./"
:publishing-directory "./artefacts"
:exclude ".*"
:include ("ess-org.org")
:publishing-function org-latex-publish-to-pdf)
("ess-org-beamer-html"
:with-toc nil
:base-directory "./"
:publishing-directory "./artefacts"
:exclude ".*"
:include ("ess-org-beamer.org")
:publishing-function org-html-publish-to-html)
("ess-org-beamer-pdf"
:with-toc nil
:base-directory "./"
:publishing-directory "./artefacts"
:exclude ".*"
:include ("ess-org-beamer.org")
:publishing-function org-beamer-publish-to-pdf)
("ess-org" :components ("ess-org-html"
"ess-org-pdf"
"ess-org-beamer-html"
"ess-org-beamer-pdf"))))
next prev parent reply other threads:[~2021-04-01 3:48 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-31 9:40 How to expand macro in LaTeX export? How to use different options per export type? Jean Louis
2021-03-31 10:03 ` Eric S Fraga
2021-03-31 10:29 ` Jean Louis
2021-03-31 10:45 ` Eric S Fraga
2021-03-31 11:04 ` Jean Louis
2021-03-31 12:30 ` Eric S Fraga
2021-03-31 11:32 ` Greg Minshall
2021-03-31 20:04 ` Jean Louis
2021-04-01 3:47 ` Greg Minshall [this message]
2021-04-01 4:44 ` Greg Minshall
2021-04-03 21:57 ` Juan Manuel Macías
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=422904.1617248843@apollo2.minshall.org \
--to=minshall@umich.edu \
--cc=bugs@gnu.support \
--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).