使用软件包authblk在Orgmode中自定义多个作者从属关系以进行乳胶导出

时间:2016-02-12 22:40:03

标签: emacs latex org-mode hyperref

我在我的Orgmode文档中进行了此设置,并且它不会将作者从属关系导出到latex或pdf。 相反,我得到了一个启发式“即时”代替作者 我在.emacs中添加了Latex到Org -babel-Load语言 允许babel评估Latex代码块必须做些什么? 是否有必须改变的hyperef设置?

#+Title: Multiple Author affiliations in OrgMode Latex export 
#+date: 11 Feb 2016
#+latex_class: article
#+latex_class_options: [a4paper]
#+OPTIONS: toc:nil
#+OPTIONS: author:nil
#+latex_header: \usepackage{float}
#+latex_header: \usepackage{graphicx}
#+latex_header: \usepackage{authblk} 

    #+BEGIN_LATEX
    \author[1]{Author One}
    \author[1]{Author TwoTwo}
    \author[1]{Author TwoTwoo}
    \author[1,2]{Author TwoTwooo}
    \author[1]{Author Three}
    \author[1]{Author TwoTw}
    \author[1]{Author Four}
    \author[1]{Author Fourrr}
    \author[2]{Author Fourrrr}
    \author[2]{Author Twenty}
    \affil[1]{Guided Therapeutics Centre}
    \affil[2]{Division of theatre}
    #+END_LATEX

我得到这个pdf

pdfoutput

1 个答案:

答案 0 :(得分:2)

我今天从org-mode邮件列表中得到了这个答复,该邮件列表中有正确的解决方案 2016年2月18日星期四10:05,Prakash Nayak写道:

  

我在我的Orgmode文档中进行了此设置,并且它不会导出作者   乳胶或pdf的附属机构。

我从未使用过authblk,但我想你会被期待的 在生成的之前定义作者 胶乳。使用乳胶块(顺便说一下,取决于版本 你正在使用的org,这些的语法已经改变了),你将会是 生成LaTeX,它将在之后出现 文档。

我想你想把每个\ author和\ affil行放在 头:

+ latex_header:\ author [1] {作者一个}

+ latex_header:\ affil [1] {Guided Therapeutics Center}

试一试。