emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Eric S Fraga <e.fraga@ucl.ac.uk>
To: Rainer M Krug <Rainer@krugs.de>
Cc: emacs-orgmode@gnu.org
Subject: Re: Start Appendix in LaTeX - better way than \appendix?
Date: Wed, 26 Aug 2015 11:23:59 +0100	[thread overview]
Message-ID: <87twrmjqkg.fsf@ucl.ac.uk> (raw)
In-Reply-To: m2oahuqt37.fsf@krugs.de

On Wednesday, 26 Aug 2015 at 11:47, Rainer M Krug wrote:

[...]

> Is there a better / more org way of doing this, or do I have to live
> with this?

I tend to do something like this:

#+begin_src org
  ,* (new page)                               :ignoreheading:
  ,#+latex: \newpage
#+end_src

in conjunction with this export hook:

#+begin_src emacs-lisp
  (defun esf/remove-lines-with-ignore-heading-tag (backend)
    (message "Deleting lines with ignore heading tag")
    (while (search-forward-regexp "^\\*+.*[ \t]+[a-ZA-Z0-9:]*:ignoreheading:[a-ZA-Z0-9:]*$" (point-max) t)
      (cond
       ((eq backend 'latex) (replace-match "#+latex: % \\&" ))
       ((eq backend 'html) (replace-match "#+html: <!-- \\& -->" ))
       (t (replace-match "")))))
  (add-hook 'org-export-before-processing-hook 'esf/remove-lines-with-ignore-heading-tag)
#+end_src

I use the ignoreheading kludge a lot for structuring documents that will be exported.

Obviously change "newpage" for "appendix" in the above example...

-- 
: Eric S Fraga (0xFFFCF67D), Emacs 25.0.50.2, Org release_8.3.1-176-g45abec

  reply	other threads:[~2015-08-26 10:24 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-26  9:47 Start Appendix in LaTeX - better way than \appendix? Rainer M Krug
2015-08-26 10:23 ` Eric S Fraga [this message]
2015-08-26 11:05   ` Rainer M Krug
2015-08-26 11:28 ` Rasmus

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=87twrmjqkg.fsf@ucl.ac.uk \
    --to=e.fraga@ucl.ac.uk \
    --cc=Rainer@krugs.de \
    --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).