emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: section continuation


From: Ihor Radchenko
Subject: Re: section continuation
Date: Sat, 31 Dec 2022 12:16:39 +0000

Jean Louis <bugs@gnu.support> writes:

>> Could you please elaborate what you mean by "not be counted"?
>
> It is not counted as part of the structure, see PDF below.
>
> https://gnu.support/images/2022/12/2022-12-29/A8D99EA3-9341-4A59-945B-851F68F440E7.pdf

What I see is an equivalent of UNNUMBERED heading property. See
https://orgmode.org/manual/Export-Settings.html

AFAIU, we are talking about much more significant changes to the Org
document schema. It is probably best illustrated using html export.

Consider the following Org example document:

* Heading

Some introductory text

** Sub-heading 1

Cras placerat accumsan nulla.

** Sub-heading 2

Vivamus id enim.

<some kind of markup to signal "Heading" continuation>

Closing text that belongs to "Heading", but not "Sub-heading 2".

---------

HTML:

<div class="outline-1">

<h2><span class="section-number-2">1.</span> Heading</h2>
<p>
Some introductory text
</p>


<div class="outline-3">
<h3><span class="section-number-3">1.1.</span> Sub-heading 1</h3>
<p>
Cras placerat accumsan nulla.
</p>
</div>
<div class="outline-3">
<h3><span class="section-number-3">1.2.</span> Sub-heading 2</h3>
<p>
Vivamus id enim.
</p>
</div>


<p>
Closing text that belongs to "Heading", but not "Sub-heading 2".
</p>
</div>

Note that both introductory text and closing text belong to the same "div".

There is no equivalent in LaTeX/PDF.

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>



reply via email to

[Prev in Thread] Current Thread [Next in Thread]