Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
645 views
in Technique[技术] by (71.8m points)

r - Equation Numbering in Rmarkdown - For Export to Word

When kniting a Rmarkdown file to MS Word, is there a way to have equations labled with a number that is flushed to the right?

For example:

When typing this in Rmarkdown:

$$a + b = c$$

I need it to end up in Word as:

a + b = c (1)

I saw the code below somewhere else, but it does not seem to work when kniting to Word...

egin{equation} label{eq-abc} a + b = c end{equation}

Thanks!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

@Sholom's comment regarding pandoc-crossref inspired me to have a read, I was not previously aware of it and it is not available as an extension to rmarkdown currently.

It is entirely possible to achieve basic equation numbering with this "filter".

Markdown

---
output:
  word_document:
    pandoc_args: ["-Fpandoc-crossref"]
---


$$a^2 + b^2 = c^2$$ {#eq:eqn1}

$$log xy = log x + log y$$ {#eq:eqn2}

$$frac{df}{dt} = lim_{ho0}frac{f(t+h)-f(t)}{h}$$ {#eq:eqn3}

Output

enter image description here

pandoc-crossref

The binary releases of the code are located here. From a windows machine, I dropped the pandoc-crossref.exe into my Pandoc install folder alongside pandoc.exe and that was sufficient to allow my markdown to render.

N.B. I did this with a standalone install of Pandoc, if you are using the version bundled with RStudio you may need to install differently.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...