在org-mode中导出C源代码和结果

时间:2014-02-14 12:03:22

标签: org-mode

我的组织文件中有以下代码块:

#+begin_src C -n :exports both :results output
#include <stdio.h>
int main()
{
printf("This will work!");
return 0;
}
#+end_src

#+RESULTS:

当我编译为PDF时,唯一的结果是"This will work"字符串。它只是我想要的一半。我希望源代码和结果能够在PDF中显示。谁能告诉我哪里出错?

我在Mac OS上使用emacs,组织版本为7.9.3

0 个答案:

没有答案