Вопрос

In latex we can split a big document(paper.tex) into several tex files(abstract.tex,intro.tex ...) which can be inserted inline using \input{paper.tex}.

Is there a similar facility in org-mode?

Это было полезно?

Решение

Just use the include command i.e.

#+INCLUDE abstract.org
#+INCLUDE intro.org

This will inline abstract.org and intro.org in the current org file. See also the org-mode documentation on include files.

Другие советы

Without test, but I think you can just simply add the latex command \input{paper.tex} in any place of .org file you want. It will render the .tex file to final file.

PS: other option: Include-files which are mentioned in the comment.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top