如何将文本移回父级下方

spi*_*agl 5 emacs org-mode

* Parent 

Some text under this level

    ** Headline below parent
    ** Another Headline at the same level
    I don't want this text to be a headline but be indented same as the text under the parent level without being a headline. Cannot do this.
    I just cannot re-indent this text just below the parent level here 

* Another top-level headline
Run Code Online (Sandbox Code Playgroud)

在组织模式中是否有任何方法可以将纯文本重新缩进到与父级下但在父级下的几个标题下方的纯文本相同的缩进级别?

我正在尝试做这样的事情:

* A Section   
Introductory text.....   
   ** Subsection 1        
   ** Subsection 2    
Further Reading
Run Code Online (Sandbox Code Playgroud)

现在,“进一步阅读”不是一个标题,我不希望它成为一个标题。然而,我无法“摆脱”第2小节:我在它下面输入的任何内容都是它的一部分。也许我需要以其他方式构建它,例如使用列表而不是标题。

Bri*_*rns 2

目前,在 org 中无法执行此操作 - 没有语法可以结束子标题以使您返回到上一级。但是您可以在同一级别添加一个小节 - 例如在您的示例中,

* A Section
Introductory text.....
  ** Subsection 1
  Subsection 1 text
  ** Subsection 2
  Subsection 2 text
  ** Further Reading
  Some further reading
Run Code Online (Sandbox Code Playgroud)

如果 org 有一些语法(例如 **-),这会结束一个小节,那可能会很好,但我不确定这会涉及到什么变化 - 可能相当广泛。