How to use sections in a myst article site? #1237
-
When writing a paper, like the SciPy 2024 proceedings, if you are working with collaborators it is often highly desirable/necessary to split the paper text out into multiple files so that you do not continually encountere merge conflicts when writing asynchronously in a PR-based workflow. In LaTeX you would normally do this by using ...
\abstract{%
\input{src/abstract}
}
%
\maketitle
%
\input{src/introduction.tex}
...
\input{src/conclusions.tex}
... In the Jupyter Book Structure the Table of Contents docs it shows that you can structure a single page article from multiple input files using a format: jb-article
root: index
sections:
- file: path/to/chapter1
- file: path/to/chapter2 and the However, when trying to do this with ...
site:
template: article-theme is it possible to create a multiple input file paper? So something akin to changing \input{src/introduction.tex}
...
\input{src/conclusions.tex} for ...
sections:
- file: introduction.md
...
- file: conclusions.md ? Relevant GitHub Issues and PRs |
Beta Was this translation helpful? Give feedback.
Replies: 0 comments 3 replies
-
I'm AFK from my Linux machine at the moment, but I'm pretty sure that you can use the |
Beta Was this translation helpful? Give feedback.
I'm AFK from my Linux machine at the moment, but I'm pretty sure that you can use the
include
directive for this. We also support\input
in LaTeX if you want to use LaTeX-only!