2

I am translating a quite flat document (only has a title as a level 1 heading). I am using org-mode and I am creating a level 2 heading for each page to easily find the content when I am reviewing the translation which makes the process easier.

I wonder if there is a way to export the full document to PDF/HTML and not include the level 2 headings TITLE but indeed include the full content within the level 2 heading. I need to ingore only level 2 heading titles.

Thanks.

Herewith an example:

* The document title

** DONE Pag 1

bla bla...

** TODO Pag 2

...more bla bla...

Desired output:

* The document title

bla bla...

(new page)

...more bla bla...

1 Answers1

1

Set ignore tag and clearpage property to t.

** Heading              :ignore:           
:PROPERTIES:
:clearpage: t
:END:

This will be exported on new page w/o heading.

The :ignore: tag is enabled with:

(require 'ox-extra)
(ox-extras-activate '(ignore-headlines))

Source: Is it possible to export content of subtrees without their headings?

mankoff
  • 4,108
  • 1
  • 22
  • 39