Questions tagged «beamer»

2
如何在组织模式/ Beamer的代码列表中更改字体大小
我想减少Org-Mode / Beamer演示文稿中包含的代码块所使用的字体大小。我可以使用什么命令,以便仅影响src块的内容? 这是一个最小的工作示例:代码块快结束了: #+TITLE: <<title>> #+AUTHOR: Dave #+EMAIL: #+DATE: <<date>> #+DESCRIPTION: #+KEYWORDS: #+LANGUAGE: en #+OPTIONS: H:3 num:t toc:t \n:nil @:t ::t |:t ^:t -:t f:t *:t <:t #+OPTIONS: TeX:t LaTeX:t skip:nil d:nil todo:t pri:nil tags:not-in-toc toc:nil \n:nil #+INFOJS_OPT: view:nil toc:t ltoc:t mouse:underline buttons:0 path:http://orgmode.org/org-info.js #+EXPORT_SELECT_TAGS: export #+EXPORT_EXCLUDE_TAGS: noexport #+LINK_UP: …
11 org-mode  beamer 

1
通过命令行将组织模式文件导出为PDF?
我要使用什么命令行参数来使Emacs将组织模式文件导出到Beamer PDF?(我想创建一个Makefile在用户运行时生成PDF的文件make。) 我尝试按照以下答案进行操作,但无法正常工作: $ emacs --batch foo.org -f org-beamer-export-to-pdf Symbol's function definition is void: org-beamer-export-to-pdf $ emacs --batch -l ox-beamer foo.org -f org-beamer-export-to-pdf Cannot open load file: ox-beamer 上面的错误来自以下事实:组织模式文件位于自定义位置,并且my ~/.emacs.d/init.el未被加载(--batch意味着-qaka --no-init-file)。 如果我告诉Emacs加载我的初始化文件,它将起作用: $ emacs --batch -l ~/.emacs.d/init.el foo.org -f org-beamer-export-to-pdf 但是,这对于使用~/.emacs或~/.emacs.el代替的其他用户不起作用~/.emacs.d/init.el。我试图告诉Emacs加载,user-init-file但没有成功: $ emacs --batch --eval '(load user-init-file)' foo.org -f org-beamer-export-to-pdf …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.