emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: edgar@openmail.cc
To: Org Mode List <emacs-orgmode@gnu.org>
Subject: Ignore, skip, omit headline when exporting to LaTeX
Date: Thu, 07 Jul 2022 20:00:01 +0000	[thread overview]
Message-ID: <20220707200001.Horde.GlDjC8rChDMguFW-x0ZUKIp@www.vfemail.net> (raw)

Firstly, do tell me if I am breaking the nettiquete.

I found someone asking online how to ignore a headline when exporting  
to LaTeX. This e-mail is to avoid creating an account on that forum  
and to provide a solution.

(require 'ox-extra)

   (defun org-export-ignore-headlines-latex (data backend info)
     "Hack of `org-export-ignore-headlines' for LaTeX: add a  
conditional for the latex backend and replace 'ignore' with 'ignoreltx'"
     (when (org-export-derived-backend-p backend 'latex)
       (org-element-map data 'headline
         (lambda (object)
           (when (member "ignoreltx" (org-element-property :tags object))
             (let ((level-top (org-element-property :level object))
                   level-diff)
               (mapc (lambda (el)
                       ;; recursively promote all nested headlines
                       (org-element-map el 'headline
                         (lambda (el)
                           (when (equal 'headline (org-element-type el))
                             (unless level-diff
                               (setq level-diff (-  
(org-element-property :level el)
                                                   level-top)))
                             (org-element-put-property
                              el
                              :level (- (org-element-property :level el)
                                                                  
level-diff)))))
                       ;; insert back into parse tree
                       (org-element-insert-before el object))
                     (org-element-contents object)))
             (org-element-extract-element object)))
         info nil)
       data))

   (push '(ignore-latex-headlines
           org-export-ignore-headlines-latex
           org-export-filter-parse-tree-functions)
         ox-extras)
   (ox-extras-activate '(latex-header-blocks ignore-headlines  
ignore-latex-headlines))


-------------------------------------------------
This free account was provided by VFEmail.net - report spam to abuse@vfemail.net
 
ONLY AT VFEmail! - Use our Metadata Mitigator to keep your email out of the NSA's hands!
$24.95 ONETIME Lifetime accounts with Privacy Features!  
15GB disk! No bandwidth quotas!
Commercial and Bulk Mail Options!  


             reply	other threads:[~2022-07-07 20:02 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-07 20:00 edgar [this message]
2022-07-08  5:04 ` Ignore, skip, omit headline when exporting to LaTeX Ihor Radchenko
2022-07-08  8:51   ` edgar
2022-07-14 15:29   ` Max Nikulin

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=20220707200001.Horde.GlDjC8rChDMguFW-x0ZUKIp@www.vfemail.net \
    --to=edgar@openmail.cc \
    --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).