将RMarkdown文档编织为Word时,方程式和引用丢失了

时间:2017-08-24 20:45:08

标签: r latex rstudio knitr r-markdown

(我不确定这个问题是否更适合LaTeX论坛。我在这里发布了它,因为我怀疑问题更多的是关于#include <iostream> #include <curl.h> using namespace std; size_t writeCallback(void *contents, size_t size, size_t nmemb, void *userp) { ((string*)userp)->append((char*)contents, size *nmemb); return size *nmemb; } int main(int argc, char** argv) { CURL *curl = curl_easy_init(); string got; curl_easy_setopt(curl, CURLOPT_URL, "http://www.google.fr"); curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, writeCallback); curl_easy_setopt(curl, CURLOPT_WRITEDATA, &got); curl_easy_perform(curl); curl_easy_cleanup(curl); cout << "Source code of https://www.google.fr:" << endl << endl << got << endl; while(1); return 0; } 和RMarkdown而不是LaTeX。)

我在RStudio中有以下RMarkdown文档:

knitr

以PDF格式编织时产生所需的结果:

enter image description here

但是在编织为Word时神秘地丢失了等式和参考:

enter image description here

如何制作看起来像PDF的Word文档?

1 个答案:

答案 0 :(得分:0)

根据rdabbler我使用此代码在Word中完成了方程式:

$$
\begin{array}{c}
5 = 5 
\end{array}
$$

不幸的是,方程式编号已经打败了我,也许你可以忍受这个问题。

由于我更喜欢​​使用pandoc native citation引用,它们甚至使用Word,但样式与上标数字似乎不同。