From mboxrd@z Thu Jan 1 00:00:00 1970 From: Myles English Subject: Re: Bibtex export Date: Thu, 20 Dec 2012 16:54:43 +0000 Message-ID: <877gocu0j0.fsf@gmail.com> References: , , <87a9t8u75x.fsf@gmail.com>, Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:44495) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TljNz-0006TD-MC for emacs-orgmode@gnu.org; Thu, 20 Dec 2012 11:54:21 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TljNx-0002VT-NK for emacs-orgmode@gnu.org; Thu, 20 Dec 2012 11:54:19 -0500 Received: from mail-we0-f182.google.com ([74.125.82.182]:39433) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TljNx-0002VN-Hy for emacs-orgmode@gnu.org; Thu, 20 Dec 2012 11:54:17 -0500 Received: by mail-we0-f182.google.com with SMTP id u54so1713805wey.13 for ; Thu, 20 Dec 2012 08:54:16 -0800 (PST) In-reply-to: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Mohamed HIBTI Cc: emacs-orgmode@gnu.org Mohamed HIBTI writes: > Thanks Myles, > This is realy what I want. I have just to fix something (may be my > org-version). > The variable org-export-before-processing-hook seems missing. > I have org-version 7.8.10 (with emacs 24.2.1) > Regards, > Mohame Sorry again, I should have said that I am using this with the git version and the new exporter. I don't know if there is anything that will work for you on version 7.8.10. I can recommend the git version though it is quite stable and rarely causes problems, once set up it is very easy to update, see the worg page for details. Myles > 2012/12/20 Myles English > >> >> mohamed writes: >> >> > Myles, >> > Thank you for this answer. >> > I tried it with >> > ------------------------------- >> > (add-to-list 'org-export-preprocess-hook >> > 'my-export-delete-headlines-tagged-noheading) >> > ------------------------------- >> >> Sorry, I should have said: add it to org-export-before-processing-hook, >> so you use it like this: >> >> #+begin_src emacs-lisp >> (defun my-export-delete-headlines-tagged-noheading (backend) >> (dolist (hl (nreverse (org-element-map (org-element-parse-buffer >> 'headline) >> 'headline >> 'identity))) >> (when (member "noheading" (org-element-property :tags hl)) >> (goto-char (org-element-property :begin hl)) >> (delete-region (point) (progn (forward-line) (point)))))) >> >> (add-to-list 'org-export-before-processing-hook >> 'my-export-delete-headlines-tagged-noheading) >> #+end_src >> >> Myles >> >> > >> > >> > But I got some errors when exporting >> > >> > ----------------------------------------------------------------- >> > Exporting to LaTeX... run-hooks: Wrong number of >> > arguments: (lambda (backend) (dolist (hl (nreverse (org-element-map >> > (org-element-parse-buffer (quote headline)) (quote headline) (quote >> identity)))) >> > (when (member "noheading" (org-element-property :tags hl)) (goto-char >> > (org-element-property :begin hl)) (delete-region (point) (progn >> (forward-line) >> > (point)))))), 0 (my-export-delete-headlines-tagged-noheading) >> > ----------------------------------------------------------------- >> > >> > >> > I guess I have to use it in another way. My knowledge of lisp >> programming is >> > very limited. >> > >> > Regards, >> > Mohamed >> >>