emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] Latex export: How to handle multiple authors, emails, institutes


From: Thomas S . Dye
Subject: Re: [O] Latex export: How to handle multiple authors, emails, institutes
Date: Thu, 26 Nov 2015 05:59:20 -1000
User-agent: mu4e 0.9.15-dd71cf8; emacs 24.5.1

Aloha Fatma Başak Aydemir,

Fatma Başak Aydemir <address@hidden> writes:

> Hi all,
>
> I'm trying to write a conference paper which has multiple authors from 
> multiple institues. I tried to insert author infor by adding the 
> following block
>
> #+BEGIN_LaTeX
> \author{First Author\inst{1}, Second Author\inst{1}, Third Author\inst{2}}
> \authorrunning{Author et al.}
> \institute{University of X, Country\\
> \email{\{f.author, address@hidden
> \and
> University of Y, CountryY\\
> address@hidden
> #+END_LATEX
>
> I failed (the title says no institute given, does not show emails) since 
> the latex block is inserted after \maketitle command. How can insert 
> author & institue information in the header?
>
> If related, I'm using Springer LNCS style, org v 20151123.

One way is to define a "my-Springer-LNCS" class and add it to
org-latex-classes.

Here is an example that meets the preamble format required by the
journal PLOS One.  In the PLOS One requirement, author edits to the
preamble are restricted to the space between the ** EDIT HERE **
comments.  So, for this style, you'd just add your LaTeX code between
the ** EDIT HERE ** comments.

    (add-to-list 'org-latex-classes
                 '("plos-devel"
                   "\\documentclass[10pt]{article}
    [NO-DEFAULT-PACKAGES]
    [PACKAGES]
    [EXTRA]
    \\doublespacing
    % Text layout
    \\topmargin 0.0cm
    \\oddsidemargin 0.5cm
    \\evensidemargin 0.5cm
    \\textwidth 16cm 
    \\textheight 21cm
    \\bibliographystyle{plos2009}
    \\makeatletter
    address@hidden
    \\makeatother
    \\pagestyle{myheadings}
    %% ** EDIT HERE **
    \\DeclareCaptionLabelFormat{si}{#1S#2}    
    
    %% ** EDIT HERE **
    %% PLEASE INCLUDE ALL MACROS BELOW
    %% \\newcommand{\\texttwosuperior}{$^{2}$}
    %% \\newcommand{\\textpm}{$\\pm$}
    \\newcommand{\\rc}{$^{14}C$}
    %% END MACROS SECTION"
                     ("\\section{%s}" . "\\section*{%s}")
                     ("\\subsection{%s}" . "\\subsection*{%s}")
                     ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
                     ("\\paragraph{%s}" . "\\paragraph*{%s}")
                     ("\\subparagraph{%s}" . "\\subparagraph*{%s}")))

hth,
Tom

-- 
Thomas S. Dye
http://www.tsdye.com



reply via email to

[Prev in Thread] Current Thread [Next in Thread]