如何用 Org-mode 格式表达两列由 Pandoc 导出到 Powerpoint

How to express two columns with org-mode format to be exported by Pandoc to Powerpoint

使用 Markdown,我可以使用以下示例格式化幻灯片中的两列:

# Introduction
:::::::::::::: {.columns}
::: {.column width="60%"}
- My notes based on my partial understanding
:::
::: {.column width="40%"}
- Joined late in the project
:::
::::::::::::::

我想知道 org-mode 格式的等价物是什么?

我了解 org-mode 并非设计为 markdown 格式。但我真的很想同时享受 emacs 中 org-mode 的好处和 Pandoc 的 markdown 格式的强大功能。

如果我可以将 emacs 中的 markdown 内容视为 org-mode 文件,它对我来说同样有效。我发现emacs在某种程度上将markdown视为markdown模式下的org-mode内容,但它不会折叠嵌套列表。

您可以将自定义块与块属性结合使用以获得所需的结果。

#+BEGIN_columns

#+ATTR_HTML: :width 60%
#+BEGIN_column
- My notes based on my partial understanding
#+END_column

#+ATTR_HTML: :width 40%
#+BEGIN_column
- Joined late in the project
#+END_column

#+END_columns

Pandoc 目前仅读取 HTML 个属性并将其用于所有格式。