Question

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?

Était-ce utile?

La solution

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.

Autres conseils

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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top