emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Rasmus <rasmus@gmx.us>
To: tsd@tsdye.com
Cc: emacs-orgmode@gnu.org
Subject: Re: Help with export filter?
Date: Mon, 21 Jul 2014 12:50:11 +0200	[thread overview]
Message-ID: <8761ir0yvw.fsf@gmx.us> (raw)
In-Reply-To: <m27g39kwob.fsf@tsdye.com> (Thomas S. Dye's message of "Sat, 19 Jul 2014 08:53:08 -1000")

Hi Tom,

tsd@tsdye.com (Thomas S. Dye) writes:

> Aloha all,
>
> Inspired by discussions and code on the mailing list, I managed to
> cobble together the headline filter below.  It "works" in that the
> pdf output from LaTeX export is exactly what I want.  I'm thrilled!
>
> It has one unwanted side effect.  In the tex file, a headline tagged
> with either :newpage: or :clearpage: includes some extra baggage, like
> this:
>
>   \newpage
>   \section*{Introduction\hfill{}\textsc{}}
>   \label{sec-5}
>
> I tried setting the option tags:nil, but then my export tags had no
> effect.  Can someone suggest how I can avoid the \hfill etc.?  Or, am I
> picking nits here?
>
> ***** Filter headline tags
>
> #+name: filter-headline-tags
> #+BEGIN_SRC emacs-lisp :results silent
>
>   (defun tsd-filter-headline-tags (contents backend info)
>     "Ignore headlines with tag `ignoreheading' and/or start LaTeX
>   section with `newpage' or `clearpage' command."
>     (cond ((and (org-export-derived-backend-p backend 'latex)
>                 (string-match "\\`.*newpage.*\n" (downcase contents))
>                 (string-match "\\`.*ignoreheading.*\n" (downcase contents)))
>            (replace-match "\\\\newpage\n" nil nil contents))
>           ((and (org-export-derived-backend-p backend 'latex)
>                 (string-match "\\`.*clearpage.*\n" (downcase contents))
>                 (string-match "\\`.*ignoreheading.*\n" (downcase contents)))
>            (replace-match "\\\\clearpage\n" nil nil contents))
>           ((and (org-export-derived-backend-p backend 'latex 'html 'ascii)
>                 (string-match "\\`.*ignoreheading.*\n" (downcase contents)))
>            (replace-match "" nil nil contents))
>           ((and (org-export-derived-backend-p backend 'latex)
>                 (string-match "\\(\\`.*\\)newpage\\(.*\n\\)" (downcase contents)))
>            (replace-match "\\\\newpage\n\\1\\2"  nil nil contents))
>           ((and (org-export-derived-backend-p backend 'latex)
>                 (string-match "\\(\\`.*\\)clearpage\\(.*\n\\)" (downcase contents)))
>            (replace-match "\\\\clearpage\n\\1\\2"  nil nil contents))))
> #+END_SRC

Here's an edited filter that works with the enclosed test document.
Note that you could split this into different filters, but it may be
non-trivial with this identification-scheme since things would be
moving around.

(defun tsd-filter-headline-tags (contents backend info)
  "Ignore headlines with tag `ignoreheading' and/or start LaTeX
  section with `newpage' or `clearpage' command."
  (cond ((and (org-export-derived-backend-p backend 'latex)
	      (string-match "\\`.*newpage.*\n" (downcase contents))
	      ;; if you want to get rid of labels use the string
	      ;; "\\`.*ignoreheading.*\n.*\n"
	      (string-match "\\`.*ignoreheading.*\n" (downcase contents)))
	 (replace-match "\\\\newpage\n" nil nil contents))
	((and (org-export-derived-backend-p backend 'latex)
	      (string-match "\\`.*clearpage.*\n" (downcase contents))
	      (string-match "\\`.*ignoreheading.*\n" (downcase contents)))
	 (replace-match "\\\\clearpage\n" nil nil contents))
	((and (org-export-derived-backend-p backend 'latex 'html 'ascii)
	      (string-match "\\`.*ignoreheading.*\n" (downcase contents)))
	 (replace-match "" nil nil contents))
	((and (org-export-derived-backend-p backend 'latex)
	      (string-match "\\(\\`.*?\\)\\(?:\\\\hfill{}\\)?\\\\textsc{.*?newpage.*?}\\(.*\n\\)"
			    (downcase contents)))
	 (replace-match "\\\\newpage\n\\1\\2"  nil nil contents))
	((and (org-export-derived-backend-p backend 'latex)
	      (string-match "\\(\\`.*?\\)\\(?:\\\\hfill{}\\)?\\\\textsc{.*?clearpage.*?}\\(.*\n\\)" (downcase contents)))
	 (replace-match "\\\\clearpage\n\\1\\2"  nil nil contents))))

(add-to-list 'org-export-filter-headline-functions 'tsd-filter-headline-tags)

* my first headline
  cont0
* ignored headline					      :ignoreheading:
  cont1 (ignored headline)
* heading with newpage						    :newpage:
  newline before *here*
* heading with clearpage					  :clearpage:
  clearpage before *here*
* ignored heading with newpage				       :newpage:tag2:
  newline before *here*.  =tag2= is lost.
* ignore heading with clearpage			    :ignoreheading:clearpage:
  clearpage before *here*

—Rasmus

-- 
🐉

  reply	other threads:[~2014-07-21 10:50 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-19 18:53 Help with export filter? Thomas S. Dye
2014-07-21 10:50 ` Rasmus [this message]
2014-07-21 15:55   ` Thomas S. Dye
2015-08-12 13:33   ` Samuel Loury
2015-08-12 13:46     ` Nicolas Goaziou
2015-08-12 14:32       ` Samuel Loury
2015-08-12 14:42         ` Nicolas Goaziou
2015-08-12 14:54           ` Samuel Loury
2015-08-12 22:36         ` 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=8761ir0yvw.fsf@gmx.us \
    --to=rasmus@gmx.us \
    --cc=emacs-orgmode@gnu.org \
    --cc=tsd@tsdye.com \
    /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).