* Re: Continuation of main section text after subsections ?
2011-03-27 16:11 ` Marcel van der Boom
@ 2011-03-27 16:34 ` William Gardella
2011-03-27 16:45 ` Nick Dokos
` (3 subsequent siblings)
4 siblings, 0 replies; 35+ messages in thread
From: William Gardella @ 2011-03-27 16:34 UTC (permalink / raw)
To: Marcel van der Boom; +Cc: emacs-orgmode
Marcel van der Boom <marcel@hsdev.com> writes:
> On zo 27-mrt-2011 16:52
> Cian <cian.oconnor@gmail.com> wrote:
>
>> You can't do that, as it would be akin to trying to have in a book
>>
>> Section 1
>> Stuff
>> Section 1.1.1
>> More stuff
>>
>> Now this goes under Section 1
>>
>> Not really an idiom that makes sense (I find its best to think of
>> org-mode's headings as chapter headers
>
> Agreed, for paper books that would not make much sense (depending on
> how you do it) and that fact kept me from asking the question for a
> while.
> For electronic texts however, especially in the drafting stage where
> (sub-)sections get shuffled around, promoted, demoted, split etc. it
> does make sense, to me at least.
>
> When writing I tend to think about org headings as 'handles' to a
> logical block of information, including its child blocks. Apparently my
> analogy clashes with what org-mode wants. I had my hopes on a
> customization option.
>
> Is there a strong reason this could not work as an option in org-mode?
>
> marcel
Marcel,
I think this is not yet easily possible in org-mode due to the
limitations of org's rather simple concept of markup. Because org tries
to stay out of the way of the user's choice of indentation flow, for
example, whitespace can't be used to indicate that your text has
returned to the top level after entering a subheading. And unlike in,
e.g., HTML or LaTeX, there's no way of "closing" the subheading
environment explicitly.
As Cian suggests, some alternatives you can use are to employ drawers or
environments such as #+BEGIN_NOTE.
I also use Org as a drafting tool, mostly for documents that will end up
as papers or legal documents rendered with LaTeX. There are a few
ambiguities in the markup that are hard to resolve without going the
additional step of exporting to HTML or LaTeX and editing that output.
You've just stumbled into one of them...
--
William Gardella
J.D. Candidate
Class of 2011, University of Pittsburgh School of Law
^ permalink raw reply [flat|nested] 35+ messages in thread
* Re: Re: Continuation of main section text after subsections ?
2011-03-27 16:11 ` Marcel van der Boom
2011-03-27 16:34 ` William Gardella
@ 2011-03-27 16:45 ` Nick Dokos
2011-03-27 17:00 ` Thomas S. Dye
2011-03-27 16:49 ` Filippo A. Salustri
` (2 subsequent siblings)
4 siblings, 1 reply; 35+ messages in thread
From: Nick Dokos @ 2011-03-27 16:45 UTC (permalink / raw)
To: Marcel van der Boom; +Cc: nicholas.dokos, emacs-orgmode
Marcel van der Boom <marcel@hsdev.com> wrote:
> When writing I tend to think about org headings as 'handles' to a
> logical block of information, including its child blocks. Apparently my
> analogy clashes with what org-mode wants. I had my hopes on a
> customization option.
>
> Is there a strong reason this could not work as an option in org-mode?
>
I'm sure that patches would be welcome, but I think you'd find it
difficult to specify, let alone implement. In particular, how do you
tell where the section 1.1.1 stuff ends and the section 1 stuff begins
again? And would the extra stuff be part of section 1 or (sub)section
1.1? Why? And don't forget this is all just text, so any markup has to
be minimal, intuitive and as unobtrusive as possible.
The devil is in the details.
Nick
^ permalink raw reply [flat|nested] 35+ messages in thread
* Re: Re: Continuation of main section text after subsections ?
2011-03-27 16:45 ` Nick Dokos
@ 2011-03-27 17:00 ` Thomas S. Dye
0 siblings, 0 replies; 35+ messages in thread
From: Thomas S. Dye @ 2011-03-27 17:00 UTC (permalink / raw)
To: nicholas.dokos; +Cc: emacs-orgmode
On Mar 27, 2011, at 6:45 AM, Nick Dokos wrote:
> Marcel van der Boom <marcel@hsdev.com> wrote:
>
>> When writing I tend to think about org headings as 'handles' to a
>> logical block of information, including its child blocks.
>> Apparently my
>> analogy clashes with what org-mode wants. I had my hopes on a
>> customization option.
>>
>> Is there a strong reason this could not work as an option in org-
>> mode?
>>
>
> I'm sure that patches would be welcome, but I think you'd find it
> difficult to specify, let alone implement. In particular, how do you
> tell where the section 1.1.1 stuff ends and the section 1 stuff begins
> again? And would the extra stuff be part of section 1 or (sub)section
> 1.1? Why? And don't forget this is all just text, so any markup has to
> be minimal, intuitive and as unobtrusive as possible.
>
> The devil is in the details.
>
> Nick
I don't think the limitation is Org-mode's. Marcel's structure simply
deviates from proper outline structure. His situation is typically
handled in linear text with footnotes, and in non-linear text with
links, both of which Org-mode implements without issue.
Tom
^ permalink raw reply [flat|nested] 35+ messages in thread
* Re: Re: Continuation of main section text after subsections ?
2011-03-27 16:11 ` Marcel van der Boom
2011-03-27 16:34 ` William Gardella
2011-03-27 16:45 ` Nick Dokos
@ 2011-03-27 16:49 ` Filippo A. Salustri
2011-03-27 17:08 ` Nicolas
2011-03-27 17:02 ` William Gardella
2011-03-27 19:48 ` Cian
4 siblings, 1 reply; 35+ messages in thread
From: Filippo A. Salustri @ 2011-03-27 16:49 UTC (permalink / raw)
To: emacs-orgmode
I agree with Marcel on this. If org is supposed to help get /to/ the
final version of a document, then it should support the (possibly
inconsistent) structures that can appear in all the in-between steps
after conceiving of the document and before the final version.
The workaround I use is to use lists instead of headlines. The
problem then becomes the extra work of turning lists into
headines+text later.
Cheers.
Fil
On 27 March 2011 12:11, Marcel van der Boom <marcel@hsdev.com> wrote:
>
> On zo 27-mrt-2011 16:52
> Cian <cian.oconnor@gmail.com> wrote:
>
>> You can't do that, as it would be akin to trying to have in a book
>>
>> Section 1
>> Stuff
>> Section 1.1.1
>> More stuff
>>
>> Now this goes under Section 1
>>
>> Not really an idiom that makes sense (I find its best to think of
>> org-mode's headings as chapter headers
>
> Agreed, for paper books that would not make much sense (depending on
> how you do it) and that fact kept me from asking the question for a
> while.
> For electronic texts however, especially in the drafting stage where
> (sub-)sections get shuffled around, promoted, demoted, split etc. it
> does make sense, to me at least.
>
> When writing I tend to think about org headings as 'handles' to a
> logical block of information, including its child blocks. Apparently my
> analogy clashes with what org-mode wants. I had my hopes on a
> customization option.
>
> Is there a strong reason this could not work as an option in org-mode?
>
> marcel
>
> --
> Marcel van der Boom -- http://hsdev.com/mvdb.vcf
> HS-Development BV -- http://www.hsdev.com
> So! web applications -- http://make-it-so.info
> Cobra build -- http://cobra.mrblog.nl
>
>
--
Filippo A. Salustri, Ph.D., P.Eng.
Mechanical and Industrial Engineering
Ryerson University
350 Victoria St, Toronto, ON
M5B 2K3, Canada
Tel: 416/979-5000 ext 7749
Fax: 416/979-5265
Email: salustri@ryerson.ca
http://deseng.ryerson.ca/~fil/
^ permalink raw reply [flat|nested] 35+ messages in thread
* Re: Continuation of main section text after subsections ?
2011-03-27 16:49 ` Filippo A. Salustri
@ 2011-03-27 17:08 ` Nicolas
2011-03-27 17:10 ` Filippo A. Salustri
0 siblings, 1 reply; 35+ messages in thread
From: Nicolas @ 2011-03-27 17:08 UTC (permalink / raw)
To: Filippo A. Salustri; +Cc: emacs-orgmode
Hello,
"Filippo A. Salustri" <salustri@ryerson.ca> writes:
> The workaround I use is to use lists instead of headlines. The
> problem then becomes the extra work of turning lists into
> headines+text later.
What about using C-c C-* on the list?
Regards,
--
Nicolas
^ permalink raw reply [flat|nested] 35+ messages in thread
* Re: Continuation of main section text after subsections ?
2011-03-27 17:08 ` Nicolas
@ 2011-03-27 17:10 ` Filippo A. Salustri
0 siblings, 0 replies; 35+ messages in thread
From: Filippo A. Salustri @ 2011-03-27 17:10 UTC (permalink / raw)
To: Filippo A. Salustri, emacs-orgmode; +Cc: Nicolas
Yes, of course. But it's still something *I* have to do as a separate
task. This breaks my cognitive workflow; it's a distraction. One of
the reasons I use org is that it's so distraction-free compared to
every other tool I've tried. It seems like distraction-freeness is a
big deal in org, so I would have thought that every bit of distraction
is a distraction too many.
Cheers.
Fil
On 27 March 2011 13:08, Nicolas <n.goaziou@gmail.com> wrote:
> Hello,
>
> "Filippo A. Salustri" <salustri@ryerson.ca> writes:
>
>> The workaround I use is to use lists instead of headlines. The
>> problem then becomes the extra work of turning lists into
>> headines+text later.
>
> What about using C-c C-* on the list?
>
> Regards,
>
> --
> Nicolas
>
--
Filippo A. Salustri, Ph.D., P.Eng.
Mechanical and Industrial Engineering
Ryerson University
350 Victoria St, Toronto, ON
M5B 2K3, Canada
Tel: 416/979-5000 ext 7749
Fax: 416/979-5265
Email: salustri@ryerson.ca
http://deseng.ryerson.ca/~fil/
^ permalink raw reply [flat|nested] 35+ messages in thread
* Re: Continuation of main section text after subsections ?
2011-03-27 16:11 ` Marcel van der Boom
` (2 preceding siblings ...)
2011-03-27 16:49 ` Filippo A. Salustri
@ 2011-03-27 17:02 ` William Gardella
2011-03-27 17:08 ` Filippo A. Salustri
2011-03-27 18:24 ` Aankhen
2011-03-27 19:48 ` Cian
4 siblings, 2 replies; 35+ messages in thread
From: William Gardella @ 2011-03-27 17:02 UTC (permalink / raw)
To: emacs-orgmode
Marcel van der Boom <marcel@hsdev.com> writes:
> On zo 27-mrt-2011 16:52
> Cian <cian.oconnor@gmail.com> wrote:
>
>> You can't do that, as it would be akin to trying to have in a book
>>
>> Section 1
>> Stuff
>> Section 1.1.1
>> More stuff
>>
>> Now this goes under Section 1
>>
>> Not really an idiom that makes sense (I find its best to think of
>> org-mode's headings as chapter headers
>
> Agreed, for paper books that would not make much sense (depending on
> how you do it) and that fact kept me from asking the question for a
> while.
> For electronic texts however, especially in the drafting stage where
> (sub-)sections get shuffled around, promoted, demoted, split etc. it
> does make sense, to me at least.
>
> When writing I tend to think about org headings as 'handles' to a
> logical block of information, including its child blocks. Apparently my
> analogy clashes with what org-mode wants. I had my hopes on a
> customization option.
>
> Is there a strong reason this could not work as an option in org-mode?
>
> marcel
Marcel,
I think this is not yet easily possible in org-mode due to the
limitations of org's rather simple concept of markup. Because org tries
to stay out of the way of the user's choice of indentation flow, for
example, whitespace can't be used to indicate that your text has
returned to the top level after entering a subheading. And unlike in,
e.g., HTML or LaTeX, there's no way of "closing" the subheading
environment explicitly.
As Cian suggests, some alternatives you can use are to employ drawers or
environments such as #+BEGIN_NOTE.
I also use Org as a drafting tool, mostly for documents that will end up
as papers or legal documents rendered with LaTeX. There are a few
ambiguities in the markup that are hard to resolve without going the
additional step of exporting to HTML or LaTeX and editing that output.
You've just stumbled into one of them...
I'd support some kind of fix, but it'd be moderately to very involved
and far beyond my level of comfort with Elisp. I also agree that it'd
be hard to specify.
--
William Gardella
J.D. Candidate
Class of 2011, University of Pittsburgh School of Law
^ permalink raw reply [flat|nested] 35+ messages in thread
* Re: Re: Continuation of main section text after subsections ?
2011-03-27 17:02 ` William Gardella
@ 2011-03-27 17:08 ` Filippo A. Salustri
2011-03-27 17:18 ` William Gardella
2011-03-28 14:54 ` Marcel van der Boom
2011-03-27 18:24 ` Aankhen
1 sibling, 2 replies; 35+ messages in thread
From: Filippo A. Salustri @ 2011-03-27 17:08 UTC (permalink / raw)
To: emacs-orgmode
It seems to me we're getting into some real design territory here, in
that it comes down to a question of a "proper" outline.
I agree that a proper outline is such that Marcel's format is "improper."
I agree that org follows the proper outline, was designed to suit it,
and therefore it isn't surprising that it's not trivially easy to
support Marcel's format too.
I would humbly suggest that the real question is a design / use case
question. Is it reasonable to expect authors to stick to proper
outline format throughout their drafting process? If it is, then org
is fine as is. If it isn't, then there's a problem.
/How/ it's implemented, or worked around, as the case may be, is,
imho, irrelevant in the long term (tho certainly useful in the short).
Cheers.
Fil
On 27 March 2011 13:02, William Gardella <gardellawg@gmail.com> wrote:
> Marcel van der Boom <marcel@hsdev.com> writes:
>
>> On zo 27-mrt-2011 16:52
>> Cian <cian.oconnor@gmail.com> wrote:
>>
>>> You can't do that, as it would be akin to trying to have in a book
>>>
>>> Section 1
>>> Stuff
>>> Section 1.1.1
>>> More stuff
>>>
>>> Now this goes under Section 1
>>>
>>> Not really an idiom that makes sense (I find its best to think of
>>> org-mode's headings as chapter headers
>>
>> Agreed, for paper books that would not make much sense (depending on
>> how you do it) and that fact kept me from asking the question for a
>> while.
>> For electronic texts however, especially in the drafting stage where
>> (sub-)sections get shuffled around, promoted, demoted, split etc. it
>> does make sense, to me at least.
>>
>> When writing I tend to think about org headings as 'handles' to a
>> logical block of information, including its child blocks. Apparently my
>> analogy clashes with what org-mode wants. I had my hopes on a
>> customization option.
>>
>> Is there a strong reason this could not work as an option in org-mode?
>>
>> marcel
>
> Marcel,
>
> I think this is not yet easily possible in org-mode due to the
> limitations of org's rather simple concept of markup. Because org tries
> to stay out of the way of the user's choice of indentation flow, for
> example, whitespace can't be used to indicate that your text has
> returned to the top level after entering a subheading. And unlike in,
> e.g., HTML or LaTeX, there's no way of "closing" the subheading
> environment explicitly.
>
> As Cian suggests, some alternatives you can use are to employ drawers or
> environments such as #+BEGIN_NOTE.
>
> I also use Org as a drafting tool, mostly for documents that will end up
> as papers or legal documents rendered with LaTeX. There are a few
> ambiguities in the markup that are hard to resolve without going the
> additional step of exporting to HTML or LaTeX and editing that output.
> You've just stumbled into one of them...
>
> I'd support some kind of fix, but it'd be moderately to very involved
> and far beyond my level of comfort with Elisp. I also agree that it'd
> be hard to specify.
>
> --
> William Gardella
> J.D. Candidate
> Class of 2011, University of Pittsburgh School of Law
>
>
>
--
Filippo A. Salustri, Ph.D., P.Eng.
Mechanical and Industrial Engineering
Ryerson University
350 Victoria St, Toronto, ON
M5B 2K3, Canada
Tel: 416/979-5000 ext 7749
Fax: 416/979-5265
Email: salustri@ryerson.ca
http://deseng.ryerson.ca/~fil/
^ permalink raw reply [flat|nested] 35+ messages in thread
* Re: Continuation of main section text after subsections ?
2011-03-27 17:08 ` Filippo A. Salustri
@ 2011-03-27 17:18 ` William Gardella
2011-03-27 17:20 ` Filippo A. Salustri
` (2 more replies)
2011-03-28 14:54 ` Marcel van der Boom
1 sibling, 3 replies; 35+ messages in thread
From: William Gardella @ 2011-03-27 17:18 UTC (permalink / raw)
To: emacs-orgmode
"Filippo A. Salustri" <salustri@ryerson.ca> writes:
> It seems to me we're getting into some real design territory here, in
> that it comes down to a question of a "proper" outline.
> I agree that a proper outline is such that Marcel's format is "improper."
> I agree that org follows the proper outline, was designed to suit it,
> and therefore it isn't surprising that it's not trivially easy to
> support Marcel's format too.
>
> I would humbly suggest that the real question is a design / use case
> question. Is it reasonable to expect authors to stick to proper
> outline format throughout their drafting process? If it is, then org
> is fine as is. If it isn't, then there's a problem.
>
> /How/ it's implemented, or worked around, as the case may be, is,
> imho, irrelevant in the long term (tho certainly useful in the short).
>
> Cheers.
> Fil
>
I think org-mode should aim to be flexible enough to accomodate all
writers, writing tasks, and writing styles. Maybe for this particular
issue it would be enough to give org-mode an explicit way to "close" a
heading--an Org-wide equivalent to \end{section} in LaTeX, say. Of
course it would have to be as pithy and unobtrusive as the rest of
org-mode syntax...I'm sure it's possible (because with Elisp practically
everything is possible), but out of my depth. :)
--
William Gardella
J.D. Candidate
Class of 2011, University of Pittsburgh School of Law
^ permalink raw reply [flat|nested] 35+ messages in thread
* Re: Re: Continuation of main section text after subsections ?
2011-03-27 17:18 ` William Gardella
@ 2011-03-27 17:20 ` Filippo A. Salustri
2011-03-27 20:21 ` Achim Gratz
2011-03-29 18:59 ` Matt Lundin
2 siblings, 0 replies; 35+ messages in thread
From: Filippo A. Salustri @ 2011-03-27 17:20 UTC (permalink / raw)
To: William Gardella; +Cc: emacs-orgmode
Out of my depth too. That's why I'd be happy to live with it as is. :)
Cheers.
Fil
On 27 March 2011 13:18, William Gardella <gardellawg@gmail.com> wrote:
> "Filippo A. Salustri" <salustri@ryerson.ca> writes:
>
>> It seems to me we're getting into some real design territory here, in
>> that it comes down to a question of a "proper" outline.
>> I agree that a proper outline is such that Marcel's format is "improper."
>> I agree that org follows the proper outline, was designed to suit it,
>> and therefore it isn't surprising that it's not trivially easy to
>> support Marcel's format too.
>>
>> I would humbly suggest that the real question is a design / use case
>> question. Is it reasonable to expect authors to stick to proper
>> outline format throughout their drafting process? If it is, then org
>> is fine as is. If it isn't, then there's a problem.
>>
>> /How/ it's implemented, or worked around, as the case may be, is,
>> imho, irrelevant in the long term (tho certainly useful in the short).
>>
>> Cheers.
>> Fil
>>
>
> I think org-mode should aim to be flexible enough to accomodate all
> writers, writing tasks, and writing styles. Maybe for this particular
> issue it would be enough to give org-mode an explicit way to "close" a
> heading--an Org-wide equivalent to \end{section} in LaTeX, say. Of
> course it would have to be as pithy and unobtrusive as the rest of
> org-mode syntax...I'm sure it's possible (because with Elisp practically
> everything is possible), but out of my depth. :)
>
> --
> William Gardella
> J.D. Candidate
> Class of 2011, University of Pittsburgh School of Law
>
>
>
--
Filippo A. Salustri, Ph.D., P.Eng.
Mechanical and Industrial Engineering
Ryerson University
350 Victoria St, Toronto, ON
M5B 2K3, Canada
Tel: 416/979-5000 ext 7749
Fax: 416/979-5265
Email: salustri@ryerson.ca
http://deseng.ryerson.ca/~fil/
^ permalink raw reply [flat|nested] 35+ messages in thread
* Re: Continuation of main section text after subsections ?
2011-03-27 17:18 ` William Gardella
2011-03-27 17:20 ` Filippo A. Salustri
@ 2011-03-27 20:21 ` Achim Gratz
2011-03-27 21:26 ` William Gardella
2011-03-29 18:59 ` Matt Lundin
2 siblings, 1 reply; 35+ messages in thread
From: Achim Gratz @ 2011-03-27 20:21 UTC (permalink / raw)
To: emacs-orgmode
William Gardella <gardellawg@gmail.com> writes:
> I think org-mode should aim to be flexible enough to accomodate all
> writers, writing tasks, and writing styles.
With flexibility comes complexity, which runs counter to "org should be
simple".
> Maybe for this particular issue it would be enough to give org-mode
> an explicit way to "close" a heading--an Org-wide equivalent to
> \end{section} in LaTeX, say.
There already is: you simply start a new section for each "thought",
preferrably wih no whitespace after the heading so it becomes a visual
unit that just folds away when outlined. I've been doing that with
Outline Mode and AuCTeX and it is actually much easier to do in orgmode.
Once you get your thoughts into the proper order by sorting the
"headlines", you can then insert, remove, edit, de- and promote the
headings to finalize the document into something more readable. In my
experience, there rarely is a need to change the first level structure.
However, if you are organizing the structure of your document while the
content is still largely absent, then (as has already been suggested) it
is easier in orgmode to do that in a list. List items can be converted
into headings and vice versa quite easily.
Regards,
Achim.
--
+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+
Waldorf MIDI Implementation & additional documentation:
http://Synth.Stromeko.net/Downloads.html#WaldorfDocs
^ permalink raw reply [flat|nested] 35+ messages in thread
* Re: Continuation of main section text after subsections ?
2011-03-27 20:21 ` Achim Gratz
@ 2011-03-27 21:26 ` William Gardella
0 siblings, 0 replies; 35+ messages in thread
From: William Gardella @ 2011-03-27 21:26 UTC (permalink / raw)
To: emacs-orgmode
Achim Gratz <Stromeko@nexgo.de> writes:
> William Gardella <gardellawg@gmail.com> writes:
>> I think org-mode should aim to be flexible enough to accomodate all
>> writers, writing tasks, and writing styles.
>
> With flexibility comes complexity, which runs counter to "org should be
> simple".
>
Agreed, but I'd say org is already one of the most complex projects in
Emacs. Its *apparent* simplicity for new victims--er, users--is a
feature worth keeping, of course. :)
>> Maybe for this particular issue it would be enough to give org-mode
>> an explicit way to "close" a heading--an Org-wide equivalent to
>> \end{section} in LaTeX, say.
>
> There already is: you simply start a new section for each "thought",
> preferrably wih no whitespace after the heading so it becomes a visual
> unit that just folds away when outlined. I've been doing that with
> Outline Mode and AuCTeX and it is actually much easier to do in orgmode.
> Once you get your thoughts into the proper order by sorting the
> "headlines", you can then insert, remove, edit, de- and promote the
> headings to finalize the document into something more readable. In my
> experience, there rarely is a need to change the first level structure.
> However, if you are organizing the structure of your document while the
> content is still largely absent, then (as has already been suggested) it
> is easier in orgmode to do that in a list. List items can be converted
> into headings and vice versa quite easily.
>
>
> Regards,
> Achim.
I use a workflow similar to this, using subheadings to allow for easier
reordering of paragraphs/thoughts. I guess it's good to keep in mind
that using Org as a word processor (rather like using Gnus as a
mailclient) requires some rethinking and reevaluation of how one might
otherwise do things. And maybe a change in approach is a better idea
when a technical fix might make org's markup or parser unnecessarily
complex.
--
William Gardella
J.D. Candidate
Class of 2011, University of Pittsburgh School of Law
^ permalink raw reply [flat|nested] 35+ messages in thread
* Re: Continuation of main section text after subsections ?
2011-03-27 17:18 ` William Gardella
2011-03-27 17:20 ` Filippo A. Salustri
2011-03-27 20:21 ` Achim Gratz
@ 2011-03-29 18:59 ` Matt Lundin
2011-03-30 6:26 ` Aankhen
2 siblings, 1 reply; 35+ messages in thread
From: Matt Lundin @ 2011-03-29 18:59 UTC (permalink / raw)
To: William Gardella; +Cc: emacs-orgmode
William Gardella <gardellawg@gmail.com> writes:
>
> I think org-mode should aim to be flexible enough to accomodate all
> writers, writing tasks, and writing styles. Maybe for this particular
> issue it would be enough to give org-mode an explicit way to "close" a
> heading--an Org-wide equivalent to \end{section} in LaTeX, say.
Is there an \end{section} in LaTeX?
Best,
Matt
^ permalink raw reply [flat|nested] 35+ messages in thread
* Re: Re: Continuation of main section text after subsections ?
2011-03-29 18:59 ` Matt Lundin
@ 2011-03-30 6:26 ` Aankhen
0 siblings, 0 replies; 35+ messages in thread
From: Aankhen @ 2011-03-30 6:26 UTC (permalink / raw)
To: Matt Lundin, William Gardella, Org-mode ml
On Wed, Mar 30, 2011 at 00:29, Matt Lundin <mdl@imapmail.org> wrote:
> William Gardella <gardellawg@gmail.com> writes:
>>
>> I think org-mode should aim to be flexible enough to accomodate all
>> writers, writing tasks, and writing styles. Maybe for this particular
>> issue it would be enough to give org-mode an explicit way to "close" a
>> heading--an Org-wide equivalent to \end{section} in LaTeX, say.
>
> Is there an \end{section} in LaTeX?
No, hence my question earlier in the thread: how would one return to
an enclosing context in LaTeX or DocBook? After all, it wouldn’t make
sense to allow it in org-mode and then have the text end up as part of
the last subsection when exported.
Aankhen
^ permalink raw reply [flat|nested] 35+ messages in thread
* Re: Re: Continuation of main section text after subsections ?
2011-03-27 17:08 ` Filippo A. Salustri
2011-03-27 17:18 ` William Gardella
@ 2011-03-28 14:54 ` Marcel van der Boom
1 sibling, 0 replies; 35+ messages in thread
From: Marcel van der Boom @ 2011-03-28 14:54 UTC (permalink / raw)
To: Filippo A. Salustri; +Cc: emacs-orgmode
On zo 27-mrt-2011 13:08
"Filippo A. Salustri" <salustri@ryerson.ca> wrote:
> I would humbly suggest that the real question is a design / use case
> question. Is it reasonable to expect authors to stick to proper
> outline format throughout their drafting process? If it is, then org
> is fine as is. If it isn't, then there's a problem.
Very much agreed. I think that paragraph is the best summary so
far for the problem, stated in generic terms.
marcel
PS
For what it is worth, I think the 'case of inline tasks' is exactly the
same problem as mine.
--
Marcel van der Boom -- http://hsdev.com/mvdb.vcf
HS-Development BV -- http://www.hsdev.com
So! web applications -- http://make-it-so.info
Cobra build -- http://cobra.mrblog.nl
^ permalink raw reply [flat|nested] 35+ messages in thread
* Re: Re: Continuation of main section text after subsections ?
2011-03-27 17:02 ` William Gardella
2011-03-27 17:08 ` Filippo A. Salustri
@ 2011-03-27 18:24 ` Aankhen
2011-03-27 19:29 ` Samuel Wales
1 sibling, 1 reply; 35+ messages in thread
From: Aankhen @ 2011-03-27 18:24 UTC (permalink / raw)
To: William Gardella, Org-mode ml
Hullo,
On Sun, Mar 27, 2011 at 22:32, William Gardella <gardellawg@gmail.com> wrote:
> Marcel van der Boom <marcel@hsdev.com> writes:
>
>> On zo 27-mrt-2011 16:52
>> Cian <cian.oconnor@gmail.com> wrote:
>>
>>> You can't do that, as it would be akin to trying to have in a book
>>>
>>> Section 1
>>> Stuff
>>> Section 1.1.1
>>> More stuff
>>>
>>> Now this goes under Section 1
>>>
>>> Not really an idiom that makes sense (I find its best to think of
>>> org-mode's headings as chapter headers
>>
>> Agreed, for paper books that would not make much sense (depending on
>> how you do it) and that fact kept me from asking the question for a
>> while.
>> For electronic texts however, especially in the drafting stage where
>> (sub-)sections get shuffled around, promoted, demoted, split etc. it
>> does make sense, to me at least.
>>
>> When writing I tend to think about org headings as 'handles' to a
>> logical block of information, including its child blocks. Apparently my
>> analogy clashes with what org-mode wants. I had my hopes on a
>> customization option.
>>
>> Is there a strong reason this could not work as an option in org-mode?
>>
>> marcel
>
> Marcel,
>
> I think this is not yet easily possible in org-mode due to the
> limitations of org's rather simple concept of markup. Because org tries
> to stay out of the way of the user's choice of indentation flow, for
> example, whitespace can't be used to indicate that your text has
> returned to the top level after entering a subheading. And unlike in,
> e.g., HTML or LaTeX, there's no way of "closing" the subheading
> environment explicitly.
>
> As Cian suggests, some alternatives you can use are to employ drawers or
> environments such as #+BEGIN_NOTE.
>
> I also use Org as a drafting tool, mostly for documents that will end up
> as papers or legal documents rendered with LaTeX. There are a few
> ambiguities in the markup that are hard to resolve without going the
> additional step of exporting to HTML or LaTeX and editing that output.
> You've just stumbled into one of them...
Out of curiosity, how would you return to an enclosing context in
LaTeX or DocBook? In HTML, of course, you can nest ‘div’ elements (or
proper ‘section’ elements in HTML5) and alternate subsections and text
to your heart’s content. As far as I know, there is no equivalent in
the other two formats: you need to use other containers within the
section, such as lists or tables.
Aankhen
^ permalink raw reply [flat|nested] 35+ messages in thread
* Re: Re: Continuation of main section text after subsections ?
2011-03-27 16:11 ` Marcel van der Boom
` (3 preceding siblings ...)
2011-03-27 17:02 ` William Gardella
@ 2011-03-27 19:48 ` Cian
4 siblings, 0 replies; 35+ messages in thread
From: Cian @ 2011-03-27 19:48 UTC (permalink / raw)
To: Marcel van der Boom; +Cc: emacs-orgmode
Wouldn't blocks that allowed org headings offer this. If I understand
this correctly, what you're really looking for is the ability to mark
certain bits of text as one blob, so that you can move them around
easily as you draft a paper, without worrying about pulling other bits
of the paper. So this would work:
* First level
blah blah
** Second level
#+BEGIN_block
some text
* Third level
because all headings within the block are treated as subheadings of
the containing level
** Fourth level
This is some rubbish that I'm not sure about
#+END_BLOCK
This is different rubbish that will stay here if I cut the block above me
Would something along those lines serve?
On Sun, Mar 27, 2011 at 5:11 PM, Marcel van der Boom <marcel@hsdev.com> wrote:
>
> On zo 27-mrt-2011 16:52
> Cian <cian.oconnor@gmail.com> wrote:
>
>> You can't do that, as it would be akin to trying to have in a book
>>
>> Section 1
>> Stuff
>> Section 1.1.1
>> More stuff
>>
>> Now this goes under Section 1
>>
>> Not really an idiom that makes sense (I find its best to think of
>> org-mode's headings as chapter headers
>
> Agreed, for paper books that would not make much sense (depending on
> how you do it) and that fact kept me from asking the question for a
> while.
> For electronic texts however, especially in the drafting stage where
> (sub-)sections get shuffled around, promoted, demoted, split etc. it
> does make sense, to me at least.
>
> When writing I tend to think about org headings as 'handles' to a
> logical block of information, including its child blocks. Apparently my
> analogy clashes with what org-mode wants. I had my hopes on a
> customization option.
>
> Is there a strong reason this could not work as an option in org-mode?
>
> marcel
>
> --
> Marcel van der Boom -- http://hsdev.com/mvdb.vcf
> HS-Development BV -- http://www.hsdev.com
> So! web applications -- http://make-it-so.info
> Cobra build -- http://cobra.mrblog.nl
>
>
^ permalink raw reply [flat|nested] 35+ messages in thread