markdown.sty --- 递归嵌入 latex

markdown.sty --- 递归嵌入 latex

我正在使用 overleaf。它可以轻松方便地包含markdown.sty(需要--shell-escape)。我可以使用 来包含书籍章节\markdownInput{chaptername.md},这样一来,我的不熟悉 latex 的合著者就可以通过 overleaf 与我合作,只需在章节中编写 markdown 即可。

markdown 可以传递明确的 latex 命令。这使得包含诸如 这样的命令变得容易\clearpage。它还间接适用于展览品。我有一个exhibits.tex文件,在其中定义了我的所有展览品:

\providecommand{\figuretwentytwo}{%
    \begin{figure}
       \myspecialcaption[mylabel]{My Figure 22}

       There is all sorts of figure stuff here.

    \end{figure}
 }

然后我为每个图形插入 latex 宏chaptername.md。它能工作,但变得笨重。我们有几十个图形和表格。

有没有办法告诉 markdown.sty 我想要隔离一个chaptername.md纯乳胶区域,永远不会通过 markdown 翻译,而只是作为纯乳胶传回排版?

 chapter.md:

 # Chapter 2

 This is **nice** and simple markdown.  We will do

 1. one
 2. two
 3. and three.

 Let me show you in a figure.

 ```latex passback
     \providecommand[mylabel]{\figuretwentytwo}{%
    \begin{figure}
       \myspecialcaption{My Figure 22}

       There is all sorts of figure stuff here.

    \end{figure}
 }
 ```

 [Figure ](mylabel)  does stuff.

这也许不可行,但可以解决一些棘手的问题。

相关内容