如何在 org-mode 中 latex table 代码中嵌入 org-babel 的结果?

关于 org-mode 我有个需求, 我希望直接在 org-mode 中写 latex 语法, 因为 org-mode table 只能导出为比较简单的 table, 不能导出过于复杂的 table, 但我还是希望能在这样的 table 中嵌入 org-babel 的结果, 怎么办?

目前我的做法很不 elegant, 我直接让 python 输出 latex code, 是的, 我直接把想要的 latex table code 嵌入到 python 字符串中了, 这样如果我想要调整 latex table 长什么样还得调整 python code.

You can store the latex template you are adjusting in Org block and input it via :var.

#+name: template
#+begin_latex
\(y^2 = {value}\)
#+end_latex

#+begin_src python :var template=template :results latex
  return template.format(value="\\alpha")
#+end_src

#+RESULTS:
#+begin_export latex
\(y^2 = \alpha\)
#+end_export