texlive[45265] Master: beilstein (10sep17)

commits+karl at tug.org commits+karl at tug.org
Sun Sep 10 22:56:37 CEST 2017


Revision: 45265
          http://tug.org/svn/texlive?view=revision&revision=45265
Author:   karl
Date:     2017-09-10 22:56:37 +0200 (Sun, 10 Sep 2017)
Log Message:
-----------
beilstein (10sep17)

Modified Paths:
--------------
    trunk/Master/tlpkg/bin/tlpkg-ctan-check
    trunk/Master/tlpkg/tlpsrc/collection-publishers.tlpsrc

Added Paths:
-----------
    trunk/Master/texmf-dist/bibtex/bst/beilstein/
    trunk/Master/texmf-dist/bibtex/bst/beilstein/bjnano.bst
    trunk/Master/texmf-dist/doc/latex/beilstein/
    trunk/Master/texmf-dist/doc/latex/beilstein/BJNANO_Technical_Handbook.pdf
    trunk/Master/texmf-dist/doc/latex/beilstein/CHANGELOG.md
    trunk/Master/texmf-dist/doc/latex/beilstein/README.md
    trunk/Master/texmf-dist/doc/latex/beilstein/beilstein-template.bib
    trunk/Master/texmf-dist/doc/latex/beilstein/beilstein-template.tex
    trunk/Master/texmf-dist/doc/latex/beilstein/figure1.pdf
    trunk/Master/texmf-dist/doc/latex/beilstein/scheme1.pdf
    trunk/Master/texmf-dist/doc/latex/beilstein/scheme2.pdf
    trunk/Master/texmf-dist/source/latex/beilstein/
    trunk/Master/texmf-dist/source/latex/beilstein/beilstein.dtx
    trunk/Master/texmf-dist/source/latex/beilstein/beilstein.ins
    trunk/Master/texmf-dist/source/latex/beilstein/bjnano_logo.pdf
    trunk/Master/texmf-dist/tex/latex/beilstein/
    trunk/Master/texmf-dist/tex/latex/beilstein/beilstein.cls
    trunk/Master/tlpkg/tlpsrc/beilstein.tlpsrc

Added: trunk/Master/texmf-dist/bibtex/bst/beilstein/bjnano.bst
===================================================================
--- trunk/Master/texmf-dist/bibtex/bst/beilstein/bjnano.bst	                        (rev 0)
+++ trunk/Master/texmf-dist/bibtex/bst/beilstein/bjnano.bst	2017-09-10 20:56:37 UTC (rev 45265)
@@ -0,0 +1,1569 @@
+%%
+%% This is file `bjnano.bst',
+%% generated with the docstrip utility.
+%%
+%% The original source files were:
+%%
+%% beilstein.dtx  (with options: `bst')
+%% ----------------------------------------------------------------
+%% beilstein -- Support for submissions to the ``Beilstein Journal
+%% of Nanotechnology'' published by the Beilstein-Institut
+%% for the Advancement of Chemical Sciences
+%% Version:     1.2
+%% E-mail:      journals-support at beilstein-institut.de
+%% License:     Released under the LaTeX Project Public License v1.3c or later
+%% See          http://www.latex-project.org/lppl.txt
+%% ----------------------------------------------------------------
+%% 
+%% bjnano.bst is based on achemso.bst which is part of the achemso
+%% bundle. Some code cleaning and modifications were done and new
+%% entry types and fields introduced.
+ENTRY
+  { address
+    author
+    booktitle
+    chapter
+    ctrl-use-title
+    ctrl-etal-number
+    doi
+    edition
+    editor
+    howpublished
+    institution
+    journal
+    key
+    note
+    number
+    organization
+    pages
+    publisher
+    school
+    series
+    title
+    type
+    url
+    urldate
+    venue
+    version
+    volume
+    year
+  }
+  {}
+  { label
+    extra.label
+    short.list
+  }
+
+INTEGERS { output.state before.all mid.sentence after.sentence }
+INTEGERS { after.block after.item author.or.editor }
+INTEGERS { separate.by.semicolon }
+INTEGERS { is.use.title etal.number }
+
+FUNCTION {init.state.consts}
+{ #0 'before.all :=
+  #1 'mid.sentence :=
+  #2 'after.sentence :=
+  #3 'after.block :=
+  #4 'after.item :=
+}
+
+%% #0 turns off the display of the title for articles
+%% #1 enables
+FUNCTION {default.is.use.title} { #0 }
+
+%% The number of names that force "et al." to be used
+FUNCTION {default.etal.number} { #100 }
+
+FUNCTION {add.comma}
+{ ", " * }
+
+FUNCTION {add.semicolon}
+{ "; " * }
+
+FUNCTION {add.comma.or.semicolon}
+{ #1 separate.by.semicolon =
+    'add.semicolon
+    'add.comma
+  if$
+}
+
+FUNCTION {add.colon}
+{ ": " * }
+
+STRINGS { s t }
+
+FUNCTION {output.nonnull}
+{ 's :=
+  output.state mid.sentence =
+    { add.comma write$ }
+    { output.state after.block =
+      { add.semicolon write$
+        newline$
+        "\newblock " write$
+      }
+      { output.state before.all =
+          'write$
+          { output.state after.item =
+            { " " * write$ }
+            { add.period$ " " * write$ }
+          if$
+          }
+        if$
+        }
+      if$
+      mid.sentence 'output.state :=
+    }
+  if$
+  s
+}
+
+FUNCTION {output}
+{ duplicate$ empty$
+    'pop$
+    'output.nonnull
+  if$
+}
+
+FUNCTION {output.check}
+{ 't :=
+  duplicate$ empty$
+    { pop$ "Empty " t * " in " * cite$ * warning$ }
+    'output.nonnull
+  if$
+}
+
+FUNCTION {new.block}
+{ output.state before.all =
+    'skip$
+    { after.block 'output.state := }
+  if$
+}
+
+FUNCTION {new.sentence}
+{ output.state after.block =
+    'skip$
+    { output.state before.all =
+        'skip$
+        { after.sentence 'output.state := }
+      if$
+    }
+  if$
+}
+
+FUNCTION {fin.entry}
+{ add.period$
+  write$
+""
+  newline$
+  note missing$
+  'skip$
+  {" " write$ note write$ }
+  if$
+  write$ newline$
+}
+
+FUNCTION {not}
+{   { #0 }
+    { #1 }
+  if$
+}
+
+FUNCTION {and}
+{   'skip$
+    { pop$ #0 }
+  if$
+}
+
+FUNCTION {or}
+{   { pop$ #1 }
+    'skip$
+  if$
+}
+
+FUNCTION {field.or.null}
+{ duplicate$ empty$
+    { pop$ "" }
+    'skip$
+  if$
+}
+
+FUNCTION {emphasize}
+{ duplicate$ empty$
+    { pop$ "" }
+    { "\emph{" swap$ * "}" * }
+  if$
+}
+
+FUNCTION {boldface}
+{ duplicate$ empty$
+    { pop$ "" }
+    { "\textbf{" swap$ * "}" * }
+  if$
+}
+
+FUNCTION {paren}
+{ duplicate$ empty$
+    { pop$ "" }
+    { "(" swap$ * ")" * }
+  if$
+}
+
+FUNCTION {bbl.and}
+{ "and" }
+
+FUNCTION {bbl.chapter}
+{ "Chapter" }
+
+FUNCTION {bbl.editor}
+{ "Ed." }
+
+FUNCTION {bbl.editors}
+{ "Eds." }
+
+FUNCTION {bbl.edition}
+{ "ed." }
+
+FUNCTION {bbl.etal}
+{ "et~al." }
+
+FUNCTION {bbl.in}
+{ "In" }
+
+FUNCTION {bbl.inpress}
+{ "in press" }
+
+FUNCTION {bbl.page}
+{ "p" }
+
+FUNCTION {bbl.pages}
+{ "pp" }
+
+FUNCTION {bbl.phd}
+{ "Ph.\,D.\ Thesis" }
+
+FUNCTION {bbl.submitted}
+{ "submitted for publication" }
+
+FUNCTION {bbl.volume}
+{ "Vol." }
+
+FUNCTION {bbl.first}
+{ "1st" }
+
+FUNCTION {bbl.second}
+{ "2nd" }
+
+FUNCTION {bbl.third}
+{ "3rd" }
+
+FUNCTION {bbl.fourth}
+{ "4th" }
+
+FUNCTION {bbl.fifth}
+{ "5th" }
+
+FUNCTION {bbl.st}
+{ "st" }
+
+FUNCTION {bbl.nd}
+{ "nd" }
+
+FUNCTION {bbl.rd}
+{ "rd" }
+
+FUNCTION {bbl.th}
+{ "th" }
+
+FUNCTION {eng.ord}
+{ duplicate$ "1" swap$ *
+  #-2 #1 substring$ "1" =
+     { bbl.th * }
+     { duplicate$ #-1 #1 substring$
+       duplicate$ "1" =
+         { pop$ bbl.st * }
+         { duplicate$ "2" =
+             { pop$ bbl.nd * }
+             { "3" =
+                 { bbl.rd * }
+                 { bbl.th * }
+               if$
+             }
+           if$
+          }
+       if$
+     }
+   if$
+}
+
+FUNCTION {is.a.digit}
+{ duplicate$ "" =
+    {pop$ #0}
+    {chr.to.int$ #48 - duplicate$
+     #0 < swap$ #9 > or not}
+  if$
+}
+
+FUNCTION {is.a.number}
+{
+  { duplicate$ #1 #1 substring$ is.a.digit }
+    {#2 global.max$ substring$}
+  while$
+  "" =
+}
+
+FUNCTION {extract.num}
+{ duplicate$ 't :=
+  "" 's :=
+  { t empty$ not }
+  { t #1 #1 substring$
+    t #2 global.max$ substring$ 't :=
+    duplicate$ is.a.number
+      { s swap$ * 's := }
+      { pop$ "" 't := }
+    if$
+  }
+  while$
+  s empty$
+    'skip$
+    { pop$ s }
+  if$
+}
+
+FUNCTION {chr.to.value}
+{ chr.to.int$ #48 -
+  duplicate$ duplicate$
+  #0 < swap$ #9 > or
+    { #48 + int.to.chr$
+      " is not a number..." *
+      warning$
+     pop$ #0
+    }
+    {}
+  if$
+}
+
+%% Some tricks from "Tame the BeaST" to convert a string
+%% to a number
+INTEGERS { a b }
+
+FUNCTION {mult}
+{ 'a :=
+  'b :=
+  b #0 <
+    {#-1 #0 b - 'b :=}
+    {#1}
+  if$
+  #0
+  {b #0 >}
+    { a +
+      b #1 - 'b :=
+    }
+  while$
+  swap$
+    'skip$
+    {#0 swap$ -}
+    if$
+}
+
+FUNCTION {str.to.int.aux}
+{ {duplicate$ empty$ not}
+    { swap$ #10 mult 'a :=
+      duplicate$ #1 #1 substring$
+      chr.to.value a +
+      swap$
+     #2 global.max$ substring$
+    }
+  while$
+  pop$
+}
+
+FUNCTION {str.to.int}
+{ duplicate$ #1 #1 substring$ "-" =
+    {#1 swap$ #2 global.max$ substring$}
+    {#0 swap$}
+  if$
+  #0 swap$ str.to.int.aux
+  swap$
+    {#0 swap$ -}
+    {}
+  if$
+}
+
+FUNCTION {bibinfo.check}
+{ swap$
+  duplicate$ missing$
+    { pop$ pop$
+      ""
+    }
+    { duplicate$ empty$
+        {
+          swap$ pop$
+        }
+        { swap$
+          pop$
+        }
+      if$
+    }
+  if$
+}
+
+FUNCTION {convert.edition}
+{ extract.num "l" change.case$ 's :=
+  s "first" = s "1" = or
+    { bbl.first 't := }
+    { s "second" = s "2" = or
+        { bbl.second 't := }
+        { s "third" = s "3" = or
+            { bbl.third 't := }
+            { s "fourth" = s "4" = or
+                { bbl.fourth 't := }
+                { s "fifth" = s "5" = or
+                    { bbl.fifth 't := }
+                    { s #1 #1 substring$ is.a.number
+                        { s eng.ord 't := }
+                        { edition 't := }
+                      if$
+                    }
+                  if$
+                }
+              if$
+            }
+          if$
+        }
+      if$
+    }
+  if$
+  t
+}
+
+FUNCTION {tie.or.space.connect}
+{ duplicate$ text.length$ #3 <
+    { "~" }
+    { " " }
+  if$
+  swap$ * *
+}
+
+FUNCTION {space.connect}
+{ " " swap$ * * }
+
+INTEGERS { nameptr namesleft numnames }
+
+FUNCTION {format.names}
+{ 's :=
+  #1 'nameptr :=
+  s num.names$ 'numnames :=
+  numnames 'namesleft :=
+  numnames etal.number > etal.number #0 > and
+    { s #1 "{vv~}{ll,}{~f.}{,~jj}" format.name$ 't :=
+      t bbl.etal space.connect
+    }
+    {
+       { namesleft #0 > }
+       { s nameptr "{vv~}{ll,}{~f.}{,~jj}" format.name$ 't :=
+           nameptr #1 >
+             { namesleft #1 >
+               { add.comma.or.semicolon t * }
+               { numnames #2 >
+                 { "" * }
+                 'skip$
+               if$
+               t "others," =
+                 { bbl.etal space.connect }
+                 { add.comma.or.semicolon t * }
+               if$
+               }
+             if$
+             }
+           't
+         if$
+         nameptr #1 + 'nameptr :=
+         namesleft #1 - 'namesleft :=
+         }
+     while$
+  }
+  if$
+}
+
+FUNCTION {format.authors}
+{ author empty$
+    { "" }
+    { #1 'author.or.editor :=
+        #1 'separate.by.semicolon :=
+      author format.names
+    }
+  if$
+}
+
+FUNCTION {format.editors}
+{ editor empty$
+    { "" }
+    { #2 'author.or.editor :=
+        #0 'separate.by.semicolon :=
+      editor format.names
+      add.comma
+      editor num.names$ #1 >
+        { bbl.editors }
+        { bbl.editor }
+      if$
+      *
+    }
+  if$
+}
+
+FUNCTION {n.separate.multi}
+{ 't :=
+  ""
+  #0 'numnames :=
+  t text.length$ #4 > t is.a.number and
+    {
+      { t empty$ not }
+      { t #-1 #1 substring$ is.a.number
+          { numnames #1 + 'numnames := }
+          { #0 'numnames := }
+        if$
+        t #-1 #1 substring$ swap$ *
+        t #-2 global.max$ substring$ 't :=
+        numnames #4 =
+          { duplicate$ #1 #1 substring$ swap$
+            #2 global.max$ substring$
+            "," swap$ * *
+            #1 'numnames :=
+          }
+          'skip$
+        if$
+      }
+      while$
+    }
+    { t swap$ * }
+  if$
+}
+
+FUNCTION {format.bvolume}
+{ volume empty$
+    { "" }
+    { bbl.volume volume tie.or.space.connect }
+  if$
+}
+
+FUNCTION {format.title.noemph}
+{ 't :=
+  t empty$
+    { "" }
+    { t }
+  if$
+}
+
+FUNCTION {format.title}
+{ 't :=
+  t empty$
+    { "" }
+    { t emphasize }
+  if$
+}
+
+%% The add.title function only does anything if the appropriate
+%% flag is set.
+FUNCTION {add.title}
+{ is.use.title
+    { title format.title.noemph "title" output.check
+      new.sentence }
+    'skip$
+  if$
+}
+
+FUNCTION {format.number.series}
+{ volume empty$
+    { number empty$
+       { series field.or.null }
+       { series empty$
+         { "There is a number but no series in " cite$ * warning$ }
+         { series number space.connect }
+       if$
+       }
+      if$
+    }
+    { "" }
+  if$
+}
+
+FUNCTION {format.url}
+{ url empty$
+    { "There is no url in " cite$ * warning$ }
+    { new.sentence "\url{" url * "}" * }
+  if$
+}
+
+FUNCTION {format.urldate}
+{ urldate empty$
+    { "There is no urldate in " cite$ * warning$ }
+    { "accessed " urldate * paren space.connect }
+  if$
+}
+
+FUNCTION {format.full.names}
+{'s :=
+  #1 'nameptr :=
+  s num.names$ 'numnames :=
+  numnames 'namesleft :=
+    { namesleft #0 > }
+    { s nameptr
+      "{vv~}{ll}" format.name$ 't :=
+      nameptr #1 >
+        {
+          namesleft #1 >
+            { ", " * t * }
+            {
+              numnames #2 >
+                { "," * }
+                'skip$
+              if$
+              t "others" =
+                { bbl.etal * }
+                { bbl.and space.connect t space.connect }
+              if$
+            }
+          if$
+        }
+        't
+      if$
+      nameptr #1 + 'nameptr :=
+      namesleft #1 - 'namesleft :=
+    }
+  while$
+}
+
+FUNCTION {author.editor.full}
+{ author empty$
+    { editor empty$
+        { "" }
+        { editor format.full.names }
+      if$
+    }
+    { author format.full.names }
+  if$
+}
+
+FUNCTION {author.full}
+{ author empty$
+    { "" }
+    { author format.full.names }
+  if$
+}
+
+FUNCTION {editor.full}
+{ editor empty$
+    { "" }
+    { editor format.full.names }
+  if$
+}
+
+FUNCTION {make.full.names}
+{ type$ "book" =
+  type$ "inbook" =
+  or
+    'author.editor.full
+    { type$ "proceedings" =
+        'editor.full
+        'author.full
+      if$
+    }
+  if$
+}
+
+FUNCTION {output.bibitem}
+{ newline$
+  "\setboolean{nobreakdashused}{false}" write$
+  "\bibitem[" write$
+  label write$
+  ")" make.full.names duplicate$ short.list =
+     { pop$ }
+     { * }
+   if$
+  "]{" * write$
+  cite$ write$
+  "}" write$
+  newline$
+  ""
+  before.all 'output.state :=
+}
+
+FUNCTION {n.dashify}
+{ 't :=
+  ""
+    { t empty$ not }
+    { t #1 #1 substring$ "-" =
+    { t #1 #2 substring$ "--" = not
+        { "\mynobreakdash " *
+          t #2 global.max$ substring$ 't :=
+        }
+        {   { t #1 #1 substring$ "-" = }
+        { "\mynobreakdash " *
+          t #2 global.max$ substring$ 't :=
+        }
+          while$
+        }
+      if$
+    }
+    { t #1 #1 substring$ *
+      t #2 global.max$ substring$ 't :=
+    }
+      if$
+    }
+  while$
+}
+
+FUNCTION {format.date}
+{ year empty$
+    { "" }
+    { year boldface }
+  if$
+}
+
+FUNCTION {format.bdate}
+{ year empty$
+    { "There's no year in " cite$ * warning$ }
+    'year
+  if$
+}
+
+FUNCTION {either.or.check}
+{ empty$
+    'pop$
+    { "Can't use both " swap$ * " fields in " * cite$ * warning$ }
+  if$
+}
+
+FUNCTION {format.edition}
+{ edition duplicate$ empty$
+    'skip$
+    { convert.edition
+      bbl.edition bibinfo.check
+      " " * bbl.edition *
+    }
+  if$
+}
+
+INTEGERS { multiresult }
+
+FUNCTION {multi.page.check}
+{ 't :=
+  #0 'multiresult :=
+    { multiresult not
+      t empty$ not
+      and
+    }
+    { t #1 #1 substring$
+      duplicate$ "-" =
+      swap$ duplicate$ "," =
+      swap$ "+" =
+      or or
+        { #1 'multiresult := }
+        { t #2 global.max$ substring$ 't := }
+      if$
+    }
+  while$
+  multiresult
+}
+
+FUNCTION {format.pages}
+{ pages empty$
+    { "" }
+    { pages multi.page.check
+      { bbl.pages pages n.dashify tie.or.space.connect }
+      { bbl.page pages tie.or.space.connect }
+    if$
+    }
+  if$
+}
+
+FUNCTION {format.pages.required}
+{ pages empty$
+    { ""
+      "There are no page numbers for " cite$ * warning$
+      output
+    }
+    { pages multi.page.check
+      { bbl.pages pages n.dashify tie.or.space.connect }
+      { bbl.page pages tie.or.space.connect }
+    if$
+    }
+  if$
+}
+
+FUNCTION {format.pages.nopp}
+{ pages empty$
+    { ""
+      "There are no page numbers for " cite$ * warning$
+      output
+    }
+    { pages multi.page.check
+      { pages n.dashify space.connect }
+      { pages space.connect }
+    if$
+    }
+  if$
+}
+
+FUNCTION {format.pages.patent}
+{ pages empty$
+    { "There is no patent number for " cite$ * warning$ }
+    { pages multi.page.check
+      { pages n.dashify }
+      { pages n.separate.multi }
+      if$
+    }
+  if$
+}
+
+FUNCTION {format.vol.pages}
+{ volume emphasize field.or.null
+number empty$
+   'skip$
+   { number paren tie.or.space.connect }
+if$
+duplicate$ empty$
+    { pop$ format.pages.required }
+    { add.comma pages n.dashify * }
+  if$
+}
+
+FUNCTION {format.chapter.pages}
+{ chapter empty$
+    'format.pages
+    { type empty$
+    { bbl.chapter }
+    { type "l" change.case$ }
+      if$
+      chapter tie.or.space.connect
+      pages empty$
+    'skip$
+    { add.comma format.pages * }
+      if$
+    }
+  if$
+}
+
+FUNCTION {format.title.in}
+{ 's :=
+  s empty$
+    { "" }
+    { editor empty$
+      { bbl.in s format.title space.connect }
+      { bbl.in s format.title space.connect
+        add.semicolon format.editors *
+      }
+    if$
+    }
+  if$
+}
+
+FUNCTION {format.proc.title.in}
+{ 's :=
+  s empty$
+    { "" }
+    { editor empty$
+      { bbl.in s format.title space.connect }
+      { venue empty$
+        { bbl.in s format.title space.connect
+          add.semicolon format.editors * }
+        { bbl.in s format.title space.connect
+          add.comma venue *
+          add.semicolon format.editors * }
+      if$
+      }
+    if$
+    }
+  if$
+}
+
+FUNCTION {format.pub.address}
+{ publisher empty$
+    { "" }
+    { address empty$
+        { publisher }
+        { publisher add.colon address *}
+      if$
+    }
+  if$
+}
+
+FUNCTION {format.school.address}
+{ school empty$
+    { "" }
+    { address empty$
+        { school }
+        { school add.colon address *}
+      if$
+    }
+  if$
+}
+
+FUNCTION {format.organization.address}
+{ organization empty$
+    { "" }
+    { address empty$
+        { organization }
+        { organization add.colon address *}
+      if$
+    }
+  if$
+}
+
+FUNCTION {format.venue}
+{ venue empty$
+    { "" }
+    { venue add.semicolon}
+  if$
+}
+
+FUNCTION {empty.misc.check}
+{ note empty$
+    { "note field is empty in " cite$ * warning$ }
+    'skip$
+  if$
+}
+
+FUNCTION {empty.doi.note}
+{ doi empty$ note empty$ and
+    { "Need either a note or DOI for " cite$ * warning$ }
+    'skip$
+  if$
+}
+
+FUNCTION {format.thesis.type}
+{ type empty$
+    'skip$
+    { pop$
+      type
+    }
+  if$
+}
+
+FUNCTION {format.doi}
+{ doi empty$
+{ "  "} % 'skip$
+    { new.sentence "\url{doi:" doi tie.or.space.connect "}" * }
+  if$
+}
+
+FUNCTION {article}
+{ output.bibitem
+  author empty$
+  { format.editors "editor" output.check
+   after.item 'output.state :=
+   title empty$
+    'skip$
+    { title format.title.noemph output
+      after.sentence 'output.state :=
+    }
+   if$
+   journal emphasize "journal" output.check
+  }
+  { format.authors "author" output.check
+  after.item 'output.state :=
+  add.title
+  journal emphasize "journal" output.check
+  }
+  if$
+  after.item 'output.state :=
+  format.date "year" output.check
+  volume empty$
+    { number empty$
+   { "There is neither volume nor number given for " cite$ * warning$ }
+     { "No. " number * output}
+   if$
+     ""
+      format.pages.nopp output
+    }
+    { format.vol.pages output }
+  if$
+  format.doi output
+  fin.entry
+  }
+
+FUNCTION {book}
+{ output.bibitem
+  author empty$
+    { booktitle empty$
+        { title format.title "title" output.check }
+        { booktitle format.title "booktitle" output.check }
+      if$
+      format.edition output
+      new.block
+      editor empty$
+        { "Need either an author or editor for " cite$ * warning$ }
+        { "" format.editors * "editor" output.check }
+      if$
+    }
+    { format.authors output
+      after.item 'output.state :=
+      "author and editor" editor either.or.check
+      booktitle empty$
+        { title format.title "title" output.check }
+        { booktitle format.title "booktitle" output.check }
+      if$
+      format.edition output
+    }
+  if$
+  new.block
+  format.number.series output
+  new.block
+  format.pub.address "publisher" output.check
+  format.bdate "year" output.check
+  new.block
+  format.bvolume output
+  pages empty$
+    'skip$
+    { format.pages output }
+  if$
+  format.doi output
+  fin.entry
+}
+
+FUNCTION {booklet}
+{ "Entrytype booklet of " cite$ " is not supported." * * warning$ }
+
+FUNCTION {inbook}
+{ output.bibitem
+  author empty$
+    { booktitle format.title "booktitle" output.check
+      format.edition output
+      new.block
+      editor empty$
+        { "Need at least an author or an editor for " cite$ * warning$ }
+        { "" format.editors * "editor" output.check }
+      if$
+    }
+    { format.authors output
+      after.item 'output.state :=
+      title empty$
+        'skip$
+        { title format.title.noemph output }
+      if$
+      after.sentence 'output.state :=
+      booktitle format.title.in "booktitle" output.check
+      format.edition output
+    }
+  if$
+  new.block
+  format.number.series output
+  new.block
+  format.pub.address "publisher" output.check
+  format.bdate "year" output.check
+  new.block
+  format.bvolume output
+  format.chapter.pages "chapter and pages" output.check
+  fin.entry
+}
+
+FUNCTION {incollection}
+{ output.bibitem
+  author empty$
+    { booktitle format.title "booktitle" output.check
+      format.edition output
+      new.block
+      editor empty$
+        { "Need at least an author or an editor for " cite$ * warning$ }
+        { "" format.editors * "editor" output.check }
+      if$
+    }
+    { format.authors output
+      after.item 'output.state :=
+      title empty$
+        'skip$
+        { title format.title.noemph output }
+      if$
+      after.sentence 'output.state :=
+      booktitle format.title.in "booktitle" output.check
+      format.edition output
+    }
+  if$
+  new.block
+  format.number.series output
+  new.block
+  format.pub.address "publisher" output.check
+  format.bdate "year" output.check
+  new.block
+  format.bvolume output
+  format.chapter.pages "chapter and pages" output.check
+  format.doi output
+  fin.entry
+}
+
+FUNCTION {inpress}
+{ output.bibitem
+  format.authors "author" output.check
+  after.item 'output.state :=
+  journal emphasize "journal" output.check
+  doi empty$
+    {  bbl.inpress output }
+    {  after.item 'output.state :=
+       format.date output
+       "doi:" doi tie.or.space.connect output
+    }
+  if$
+  format.doi output
+  fin.entry
+}
+
+FUNCTION {inproceedings}
+{ output.bibitem
+  format.authors "author" output.check
+  after.item 'output.state :=
+  title empty$
+    'skip$
+    { title format.title.noemph output
+      after.sentence 'output.state :=
+    }
+  if$
+  booktitle format.proc.title.in "booktitle" output.check
+  add.semicolon write$
+  format.pub.address "publisher" output.check
+  format.bdate "year" output.check
+  pages empty$
+    'skip$
+    { new.block
+      format.pages output }
+  if$
+  format.doi output
+  fin.entry
+}
+
+FUNCTION {manual}
+{ "Entrytype manual of " cite$ " is not supported." * * warning$ }
+
+FUNCTION {mastersthesis}
+{ "Entrytype masterthesis of " cite$ " is not supported." * * warning$ }
+
+FUNCTION {misc}
+{ output.bibitem
+  fin.entry
+}
+
+FUNCTION {online}
+{ output.bibitem
+  format.authors output
+  after.item 'output.state :=
+  title empty$
+    'skip$
+    { title output }
+  if$
+  format.url output
+  after.item 'output.state :=
+  format.urldate output
+  format.doi output
+  fin.entry
+}
+
+FUNCTION {patent}
+{ output.bibitem
+  format.authors "author" output.check
+  after.item 'output.state :=
+  title empty$
+    'skip$
+    { title format.title.noemph output
+      after.sentence 'output.state :=
+    }
+  if$
+  journal "journal" output.check
+  after.item 'output.state :=
+  format.pages.patent "pages" output.check
+  format.bdate "year" output.check
+  format.doi output
+  fin.entry
+}
+
+FUNCTION {phdthesis}
+{ output.bibitem
+  format.authors "author" output.check
+  after.item 'output.state :=
+  title empty$
+    'skip$
+    { title format.title.noemph output
+      after.sentence 'output.state :=
+    }
+  if$
+  bbl.phd format.thesis.type output
+  format.school.address "school" output.check
+  format.bdate "year" output.check
+  format.doi output
+  fin.entry
+}
+
+FUNCTION {proceedings}
+{ output.bibitem
+format.editors "editor" output.check
+after.item 'output.state :=
+  title format.title "title" output.check
+  venue empty$
+    { }
+    { venue output
+      add.semicolon write$ }
+  if$
+  format.pub.address "publisher" output.check
+  format.bdate "year" output.check
+  pages empty$
+    'skip$
+    { new.block
+      format.pages output }
+  if$
+  format.doi output
+  fin.entry
+}
+
+FUNCTION {software}
+{ output.bibitem
+  title format.title "title" output.check
+  version empty$
+   'skip$
+   { version output }
+  if$
+  after.block 'output.state :=
+format.pub.address "publisher" output.check
+  format.bdate "year" output.check
+  format.doi output
+  fin.entry
+}
+
+FUNCTION {techreport}
+{ "Entrytype techreport of " cite$ " is not supported." * * warning$ }
+
+FUNCTION {unpublished}
+{ "Entrytype unpublished of " cite$ " is not supported." * * warning$ }
+
+FUNCTION {www}
+{ output.bibitem
+  format.authors output
+  after.item 'output.state :=
+  title empty$
+    'skip$
+    { title output }
+  if$
+  format.url output
+  after.item 'output.state :=
+  format.urldate output
+  fin.entry
+}
+
+%% Convert the strings "yes" or "no" to #1 or #0 respectively
+FUNCTION {yes.no.to.int}
+{ "l" change.case$ duplicate$
+    "yes" =
+    { pop$  #1 }
+    { duplicate$ "no" =
+        { pop$ #0 }
+        { "unknown Boolean " quote$ * swap$ * quote$ *
+          " in " * cite$ * warning$
+          #0
+        }
+      if$
+    }
+  if$
+}
+
+%% Using the same mechanism as in IEEEtrans, control of
+%% output can be achieved using a special entry type.
+FUNCTION {Control}
+{ ctrl-use-title
+  empty$
+    { }
+    { ctrl-use-title
+      yes.no.to.int
+      'is.use.title := }
+  if$
+  ctrl-etal-number
+  empty$
+    { }
+    { ctrl-etal-number
+      str.to.int
+      'etal.number := }
+  if$
+}
+
+FUNCTION {conference} {inproceedings}
+
+FUNCTION {other} {patent}
+
+FUNCTION {default.type} {misc}
+
+MACRO {jan} {"Jan."}
+MACRO {feb} {"Feb."}
+MACRO {mar} {"Mar."}
+MACRO {apr} {"Apr."}
+MACRO {may} {"May"}
+MACRO {jun} {"June"}
+MACRO {jul} {"July"}
+MACRO {aug} {"Aug."}
+MACRO {sep} {"Sept."}
+MACRO {oct} {"Oct."}
+MACRO {nov} {"Nov."}
+MACRO {dec} {"Dec."}
+
+%% The ACS journals by CODEN
+MACRO {achre4} {"Acc.\ Chem.\ Res."}
+MACRO {acbcct} {"ACS Chem.\ Biol."}
+MACRO {ancac3} {"ACS Nano"}
+MACRO {ancham} {"Anal.\ Chem."}
+MACRO {armcbi} {"Annu.\ Rep.\ Med.\ Chem."}
+MACRO {bichaw} {"Biochemistry"}
+MACRO {bcches} {"Bioconjugate Chem."}
+MACRO {bjocbh} {"Beilstein J.~Org.\ Chem."}
+MACRO {bomaf6} {"Biomacromolecules"}
+MACRO {bipret} {"Biotechnol.\ Prog."}
+MACRO {ccccak} {"Collect.\ Czech.\ Chem.\ Commun."}
+MACRO {crtoec} {"Chem.\ Res.\ Toxicol."}
+MACRO {chlsac} {"Chem.\ Listy"}
+MACRO {chreay} {"Chem.\ Rev."}
+MACRO {cmatex} {"Chem.\ Mater."}
+MACRO {cmltag} {"Chem.\ Lett."}
+MACRO {cgdefu} {"Cryst.\ Growth Des."}
+MACRO {enfuem} {"Energy Fuels"}
+MACRO {eoider} {"Expert Opin.\ Invest.\ Drugs"}
+MACRO {eotpeg} {"Expert Opin.\ Ther.\ Pat."}
+MACRO {esthag} {"Environ.\ Sci.\ Technol."}
+MACRO {htcyam} {"Heterocycles"}
+MACRO {iechad} {"Ind.\ Eng.\ Chem.\ Res."}
+MACRO {inoraj} {"Inorg.\ Chem."}
+MACRO {jafcau} {"J.~Agric.\ Food Chem."}
+MACRO {jceaax} {"J.~Chem.\ Eng.\ Data"}
+MACRO {jcisd8} {"J.~Chem.\ Inf.\ Model."}
+MACRO {jctcce} {"J.~Chem.\ Theory Comput."}
+MACRO {jcchff} {"J. Comb. Chem."}
+MACRO {jmcmar} {"J. Med. Chem."}
+MACRO {jnprdf} {"J. Nat. Prod."}
+MACRO {joceah} {"J.~Org.\ Chem."}
+MACRO {jpcafh} {"J.~Phys.\ Chem.~A"}
+MACRO {jpcbfk} {"J.~Phys.\ Chem.~B"}
+MACRO {jpccck} {"J.~Phys.\ Chem.~C"}
+MACRO {jprobs} {"J.~Proteome Res."}
+MACRO {jacsat} {"J.~Am.\ Chem.\ Soc."}
+MACRO {langd5} {"Langmuir"}
+MACRO {mamobx} {"Macromolecules"}
+MACRO {mpohbp} {"Mol.\ Pharm."}
+MACRO {nalefd} {"Nano Lett."}
+MACRO {namefi} {"Nat.\ Med."}
+MACRO {obcrak} {"Org.\ Biomol.\ Chem."}
+MACRO {orlef7} {"Org.\ Lett."}
+MACRO {oprdfk} {"Org.\ Proc.\ Res.\ Dev."}
+MACRO {orgnd7} {"Organometallics"}
+MACRO {pachas} {"Pure Appl.\ Chem."}
+MACRO {phreeb} {"Pharm.\ Res."}
+MACRO {syntbf} {"Synthesis"}
+MACRO {teleay} {"Tetrahedron Lett."}
+MACRO {tetrab} {"Tetrahedron"}
+
+READ
+
+FUNCTION {initialize.controls}
+{ default.is.use.title 'is.use.title :=
+  default.etal.number 'etal.number :=
+}
+
+EXECUTE {initialize.controls}
+
+INTEGERS { len }
+
+FUNCTION {chop.word}
+{ 's :=
+  'len :=
+  s #1 len substring$ =
+    { s len #1 + global.max$ substring$ }
+    's
+  if$
+}
+
+FUNCTION {format.lab.names}
+{ 's :=
+  s #1 "{vv~}{ll}" format.name$
+  s num.names$ duplicate$
+  #2 >
+    { pop$ bbl.etal space.connect }
+    { #2 <
+        'skip$
+        { s #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" =
+            { bbl.etal space.connect }
+            { bbl.and space.connect s #2 "{vv~}{ll}" format.name$ space.connect }
+          if$
+        }
+      if$
+    }
+  if$
+}
+
+FUNCTION {author.key.label}
+{ author empty$
+    { key empty$
+        { cite$ #1 #3 substring$ }
+        'key
+      if$
+    }
+    { author format.lab.names }
+  if$
+}
+
+FUNCTION {author.editor.key.label}
+{ author empty$
+    { editor empty$
+        { key empty$
+            { cite$ #1 #3 substring$ }
+            'key
+          if$
+        }
+        { editor format.lab.names }
+      if$
+    }
+    { author format.lab.names }
+  if$
+}
+
+FUNCTION {author.key.organization.label}
+{ author empty$
+    { key empty$
+        { organization empty$
+            { cite$ #1 #3 substring$ }
+            { "The " #4 organization chop.word #3 text.prefix$ }
+          if$
+        }
+        'key
+      if$
+    }
+    { author format.lab.names }
+  if$
+}
+
+FUNCTION {editor.key.organization.label}
+{ editor empty$
+    { key empty$
+        { organization empty$
+            { cite$ #1 #3 substring$ }
+            { "The " #4 organization chop.word #3 text.prefix$ }
+          if$
+        }
+        'key
+      if$
+    }
+    { editor format.lab.names }
+  if$
+}
+
+FUNCTION {calc.short.authors}
+{ type$ "book" =
+  type$ "inbook" =
+  or
+    'author.editor.key.label
+    { type$ "proceedings" =
+        'editor.key.organization.label
+        { type$ "manual" =
+            'author.key.organization.label
+            'author.key.label
+          if$
+        }
+      if$
+    }
+  if$
+  'short.list :=
+}
+
+FUNCTION {calc.label}
+{ calc.short.authors
+  short.list
+  "("
+  *
+  year duplicate$ empty$
+  short.list key field.or.null = or
+     { pop$ "" }
+     'skip$
+  if$
+  *
+  'label :=
+}
+
+ITERATE {calc.label}
+
+STRINGS { longest.label last.label next.extra }
+
+INTEGERS { longest.label.width last.extra.num number.label }
+
+FUNCTION {initialize.longest.label}
+{ "" 'longest.label :=
+  #0 int.to.chr$ 'last.label :=
+  "" 'next.extra :=
+  #0 'longest.label.width :=
+  #0 'last.extra.num :=
+  #0 'number.label :=
+}
+
+FUNCTION {forward.pass}
+{ last.label label =
+    { last.extra.num #1 + 'last.extra.num :=
+      last.extra.num int.to.chr$ 'extra.label :=
+    }
+    { "a" chr.to.int$ 'last.extra.num :=
+      "" 'extra.label :=
+      label 'last.label :=
+    }
+  if$
+  number.label #1 + 'number.label :=
+}
+
+EXECUTE {initialize.longest.label}
+
+ITERATE {forward.pass}
+
+FUNCTION {begin.bib}
+{ preamble$ empty$
+    'skip$
+    { preamble$ write$ newline$ }
+  if$
+  "\begin{thebibliography}{"  number.label int.to.str$  * "}" *
+  write$ newline$
+}
+
+EXECUTE {begin.bib}
+
+EXECUTE {init.state.consts}
+
+ITERATE {call.type$}
+
+FUNCTION {end.bib}
+{ newline$
+  "\end{thebibliography}" write$ newline$
+}
+
+EXECUTE {end.bib}
+%% 
+%% Originally developed by Martin Sievers (info at schoenerpublizieren.de)
+%% Copyright (C) 2009-2017 by Beilstein-Institut for the Advancement of Chemical Sciences (Beilstein)
+%% 
+%% Part of this bundle is derived from cite.sty, to which the
+%% following license applies:
+%%   Copyright (C) 1989-2003 by Donald Arseneau
+%%   These macros may be freely transmitted, reproduced, or
+%%   modified provided that this notice is left intact.
+%% 
+%% It may be distributed and/or modified under the conditions of
+%% the LaTeX Project Public License (LPPL), either version 1.3c of
+%% this license or (at your option) any later version.  The latest
+%% version of this license is in the file:
+%% 
+%%    http://www.latex-project.org/lppl.txt
+%% 
+%% This work has the LPPL maintenancce status "author-maintained".
+%% 
+%% This work consists of the files beilstein.dtx,
+%%                                 CHANGELOG.md,
+%%                                 README.md
+%%           and the derived files beilstein.pdf,
+%%                                 beilstein.cls,
+%%                                 beilstein.ins,
+%%                                 bjnano.bst,
+%%                                 beilstein-template.tex,
+%%                                 beilstein-template.bib.
+%%           Some graphic files for the documentation and template are also added:
+%%                                 bjnano_logo.pdf
+%%                                 scheme1.pdf
+%%                                 scheme2.pdf
+%%                                 figure1.pdf
+%%
+%% End of file `bjnano.bst'.


Property changes on: trunk/Master/texmf-dist/bibtex/bst/beilstein/bjnano.bst
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/Master/texmf-dist/doc/latex/beilstein/BJNANO_Technical_Handbook.pdf
===================================================================
(Binary files differ)

Index: trunk/Master/texmf-dist/doc/latex/beilstein/BJNANO_Technical_Handbook.pdf
===================================================================
--- trunk/Master/texmf-dist/doc/latex/beilstein/BJNANO_Technical_Handbook.pdf	2017-09-10 20:55:20 UTC (rev 45264)
+++ trunk/Master/texmf-dist/doc/latex/beilstein/BJNANO_Technical_Handbook.pdf	2017-09-10 20:56:37 UTC (rev 45265)

Property changes on: trunk/Master/texmf-dist/doc/latex/beilstein/BJNANO_Technical_Handbook.pdf
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/pdf
\ No newline at end of property
Added: trunk/Master/texmf-dist/doc/latex/beilstein/CHANGELOG.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/beilstein/CHANGELOG.md	                        (rev 0)
+++ trunk/Master/texmf-dist/doc/latex/beilstein/CHANGELOG.md	2017-09-10 20:56:37 UTC (rev 45265)
@@ -0,0 +1,30 @@
+# Change Log
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a Changelog](http://keepachangelog.com/)
+and this project adheres to [Semantic Versioning](http://semver.org/).
+
+
+## 1.2 - 2017-08-21
+
+### Added
+- Structure modified and files added for CTAN publication
+
+### Changed
+- Updated documentation
+
+### Fixed
+- Option handling now compatible to recent `babel` versions
+- `note` is only output once for `@misc` bib entries
+- Fix for the declaration of `\-` as a robust command. There is a conflict between package `bpchem` and the latest `LaTeX` release
+
+
+## 1.1 - 2010-08-16
+
+### Fixed
+- Page number bug fix
+
+
+## 1.0 - 2010-05-11
+First official release at BJNANO public website
+


Property changes on: trunk/Master/texmf-dist/doc/latex/beilstein/CHANGELOG.md
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/Master/texmf-dist/doc/latex/beilstein/README.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/beilstein/README.md	                        (rev 0)
+++ trunk/Master/texmf-dist/doc/latex/beilstein/README.md	2017-09-10 20:56:37 UTC (rev 45265)
@@ -0,0 +1,26 @@
+# beilstein
+
+    beilstein -- Support for submissions to the ``Beilstein Journal
+    of Nanotechnology'' published by the Beilstein-Institut
+    for the Advancement of Chemical Sciences
+    Version:     1.2
+    E-mail:      journals-support at beilstein-institut.de
+    License:     Released under the LaTeX Project Public License v1.3c or later
+    See          http://www.latex-project.org/lppl.txt
+
+The Beilstein bundle provides a LaTeX class file and a BibTeX
+style file in accordance with the requirements of submissions to
+the [Beilstein Journal of Nanotechnology]. Although the
+files can be used for any kind of document, they have only been
+designed and tested to be suitable for submission to the [Beilstein Journal of Nanotechnology].
+
+
+Stable versions are uploaded to CTAN (https://www.ctan.org/pkg/beilstein).
+In addition you will find the most recent version at https://www.beilstein-journals.org/bjnano/templates.
+The most recent documentation is available at BJNANO_Technical_Handbook.pdf within the doc directory. 
+`texdoc beilstein` should give you this file. It includes a short description how to use the template and 
+also provides trouble shooting hints.
+
+Please see [CHANGELOG.md](CHANGELOG.md) for a version history
+
+  [Beilstein Journal of Nanotechnology]: https://www.beilstein-journals.org/bjnano/


Property changes on: trunk/Master/texmf-dist/doc/latex/beilstein/README.md
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/Master/texmf-dist/doc/latex/beilstein/beilstein-template.bib
===================================================================
--- trunk/Master/texmf-dist/doc/latex/beilstein/beilstein-template.bib	                        (rev 0)
+++ trunk/Master/texmf-dist/doc/latex/beilstein/beilstein-template.bib	2017-09-10 20:56:37 UTC (rev 45265)
@@ -0,0 +1,319 @@
+ at COMMENT{This BibTeX database consists of entries of all types of
+documents listed in the ``Instructions for Authors'', pp 5--6}
+ at COMMENT{The references used in ``beilstein-template.tex'' are listed as well at the end of the file.}
+
+ at COMMENT{Article within a journal}
+ at ARTICLE{Constantino2001,
+author = {Constantino, M. G. and V. Lacerda, Jr. and Aragao, V.},
+year  ={2001},
+journal = Molecules,
+volume = 6,
+pages = {770--776}
+}
+
+ at COMMENT{Article within a journal with non-continuos (i.e.\ issue-based) pagination}
+ at ARTICLE{Groeger2000,
+  author = {Gr\"{o}ger, H. and Sans, J. and G\"{u}thner, T.},
+  journal = {Chim. Oggi},
+  year = 2000,
+  volume = 18,
+  number = {3/4},
+  pages = {12--16}
+}
+
+ at COMMENT{If no volume, but only a number is given, ``No.'' is added automatically}
+ at ARTICLE{Wills1983,
+  author = {Wills, M. R. and Savory, J.},
+  journal = {Lancet},
+  year = 1983,
+  number = 2,
+  pages = {29}
+}
+
+ at COMMENT{Article within a journal with article number}
+ at COMMENT{The ``pages'' field is used for the article number.}
+ at ARTICLE{Flamme2005,
+  author = {Flamme, E. M. and Roush, W. R.},
+  journal = {Beilstein J. Org. Chem.},
+  year = 2005,
+  volume = 1,
+  pages = {No. 7}
+}
+
+ at COMMENT{Article within a journal supplement}
+ at ARTICLE{Orengo1999,
+  author = {Orengo, C. A. and Bray, J. E. and Hubbard, T. and LoConte, L. and Sillitoe, I.},
+  journal = {Proteins},
+  year = {1999},
+  volume = 37,
+  number = {Suppl. S3},
+  pages = {149--170}
+}
+
+ at COMMENT{Article within a journal with two separate editions or with translations/article within a journal with aditional Chemical Abstracts reference}
+ at ARTICLE{Grubbs2006,
+  author = {Grubbs, R. H.},
+  journal = {Angew. Chem.},
+  year = 2006,
+  volume = 118,
+  pages = {3845--3850},
+  note = {{\emph{Angew. Chem., Int. Ed.} \textbf{2006,} \emph{45,} 3760--3765.}}
+}
+
+ at COMMENT{In press article}
+ at INPRESS{Schwartzman,
+  author = {Schwartzman, M. and S. J. Wind},
+  journal ={Nano Lett.}
+}
+
+ at COMMENT{Patent}
+ at COMMENT{``pages'' holds the patent number, ``journal'' the type of patent}
+ at PATENT{Schimmel,
+  author = {Schimmel, T. and Xie, F. and Obermair, C.},
+  title = {Gate controlled atomic switch},
+  journal = {U.S. Pat. Appl.},
+  pages = {20090195300},
+  year = {Aug 6, 2009}
+}
+
+ at COMMENT{Article within conference proceedings}
+ at INPROCEEDINGS{Jones1996,
+author = {Jones, X.},
+title  ={Zeolites and synthetic mechanisms},
+year = {1996},
+pages = {16--27},
+booktitle = {Proceedings of the First National Conference on Porous Sieves},
+publisher = {Butterworth-Heinemann},
+address = {Stoneham, MA},
+venue = {Baltimore, MD, June 27--30, 1996},
+editor = {Smith, Y.}
+}
+
+ at COMMENT{Whole issue of a journal}
+ at COMMENT{Instead of an author only an editor is given}
+ at ARTICLE{OBrian2002,
+editor = {O'Brian, P.},
+title = {Recent developments in chiral lithium amide base chemistry},
+year  ={2002},
+journal = {Tetrahedron},
+volume = 58,
+pages = {4567--4733}
+}
+
+ at COMMENT{Whole conference proceedings}
+ at Proceedings{Smith1996,
+editor = {Smith, Y.},
+title  ={Proceedings of the First National Conference on Porous Sieves},
+year = {1996},
+address = {Stoneham, MA},
+venue = {Baltimore, MD, June 27--30, 1996},
+publisher = {Butterworth-Heinemann}
+}
+
+ at COMMENT{Complete book}
+ at BOOK{Rao2005,
+  author = {Rao, C. N. R. and Govindaraj, A.},
+  title = {Nanotubes and Nanowires},
+  publisher = {Royal Society of Chemistry},
+  address = {Cambridge, U.K.},
+  year = 2005
+}
+
+ at COMMENT{Book edition}
+ at BOOK{Borisenko2008,
+  author = {Borisenko, V. E. and Ossicini, S.},
+  title = {What is what in the Nanoworld},
+  edition = 2,
+  publisher = {Wiley-VCH},
+  address = {Berlin},
+  year = 2008
+}
+
+ at COMMENT{Book chapter or article within book}
+ at INCOLLECTION{Taylor2007,
+  author = {Taylor, R. and Burley, G. A.},
+  title = {Production, Isolation and Purification of Fullerenes},
+  booktitle = {Fullerenes -- Principles and Application},
+  editor = {Langa, F. and Nierengarten, J.-F.},
+  publisher = {Royal Society of Chemistry},
+  address = {Cambridge, U.K.},
+  year = 2007,
+  pages = {1--14}
+}
+
+ at COMMENT{Book chapter or article within a multi-volume book}
+ at INCOLLECTION{Farnum2003,
+  author = {Farnum, M. A. and DesJarlais, R. L. and Agrafiotis, D. K.},
+  title = {Molecular Diversity},
+  booktitle = {Handbook of Chemoinformatics: From Data to Knowledge},
+  editor = {Gasteiger, J.},
+  publisher = {Wiley-VCH},
+  address = {Weinheim, Germany},
+  year = {2003},
+  volume = {4},
+  pages = {1640--1686}
+}
+
+ at COMMENT{Chapter of a book in a series}
+ at INCOLLECTION{Goldfuss2003,
+  author = {Goldfuss, B.},
+  title = {Enantioselective addition of organolithiums to C=O groups},
+  booktitle = {Organolithiums in Enantioselective Synthesis},
+  editor = {Hodgson, D. M.},
+  series = {Topics in Organometallic Chemistry, Vol.~5},
+  publisher = {Springer},
+  address = {Berlin},
+  year = 2003,
+  pages = {21--35}
+}
+
+ at COMMENT{Book with institutional author}
+ at BOOK{AnnualReport,
+  author = {{Advisory Committee on Genetic Modification}},
+  title = {Annual Report},
+  year = 1999,
+  address = {London}
+}
+
+ at COMMENT{Thesis}
+ at PhDThesis{Pfrang2004,
+author = {Pfrang, A.},
+title  ={Von den Fr\"uhstadien der Pyrokohlenstoffabscheidung bis zum Kompositwerkstoff -- Untersuchungen mit Rastersondenverfahren},
+year = {2004},
+school = {University of Karlsruhe, Germany}
+}
+
+ at COMMENT{For online resources a new type ``WWW'' is introduced. The fields ``url'' and ``urldate'' hold the corresponding address and access date. Please note: the urldate is not formatted, so it has to be in the correct format already.}
+ at WWW{Bozen2002,
+  title = {Proceedings of ``Molecular Informatics: Confronting Complexity'', May 13--16, 2002, Bozen, Italy},
+  url = {http://www.beilstein-institut.de/index.php?id=154},
+  urldate = {Sep 12, 2007}
+}
+
+ at COMMENT{Software}
+ at COMMENT{For software a field ``version'' can be used.}
+ at SOFTWARE{Gaussian03,
+  title = {Gaussian 03},
+  version = {Revision C.02},
+  publisher = {Gaussian, Inc.},
+  address = {Wallingford, CT},
+  year = {2004}
+}
+
+ at Comment{----------------------------------------------------------------------------------------------------------}
+ at Comment{References used in ``beilstein-template.tex''.}
+
+ at INCOLLECTION{Pornet2002,
+  author = {Pornet, J.},
+  title = {Product Subclass 32: Allenylsilanes},
+  booktitle = {Science of Synthesis},
+  editor = {Fleming, I.},
+  publisher = {Georg Thieme Verlag},
+  address = {Stuttgart},
+  year = {2002},
+  pages = {669--683},
+  volume = {4}
+}
+
+ at ARTICLE{Masse1995,
+  author = {Masse, C. E. and Panek, J. S.},
+  journal = chreay,
+  year = 1995,
+  volume = 95,
+  pages = {1293--1316}
+}
+
+ at ARTICLE{Jian1995,
+author = {Jian, J. and Smith, D. T. and Weinreb, S. M.},
+year  ={1995},
+journal = joceah,
+volume = 60,
+pages = {5366--5367}
+}
+
+ at ARTICLE{Weinreb1998,
+author = {Weinreb, S. M. and Smith, D. T. and Jian, J.},
+year  ={1998},
+journal = syntbf,
+pages = {509--521}
+}
+
+ at ARTICLE{Danheiser1980,
+author = {Danheiser, R. L. and Carini, D. J.},
+year  ={1980},
+journal = joceah,
+volume = 45,
+pages = {3925--3927}
+}
+
+ at ARTICLE{Danheiser1986,
+author = {Danheiser, R. L. and Carini, D. J. and Kwasigroch, C. A.},
+year  ={1986},
+journal = joceah,
+volume = 51,
+pages = {3870--3878}
+}
+
+ at ARTICLE{Danheiser1985,
+author = {Danheiser, R. L. and Kwasigroch, C. A. and Tsai, Y.-M.},
+year  ={1985},
+journal = jacsat,
+volume = 107,
+  pages = {7233--7235}
+}
+
+ at ARTICLE{Danheiser1985b,
+author = {Danheiser, R. L. and Fink, D. M.},
+year  ={1985},
+journal = {Tetrahedron Lett.},
+volume = 26,
+  pages = {2513--2516}
+}
+
+ at ARTICLE{Daidouji2005,
+author = {Daidouji, K. and Fuchibe, K. and Akiyama, T.},
+year  ={2005},
+journal = orlef7,
+volume = 7,
+pages = {1051--1053}
+}
+ at ARTICLE{Danheiser1981,
+author = {Danheiser, R. L. and Carini, D. J. and Basak, A.},
+year  ={1981},
+journal = jacsat,
+volume = 103,
+pages = {1604--1606}
+}
+
+ at ARTICLE{Danheiser1983,
+author = {Danheiser, R. L. and Carini, D. J. and Fink, D. M.},
+year  ={1983},
+journal = tetrab,
+volume = 39,
+pages = {935--947}
+}
+
+ at Article{Danheiser1987,
+author="R. L. Danheiser and D. A. Becker",
+journal="Heterocycles",
+year="1987",
+volume="25",
+pages="277-281",
+}
+
+ at Article{Yadav2004,
+author="V. K. Yadav and V. Sriramurthy",
+journal="Org. Lett.",
+year="2004",
+volume="6",
+pages="4495-4498",
+note="Annulations leading to cyclohexenes are known, see reference 11",
+}
+
+ at Article{Danheiser1987b,
+author="R. L. Danheiser and Y.-M. Tsai and D. M. Fink",
+journal="Org. Synth.",
+year="1987",
+volume="66",
+pages="1-4",
+}


Property changes on: trunk/Master/texmf-dist/doc/latex/beilstein/beilstein-template.bib
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/Master/texmf-dist/doc/latex/beilstein/beilstein-template.tex
===================================================================
--- trunk/Master/texmf-dist/doc/latex/beilstein/beilstein-template.tex	                        (rev 0)
+++ trunk/Master/texmf-dist/doc/latex/beilstein/beilstein-template.tex	2017-09-10 20:56:37 UTC (rev 45265)
@@ -0,0 +1,238 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% This is a (brief) example using the beilstein class.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% If issues arise when submitting your manuscript, you may want to
+%% un-comment the next line.  This provides information on the
+%% version of every file you have used. That way the maintainer of
+%% the class can handle the issue much easier.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%\listfiles
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% The document class does not have many options yet. It accepts an
+%% optional keyval option for the manuscript type and options for the
+%% language and inputencoding used.
+%% These are for the manuscript type:
+%% manuscript=fullresearchpaper (default),
+%% manuscript=letter,
+%% manuscript=commentary,
+%% manuscript=review,
+%% manuscript=bookreport.
+%%
+%% For the language (in terms of hyphenation):
+%% american -> American English (default),
+%% british, english -> British English.
+%%
+%% For the input encoding:
+%% latin1 (default),
+%% utf8,
+%% applemac.
+%%
+%% The defaults are [manuscript=fullresearchpaper,american,latin1].
+%% Please not, that you should consider using the utf8 option as this
+%% is the standard encoding nowadays.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\documentclass[utf8]{beilstein}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Place any additional packages needed here. Only include packages
+%% which are essential to avoid problems later. The class already
+%% loads some useful packages, so please have a look at the
+%% documentation.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\usepackage{xspace}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Place any additional macros here.  Please use \newcommand* where
+%% possible, and avoid layout-changing macros (which are not used
+%% when typesetting).
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\newcommand*{\CHCL}{\chem{CH_2Cl_2}}
+\newcommand*{\HNMR}{\chem{^{1}H~NMR}\xspace}
+\newcommand*{\CNMR}{\chem{^{13}C~NMR}\xspace}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Beginning of the article
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\begin{document}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Meta-data block
+%% ---------------
+%% The title of the article is given with the usual \title command.
+%%
+%% Each author should be given as a separate \author command.
+%%
+%% For corresponding authors please use \author* and give the email
+%% address as a second mandatory argument.
+%%
+%% The affiliation of authors is given after the authors; the
+%% affiliations are numbered consecutively.
+%%
+%% If some authors have the same affiliation you can use the optional
+%% argument of \author and \author* to give the number of that
+%% affiliation.
+%%
+%% The whole block is printed with the \maketitle command at the very
+%% end.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\title{Synthesis of highly substituted allenylsilanes by alkylidenation of silylketenes}
+\author*{Stephen P. Marsden}{s.p.marsden at leeds.ac.uk}
+\affiliation{School of Chemistry, University of Leeds, Leeds LS2 9JT, United Kingdom}
+\author{Pascal C. Ducept}
+\affiliation{Department of Chemistry, Imperial College London, London SW7 2AY, United Kingdom}
+\maketitle
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% The document should begin with an abstract, if appropriate. If one
+%% is given and should not be, a warning is issued.
+%%
+%% For the three parts of the abstract, ``Background'', ``Results''
+%% and ``Conclusions'', the corresponding commands should be used.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\begin{abstract}
+\background Allenylsilanes are useful intermediates in organic synthesis. An attractive,
+convergent but little used approach for their synthesis is the alkylidenation of stable silylketenes. Reactions thus far have been limited to the use of unsubstituted silylketenes (or equivalents) with stabilised or semi-stabilised ylides only. The current study explores the reactions of substituted ketenes prepared through rhodium(II)-mediated rearrangement of silylated diazoketones.
+\results A range of novel 1,3-disubstituted and 1,3,3-trisubstituted allenylsilanes were prepared using stabilised and semi-stabilised ylides. Alkylidenation with non-stabilised phosphorus ylides was not viable, but the use of titanium-based methylenating reagents was successful, allowing access to 1-substituted allenylsilanes.
+\conclusion Many novel allenylsilanes may be accessed by alkylidenation of substituted silylketenes. Importantly, for the first time, simple methylenation of silylketenes has been achieved using titanium carbenoid-based reagents.
+\end{abstract}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Keywords can be given with the \keywords command which takes five
+%% arguments. The arguments have to be sorted.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\keywords{allenylsilanes; rhodium(II) octanoate-mediated rearrangement; silylketenes; titanium carbenoids; ylide}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% The main text starts right here. For each required and optional
+%% section of the chosen document type a special command is defined.
+%%
+%% It is strongly recommended to use BibTeX for managing references.
+%% Citations and citation lists can be given with the \cite command.
+%% Please note, that not all references have been added to the
+%% example document.
+%%
+%% For references in floats \cite is locally redefined to
+%% adds the reference to the end of the list of references.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\section{Introduction}
+Allenylsilanes are versatile intermediates for organic synthesis \cite{Pornet2002,Masse1995}. They have two main modes of reactivity: firstly, as propargyl anion equivalents in thermal \cite{Jian1995,Weinreb1998} or Lewis acid-mediated \cite{Danheiser1980,Danheiser1986} addition to carbonyls, acetals and imines, and secondly as three-carbon partners in [3+2] annulation reactions. Thus, reaction with aldehydes \cite{Danheiser1985}, imines/iminiums \cite{Danheiser1985,Daidouji2005}, enones \cite{Danheiser1981,Danheiser1983,Danheiser1985b} and nitrosyl cations \cite{Danheiser1987} leads to dihydrofurans, dihydropyrroles, cyclopentenes and isoxazoles respectively \cite{Yadav2004}. In most cases the silicon is retained in the final product and can be used as a handle for further synthetic elaboration.
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% When referencing objects, LaTeX offers a label--ref mechanism.
+%% The beilstein class extends this approach with the \cref command,
+%% that adds the corresponding type of the object as well.
+%%
+%% Tables, figures and schemes must have a single column or double
+%% column width. To make life easier, some commands are defined.
+%%
+%% Captions (legends) will always be added at the correct place no
+%% matter where you put in the source code.
+%% Please note: labels always have to come /after/ the \caption.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+Amongst the myriad methods to prepare allenylsilanes \cite{Pornet2002,Danheiser1987b}, an attractive disconnection is to consider a Wittig-type alkylidenation of a silylketene (\cref{fig:AlkylidenationApproach}).
+\begin{figure}
+\caption{Alkylidenation approach to the synthesis of allenylsilanes.}
+\label{fig:AlkylidenationApproach}
+\includegraphics[width=8.2cm,keepaspectratio]{figure1}
+%% \sglcolfigure{figure1}
+\end{figure}
+
+[\ldots]
+
+\section{Results and Discussion}
+Our investigations began with the preparation of substituted silylketenes \CN{1} as substrates for the alkylidenation chemistry. This was carried out under our previously reported conditions for rhodium(II) octanoate-mediated rearrangement of silyl diazoketones \CN{2}, which in turn were prepared by \textit{C}-silylation of the parent diazoketones \CN{3} with triethylsilyl triflate (\cref{scheme:1}). It should be noted that while the alkyl-substituted silylketenes are relatively stable and show little decomposition at room temperature over several days, the (hetero)aromatic-substituted silylketenes are much less robust and should be used quickly or stored in a freezer.
+
+\begin{scheme}
+\caption{Synthesis of substituted silylketenes \CN{1}.}
+\label{scheme:1}
+\includegraphics[width=8.2cm,keepaspectratio]{scheme1}
+\end{scheme}
+
+[\ldots]
+
+With the requisite silylketenes in hand, attention turned to their reaction with the carboethoxy-stabilised phosphoranes \CN{4} and \CN{5}. At the outset, it was by no means certain that these would react efficiently with substituted silylketenes \CN{1} since it is well documented that nucleophiles attack silylketenes \textit{anti} to the silicon, i.e.\ the phosphoranes would be approaching from the same side as the \chem{R^1}-substituent. Since in all previous examples this substituent has been a hydrogen atom, the extension to bulkier substituents could not be taken for granted. In the event, however, we were pleased to find that in nearly all cases the desired allenylsilanes were formed in moderate to excellent yield (\cref{scheme:2}, \cref{tab:1}, see \cref{si:1} for full experimental data).
+\begin{scheme}
+\includegraphics[width=8.2cm,keepaspectratio]{scheme2}
+\caption{Reaction of substituted silylketenes with ester-stabilised phosphoranes.}
+\label{scheme:2}
+\end{scheme}
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Tables are a bit special. Only there the \footnote is allowed for
+%% Beilstein publications.
+%%
+%% As for figures and schemes sglcoltabular and dblcoltabular can be
+%% used to get tables of the correct width. If you do not want to
+%% messure the columns you can use parameter ``X'' of the tabularx
+%% package for one column or more to get equal-sized columns.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+\begin{table}
+\caption{Reaction of substituted silylketenes with ester-stabilised phosphoranes.}
+\label{tab:1}
+\begin{dblcoltabularx}{|l|l|l|l|l|X|X|}\hline
+\bfseries Entry & \bfseries Ketene & \bfseries Ylide & \bfseries Temp [\celsius] & \bfseries \textit{t} [h] & \bfseries Solvent & \bfseries Yield 6/7 (8)\\\hline
+1 & \CN{1a} & \CN{4} & 80 & 24 & PhH & 54\,\%\\\hline
+2 & \CN{1a} & \CN{5} & rt & 3  & \CHCL & 60\,\%\\\hline
+3 & \CN{1b} & \CN{4} & 110 & 24 & toluene & 45\,\%\\\hline
+4 & \CN{1b} & \CN{5} & reflux & 24 & \CHCL & 77\,\%\\\hline
+5 & \CN{1c} & \CN{4} & 80 & 24 & PhH & 60\,\%\\\hline
+6 & \CN{1c} & \CN{5} & rt & 6  & \CHCL & 81\,\%\\\hline
+7 & \CN{1d} & \CN{4} & 110 & 48 & toluene & 22\,\%%
+   \footnote{60\,\% of starting material recovered}\\\hline
+8 & \CN{1d} & \CN{5} & 80 & 48 & toluene & 78\,\%\\\hline
+9 & \CN{1e} & \CN{4} & 80 & 24 & PhH & 55\,\% (7\,\%)\\\hline
+10 & \CN{1f} & \CN{4} & 60 & 5 & \CHCL & 44\,\% (3\,\%)\\\hline
+11 & \CN{1h} & \CN{4} & rt & 6 & \CHCL & 0\,\% (57\,\%)\\\hline
+12 & \CN{1h} & \CN{4} & 50 & 1 & \CHCL & 7\,\% (23\,\%)\\\hline
+13 & \CN{1i} & \CN{4} & rt & 10 & \CHCL & 0\,\% (67\,\%)\\\hline
+14 & \CN{1i} & \CN{5} & rt & 2 & \CHCL & 98\,\%\\\hline
+15 & \CN{1j} & \CN{4} & 80 & 12 & PhH & 74\,\% (19\,\%)\\\hline
+\end{dblcoltabularx}
+\end{table}
+
+As expected, reactions with the more substituted ylide \CN{4} were significantly slower than those with the parent ylide \CN{5} (compare reaction temperatures and times, entries 1, 3 and 5 versus entries 2, 4 and 6). [...]
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% The Supporting Information is an essential part of many articles.
+%% They are given inside the ``suppinfo'' environment with the
+%% \sifile command which gets the following mandatory arguments:
+%% #1: File name
+%% #2: File type
+%% #3: Descriptive File title
+%% A long description can be given using the optional argument.
+%%
+%% You can label each entry and reference it in the text.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\begin{suppinfo}
+Supporting information features copies of \HNMR spectra of silylated diazoketones \CN{2} and silylketenes \CN{1}, plus \chem{{}^1H} and \CNMR spectra of allenylsilanes \CN{6}, \CN{7}, and \CN{14}--\CN{19}.
+\sifile{S1.pdf}{PDF}{Experimental part}\label{si:1}
+\sifile{S2.pdf}{PDF}{NMR spectra of compounds \CN{1}, \CN{2}, \CN{6} and \CN{7}}
+\sifile{S3.pdf}{PDF}{NMR spectra of compounds \CN{14--19}}
+\end{suppinfo}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% The "Acknowledgements" section can be given in all manuscripts.
+%% This should be done within the ``acknowledgements'' environment,
+%% which will make the correct section title.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\begin{acknowledgements}
+We acknowledge EPSRC grant GR/L60135/01 (PCD) and generous unrestricted research funding from Pfizer for financial support.
+\end{acknowledgements}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% The appropriate \bibliography command should be placed here.
+%% Notice that the class file automatically sets \bibliographystyle
+%% and also names the section correctly.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\bibliography{beilstein-template}
+\vspace{3cm}
+This article is published in full length in \textit{Beilstein J. Org. Chem.}
+\textbf{2005}, \textit{1}, No. 5.
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% That's it. Ending the document finishes the article. Happy TeXing!
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\end{document}


Property changes on: trunk/Master/texmf-dist/doc/latex/beilstein/beilstein-template.tex
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/Master/texmf-dist/doc/latex/beilstein/figure1.pdf
===================================================================
(Binary files differ)

Index: trunk/Master/texmf-dist/doc/latex/beilstein/figure1.pdf
===================================================================
--- trunk/Master/texmf-dist/doc/latex/beilstein/figure1.pdf	2017-09-10 20:55:20 UTC (rev 45264)
+++ trunk/Master/texmf-dist/doc/latex/beilstein/figure1.pdf	2017-09-10 20:56:37 UTC (rev 45265)

Property changes on: trunk/Master/texmf-dist/doc/latex/beilstein/figure1.pdf
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/pdf
\ No newline at end of property
Added: trunk/Master/texmf-dist/doc/latex/beilstein/scheme1.pdf
===================================================================
(Binary files differ)

Index: trunk/Master/texmf-dist/doc/latex/beilstein/scheme1.pdf
===================================================================
--- trunk/Master/texmf-dist/doc/latex/beilstein/scheme1.pdf	2017-09-10 20:55:20 UTC (rev 45264)
+++ trunk/Master/texmf-dist/doc/latex/beilstein/scheme1.pdf	2017-09-10 20:56:37 UTC (rev 45265)

Property changes on: trunk/Master/texmf-dist/doc/latex/beilstein/scheme1.pdf
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/pdf
\ No newline at end of property
Added: trunk/Master/texmf-dist/doc/latex/beilstein/scheme2.pdf
===================================================================
(Binary files differ)

Index: trunk/Master/texmf-dist/doc/latex/beilstein/scheme2.pdf
===================================================================
--- trunk/Master/texmf-dist/doc/latex/beilstein/scheme2.pdf	2017-09-10 20:55:20 UTC (rev 45264)
+++ trunk/Master/texmf-dist/doc/latex/beilstein/scheme2.pdf	2017-09-10 20:56:37 UTC (rev 45265)

Property changes on: trunk/Master/texmf-dist/doc/latex/beilstein/scheme2.pdf
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/pdf
\ No newline at end of property
Added: trunk/Master/texmf-dist/source/latex/beilstein/beilstein.dtx
===================================================================
--- trunk/Master/texmf-dist/source/latex/beilstein/beilstein.dtx	                        (rev 0)
+++ trunk/Master/texmf-dist/source/latex/beilstein/beilstein.dtx	2017-09-10 20:56:37 UTC (rev 45265)
@@ -0,0 +1,4432 @@
+% \iffalse meta-comment
+% !TEX program  = pdflatex
+% !TEX encoding = utf8
+%<*internal>
+\iffalse
+\fi
+\def\nameofplainTeX{plain}
+\ifx\fmtname\nameofplainTeX\else
+  \expandafter\begingroup
+\fi
+
+%</internal>
+%<*install>
+\input docstrip.tex
+\keepsilent
+\askforoverwritefalse
+\preamble
+----------------------------------------------------------------
+beilstein -- Support for submissions to the ``Beilstein Journal
+of Nanotechnology'' published by the Beilstein-Institut
+for the Advancement of Chemical Sciences
+Version:     1.2
+E-mail:      journals-support at beilstein-institut.de
+License:     Released under the LaTeX Project Public License v1.3c or later
+See          http://www.latex-project.org/lppl.txt
+----------------------------------------------------------------
+
+\endpreamble
+\postamble
+
+Originally developed by Martin Sievers (info at schoenerpublizieren.de)
+Copyright (C) 2009-2017 by Beilstein-Institut for the Advancement of Chemical Sciences (Beilstein)
+
+Part of this bundle is derived from cite.sty, to which the
+following license applies:
+  Copyright (C) 1989-2003 by Donald Arseneau
+  These macros may be freely transmitted, reproduced, or
+  modified provided that this notice is left intact.
+
+It may be distributed and/or modified under the conditions of
+the LaTeX Project Public License (LPPL), either version 1.3c of
+this license or (at your option) any later version.  The latest
+version of this license is in the file:
+
+   http://www.latex-project.org/lppl.txt
+
+This work has the LPPL maintenancce status "author-maintained".
+
+This work consists of the files beilstein.dtx,
+                                CHANGELOG.md,
+                                README.md
+          and the derived files beilstein.pdf,
+                                beilstein.cls,
+                                beilstein.ins,
+                                bjnano.bst,
+                                beilstein-template.tex,
+                                beilstein-template.bib.
+          Some graphic files for the documentation and template are also added:
+                                bjnano_logo.pdf
+                                scheme1.pdf
+                                scheme2.pdf
+                                figure1.pdf
+\endpostamble
+\usedir{tex/latex/beilstein}
+\generate{
+  \file{\jobname.cls}{\from{\jobname.dtx}{class}}
+}
+\usedir{bibtex/bst/beilstein}
+\generate{
+  \file{bjnano.bst}{\from{\jobname.dtx}{bst}}
+}
+\nopreamble\nopostamble
+\usedir{tex/latex/beilstein}
+\generate{
+   \file{beilstein-template.tex}{\from{\jobname.dtx}{demo}}
+   \file{beilstein-template.bib}{\from{\jobname.dtx}{bib}}
+}
+%</install>
+%<install>\endbatchfile
+%<*internal>
+\usedir{source/latex/beilstein}
+\generate{
+  \file{\jobname.ins}{\from{\jobname.dtx}{install}}
+}
+\ifx\fmtname\nameofplainTeX
+  \expandafter\endbatchfile
+\else
+  \expandafter\endgroup
+\fi
+%</internal>
+%<*driver>
+\ProvidesFile{beilstein.dtx}%
+[2017/08/21 v1.2 Bundle for submissions to the\MessageBreak ``Beilstein Journal
+   of Nanotechnology'' (BJNANO)]
+\documentclass[a4paper]{ltxdoc}
+\usepackage[american]{babel}
+\usepackage{graphicx}
+\usepackage[utf8]{inputenc}
+\usepackage[T1]{fontenc}
+\usepackage{lmodern}
+\usepackage{amsmath,amssymb}
+\usepackage{array,booktabs,tabularx,longtable}
+\usepackage{fancyhdr}
+\pagestyle{fancy}
+\lfoot{\footnotesize BJNANO Technical Handbook (Version 1.2)}
+\cfoot{}
+\rfoot{\thepage}
+\usepackage[final]{listings}
+\usepackage[onehalfspacing]{setspace}
+\usepackage{xspace}
+\usepackage[svgnames]{xcolor}
+\setlength{\parindent}{0pt}
+\DeclareFontFamily{U}{eur}{\skewchar\font'177}
+\DeclareFontShape{U}{eur}{m}{n}{%
+  <-6> eurm5 <6-8> eurm7 <8-> eurm10}{}
+\DeclareFontShape{U}{eur}{b}{n}{%
+  <-6> eurb5 <6-8> eurb7 <8-> eurb10}{}
+\DeclareSymbolFont{ugrf at m}{U}{eur}{m}{n}
+\SetSymbolFont{ugrf at m}{bold}{U}{eur}{b}{n}
+\DeclareMathSymbol{\upalpha}{\mathord}{ugrf at m}{"0B}
+\usepackage[%
+	pdftitle={A LaTeX class for submissions to the ``Beilstein Journal of
+   Nanotechnology'' (BJNANO)},
+   pdfauthor={Beilstein-Institut for the Advancement of Chemical
+   Sciences},
+   urlcolor=blue,%
+	linktocpage,%
+	a4paper,%
+   citecolor=blue,%
+   linkcolor=blue,%
+	colorlinks=true]{hyperref}
+\OnlyDescription     % nur Anleitung (ohne Index und History)
+\CodelineIndex       % kein Index wenn auskommentiert
+\EnableCrossrefs     % kein Index wenn auskommentiert
+\RecordChanges       % keine History wenn auskommentiert
+\begin{document}
+\DeleteShortVerb{\|}
+\DocInput{beilstein.dtx}
+\end{document}
+%</driver>
+% \fi
+% \CheckSum{0}
+% \CharacterTable
+%  {Upper-case    \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z
+%   Lower-case    \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z
+%   Digits        \0\1\2\3\4\5\6\7\8\9
+%   Exclamation   \!     Double quote  \"     Hash (number) \#
+%   Dollar        \$     Percent       \%     Ampersand     \&
+%   Acute accent  \'     Left paren    \(     Right paren   \)
+%   Asterisk      \*     Plus          \+     Comma         \,
+%   Minus         \-     Point         \.     Solidus       \/
+%   Colon         \:     Semicolon     \;     Less than     \<
+%   Equals        \=     Greater than  \>     Question mark \?
+%   Commercial at \@     Left bracket  \[     Backslash     \\
+%   Right bracket \]     Circumflex    \^     Underscore    \_
+%   Grave accent  \`     Left brace    \{     Vertical bar  \|
+%   Right brace   \}     Tilde         \~}
+%
+% \changes{v1.0}{2010/05/11}{Release on start of BJNANO public website.}
+% \changes{v1.1}{2010/08/16}{Page number bug fix.}
+% \changes{v1.2}{2017/08/16}{Fix for recent babel versions.}
+% \changes{v1.2}{2017/08/16}{Fix for @misc bib entries.}
+% \changes{v1.2}{2017/08/16}{All files converted to UTF-8.}
+% \changes{v1.2}{2017/08/21}{Fix for the declaration of \cs{-} as a robust 
+% command. There is a conflict between package bpchem and the latest 
+% \LaTeX{} release.}
+% \GetFileInfo{\jobname.dtx}
+% \DoNotIndex{\newcommand,\newenvironment}
+% \DoNotIndex{\def,\edef,\gdef,\xdef,\global,\long,\let}
+% \DoNotIndex{\expandafter,\string,\the,\ifx,\else,\fi}
+% \DoNotIndex{\csname,\endcsname,\relax,\begingroup,\endgroup}
+% \DoNotIndex{\DeclareTextCommand,\DeclareTextCompositeCommand}
+% \DoNotIndex{\space,\@empty,\special,\@nil,\advance\@nnil}
+% \DoNotIndex{\\,\@gobble,\@@,\@fornoop,\@fortmp,\@ifundefined}
+% \DoNotIndex{\@tempcnta,\@tempcntb,\{,\},\alph,\bgroup,\egroup}
+% \DoNotIndex{\do,\end,\HN,\ifcase,\ifnum,\IfFileExists,\ifvmode}
+% \DoNotIndex{\ignorespaces,\immediate,\input,\item,\jobname}
+% \DoNotIndex{\leavevmode,\loop,\repeat,\makeatletter,\makeatother}
+% \DoNotIndex{\meaning,\newcounter,\next,\or,\par,\renewcommand}
+% \DoNotIndex{\renewcommand,\renewenvironment,\stepcounter}
+% \DoNotIndex{\Tg,\thepage,\unskip,\write,\advance,\{,\}}
+% \makeatletter
+% \newcommand*\DescribeOption{^^A
+%  \leavevmode
+%  \@bsphack
+%  \begingroup
+%    \MakePrivateLetters
+%    \Describe at Option
+% }
+% \newcommand*\Describe at Option[1]{^^A
+%    \endgroup
+%  \marginpar{^^A
+%    \raggedleft
+%    \PrintDescribeEnv{#1}^^A
+%  }%
+%  \SpecialOptionIndex{#1}^^A
+%  \@esphack
+%  \ignorespaces
+% }
+% \newcommand*\SpecialOptionIndex[1]{^^A
+%  \@bsphack
+%  \index{^^A
+%    #1\actualchar{\protect\ttfamily#1} (option)\encapchar usage^^A
+%  }^^A
+%  \index{^^A
+%    options:\levelchar#1\actualchar{\protect\ttfamily#1}
+%    \encapchar usage^^A
+%  }^^A
+%  \@esphack
+% }
+%
+%^^A For creating examples with nice highlighting of code, and so
+%^^A on; based on the system used in the listings source (lstsample).
+% \lst at RequireAspects{writefile}
+% \newsavebox{\LaTeXdemo at box}
+% \lstnewenvironment{LaTeXdemo}[1][code and example]{^^A
+%  \global\let\lst at intname\@empty
+%  \expandafter\let\expandafter\LaTeXdemo at end
+%    \csname LaTeXdemo@#1 at end\endcsname
+%  \@nameuse{LaTeXdemo@#1}^^A
+% }{^^A
+%  \LaTeXdemo at end
+% }
+% \newcommand*\LaTeXdemo at new[3]{^^A
+%  \expandafter\newcommand\expandafter*\expandafter
+%    {\csname LaTeXdemo@#1\endcsname}{#2}^^A
+%  \expandafter\newcommand\expandafter*\expandafter
+%    {\csname LaTeXdemo@#1 at end\endcsname}{#3}^^A
+% }
+% \newcommand*\LaTeXdemo at common{^^A
+%  \lstset{
+%    basicstyle   = \small\ttfamily,
+%    basewidth    = 0.51em,
+%    gobble       = 3,
+%    language     = [LaTeX]{TeX},
+%    moretexcs    = {
+%      affiliation,
+%      background,
+%      celsius,
+%      chem,
+%      CN,
+%      conclusion,
+%      fnnormal,
+%		 fnpara,
+%      includegraphics,
+%      keywords,
+%      results,
+%      sglcolscheme,
+%      sifile,
+%      text,
+%      unit},%
+%    texcsstyle   = *\color{blue},
+%    frame        = single,
+%    backgroundcolor = \color{yellow!60},
+%    framesep     = 5pt
+%  }^^A
+% }
+% \newcommand*\LaTeXdemo at input{^^A
+%  \MakePercentComment
+%  \catcode`\^^M=10\relax
+%  \small
+%  \begingroup
+%    \setkeys{lst}{
+%      SelectCharTable=\lst at ReplaceInput{\^\^I}{\lst at ProcessTabulator}
+%    }^^A
+%    \leavevmode
+%      \input{\jobname.tmp}^^A
+%  \endgroup
+%  \MakePercentIgnore
+% }
+% \LaTeXdemo at new{code and example}{^^A
+%  \setbox\LaTeXdemo at box=\hbox\bgroup
+%    \lst at BeginAlsoWriteFile{\jobname.tmp}^^A
+%    \LaTeXdemo at common
+% }{^^A
+%    \lst at EndWriteFile
+%  \egroup
+%  \begin{center}
+%    \ifdim\wd\LaTeXdemo at box>0.48\linewidth\relax
+%      \hbox to\linewidth{\box\LaTeXdemo at box\hss}^^A
+%        \begin{minipage}{\linewidth}
+%          \LaTeXdemo at input
+%        \end{minipage}
+%    \else
+%      \begin{minipage}{0.48\linewidth}
+%        \LaTeXdemo at input
+%      \end{minipage}
+%      \hfill
+%      \begin{minipage}{0.48\linewidth}
+%        \hbox to\linewidth{\box\LaTeXdemo at box\hss}^^A
+%      \end{minipage}
+%    \fi
+%  \end{center}
+% }
+% \LaTeXdemo at new{code only}{^^A
+%  \LaTeXdemo at common
+% }{^^A
+% }%
+%
+% \newinsert\bx at S
+% \newinsert\bx at T
+% \newinsert\bx at U
+% \newinsert\bx at V
+% \newinsert\bx at W
+% \newinsert\bx at X
+% \newinsert\bx at Y
+% \newinsert\bx at Z
+% \newinsert\bx at AA
+% \newinsert\bx at BB
+% \newinsert\bx at CC
+% \newinsert\bx at DD
+% \newinsert\bx at EE
+% \newinsert\bx at FF
+% \newinsert\bx at GG
+% \newinsert\bx at HH
+% \newinsert\bx at II
+% \newinsert\bx at JJ
+% \gdef\@freelist{\@elt\bx at A\@elt\bx at B\@elt\bx at C\@elt\bx at D\@elt\bx at E
+%   \@elt\bx at F\@elt\bx at G\@elt\bx at H\@elt\bx at I\@elt\bx at J
+%   \@elt\bx at K\@elt\bx at L\@elt\bx at M\@elt\bx at N
+%   \@elt\bx at O\@elt\bx at P\@elt\bx at Q\@elt\bx at R
+%   \@elt\bx at S\@elt\bx at T\@elt\bx at U\@elt\bx at V
+%   \@elt\bx at W\@elt\bx at X\@elt\bx at Y\@elt\bx at Z
+%   \@elt\bx at AA\@elt\bx at BB\@elt\bx at CC\@elt\bx at DD
+%   \@elt\bx at EE\@elt\bx at FF\@elt\bx at GG\@elt\bx at HH
+%   \@elt\bx at II\@elt\bx at JJ}
+%
+% \renewcommand*{\fps at table}{htb}
+% \setlength\belowcaptionskip{10pt}
+%
+% \providecommand*\env{\texttt}
+% \providecommand*\file{\texttt}
+% \providecommand*\opt{\texttt}
+% \providecommand*\pkg{\textsf}
+% \newcommand*{\BJNANO}{\emph{Beilstein Journal of Nano\-tech\-nology}\xspace}
+% \def\testbx{bx}
+% \DeclareRobustCommand*{\chem}[1]{\ensuremath{%
+% \ifx\testbx\f at series\mathbf{#1}\else\mathrm{#1}\fi}}
+% \DeclareRobustCommand*{\unit}[1]{%
+%  \ensuremath{\def\mu{\mbox{\textmu}}\def~{\,}%
+%  \unskip~%
+%  \ifx\testbx\f at series\mathbf{#1}\else\mathrm{#1}\fi}}
+% \renewcommand*\thempfootnote{\@alph\c at mpfootnote}
+% \renewcommand\@makefntext[1]%
+%     {\noindent\makebox[.5em][l]{\@makefnmark\,}#1}
+% \renewcommand{\footnoterule}{}
+% \def\BibTeX{\rmfamily B\kern-.05em%
+%    \ifx\testbx\f at series{\normalsize I\kern-.025em B\kern-.08em}%
+%    \else{\textsc{i\kern-.025em b}\kern-.08em}%
+%    \fi%
+%    \unskip T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}
+% \makeatother
+%
+% \begin{titlepage}
+% \setstretch{1.8}
+% \renewcommand\thefootnote{\fnsymbol{footnote}}
+% \vspace*{-2.5cm}{\includegraphics*[width=7.7cm,keepaspectratio]{bjnano_logo}}\\[1cm]
+% \begin{center}
+% {\bfseries\LARGE Technical Handbook}\\[3ex]
+% {\Large The \LaTeX\ \pkg{Beilstein} bundle for submissions to the\\\emph{Beilstein
+% Journal of Nanotechnology}}
+% \end{center}
+% \vspace{2cm}
+% \setstretch{1.3}
+% \begin{multicols}{2}
+% \tableofcontents
+% \end{multicols}
+% \vspace{1cm}
+% \begin{abstract}
+% \noindent The \pkg{Beilstein} bundle provides a \LaTeX\ class file and a
+% \BibTeX\ style file in accordance with the requirements of
+% submissions to the \BJNANO. Although the files can be used for any kind of document,
+% they have only been designed and tested to be suitable for
+% submissions to the \BJNANO.
+% \end{abstract}
+% \end{titlepage}
+% \clearpage
+% \section{Introduction}
+% The \pkg{Beilstein} bundle consists of three parts. The \LaTeX\ class
+% \file{beilstein.cls} is intended to be used for submissions. It is
+% based on the standard \pkg{article} class, but was modified
+% to meet the requirements for submissions to the \BJNANO as
+% published in the ``Instructions for Authors'' \cite{Beilstein-MSG}.
+% Moreover the \LaTeX class \file{beilstein.cls} facilitates ease of use by providing the authors with a
+% set of useful macros and environments.
+%
+% The \BibTeX\ style \file{bjnano.bst} is used by the class to format
+% citations and references correctly. It is based on Joseph Wright's
+% \file{achemso.bst}, but was largely adjusted to work exactly on
+% \BJNANO submissions.
+%
+% Finally an example document is included in the \pkg{Beilstein} bundle. It is intended to act as a
+% potential template for submissions, and illustrates the usage of the
+% class and the \BibTeX\ file.
+%
+% \section{Installation}
+% \subsection{Global installation via your \TeX{} distribution}
+% From version 1.2 onwards, the \pkg{Beilstein} bundle is distributed via CTAN and the major 
+% \TeX{} distribution. Therefore after having updated your \TeX{} Live or MiKTeX installation 
+% you can use the \pkg{Beilstein} files rightaway.
+%
+% \subsection{Local TDS installation}
+% The \pkg{Beilstein} bundle is supplied with the TDS-ready ZIP file,
+% \file{beilstein-tds.zip}. Simply unzip this file into your local texmf
+% tree and run your hash program (e.g. \texttt{texhash} for recent
+% \TeX{}Live or MiK\TeX\ systems).
+%
+% To extract the bundle of files and to build the documentation
+% yourself, run pdf\LaTeX\ on \texttt{beilstein.dtx}.
+% The files can then be installed either by putting them into the
+% current working directory (where the main \TeX\ file is) or -- much
+% better -- as described above by moving the files to suitable places
+% in a local texmf tree \$LOCALTEXMF according to
+% Table~\ref{tab:install}.
+% \begin{table}
+% \centering
+% \caption{Files contained in the \pkg{Beilstein} bundle.}
+% \label{tab:install}
+% \begin{tabular}{l@{\quad$\rightarrow$\quad}l}
+% \toprule
+% File & Directory\\\midrule
+% \file{beilstein.cls} & \$LOCALTEXMF/tex/latex/beilstein\\
+% \file{beilstein.dtx} & \$LOCALTEXMF/source/latex/beilstein\\
+% \file{beilstein.ins} & \$LOCALTEXMF/source/latex/beilstein\\
+% \file{beilstein-template.bib} & \$LOCALTEXMF/tex/latex/beilstein\\
+% \file{beilstein-template.tex} & \$LOCALTEXMF/tex/latex/beilstein\\
+% \file{bjnano.bst} & \$LOCALTEXMF/bibtex/bst/beilstein\\
+% \file{bjnano\_logo.pdf} & \$LOCALTEXMF/source/latex/beilstein\\
+% \file{figure1.pdf} & \$LOCALTEXMF/doc/latex/beilstein\\
+% \file{scheme1.pdf} & \$LOCALTEXMF/tex/latex/beilstein\\
+% \file{scheme2.pdf} & \$LOCALTEXMF/tex/latex/beilstein\\
+% \bottomrule
+% \end{tabular}
+% \end{table}
+%
+% \newpage
+% If you are not sure about local texmf trees at all, you can have a
+% look at \url{http://www.tex.ac.uk/cgi-bin/texfaq2html?label=inst-wlcf}
+% for more information.
+%
+% \section{Requirements}
+% The \pkg{Beilstein} class was designed to rely on standard \LaTeX\
+% packages only. It requires the following ones:
+% \begin{itemize}
+% \item Internal packages
+% \begin{itemize}
+%  \item \pkg{xkeyval},
+%  \item \pkg{ifthen},
+%  \item \pkg{babel},
+%  \item \pkg{inputenc, fontenc}.
+% \end{itemize}
+% \item Fonts
+% \begin{itemize}
+%  \item \pkg{mathptmx}, \pkg{helvet}, \pkg{courier},
+%  \item \pkg{textcomp}.
+% \end{itemize}
+% \item Page layout
+% \begin{itemize}
+%  \item \pkg{geometry},
+%  \item \pkg{ragged2e}, \pkg{everysel}, \pkg{footmisc},
+%  \item \pkg{setspace},
+%  \item \pkg{lineno}.
+% \end{itemize}
+% \item Math and science
+% \begin{itemize}
+%  \item \pkg{amsmath, amstext, amssymb, amsgen, amsbsy, amsopn, amsfonts}.
+% \end{itemize}
+% \item Floats
+% \begin{itemize}
+%  \item \pkg{float},
+%  \item \pkg{flafter},
+%  \item \pkg{graphicx},
+%  \item \pkg{array},
+%  \item \pkg{tabularx},
+%  \item \pkg{longtable}.
+% \end{itemize}
+% \item Bibliography
+% \begin{itemize}
+%  \item \pkg{natbib}.
+% \end{itemize}
+% \end{itemize}
+%
+% All these packages should be present in any major \TeX\
+% distribution and are also available from \emph{The Comprehensive
+% TeX Archive Network} (CTAN) at \url{http://www.ctan.org}.
+%
+% A complete list of used files and tested versions can be found in
+% the appendix.
+%
+% \section{The class file}
+% \subsection{Class options}
+% Most of the things to be considered for submissions to the \BJNANO are
+% directly included into the class file. There is only one major choice an
+% author has to make, i.e.\ to determine the type of manuscript he
+% wants to submit.
+%
+% \DescribeOption{manuscript=}
+% The Beilstein-Institut has defined five such types and each type
+% has a special purpose and structure. The chosen option is used
+% internally to check for mandatory sections and elements. The types are designed
+% to give the author a slight control of the article's structure.
+%
+% The selection of the type is done by the key-value-option \opt{manuscript}
+% which takes the values listed in Table~\ref{tab:optionsmanuscript}.
+% \begin{table}
+% \centering
+% \caption{Possible values for key-value option ``manuscript''.\textsuperscript{\textit{a}}}
+% \label{tab:optionsmanuscript}
+% \begin{tabular}{ll}
+% \toprule
+% Option & Meaning\\\midrule
+% \opt{manuscript=bookreport} & Book Report Article\\
+% \opt{manuscript=commentary} & Commentary Article\\
+% \itshape\opt{manuscript=fullresearchpaper} &
+% \itshape Full Research Paper\\
+% \opt{manuscript=letter} &
+% Letter Article\\
+% \opt{manuscript=review} & Review Article\\
+% \bottomrule
+% \end{tabular}\\
+% \begin{flushleft}\footnotesize
+% \textsuperscript{\textit{a}}Default option is printed in italics.
+% \end{flushleft}
+% \end{table}
+%
+% To switch your document to a ``Book Review Article'' e.g.\ you
+% simply use \cs{documentclass[manuscript=bookreview]\{beilstein\}}.
+% In case of an unknown value, the class will use the default option.
+%
+% \DescribeOption{american}\DescribeOption{british}
+% Two other options of a more technical aspect exist. Firstly you can
+% tell \LaTeX\ whether you use American or British English (see Table \ref{tab:language}).
+% Internally only different hyphenation patterns are used. So you might not see a
+% difference in the output at first sight.
+% \begin{table}
+% \centering
+% \caption{Options for language.\textsuperscript{\textit{a}}}
+% \label{tab:language}
+% \begin{tabular}{ll}
+% \toprule
+% Option & Meaning\\\midrule
+% \itshape \opt{american}, \opt{USenglish} & \itshape Use American English\\
+% \opt{british}, \opt{english}, \opt{UKenglish} & Use British English\\
+% \bottomrule
+% \end{tabular}\\
+% \begin{flushleft}\footnotesize
+% \textsuperscript{\textit{a}}Default option is printed in italics.
+% \end{flushleft}
+% \end{table}\newpage
+% \DescribeOption{applemac}\DescribeOption{latin1}
+% \DescribeOption{utf8}
+% Secondly, you might want to change the input encoding of your
+% document, e.g.\ when using accented characters. Therefore, the class
+% offers a small set of options (see Table~\ref{tab:inputenc}). In most
+% cases no change is necessary. However, you should consider using the 
+% \opt{utf8} option as this the standard encoding nowadays.
+% \begin{table}
+% \centering
+% \caption{Options for input encoding.\textsuperscript{\textit{a}}}
+% \label{tab:inputenc}
+% \begin{tabular}{ll}
+% \toprule
+% Option & Meaning\\\midrule
+% \opt{applemac} & Use special Mac encoding\\
+% \itshape \opt{latin1} & \itshape Use ISO8859-1 encoding\\
+% \opt{utf8} & Use UTF-8 encoding\\
+% \bottomrule
+% \end{tabular}\\
+% \begin{flushleft}\footnotesize
+% \textsuperscript{\textit{a}}Default option is printed in italics.
+% \end{flushleft}
+% \end{table}
+%
+% Further options have been added to the recent version of the class:
+%
+% \DescribeOption{sectionnumbering}
+% The \pkg{Beilstein} class disables the usual section numbering
+% mechanism by changing the counter ``secnumdepth'' appropriately. You
+% can switch back by using the class option \opt{sectionnumbering=true} or
+% just \opt{sectionnumbering}. Doing so all non-starred sectioning commands
+% will be numbered while the starred versions still have no number.
+%
+% \DescribeOption{fnpara}
+% By default footnotes can only be used in tables and are printed one
+% per line. This can be changed to paragraph mode, either locally (see
+% page~\pageref{pg:fnpara}),
+% or globally. For that purpose the \pkg{Beilstein} class
+% offers the option \opt{fnpara=true} or just \opt{fnpara}.
+%
+% \DescribeOption{Global options}
+% The \pkg{Beilstein} class was developed to include all necessary
+% requirements. However, if you need extra options for
+% packages already being loaded by the class itself, you can add them
+% to the list of global options.
+%
+% \subsection{Title page}
+% The \BJNANO has its own title page format. However,
+% a more or less standard set of \LaTeX\ commands can be used to provide the
+% necessary information right after \cs{begin\{document\}}:
+%
+% \DescribeMacro{\title}
+% The title of your manuscript is given with \cs{title\marg{title}}.
+%
+% \DescribeMacro{\author}\DescribeMacro{\author*}
+% Each author of the article is named within its own \cs{author}
+% command. For a corresponding author the extended version
+% \cs{author*} must be used. It has an additional second mandatory
+% argument holding the author's email address.
+%
+% With both commands the author's name is printed followed by a superscript
+% number for the appropriate affiliation(s). As these numbers can be the same
+% for several authors, an optional argument for a specific number can
+% be used:\\
+% \cs{author\oarg{affiliation number}\marg{author's name}} or\\
+% \cs{author*\oarg{affiliation number}\marg{author's name}\marg{email
+% address}}.
+%
+% If you want to provide an email address for a non-corresponding author,
+% there is a second optional argument:\\
+% \cs{author\oarg{affiliation number}\oarg{email address}\marg{author's name}}
+%
+% \marginpar{CAUTION}%
+% To add an email address the first optional argument
+% has to be present in any case, e.g.\ empty if there is no extra
+% affiliation number.
+%
+% \DescribeMacro{\affiliation}
+% The affiliations are given with \cs{affiliation\marg{postal address}}
+% and are numbered consecutively. Each \cs{author} with an own address
+% is followed by one or more \cs{affiliation} commands (see example
+% below). This can also be combined with the optional affiliation number.
+%
+% \DescribeMacro{\maketitle}
+% To print the title page use the command
+% \cs{maketitle}.
+%
+% A complete title block might look like this:
+% \begin{LaTeXdemo}[code only]
+%   \begin{document}
+%   \title{Synthesis of highly substituted allenylsilanes by
+%      alkylidenation of silylketenes}
+%   %Corresponding author:
+%   \author*{Stephen P. Marsden}{s.p.marsden at leeds.ac.uk} %
+%   \affiliation{School of Chemistry, University of Leeds, Leeds
+%      LS2 9JT, United Kingdom}
+%   %A second author with two affiliations and an email address:
+%   %Important: empty first optional argument
+%   \author[][Ducept at ...]{Pascal C. Ducept}
+%   \affiliation{Department of Chemistry, Imperial College London,
+%      London SW7 2AY, United Kingdom}
+%   \affiliation{An alternative Address could be here}
+%   %A third author with the same affiliation as the second:
+%   \author[2]{X. Y.}
+%   \maketitle %print the title page
+% \end{LaTeXdemo}
+%
+% For abstract and keywords please have a look at section~\ref{sec:special}.
+%
+% \subsection{Section headers}
+% You can use the standard \LaTeX\ sectioning commands (except for
+% \cs{chapter}) to structure your document. Depending on the type of
+% manuscript some sections are mandatory while others are optional.
+%
+% For a ``Full Research Paper'' the following section headings might
+% be used:
+% \begin{LaTeXdemo}[code only]
+%   \section{Introduction}
+%   ...
+%   \section{Experimental}
+%   ...
+%   \section{Results and Discussion}
+%   ...
+%   \section{Conclusion}
+% \end{LaTeXdemo}
+%
+% Table \ref{tab:specialsections} gives an overview of all allowed section headings for the
+% different \pkg{Beilstein} class manuscript types.
+% \begin{table}
+% \centering
+% \begin{minipage}{\linewidth}
+% \caption{Allowed section headings for the different \pkg{Beilstein} class manuscript types.}
+% \label{tab:specialsections}
+% \begin{tabular}{l*{5}{>{$}c<{$}}}
+% \toprule
+% Section heading& \multicolumn{5}{c}{Manuscript
+%  type\textsuperscript{\textit{a}}}\\
+% &\mbox{BR}\textsuperscript{\textit{b}} & \mbox{CA}%
+%  \textsuperscript{\textit{c}}&\mbox{FR}\textsuperscript{\textit{d}}&
+% \mbox{LA}\textsuperscript{\textit{e}} & \mbox{RA}%
+%  \textsuperscript{\textit{f}}\\\midrule
+% \texttt{Conclusion}   & - & + & o & - & +\\
+% \texttt{Book Details} & + & - & - & - & -\\
+% \texttt{Discussion}   & - & + & - & - & -\\
+% \texttt{Experimental} & - & - & o & - & -\\
+% \texttt{Findings}     & - & - & - & + & -\\
+% \texttt{Introduction} & - & + & + & - & -\\
+% \texttt{Main Text}    & + & - & - & - & -\\
+% \texttt{Results and Discussion} (may be separate) & - & - & + & - & -\\
+% \texttt{Review}       & - & - & - & - & +\\
+% \bottomrule
+% \end{tabular}
+% \begin{flushleft}\footnotesize
+% \textsuperscript{\textit{a}}$+$ denotes a mandatory, $o$ an optional and $-$ a
+%  non-feasible section\\
+% \textsuperscript{\textit{b}}Book Report Article\\
+% \textsuperscript{\textit{c}}Commentary Article\\
+% \textsuperscript{\textit{d}}Full Research Paper\\
+% \textsuperscript{\textit{e}}Letter Article\\
+% \textsuperscript{\textit{f}}Review Article
+% \end{flushleft}
+% \end{minipage}
+% \end{table}
+%
+% \subsection{Special sections}\label{sec:special}
+% \DescribeEnv{abstract}
+% After the title page an abstract must be inserted (except for
+% ``Book Reports'' and ``Commentaries''). To meet the specifications for \BJNANO submissions
+% \LaTeX\ redefines the usual \env{abstract} environment internally.
+%
+% \DescribeMacro{\background}
+% \DescribeMacro{\results}
+% \DescribeMacro{\conclusion}
+% For the special items of the abstract mentioned in the
+% guidelines the three commands \cs{background}, \cs{results} and
+% \cs{conclusion} are defined. Each command starts a new line and prints the
+% item's name in boldface.
+%
+% \DescribeMacro{\keywords}
+% Although the ``Keywords'' could be considered as a part of the title page
+% they are inserted right after the abstract. There can be an
+% arbitrary number of keywords, and therefore the \cs{keywords} macro has only one
+% mandatory argument holding the keywords separated by semicolons.
+%
+% An abstract with keywords can look like this:
+% \begin{LaTeXdemo}[code only]
+%   \begin{abstract}
+%   \background ...
+%   \results ...
+%   \conclusion ...
+%   \end{abstract}
+%   \keywords{allenylsilanes; rhodium(II) octanoate-mediated
+%      rearrangement; silylketenes; titanium carbenoids; ylide}
+% \end{LaTeXdemo}
+%
+% \DescribeEnv{acknowledgements}
+% %\enlargethispage{\baselineskip}
+% The ``Acknowledgements'' are an optional part of all article types.
+%  As the layout differs from that of the main text, they should be
+% written using the environment \env{acknowledgements}:
+% \begin{LaTeXdemo}[code only]
+%   \begin{acknowledgements}
+%   I would like to thank ...
+%   \end{acknowledgements}
+% \end{LaTeXdemo}
+%
+% \DescribeEnv{suppinfo}
+% Another optional section of an article is the
+% ``Supporting Information'' which may consist of various ``Supporting
+% Information Files'' containing information about additional external
+% data. To begin this section simply use \cs{begin\{suppinfo\}}.
+%
+% \DescribeMacro{\sifile}
+% Inside the \env{suppinfo} environment the command \cs{sifile} can be
+% used to add a ``Supporting Information File''. Its syntax is:\\
+% \cs{sifile\oarg{long description}\marg{filename}\marg{format}\marg{short description}}
+%
+% Each \cs{sifile} can be followed by a \cs{label\marg{labelname}} to
+% cross-reference to that file in the main text using
+% \cs{ref\marg{labelname}}.
+%
+% The complete section could look like this:\newpage
+% \begin{LaTeXdemo}[code only]
+%   \begin{suppinfo}
+%   \sifile{experimental_part.pdf}{PDF}{Experimental part}
+%   \label{si:experimental-part}
+%   \sifile[A long description about the experimental data stored in
+%      this file]{nmr1.pdf}{PDF}{NMR spectra of compounds \CN{1},
+%      \CN{2}, \CN{6} and \CN{7}.}
+%   \end{suppinfo}
+% \end{LaTeXdemo}
+%
+% \subsection{Floats}\label{sec:floats}
+% \DescribeEnv{figure}
+% \DescribeEnv{table}
+% \DescribeEnv{scheme}
+% \LaTeX\ already knows about the built-in environments \env{table}
+% and \env{figure}. For \BJNANO publications a third environment is added:
+% \env{scheme}. There is no difference in usage between \env{scheme}
+% and the former two. To add a scheme ``AScheme.pdf'' you can enter the following:
+% \begin{LaTeXdemo}[code only]
+%   \begin{scheme}
+%   \caption{A scheme demonstrating something.}
+%   \label{scheme:something}
+%   \includegraphics[width=16.8cm,keepaspectratio]{AScheme}
+%   \end{scheme}
+% \end{LaTeXdemo}
+%
+% \LaTeX\ is limited to a small set of graphic formats. All files have
+% to be either pdf, png or jpg. Eps is fine as well, because it can
+% easily be converted to pdf (e.g.\ using \textsf{epstopdf}). Other formats
+% like svg, wmf etc. have to be processed with a converter like
+% \textsf{ImageMagick} \cite{ImageMagick}.
+%
+% \DescribeMacro{\caption}\DescribeMacro{\label}
+% Please note that it does not matter whether \cs{caption} is put above or
+% below \cs{includegraphics}. The caption will always be below the scheme in
+% the output file. The same mechanism is used to put figure captions
+% below and table captions above the content. If you want to add a
+% concise title to a float, please use the optional argument:
+% \cs{caption\oarg{concise title}\marg{legend}}.
+% \DescribeMacro{\ref}
+% However, as common in \LaTeX\ \cs{label\marg{labelname}} must
+% always follow \cs{caption}, otherwise a corresponding \cs{ref}
+% command will yield wrong results.
+%
+% \DescribeMacro{\sglcolfigure}
+% \DescribeMacro{\sglcolscheme}
+% \DescribeEnv{sglcoltabular}\DescribeMacro{sglcoltabularx}
+% During the final typesetting process the article will be printed in
+% double-column mode. Although this does not make any difference for
+% section headings and text, floating objects can be formatted
+% single-column (with a maximum width of 8.2\,cm) or double-column (with
+% a maximum width of 16.8\,cm).
+%
+% The \pkg{Beilstein} class defines some macros to comfortably add
+% floats without bothering about the correct width. For single-column
+% floats you can use \cs{sglcolfigure\marg{filename}} and
+% \cs{sglcolscheme\marg{filename}} as well as the environments
+% \env{sglcoltabular} and \env{sglcoltabularx}. The latter two are
+% meant as a replacement for \env{tabular} and \env{tabularx}
+% respectively.
+%
+% A single-column scheme containing ``results-sil.pdf'' can
+% then  be inserted as:
+% \begin{LaTeXdemo}[code only]
+%   \begin{scheme}
+%   \sglcolscheme{results-sil} %or alternatively:
+%      %\includegraphics[width=8.2cm,keepaspectratio]{results-sil}
+%   \caption{Reaction of substituted silylketenes with
+%      ester-stabilised phosphoranes.}
+%   \label{scheme:silylketenes}
+%   \end{scheme}
+% \end{LaTeXdemo}
+%
+% \DescribeMacro{\dblcolfigure}\DescribeMacro{\dblcolscheme}
+% \DescribeEnv{dblcoltabular}\DescribeEnv{dblcoltabularx}
+% The same macros and environments with ``dbl'' instead of ``sgl'' are
+% defined for double-column floats. Thus for a table you can use:
+% \begin{LaTeXdemo}[code only]
+%   \begin{table} %floating environment
+%   \caption{Reaction of substituted silylketenes with ester-stabilised
+%      phosphoranes.}
+%   \label{tab:silylketenes}
+%   \begin{dblcoltabularx}{|l|>{\bfseries}l|>{\bfseries}l|l|l|X|X|}\hline
+%   \bfseries Entry & \bfseries Ketene & \bfseries Ylide &
+%   \bfseries Temp (\celsius) & \bfseries t (h) & \bfseries Solvent &
+%   \bfseries Yield 6/7 (8)\\\hline
+%   1 & 1a & 4 & 80 & 24 & PhH & 54\,\%\\\hline
+%   2 & 1a & 5 & rt & 3  & CHCL & 60\,\%\\\hline
+%   ...
+%   \end{dblcoltabularx}
+%   \end{table}
+% \end{LaTeXdemo}
+%
+% More information on the \env{tabularx} environment can be found
+% in the documentation of the \pkg{tabularx} package \cite{doc-tabularx}.
+% The standard \env{tabular} environment
+% with the common column parameters ``l, c, r, p'' is supported as
+% well.
+%
+% \DescribeEnv{longtable}
+% If you have a table that is longer than one page, please use the
+% \env{longtable} environment. Have a look at the package's
+% documentation for more information.
+%
+% \DescribeMacro{\footnote}
+% Footnotes are only allowed in tables (see appendix).
+% You can use them in the legend as well as within the table.
+% Lowercase letters are used automatically and the footnote text is
+% written below the table.
+%
+% \DescribeMacro{\fnpara}\DescribeMacro{\fnnormal}\label{pg:fnpara}
+% You can use \cs{fnpara} to switch to paragraph mode for footnotes in
+% all following tables. To restore the usual footnote formatting
+% just use \cs{fnnormal}.
+% \begin{LaTeXdemo}[code only]
+%  \fnpara
+%  %Table with footnotes in paragraph mode
+%  \begin{table}
+%  ...
+%  \end{table}
+%  ...
+%  \fnnormal
+%  %Table with normal footnotes
+%  \begin{table}
+%  ...
+%  \end{table}
+% \end{LaTeXdemo}
+%
+% \subsection{Cross-references}
+% One of \LaTeX\ biggest advantages is its
+% powerful mechanism for cross-references. Therefore you should use it
+% for each of the different objects. This includes among others
+% floats, Supporting Information files and other sections. Just add the
+% standard \cs{label\marg{labelname}} command right after \cs{caption}
+% or \cs{sifile} and call the \cs{ref\marg{labelname}}
+% macro to get the correct number of the referenced object. In the
+% example table above, \cs{ref\{tab:silylketenes\}} gives the actual
+% number of the table.
+%
+% \DescribeMacro{\cref}
+% To make this mechanism even more comfortable, the \pkg{Beilstein} class
+% loads the package \pkg{cleveref} (only if installed already) which
+% defines a command \cs{cref}.
+% In addition to the number of the object its type is printed as well,
+% i.e.\ instead of writing ``see table \cs{ref\{tab:silylketenes\}}''
+% a simple ``see \cs{cref\{tab:silylketenes\}}'' gives the same
+% result. Note that \cs{cref} can also be used for cross-referencing
+% to a ``Supporting Information File''.
+%
+% \subsection{Writing chemistry}
+% \LaTeX\ is a very powerful tool for mathematical
+% typesetting. All built-in commands and structures
+% are provided by the \pkg{Beilstein} class as well. In addition, the
+% packages of the \AmS, \pkg{amsmath, amssymb} etc., are loaded.
+%
+% \DescribeEnv{\$...\$}\DescribeEnv{equation}
+% You can use the standard delimiters \$\ldots\$ like \$\cs{delta}\$
+% for $\delta$ for inline math and environments like
+% \env{equation} for displayed math. Please use the inline math mode
+% for single numbers like $-2$ as well to get the correct minus sign.
+% Please note that -- as described in the ``Instructions for Authors'' --
+% equations must fit a width of 8.2\,cm (single column), and longer
+% equations should be split accordingly.
+%
+% \DescribeMacro{\up...}
+% Small Greek letters are usually printed in italics. If the letters should be
+% in an upright font, please use \cs{up...}, e.g.\ \cs{upalpha} for $\upalpha$.
+%
+% \DescribeMacro{\var...}
+% \pkg{amsmath} provides special commands for upper Greek letters in
+% italics, e.g.\ \cs{varTheta} for $\varTheta$.
+%
+% \DescribeMacro{\text}
+% If you have text inside a formula, e.g.\ as an index, you can use
+% \cs{text} to typeset it in an upright font and in the correct size.
+% \begin{LaTeXdemo}[code only]
+%  $\text{amplitude sensitivity}=10$\\
+%  $C_\text{PEG}=170$
+% \end{LaTeXdemo}
+%
+% However, for chemical elements and reactions the \LaTeX\ math mode is not
+% sufficient, because many chemical expressions have to be typeset
+% in an upright font and not in italics. For example, have a look at
+% \texttt{\$O\_2\$} which results in $O_2$ instead of O$_2$. Using
+% \cs{text} as mentioned is possible as well as writing
+% \texttt{O\$\_2\$}, but both methods are not very
+% comfortable when they have to be applied at several places.
+% On the other hand the commands \texttt{\_} for subscripts and
+% \texttt{\^} for superscripts should remain. Therefore a special \cs{chem} macro
+% is provided by the \pkg{Beilstein} class.
+%
+% \vskip2ex\noindent\textbf{Chemical specialities: the \cs{chem} and \cs{unit} macros}\\
+% Although there already exist many powerful packages like
+% \pkg{siunitx} or \pkg{chemsym} to write physical and chemical units
+% and symbols, the \pkg{Beilstein} class implements its own rather
+% simple interface to keep all submitted documents consistent and make
+% it easier to process them during the final typesetting.
+%
+% \DescribeMacro{\chem}
+% \DescribeMacro{^}\DescribeMacro{_}
+% For chemical formulas the macro \cs{chem} is defined. Inside its
+% argument \texttt{\_} and \texttt{\^} are active like in the math
+% mode. The rest, e.g.\ element names are written in an upright format.
+% \begin{LaTeXdemo}[code and example]%
+%  \chem{CuCl_2} and \chem{{SO_4}^{2-}}\\
+%  \chem{^2_1H+{^3_1H}}\\
+%  $C\chem{_{Cu^{2+}}}\times 10^{-2}=0.005(1)\,\text{M}$\\
+% \end{LaTeXdemo}
+%
+% \DescribeMacro{\unit}
+% For units more or less the same is valid. For instance, writing
+% \texttt{\$cm\^{}2\$} does not result in cm$^2$, but $cm^2$. Thus,
+% you should use \cs{unit} to enter all units correct and more
+% comfortable. If more than one unit is needed,
+% \texttt{\textasciitilde} can be used to separate them.
+%
+% \begin{LaTeXdemo}[code and example]
+%  $\text{amplitude sensitivity}=10\unit{nA~V^{-1}}$\\
+%  $C_\text{PEG}=170\unit{mg/ml}$
+% \end{LaTeXdemo}
+%
+% \DescribeMacro{\angstrom}
+% \DescribeMacro{\celsius}
+% \DescribeMacro{\degree}
+% \DescribeMacro{\permil}
+% \DescribeMacro{\percent}
+% Some units have special macros to make their use easier (see
+% Table~\ref{tab:units}). The commands \cs{percent} and \cs{permil} can
+% be used in the main text as well.
+% \begin{table}
+% \centering
+% \caption{Special macros for units.}
+% \label{tab:units}
+% \begin{tabular}{lll}
+% \toprule
+% Unit name & \LaTeX\ macro & Output\\\midrule
+% \r{a}ngstr\"{o}m & \cs{angstrom} & \AA\\
+% celsius & \cs{celsius} & \ensuremath{{}^{\circ}}\kern-\scriptspace C\\
+% degree & \cs{degree} & \ensuremath{{}^{\circ}}\\
+% permil & \cs{permil} & \textperthousand\\
+% percent & \cs{percent} & \%\\
+% \bottomrule
+% \end{tabular}
+% \end{table}
+% \newpage
+% \DescribeMacro{\rightarrow}
+% \DescribeMacro{\rightleftarrows}
+% \DescribeMacro{\rightleftharpoons}
+% \DescribeMacro{\leftrightarrow}
+% \DescribeMacro{\leftrightarrow}
+% \DescribeMacro{\Rightarrow}
+% \DescribeMacro{\uparrow}
+% \DescribeMacro{\downarrow}
+% \DescribeMacro{\curvearrowright}
+% \DescribeMacro{\rightharpoondown}
+% \LaTeX\ provides
+% several arrows for chemical reactions. The most common ones are
+% listed in Table~\ref{tab:arrows}. Many more can be obtained from
+% \pkg{amssymb}.
+%
+% \begin{LaTeXdemo}[code and example]
+%  \chem{CH_4+2O_2\rightarrow CO_2 + 2H_2O}\\
+%  \chem{2H_{2(g)}+O_{2(g)}\to 2H_2 O_{(l)}\ \Delta H=-286 %
+%     \unit{\frac{kJ}{mol}}}\\
+%  \chem{N_{2(g)}+3H_{2(g)}\rightleftharpoons 2NH_{3(g)}}
+% \end{LaTeXdemo}
+%
+% \begin{table}
+% \centering
+% \caption{\LaTeX\ macros for arrows used in chemical reactions.}
+% \label{tab:arrows}
+% \begin{tabular}{lll}
+% \toprule
+% Arrow & Macro & Usage\\\midrule
+% $\rightarrow$ & \cs{rightarrow} or \cs{to} & One-way chemical reactions\\
+% $\rightleftarrows$ & \cs{rightleftarrows} & Two-way chemical reactions\\
+% $\rightleftharpoons$ & \cs{rightleftharpoons} & Equilibria\\
+% $\leftrightarrow$ & \cs{leftrightarrow} & Resonance structures\\
+% $\Rightarrow$ & \cs{Rightarrow} & Retrosynthetic analysis\\
+% $\uparrow$ & \cs{uparrow}\\
+% $\downarrow$ & \cs{downarrow}\\
+% $\curvearrowright$ & \cs{curvearrowright}\\
+% $\rightharpoondown$ & \cs{rightharpoondown}\\
+% \bottomrule
+% \end{tabular}
+% \end{table}
+%
+% \DescribeMacro{\CN}
+% Compounds have to be typeset in boldface. Instead of \cs{textbf}
+% \cs{CN} can also be used for a logical markup. For ranges of
+% compound numbers \cs{nobreakdash--} avoids linebreaks.
+%
+% \DescribeMacro{\IUPAC}
+% \DescribeMacro{\-}\DescribeMacro{\|}
+% Some chemical products have quite a long name which sometimes
+% results in a bad hyphenation. If you want to influence this you
+% can use \cs{-} for breakable hyphens and \cs{|} for invisible
+% breakpoints and then pass it as an argument to \cs{IUPAC}, e.g.\\\
+% \cs{IUPAC\{4,7-dimethyl\cs{-}3,5,7-tri\cs{|}hydro-1,2,4,7-tetrazocin\cs{-}3,8-dione\}}.
+%
+% \newpage
+% \noindent\textbf{Chemical structures from external programs}\\
+% There are a lot of highly specified software programs like
+% \textsf{ChemDraw\textsuperscript{\textregistered}} to draw complex chemical structures. You should
+% always use such programs and then export your drawings to a pdf file
+% and include it into your \LaTeX\ document as described in
+% section~\ref{sec:floats}.
+% If you get an eps file that is fine as well. You just have to convert it
+% with \textsf{epstopdf}~\texttt{file.eps} from the command line (shell).
+% You can export your graphic file to more or less every format
+% and convert it to pdf, but using a vector format right away is
+% highly recommended.
+%
+% \section{Managing references with \texorpdfstring{\BibTeX}{BiBTeX}}
+% \subsection{The \texorpdfstring{\BibTeX}{BiBTeX} style files}
+% The \pkg{Beilstein} bundle includes a special \BibTeX\ style
+% \file{bjnano.bst} which implements all needed entry types and fields
+% as well as format specifications of the \BJNANO.
+% It is always used
+% automatically by the \pkg{Beilstein} class. The only thing
+% you have to do is to store all your bibliography data in a \BibTeX\ file.
+% The exact structure of this \BibTeX\ database is described in
+% section~\ref{sec:structure}.
+%
+% \DescribeMacro{\cite}
+% To cite any of your references the \LaTeX\ macro \cs{cite} gets a
+% single key or a list of keys for those entries, i.e.\
+% \cs{cite\marg{key}} or \cs{cite\marg{key1,...,keyN}}.
+%
+% \DescribeMacro{\bibliography}
+% To output the section ``References'' containing all information
+% from the \BibTeX\ database for all citations given with
+% the \cs{cite} command, the standard call
+% \cs{bibliography\marg{database}} has to be used just before
+% \cs{end\{document\}}.
+%
+% \subsection{Structure of a \texorpdfstring{\BibTeX}{BibTeX} database}
+% \label{sec:structure}
+% The \BibTeX\ programming language knows the most common entry
+% types cited in academic papers. However, a few like ``WWW'' for
+% internet resources and links or ``SOFTWARE'' are missing. They
+% could be emulated, but it is much better to directly introduce them to \BibTeX.
+% The same is valid for special data fields.
+%
+% On the other hand, not all entry types and fields, that are in included in \BibTeX,
+% are needed and
+% allowed in \BJNANO submissions. They could even mess up the output when
+% not treated correctly. Therefore the entry types are restricted to
+% the following ones:
+% \begin{multicols}{3}
+% \begin{itemize}
+%  \item @ARTICLE
+%  \item @BOOK
+%  \item @INCOLLECTION
+%  \item @INPRESS
+%  \item @INPROCEEDINGS
+%  \item @MISC
+%  \item @PATENT
+%  \item @PHDTHESIS
+%  \item @PROCEEDINGS
+%  \item @SOFTWARE
+%  \item @WWW
+% \end{itemize}
+% \end{multicols}\newpage
+%
+% In addition to the well known data fields the following ones were added:
+% \begin{description}
+%  \item[doi] Digital Object Identifier, e.g.\
+%  ``doi = \{10.1080/02678290500291699\}'' (optional for @article
+%  and @inpress)
+%  \item[url] URL for any internet source, e.g.\
+%  ``url = \{http://www.beilstein-journals.org/bjnano\}'' (mandatory for @WWW)
+%  \item[urldate] Date when the url was visited last, e.g.\
+%  ``urldate = \{Sep 12, 2007\}'' (mandatory for @WWW)
+%  \item[venue] Information about a conference (place and time), e.g.\
+%  ``venue = \{Baltimore, MD, June 27--30, 1996\}'' (mandatory for
+%  @PROCEEDINGS and @INPROCEEDINGS
+%  \item[version] Version of a software, e.g.\
+%  ``version = \{Revision C.02\}'' (mandatory for @SOFTWARE)
+% \end{description}
+%
+% \fcolorbox{black}{red!40}{\parbox{1\textwidth}{The \pkg{Beilstein} bundle contains the file ``beilstein-template.bib''
+% with example entries for all types of references described in
+% \cite[pp 5--6]{Beilstein-MSG}.}}
+%
+% \begin{thebibliography}{9}
+% \bibitem{Beilstein-MSG}\emph{Beilstein-Institut:} Instructions for Authors
+% for the \BJNANO, Version 1.1.
+% \bibitem{doc-tabularx}\emph{David Carlisle:} The \pkg{tabularx}
+% package, v2.07 (1999/01/07), %
+% \url{http://www.ctan.org/tex-archive/help/Catalogue/entries/tabularx.html}.
+% \bibitem{ImageMagick}\emph{ImageMagick:} Convert, Edit, and Compose
+% Images, \url{http://www.imagemagick.org}.
+% \end{thebibliography}
+%
+% \newpage
+% \addcontentsline{toc}{section}{Appendix}
+% \appendix
+% \section*{Appendix}
+% \subsection*{Deactivated macros}\label{sec:forbidden}
+% A few macros were
+% ``deactivated'', i.e.\ their usage results in an error. Right now
+% this is valid for the standard commands listed in
+% Table~\ref{tab:forbidden}.
+% \begin{table}
+% \begin{minipage}{\linewidth}
+% \centering
+% \caption{Forbidden macros.}
+% \label{tab:forbidden}
+% \begin{tabular}{ll}
+% \toprule
+% Macro & Alternative\\\midrule
+% \cs{and} & Use \cs{author} and \cs{author*} for every author\\
+% \cs{footnote\marg{text}} & None\textsuperscript{\textit{a}}\\
+% \cs{thanks\marg{affiliation}} & Use
+%  \cs{affiliation\marg{affiliation}}\\
+% \bottomrule
+% \end{tabular}
+% \begin{flushleft}\footnotesize
+% \textsuperscript{\textit{a}}\cs{footnote} remains active in the \env{table} environment.
+% \end{flushleft}
+% \end{minipage}
+% \end{table}
+% \subsection*{List of package files}\label{sec:filelist}
+% \small
+% \noindent
+% \begin{longtable}{@{}p{.2\linewidth}@{\extracolsep}p{.75\linewidth}@{}}
+% File name & Version\\\midrule
+% \endhead
+% \multicolumn{2}{r@{}}{\itshape Continued on next page}
+% \endfoot
+% \bottomrule
+% \endlastfoot
+% beilstein.cls&    2010/08/16 v1.1 Template for submissions to the
+%``Beilstein Journal of Nanotechnology'' (BJNANO) \\
+% xkeyval.sty  &  2008/08/13 v2.6a package option processing (HA) \\
+% xkeyval.tex  &  2008/08/13 v2.6a key=value parser (HA) \\
+% ifthen.sty   & 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC) \\
+% article.cls  &  2007/10/19 v1.4h Standard LaTeX document class \\
+% size12.clo   & 2007/10/19 v1.4h Standard LaTeX file (size option) \\
+% babel.sty   & 2008/07/06 v3.8l The Babel package \\
+% bblopts.cfg &   2006/07/31 v1.0 MiKTeX 'babel' configuration \\
+% english.ldf  &  2005/03/30 v3.3o English support from the babel system \\
+% inputenc.sty  &  2008/03/30 v1.1d Input encoding file \\
+% fontenc.sty \\
+% t1enc.def&2005/09/27 v1.99g Standard LaTeX file \\
+% mathptmx.sty&2005/04/12 PSNFSS-v9.2a Times w/ Math, improved (SPQR, WaS) \\
+% helvet.sty&2005/04/12 PSNFSS-v9.2a (WaS) \\
+% courier.sty&2005/04/12 PSNFSS-v9.2a (WaS) \\
+% textcomp.sty&2005/09/27 v1.99g Standard LaTeX package \\
+% ts1enc.def&2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file \\
+% geometry.sty&2008/12/21 v4.2 Page Geometry \\
+% ifpdf.sty&2010/01/28 v2.1 Provides the ifpdf switch (HO) \\
+% ifvtex.sty&2008/11/04 v1.4 Switches for detecting VTeX and its modes (HO) \\
+% geometry.cfg \\
+% setspace.sty&2000/12/01 6.7 Contributed and Supported LaTeX2e package \\
+% ragged2e.sty&2009/05/21 v2.1 ragged2e Package (MS) \\
+% everysel.sty&2009/05/30 v1.1 EverySelectfont Package (MS) \\
+% footmisc.sty&2009/09/15 v5.5a a miscellany of footnote facilities \\
+% lineno.sty&2005/11/02 line numbers on paragraphs v4.41 \\
+% amsmath.sty&2000/07/18 v2.13 AMS math features \\
+% amstext.sty&2000/06/29 v2.01 \\
+% amsgen.sty&1999/11/30 v2.0 \\
+% amsbsy.sty&1999/11/29 v1.2d \\
+% amsopn.sty&1999/12/14 v2.01 operator names \\
+% amssymb.sty&2009/06/22 v3.00 \\
+% amsfonts.sty&2009/06/22 v3.00 Basic AMSFonts support \\
+% multicol.sty&2008/12/05 v1.6h multicolumn formatting (FMi) \\
+% float.sty&2001/11/08 v1.3d Float enhancements (AL) \\
+% flafter.sty&2000/07/23 v1.2i Standard LaTeX floats after reference (FMi) \\
+% graphicx.sty&1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR) \\
+% graphics.sty&2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR) \\
+% trig.sty&1999/03/16 v1.09 sin cos tan (DPC) \\
+% graphics.cfg&2007/01/18 v1.5 graphics configuration of teTeX/TeXLive \\
+% pdftex.def&2009/08/25 v0.04m Graphics/color for pdfTeX \\
+% array.sty&2008/09/09 v2.4c Tabular extension package (FMi) \\
+% tabularx.sty&1999/01/07 v2.07 `tabularx' package (DPC) \\
+% longtable.sty&2004/02/01 v4.11 Multi-page Table package (DPC) \\
+% cleveref.sty&2009/12/11 v0.15.3 Intelligent cross-referencing \\
+% natbib.sty&2009/11/07 8.31a (PWD, AO) \\
+% natbib.cfg \\
+% url.sty&2006/04/12 ver 3.3 Verb mode for urls, etc. \\
+% xspace.sty&2006/05/08 v1.12 Space after command names (DPC,MH) \\
+% ts1cmr.fd&1999/05/25 v2.5h Standard LaTeX font definitions \\
+% t1ptm.fd&2001/06/04 font definitions for T1/ptm. \\
+% supp-pdf.tex \\
+% t1phv.fd&2001/06/04 scalable font definitions for T1/phv. \\
+% ot1ztmcm.fd&2000/01/03 Fontinst v1.801 font definitions for OT1/ztmcm. \\
+% omlztmcm.fd&2000/01/03 Fontinst v1.801 font definitions for OML/ztmcm. \\
+% omsztmcm.fd&2000/01/03 Fontinst v1.801 font definitions for OMS/ztmcm. \\
+% omxztmcm.fd&2000/01/03 Fontinst v1.801 font definitions for OMX/ztmcm. \\
+% ot1ptm.fd&2001/06/04 font definitions for OT1/ptm.
+%\end{longtable}
+%
+% \normalsize
+% \StopEventually{\clearpage\PrintChanges\PrintIndex}
+% \section{Implementation}
+%
+%    \begin{macrocode}
+%<*class>
+%    \end{macrocode}
+%    \begin{macrocode}
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesClass{beilstein}
+[2017/08/21 v1.2 Template for submissions to the ``Beilstein Journal %
+   of Nanotechnology'' (BJNANO)]
+%    \end{macrocode}
+% For class options key-value pairs are used. They are provided by the
+% \pkg{xkeyval} package.
+%    \begin{macrocode}
+\RequirePackage{xkeyval}
+\RequirePackage{ifthen}
+%    \end{macrocode}
+% The articles can be written in British or American English.
+% Therefore the class offers different options which are passed to the
+% \pkg{babel} package.
+%    \begin{macrocode}
+\newif\iflangamerican
+\DeclareOptionX<beilstein>{american}{%
+   \langamericantrue%
+}%    
+\DeclareOptionX<beilstein>{british}{%
+   \langamericanfalse%
+}
+\DeclareOptionX<beilstein>{english}{%
+   \langamericanfalse%
+}
+%    \end{macrocode}
+% \changes{v1.2}{2017/08/16}{Modified options to match \pkg{xkeyval}}
+%    \begin{macrocode}
+\DeclareOptionX<beilstein>{latin1}{\def\beilstein at inputenc{latin1}}
+\DeclareOptionX<beilstein>{utf8}{\def\beilstein at inputenc{utf8}}
+\DeclareOptionX<beilstein>{applemac}{\def\beilstein at inputenc{applemac}}
+%    \end{macrocode}
+% Setup the defaults
+%    \begin{macrocode}
+\ExecuteOptionsX<beilstein>{american,latin1}
+%    \end{macrocode}
+% There are five types of documents which differ in their structure. To
+% check it the concrete manuscript type can be given with the type
+% option. The code is adapted from the \pkg{achemso} bundle.
+%    \begin{macrocode}
+\newcommand*\beilstein at manuscript{fullresearchpaper}
+\define at cmdkey{beilstein}[beilstein@]{manuscript}{}
+%    \end{macrocode}
+%    \begin{macrocode}
+\define at boolkey{beilstein}[beilstein@]{sectionnumbering}[true]{}
+%    \end{macrocode}
+%    \begin{macrocode}
+\define at boolkey{beilstein}[beilstein@]{fnpara}[true]{}
+%    \end{macrocode}
+%    \begin{macrocode}
+\ProcessOptionsX*<beilstein>
+\newcommand*\beilstein at manuscript@fullresearchpaper{fullresearchpaper}
+\newcommand*\beilstein at manuscript@commentary{commentary}
+\newcommand*\beilstein at manuscript@bookreport{bookreport}
+\newcommand*\beilstein at manuscript@review{review}
+\newcommand*\beilstein at manuscript@letter{%
+	letter}
+\newcommand*\beilstein at type@list{fullresearchpaper,commentary,%
+	bookreport,review,letter}
+\newcommand*\beilstein at type@default{fullresearchpaper}
+\newcommand*\beilstein at type@check{%
+  \@tempswafalse
+  \@for\@tempa:=\beilstein at type@list\do{%
+    \ifx\@tempa\beilstein at manuscript
+      \expandafter\@tempswatrue
+    \fi
+  }%
+  \if at tempswa\else
+    \ClassWarningNoLine{beilstein}{%
+      Invalid manuscript type \beilstein at manuscript:\MessageBreak
+      changed to default type \beilstein at type@default
+    }%
+    \let\beilstein at manuscript\beilstein at type@default
+  \fi
+}	
+%    \end{macrocode}
+% Set up the document class with corresponding options.
+%    \begin{macrocode}
+\LoadClass[12pt,a4paper,oneside,onecolumn,titlepage]{article}
+\iflangamerican
+   \RequirePackage[american]{babel}%
+   \ClassInfo{beilstein}{Language has been set to American English}%
+\else%
+   \RequirePackage[british]{babel}%
+   \ClassInfo{beilstein}{Language has been set to British English}%
+\fi%   
+\RequirePackage[\beilstein at inputenc]{inputenc}
+\ClassInfo{beilstein}{Input encoding has been set to \beilstein at inputenc}\RequirePackage{inputenc}
+\RequirePackage[T1]{fontenc}
+%    \end{macrocode}
+% Set up fonts. The document is typeset in Times, for sans serif and %
+% typewriter Helvetica and Courier will be used.
+%    \begin{macrocode}
+\RequirePackage{mathptmx}
+\RequirePackage[scaled=0.91]{helvet}
+\RequirePackage{courier}
+\RequirePackage{textcomp}
+%    \end{macrocode}
+% Set up the page geometry. All articles are typeset doublespaced and %
+% flushleft. The \pkg{ragged2e} package gives better results for ragged %
+% texts. \pkg{setspace} easily changes the line spreading.
+%    \begin{macrocode}
+\RequirePackage[%
+   textheight=23cm,%
+   textwidth=16.8cm,%
+   ignoreheadfoot]{geometry}
+\usepackage[doublespacing]{setspace}
+\pagestyle{plain}
+\RequirePackage[document,newcommands]{ragged2e}
+\setlength{\parindent}{0pt}
+%    \end{macrocode}
+% For the Referee's version line numbers are pretty useful. Some
+% modifications must be done to make \pkg{lineno} work with
+% \pkg{amsmath} (see e.g.\ \url{http://phaseportrait.blogspot.com/2007/
+% 08/lineno-and-amsmath-compatibility.html})
+% Additionally all equations' width can be limited. The environment
+% widetext allows equations of the whole text width.
+%    \begin{macrocode}
+\newcommand{\setdisplaywidth}{%
+   \ifthenelse{\boolean{widetext}}%
+      {\makeatletter%
+       \setlength{\mathindent}{0cm}%
+       \makeatother}%
+      {\makeatletter%
+       \setlength{\mathindent}{1.6cm}%
+       \makeatother}%
+}%
+\newboolean{widetext}
+\newenvironment{widetext}%
+   {\setboolean{widetext}{true}}%
+   {\setboolean{widetext}{false}}
+\RequirePackage[mathlines]{lineno}
+\linenumbers
+\newcommand*\patchAmsMathEnvironmentForLineno[1]{%
+  \expandafter\let\csname old#1\expandafter\endcsname\csname #1\endcsname
+  \expandafter\let\csname oldend#1\expandafter\endcsname\csname end#1\endcsname
+  \renewenvironment{#1}%
+     {\linenomath\setdisplaywidth\csname old#1\endcsname}%
+     {\csname oldend#1\endcsname\endlinenomath}}%
+\newcommand*\patchBothAmsMathEnvironmentsForLineno[1]{%
+  \patchAmsMathEnvironmentForLineno{#1}%
+  \patchAmsMathEnvironmentForLineno{#1*}}%
+\AtBeginDocument{%
+\patchBothAmsMathEnvironmentsForLineno{equation}%
+\patchBothAmsMathEnvironmentsForLineno{align}%
+\patchBothAmsMathEnvironmentsForLineno{flalign}%
+\patchBothAmsMathEnvironmentsForLineno{alignat}%
+\patchBothAmsMathEnvironmentsForLineno{gather}%
+\patchBothAmsMathEnvironmentsForLineno{multline}%
+}%
+%    \end{macrocode}
+% All sections are unnumbered. Therefore the counter ``secnumdepth'' %
+% is set to a value less than -1
+%    \begin{macrocode}
+\ifbeilstein at sectionnumbering%
+   \setcounter{secnumdepth}{3}
+   \ClassInfo{beilstein}{Section numbering turned on}
+\else%
+   \setcounter{secnumdepth}{-2}
+   \ClassInfo{beilstein}{Section numbering turned off}
+\fi%
+%    \end{macrocode}
+% The appearance of the section headings is changed a little bit
+%    \begin{macrocode}
+\renewcommand\Large{\fontsize{16pt}{22pt}\selectfont}
+\renewcommand\section{%
+	\@startsection{section}{1}{\z@}%
+	{-2ex}%
+	{1ex}%
+	{\normalfont\Large\bfseries}}
+\renewcommand\subsection{%
+	\@startsection{subsection}{2}{\z@}%
+  {-2ex}%
+  {1ex}%
+  {\normalfont\large\bfseries}}
+\renewcommand\subsubsection{%
+	\@startsection{subsubsection}{3}{\z@}%
+  {-2ex}%
+  {1ex}%
+  {\normalfont\normalsize\bfseries}}
+\renewcommand\paragraph{%
+   \ClassError{beilstein}{The sectioning command \string\paragraph\space
+   \MessageBreak is not supported by the beilstein class}{You can only use \string\section\space \string\subsection\space and \string\subsubsection}%
+   \@gobble}
+\renewcommand\subparagraph{
+   \ClassError{beilstein}{The sectioning command \string\paragraph\space
+   \MessageBreak is not supported by the beilstein class}{You can only use \string\section\space \string\subsection\space and \string\subsubsection}}
+%    \end{macrocode}
+% \DescribeMacro{\chem}\DescribeMacro{\unit}
+% \DescribeMacro{\IUPAC}
+% Load standard math packages and define special macros
+% \cs{chem} and \cs{unit}. Additionally macros for some special units
+% are defined.
+%    \begin{macrocode}
+\RequirePackage[intlimits,sumlimits,namelimits,fleqn]{amsmath}
+\setlength{\mathindent}{1.6cm}%
+\RequirePackage{amssymb}
+\DeclareFontFamily{U}{eur}{\skewchar\font'177}
+\DeclareFontShape{U}{eur}{m}{n}{%
+  <-6> eurm5 <6-8> eurm7 <8-> eurm10}{}
+\DeclareFontShape{U}{eur}{b}{n}{%
+  <-6> eurb5 <6-8> eurb7 <8-> eurb10}{}
+\DeclareSymbolFont{ugrf at m}{U}{eur}{m}{n}
+\SetSymbolFont{ugrf at m}{bold}{U}{eur}{b}{n}
+\let\uppi\@undefined
+\DeclareMathSymbol{\upalpha}{\mathord}{ugrf at m}{"0B}
+\DeclareMathSymbol{\upbeta}{\mathord}{ugrf at m}{"0C}
+\DeclareMathSymbol{\upgamma}{\mathord}{ugrf at m}{"0D}
+\DeclareMathSymbol{\updelta}{\mathord}{ugrf at m}{"0E}
+\DeclareMathSymbol{\upepsilon}{\mathord}{ugrf at m}{"0F}
+\DeclareMathSymbol{\upzeta}{\mathord}{ugrf at m}{"10}
+\DeclareMathSymbol{\upeta}{\mathord}{ugrf at m}{"11}
+\DeclareMathSymbol{\uptheta}{\mathord}{ugrf at m}{"12}
+\DeclareMathSymbol{\upiota}{\mathord}{ugrf at m}{"13}
+\DeclareMathSymbol{\upkappa}{\mathord}{ugrf at m}{"14}
+\DeclareMathSymbol{\uplambda}{\mathord}{ugrf at m}{"15}
+\DeclareMathSymbol{\upmu}{\mathord}{ugrf at m}{"16}
+\DeclareMathSymbol{\upnu}{\mathord}{ugrf at m}{"17}
+\DeclareMathSymbol{\upxi}{\mathord}{ugrf at m}{"18}
+\DeclareMathSymbol{\uppi}{\mathord}{ugrf at m}{"19}
+\DeclareMathSymbol{\uprho}{\mathord}{ugrf at m}{"1A}
+\DeclareMathSymbol{\upsigma}{\mathord}{ugrf at m}{"1B}
+\DeclareMathSymbol{\uptau}{\mathord}{ugrf at m}{"1C}
+\DeclareMathSymbol{\upupsilon}{\mathord}{ugrf at m}{"1D}
+\DeclareMathSymbol{\upphi}{\mathord}{ugrf at m}{"1E}
+\DeclareMathSymbol{\upchi}{\mathord}{ugrf at m}{"1F}
+\DeclareMathSymbol{\uppsi}{\mathord}{ugrf at m}{"20}
+\DeclareMathSymbol{\upomega}{\mathord}{ugrf at m}{"21}
+\DeclareMathSymbol{\upvarepsilon}{\mathord}{ugrf at m}{"22}
+\DeclareMathSymbol{\upvartheta}{\mathord}{ugrf at m}{"23}
+\DeclareMathSymbol{\upvarpi}{\mathord}{ugrf at m}{"24}
+\let\upvarrho\uprho
+\let\upvarsigma\upsigma
+\DeclareMathSymbol{\upvarphi}{\mathord}{ugrf at m}{"27}
+\DeclareMathSymbol{\Upgamma}{\mathord}{ugrf at m}{"00}
+\DeclareMathSymbol{\Updelta}{\mathord}{ugrf at m}{"01}
+\DeclareMathSymbol{\Uptheta}{\mathord}{ugrf at m}{"02}
+\DeclareMathSymbol{\Uplambda}{\mathord}{ugrf at m}{"03}
+\DeclareMathSymbol{\Upxi}{\mathord}{ugrf at m}{"04}
+\DeclareMathSymbol{\Uppi}{\mathord}{ugrf at m}{"05}
+\DeclareMathSymbol{\Upsigma}{\mathord}{ugrf at m}{"06}
+\DeclareMathSymbol{\Upupsilon}{\mathord}{ugrf at m}{"07}
+\DeclareMathSymbol{\Upphi}{\mathord}{ugrf at m}{"08}
+\DeclareMathSymbol{\Uppsi}{\mathord}{ugrf at m}{"09}
+\DeclareMathSymbol{\Upomega}{\mathord}{ugrf at m}{"0A}
+%    \end{macrocode}
+% Equations should usually not span over one column (8.2cm). Thus all
+% mathematical environments are patched.
+%    \begin{macrocode}
+\RequirePackage{multicol}
+\newcommand*\patchAmsMathEnvironmentForOnecolumn[1]{%
+  \expandafter\let\csname old#1\expandafter\endcsname\csname #1\endcsname
+  \expandafter\let\csname oldend#1\expandafter\endcsname\csname end#1\endcsname
+  \renewenvironment{#1}%
+     {\csname old#1\endcsname}%
+     {\csname oldend#1\endcsname}}%
+\newcommand*\patchBothAmsMathEnvironmentsForOnecolumn[1]{%
+  \patchAmsMathEnvironmentForOnecolumn{#1}%
+  \patchAmsMathEnvironmentForOnecolumn{#1*}}%
+%    \end{macrocode}
+%    \begin{macrocode}
+\def\testbx{bx}
+\AtBeginDocument{%
+   \@ifundefined{chem}{%
+      \DeclareRobustCommand*{\chem}[1]{\ensuremath{%
+         \ifx\testbx\f at series\mathbf{#1}\else\mathrm{#1}\fi}}}%
+      {}
+   \@ifundefined{unit}{%
+      \DeclareRobustCommand*{\unit}[1]{%
+         \ensuremath{\def\mu{\mbox{\textmu}}\def~{\,}%
+         \unskip~%
+         \ifx\testbx\f at series\mathbf{#1}\else\mathrm{#1}\fi}}}%
+      {}
+   \@ifundefined{degree}{%
+      \newcommand*{\degree}{\ensuremath{{}^{\circ}}}}%
+      {}
+   \@ifundefined{celsius}{%
+      \newcommand*{\celsius}{\degree\kern-\scriptspace C}}%
+      {}
+   \@ifundefined{angstrom}{%
+      \newcommand*{\angstrom}{\AA}}%
+      {}
+   \@ifundefined{permil}{%
+      \newcommand*{\permil}{\textperthousand}}%
+      {}
+   \@ifundefined{percent}{%
+      \newcommand*{\percent}{\%}}%
+      {}
+}%
+%    \end{macrocode}
+% If the \pkg{bpchem} has not been loaded we take some of its definitions 
+% and add them to the beginning of the document.
+%    \begin{macrocode}
+\AtBeginDocument{%
+   \@ifpackageloaded{bpchem}{}{%
+      \DeclareRobustCommand{\allowhyphens}{\penalty\@M \hskip\z at skip}
+      \DeclareRobustCommand{\BreakHyph}{\penalty\@M -\allowhyphens}
+      \DeclareRobustCommand{\MultiBreak}%
+         {\penalty\@M\discretionary{-}{}{\kern.03em}%
+          \allowhyphens}
+      \DeclareRobustCommand{\DoIUPAC}[1]{%
+         #1\endgroup}
+      \def\Prep{%
+         \let\-=\BreakHyph%
+         \let\|=\MultiBreak%
+         \DoIUPAC%
+      }
+      \DeclareRobustCommand*{\IUPAC}{%
+         \begingroup\ignorespaces%
+         \Prep}%
+      \expandafter\DeclareRobustCommand\expandafter\|\expandafter{\|}
+%    \end{macrocode}
+% \changes{v1.2}{201/08/21}{Removed definition for robust \cs{-} due to conflict with recent 
+% \LaTeX{} versions.}
+%    \begin{macrocode}
+   }%
+%    \end{macrocode}
+% Recent \LaTeX{} versions define \cs{-} as robust. \pkg{bpchem} up to v1.06 
+% does this as well, which results in a infinite loop. We therefore take the 
+% definition from the latest LaTeX version and use it in all cases.
+%    \begin{macrocode}
+   \DeclareRobustCommand{\-}{%
+      \discretionary{%
+         \char \ifnum\hyphenchar\font<\z@
+            \defaulthyphenchar
+         \else
+            \hyphenchar\font
+         \fi%
+      }{}{}%
+   }%
+}%
+%    \end{macrocode}
+%    \begin{macrocode}
+\newcommand{\fnpara}{\setboolean{beilstein at fnpara}{true}}
+\newcommand{\fnnormal}{\setboolean{beilstein at fnpara}{false}}
+\newskip\footglue
+\newcommand{\testfnpara}{
+   \ifbeilstein at fnpara%
+%    \end{macrocode}
+% From latex.ltx :
+%    \begin{macrocode}
+      \renewcommand\@mpfootnotetext[1]{%
+        \global\setbox\@mpfootins\vbox{%
+          \unvbox\@mpfootins
+          \reset at font\footnotesize
+          \hsize\columnwidth
+          \@parboxrestore
+          \protected at edef\@currentlabel
+               {\csname p at mpfootnote\endcsname\@thefnmark}%
+          \color at begingroup
+          \setbox0=\hbox{%
+            \@makefntext{%
+              \rule\z@\footnotesep\ignorespaces##1\@finalstrut\strutbox
+              \penalty -10
+              \hskip\footglue
+            }%
+          }%
+          \dp0=0pt \ht0=\fudgefactor\wd0 \box0
+          \color at endgroup}}
+      \footglue=1em plus.3em minus.3em
+%    \end{macrocode}
+% Cut down from article.cls :
+% From latex.ltx:
+%    \begin{macrocode}
+      \def\endminipage{%
+          \par
+          \unskip
+          \ifvoid\@mpfootins\else
+            \vskip\skip\@mpfootins
+            \normalcolor
+            \footnoterule
+            \mpmakefootnoteparagraph
+          \fi
+          \global\@minipagefalse %% added 24 May 89
+        \color at endgroup
+        \egroup
+        \expandafter\@iiiparbox\@mpargs{\unvbox\@tempboxa}}
+      \def\@makecol{%
+         \ifvoid\footins
+           \setbox\@outputbox\box\@cclv
+         \else
+           \setbox\@outputbox\vbox{%
+             \boxmaxdepth \@maxdepth
+             \unvbox \@cclv
+             \vskip \skip\footins
+             \color at begingroup
+               \normalcolor
+               \footnoterule
+               \makefootnoteparagraph
+             \color at endgroup
+             }%
+         \fi%
+         \xdef\@freelist{\@freelist\@midlist}%
+         \global\let\@midlist\@empty
+         \@combinefloats
+         \ifvbox\@kludgeins
+           \@makespecialcolbox
+         \else
+           \setbox\@outputbox\vbox to\@colht{%
+             \@texttop
+             \dimen@ \dp\@outputbox
+             \unvbox \@outputbox
+             \vskip -\dimen@
+             \@textbottom
+             }%
+         \fi%
+         \global\maxdepth\@maxdepth
+      }%
+      {\catcode`p=12 \catcode`t=12 \gdef\@ennumber##1pt {##1} }
+      {\footnotesize \newdimen\footnotebaselineskip
+        \global
+        \footnotebaselineskip=\normalbaselineskip}
+      \dimen0=\footnotebaselineskip \multiply\dimen0 by 1024
+      \divide \dimen0 by \columnwidth \multiply\dimen0 by 64
+      \xdef\fudgefactor{\expandafter0.2441}%%\@ennumber\the\dimen0 }
+      \def\makefootnoteparagraph{\unvbox\footins \makehboxofhboxes
+        \setbox0=\hbox{\unhbox0 \removehboxes}
+          \hsize\columnwidth
+          \@parboxrestore
+          \baselineskip=\footnotebaselineskip
+          \noindent
+        \rule{\z@}{\footnotesep}%
+        \unhbox0\par}
+      \def\mpmakefootnoteparagraph{\unvbox\@mpfootins \makehboxofhboxes
+        \setbox0=\hbox{\unhbox0 \removehboxes}
+          \hsize\columnwidth
+          \@parboxrestore
+          \baselineskip=\footnotebaselineskip
+          \noindent
+        \rule{\z@}{\footnotesep}%
+        \unhbox0\par}
+      \def\makehboxofhboxes{\setbox0=\hbox{}
+        \loop\setbox2=\lastbox \ifhbox2 \setbox0=\hbox{\box2\unhbox0}\repeat}
+      \def\removehboxes{\setbox0=\lastbox
+        \ifhbox0{\removehboxes}\unhbox0 \fi}%
+      \ClassInfo{beilstein}{Footnotes are set to paragraph mode.}
+   \fi%
+}%
+%    \end{macrocode}
+% \LaTeX\ already knows about tables and figures as floating objects. %
+% Additionally for Beilstein publications the new type ``scheme'' is %
+% defined with the \pkg{caption} package which is as well used to set %
+% the captions and positions of all floats correctly.
+% First of all load the package with options.
+% With the \pkg{float} package the position of the captions can be %
+% fixed independently of their position in the source.
+%    \begin{macrocode}
+\RequirePackage{float}
+\let\belowcaptionskip\abovecaptionskip
+\renewcommand\floatc at plain[2]{{\bfseries #1:} #2\par}
+\floatstyle{plaintop}
+\restylefloat{table}
+\floatstyle{plain}
+\restylefloat{figure}
+% Try to place figures and tables ``here'', i.e.\ after the current %
+% paragraph, first. The \pkg{flafter} package automatically places %
+% floats after the first reference.
+%    \begin{macrocode}
+\RequirePackage{flafter}
+\renewcommand*{\fps at figure}{htb}
+\renewcommand*{\fps at table}{htb}
+\def\FloatBarrier{\par\begingroup \let\@elt\relax
+ \edef\@tempa{\@botlist\@deferlist\@dbldeferlist}%
+ \ifx\@tempa\@empty%
+ \else
+    \ifx\@fltovf\relax % my indicator of recursion
+       \if at firstcolumn%
+         \clearpage
+       \else %
+         \null\newpage\FloatBarrier
+       \fi
+    \else%
+       \newpage \let\@fltovf\relax%
+       \FloatBarrier % recurse once only
+ \fi\fi \endgroup
+ \suppressfloats[t]}
+%    \end{macrocode}
+% Define a new type of float named ``scheme'' which is handled like %
+% table and figure.
+%    \begin{macrocode}
+\newfloat{scheme}{htb}{los}
+\floatname{scheme}{Scheme}
+%    \end{macrocode}
+% For graphics (PDF,PNG and JPG) the standard package \pkg{graphicx} %
+% is loaded.
+%    \begin{macrocode}
+\RequirePackage{graphicx}
+%    \end{macrocode}
+% For tables some more packages are needed.
+% Apart from the standard \pkg{array} package \pkg{tabularx} for
+% tables with columns of equal size is loaded.
+%    \begin{macrocode}
+\RequirePackage{array}
+\RequirePackage{tabularx}
+\RequirePackage{longtable}
+%    \end{macrocode}
+% For the authors' convenience special tabular environments for single
+% and double column tables and commands for figures and schemes are
+% defined.
+%    \begin{macrocode}
+\newenvironment{sglcoltabular}[1]{\begin{tabular*}{8.2cm}{#1}}%
+{\end{tabular*}}
+\newenvironment{dblcoltabular}[1]{\begin{tabular*}{16.8cm}{#1}}%
+{\end{tabular*}}
+\newenvironment{sglcoltabularx}[1]{\tabularx{8.2cm}{#1}}{\endtabularx}
+\newenvironment{dblcoltabularx}[1]{\tabularx{16.8cm}{#1}}{\endtabularx}
+\newcommand{\sglcolfigure}[1]%
+	{\includegraphics[width=8.2cm,keepaspectratio]{#1}}
+\newcommand{\dblcolfigure}[1]%
+	{\includegraphics[width=16.8cm,keepaspectratio]{#1}}
+\newcommand{\sglcolscheme}[1]%
+	{\includegraphics[width=8.2cm,keepaspectratio]{#1}}
+\newcommand{\dblcolscheme}[1]%
+	{\includegraphics[width=16.8cm,keepaspectratio]{#1}}
+%    \end{macrocode}
+% Referencing floats is one of LaTeXs advantages. The \pkg{cleveref} %
+% package extends those abilities even further.
+%    \begin{macrocode}
+\IfFileExists{cleveref.sty}{%
+  \RequirePackage{cleveref}[2009/12/11]
+}{\ClassInfo{beilstein}{Package ``cleveref'' was not found and %
+  \MessageBreak therefore has not been loaded.}}
+%    \end{macrocode}
+% The standard types just need a little adaption for the names.
+%    \begin{macrocode}
+\@ifpackageloaded{cleveref}{%
+	\crefname{figure}{Figure}{Figures}
+	\crefname{table}{Table}{Tables}
+%    \end{macrocode}
+% The new type ``scheme'' should be recognized as well.
+%    \begin{macrocode}
+	\crefname{scheme}{Scheme}{Schemes}
+	\crefformat{scheme}{Scheme~#2#1#3}
+	\Crefformat{scheme}{Scheme~#2#1#3}
+%    \end{macrocode}
+% The authors use extended information stored in extra files as well
+% and cross-reference to them. So those ones are also adapted.
+%    \begin{macrocode}
+	\crefname{suppinfo}{Supporting Information File}{Supporting
+Information Files}
+	\crefformat{suppinfo}{Supporting Information File~#2#1#3}
+	\Crefformat{suppinfo}{Supporting Information File~#2#1#3}
+}{\newcommand{\cref}[1]%
+   {\ClassError{beilstein}{Macro \string\cref\space has not been
+    defined\MessageBreak since the cleveref package could not be
+    loaded}{Please install the package cleveref first}
+   }%
+}%
+%    \end{macrocode}
+% The bibliography has a special format which is based on a kind of %
+% standard in chemistry. Together with a custom \BibTeX Style called %
+% ``bjnano'' the \pkg{natbib} package sets up the correct format.
+%    \begin{macrocode}
+\RequirePackage[sort&compress,numbers]{natbib}
+\renewcommand{\bibnumfmt}[1]{#1.\ }
+\bibliographystyle{bjnano}
+\def\NAT at spacechar{}%
+\def\NAT at citexnum[#1][#2]#3{%
+  \NAT at reset@parser
+  \NAT at sort@cites{#3}%
+  \NAT at reset@citea
+  \@cite{\def\NAT at num{-1}\let\NAT at last@yr\relax\let\NAT at nm\@empty
+    \@for\@citeb:=\NAT at cite@list\do
+    {\@safe at activestrue
+     \edef\@citeb{\expandafter\@firstofone\@citeb\@empty}%
+     \@safe at activesfalse
+     \@ifundefined{b@\@citeb\@extra at b@citeb}{%
+       {\reset at font\bfseries?}
+        \NAT at citeundefined\PackageWarning{natbib}%
+       {Citation `\@citeb' on page \thepage \space undefined}}%
+     {\let\NAT at last@num\NAT at num\let\NAT at last@nm\NAT at nm
+      \NAT at parse{\@citeb}%
+      \ifNAT at longnames\@ifundefined{bv@\@citeb\@extra at b@citeb}{%
+        \let\NAT at name=\NAT at all@names
+        \global\@namedef{bv@\@citeb\@extra at b@citeb}{}}{}%
+      \fi
+      \ifNAT at full\let\NAT at nm\NAT at all@names\else
+        \let\NAT at nm\NAT at name\fi
+      \ifNAT at swa
+       \@ifnum{\NAT at ctype>\@ne}{%
+        \@citea
+        \NAT at hyper@{\@ifnum{\NAT at ctype=\tw@}{\NAT at test{\NAT at ctype}}{\NAT at alias}}%
+       }{%
+        \@ifnum{\NAT at cmprs>\z@}{%
+         \NAT at ifcat@num\NAT at num
+          {\let\NAT at nm=\NAT at num}%
+          {\def\NAT at nm{-2}}%
+         \NAT at ifcat@num\NAT at last@num
+          {\@tempcnta=\NAT at last@num\relax}%
+          {\@tempcnta\m at ne}%
+         \@ifnum{\NAT at nm=\@tempcnta}{%
+          \@ifnum{\NAT at merge>\@ne}{}{\NAT at last@yr at mbox}%
+         }{%
+           \advance\@tempcnta by\@ne
+           \@ifnum{\NAT at nm=\@tempcnta}{%
+             \ifx\NAT at last@yr\relax
+               \def at NAT@last at yr{\@citea}%
+             \else
+               \def at NAT@last at yr{-\NAT at penalty}%
+             \fi
+           }{%
+             \NAT at last@yr at mbox
+           }%
+         }%
+        }{%
+         \@tempswatrue
+         \@ifnum{\NAT at merge>\@ne}{\@ifnum{\NAT at last@num=\NAT at num\relax}{\@tempswafalse}{}}{}%
+         \if at tempswa\NAT at citea@mbox\fi
+        }%
+       }%
+       \NAT at def@citea
+      \else
+        \ifcase\NAT at ctype
+          \ifx\NAT at last@nm\NAT at nm \NAT at yrsep\NAT at penalty\NAT at space\else
+            \@citea \NAT at test{\@ne}\NAT at spacechar\NAT at mbox{\NAT at super@kern\NAT@@open}%
+          \fi
+          \if*#1*\else#1\NAT at spacechar\fi
+          \NAT at mbox{\NAT at hyper@{{\citenumfont{\NAT at num}}}}%
+          \NAT at def@citea at box
+        \or
+          \NAT at hyper@citea at space{\NAT at test{\NAT at ctype}}%
+        \or
+          \NAT at hyper@citea at space{\NAT at test{\NAT at ctype}}%
+        \or
+          \NAT at hyper@citea at space\NAT at alias
+        \fi
+      \fi
+     }%
+    }%
+      \@ifnum{\NAT at cmprs>\z@}{\NAT at last@yr}{}%
+      \ifNAT at swa\else
+        \@ifnum{\NAT at ctype=\z@}{%
+          \if*#2*\else\NAT at cmt#2\fi
+        }{}%
+        \NAT at mbox{\NAT@@close}%
+      \fi
+  }{#1}{#2}%
+}%
+%    \end{macrocode}
+%    \begin{macrocode}
+\newboolean{nobreakdashused}
+\newcommand{\mynobreakdash}{%
+   \ifthenelse{\boolean{nobreakdashused}}
+      {}
+      {\nobreakdash--%
+       \setboolean{nobreakdashused}{true}%
+      }}%
+%    \end{macrocode}
+% Load the \pkg{url} package to get enhanced support for Links and set %
+% the font to the same as the main text
+%    \begin{macrocode}
+\RequirePackage{url}
+\urlstyle{same}
+%    \end{macrocode}
+% For cites in floats special care has to be taken, as those citations %
+% have to be listed after all others. %
+% TODO: If a reference is cited elsewhere in the main text, the number
+% is not correctly set yet.
+%    \begin{macrocode}
+\newcounter{c at totalcites}
+\newcounter{c at floatcites}
+\AtBeginDocument{\setcounter{c at floatcites}{\value{c at totalcites}}}
+\def\floatcites{}
+\let\ORIG at bibliography\bibliography
+\renewcommand\bibliography{%
+   \FloatBarrier%
+   \@ifundefined{NAT at num}{\gdef\NAT at num{0}}{}%
+   \ifx\NAT at num\@empty\gdef\NAT at num{0}\fi%
+	\immediate\write\@auxout{%
+        \string\setcounter{\string c at totalcites}{\NAT at num}}%
+	\floatcites%
+	\setlength{\bibsep}{0pt}%
+	\ORIG at bibliography}
+\renewenvironment{thebibliography}[1]
+     {\section*{\refname}%
+      \@mkboth{\MakeUppercase\refname}{\MakeUppercase\refname}%
+      \list{\@biblabel{\@arabic\c at enumiv}}%
+           {\settowidth\labelwidth{\@biblabel{#1}}%
+            \leftmargin\labelwidth
+            \advance\leftmargin\labelsep
+            \@openbib at code
+            \usecounter{enumiv}%
+            \let\p at enumiv\@empty
+            \renewcommand\theenumiv{\@arabic\c at enumiv}}%
+      \sloppy
+      \clubpenalty10000
+      \@clubpenalty \clubpenalty
+      \widowpenalty10000%
+      \sfcode`\.\@m}
+     {\def\@noitemerr
+       {\@latex at warning{Empty `thebibliography' environment}}%
+      \endlist}
+%    \end{macrocode}
+% The title page needs some special care. The author should have an
+% easy interface. Most of the work is then done internally. Basically
+% speaking all information are stored in a temp variable and printed
+% later, because the punctuation differs.
+% First some commands and counters are set up.
+%    \begin{macrocode}
+\DeclareRobustCommand\authors{}
+\def\authorsep{}
+\DeclareRobustCommand\temp at author{}
+\DeclareRobustCommand\temp at superscripts{}
+\def\emails{}
+\def\emailsep{}
+\newcommand{\oneORnone}{1}
+\newcommand{\firstoptarg}{}
+\newcommand{\temp at firstoptarg}{}
+\newcounter{c at author}
+\newcounter{c at totauthor}
+\newcounter{c at totalauthors}
+\newboolean{corauth}
+\setboolean{corauth}{false}
+\newboolean{extraaffil}
+\setboolean{extraaffil}{false}
+%    \end{macrocode}
+% There are different ``author'' commands. So a distinction has to be made
+%    \begin{macrocode}
+\def\author{\@ifstar{\@ifnextchar[{\@@corauth}{\@corauth}}%
+{\@ifnextchar[{\@@author}{\@author}}}
+%    \end{macrocode}
+% \DescribeMacro{\author}
+% \cs{author} increments the internal counter and saves the author's
+% name together with an superscript indicating the author's address.
+% The saved one from the call before is printed.
+%    \begin{macrocode}
+\def\@author#1{%
+   \stepcounter{c at totalauthors}%
+   \g at addto@macro\authors{%
+    \ifnum\value{c at totauthor}>1%
+     \unskip,\space%
+    \fi%
+    \temp at author\unskip\temp at superscripts\unskip%
+    \stepcounter{c at totauthor}%
+    \stepcounter{c at author}%
+    \renewcommand{\temp at author}{%
+      \upshape#1\unskip}%
+   \renewcommand{\temp at superscripts}{\empty}%
+   \setboolean{extraaffil}{false}%
+   }%
+}%
+%    \end{macrocode}
+% When having two or more authors with the same address one can easily
+% use an optional argument to give the corresponding number.
+%    \begin{macrocode}
+\def\@@author[#1]{%
+   \stepcounter{c at totalauthors}%
+   \g at addto@macro\authors{\renewcommand\temp at firstoptarg{#1}}%
+   \@ifnextchar[{\@@@author}{\@@@@author}
+}%
+\def\@@@@author#1{%
+    \stepcounter{c at totalauthors}%
+    \g at addto@macro\authors{%
+    \ifnum\value{c at totauthor}>1%
+     \unskip,\space%
+    \fi%
+    \temp at author\unskip\temp at superscripts\unskip%
+    \stepcounter{c at totauthor}%
+    \let\firstoptarg\temp at firstoptarg
+    \renewcommand{\temp at author}{%
+        \ifthenelse{\equal{\firstoptarg}{1}}%
+            {\upshape#1\unskip\textsuperscript{%
+                \oneORnone}}%
+            {\upshape#1\unskip\textsuperscript{%
+                \firstoptarg}}\unskip%
+    }%
+    \renewcommand{\temp at superscripts}{\empty}%
+    \setboolean{extraaffil}{true}
+   }}%
+\def\@@@author[#1]#2{%
+   \stepcounter{c at totalauthors}%
+    \g at addto@macro\authors{%
+    \ifnum\value{c at totauthor}>1%
+     \unskip,\space%
+    \fi%
+    \temp at author\unskip\temp at superscripts\unskip%
+    \stepcounter{c at totauthor}%
+    \let\firstoptarg\temp at firstoptarg
+    \renewcommand{\temp at author}{%
+        \ifthenelse{\equal{\firstoptarg}{1}}%
+            {\upshape#2\unskip\textsuperscript{%
+                \oneORnone}}%
+            {\ifthenelse{\equal{\firstoptarg}{}}%
+               {\upshape#2\unskip}%
+               {\upshape#2\unskip\textsuperscript{%
+                \firstoptarg}}\unskip}%
+    }%
+    \renewcommand{\temp at superscripts}{\empty}%
+    \ifthenelse{\equal{\firstoptarg}{}}%
+      {\setboolean{extraaffil}{false}}%
+      {\setboolean{extraaffil}{true}}%
+    \g at addto@macro\emails{\normalsize%
+   \emailsep#2 - #1%
+   \def\emailsep{;\space}}
+   }%
+}%
+%    \end{macrocode}
+% Each article must have at least one corresponding author. He is
+% given with \cs{author*} which has a second mandatory argument
+% holding the author's email address
+%    \begin{macrocode}
+\def\@corauth#1#2{%
+   \setboolean{corauth}{true}%
+   \stepcounter{c at totalauthors}%
+   \g at addto@macro\authors{\normalsize%
+    \ifnum\value{c at totauthor}>1%
+     \unskip,\space%
+    \fi%
+    \temp at author\unskip%
+    \temp at superscripts\unskip%
+    \stepcounter{c at totauthor}%
+    \stepcounter{c at author}%
+    \renewcommand{\temp at author}{%
+     \upshape#1\unskip\textsuperscript{%
+            $\ast$}\unskip%
+        }%
+        \renewcommand{\temp at superscripts}{\empty}%
+        \setboolean{extraaffil}{false}%
+   }%
+\g at addto@macro\emails{\normalsize%
+\emailsep#1 - #2%
+\def\emailsep{;\space}}
+}%
+%    \end{macrocode}
+% As with ``normal'' authors corresponding authors can have the same %
+% affiliation. So a command \cs{author*} with optional argument can be %
+% used.
+%    \begin{macrocode}
+\def\@@corauth[#1]#2#3{
+    \setboolean{corauth}{true}%
+    \stepcounter{c at totalauthors}
+    \g at addto@macro\authors{\normalsize%
+    \ifnum\value{c at totauthor}>1%
+     \unskip,\space%
+    \fi%
+    \temp at author\unskip\temp at superscripts\unskip%
+    \stepcounter{c at totauthor}%
+    \renewcommand{\temp at author}{%
+      \ifthenelse{\equal{#1}{1}}%
+        {\upshape#2\unskip\textsuperscript{%
+            $\ast$\oneORnone}}%
+        {\upshape#2\unskip\textsuperscript{%
+            $\ast$#1}}%
+    }%
+    \renewcommand{\temp at superscripts}{\empty}%
+    \setboolean{extraaffil}{true}%
+}%
+\g at addto@macro\emails{\normalsize%
+   \emailsep#2 - #3%
+   \def\emailsep{;\space}}%
+}%
+%    \end{macrocode}
+% For the affiliations the same has to be done basically since the
+% separation between two entries differs as well. First some commands
+% are set up. We remember the affiliations first and add them in a
+% second step when knowing if there are other affiliations following.
+%    \begin{macrocode}
+\def\affiliations{}
+\newcounter{c at affiliation}
+\newcounter{c at totaffiliation}
+\newcounter{c at superscripts}
+\newcommand\temp at affil{\par\vskip2ex Address:\space}
+\newcommand\affiliation[2][]{
+   \stepcounter{c at totaffiliation}
+   \ifthenelse{\value{c at totaffiliation}>1}%
+      {\renewcommand{\oneORnone}{1}}{}%
+   \g at addto@macro\authors{%
+      \ifthenelse{\equal{\temp at superscripts}{\empty}\AND\NOT\boolean{extraaffil}}{%
+         \stepcounter{c at superscripts}%
+         \renewcommand{\temp at superscripts}{\unskip%
+            %\ifthenelse{\value{c at totaffiliation}>1}{}{}%
+               {\textsuperscript{\arabic{c at superscripts}}\unskip}%
+               %{\textsuperscript{\oneORnone}\unskip}%
+         }
+      }{\g at addto@macro\temp at superscripts{%
+         \protect\stepcounter{c at superscripts}%
+         \unskip\textsuperscript{,\,\arabic{c at superscripts}}\unskip}%
+      }%
+   }%
+   \g at addto@macro\affiliations{%
+    \ifnum\value{c at affiliation}>1%
+     \unskip;\space%
+    \fi%
+    \temp at affil%
+    \stepcounter{c at affiliation}%
+    \renewcommand{\temp at affil}%
+         {\ifthenelse{\value{c at affiliation}=1}%
+            {\ifthenelse{\value{c at totauthor}=1}%
+               {#2}%
+               {\textsuperscript{\oneORnone}#2}}%
+            {\ifthenelse{\value{c at totauthor}=1}%
+               {#2}%
+               {\textsuperscript{\arabic{c at affiliation}}#2}}%
+         }%
+   }%
+}%
+%    \end{macrocode}
+% The usual \cs{maketitle} command puts together all information and
+% prints the title page.
+%    \begin{macrocode}
+\long\def\maketitle{%
+    {\Large\bfseries\@title}\par\vskip2ex
+    \normalsize
+    \authors%
+    \ifthenelse{\value{c at totauthor}>1}%
+      {\unskip\space and\space\temp at author\temp at superscripts}%
+      {\ifthenelse{\boolean{corauth}}%
+         {\temp at author}%
+         {\temp at author\textsuperscript{$\ast$}}}%
+    \par\vskip2ex%
+    \ifthenelse{\boolean{corauth}}{}%
+      {\ifthenelse{\value{c at totauthor}>1}%
+         {\ClassError{beilstein}{At least one corresponding author has to be given.\MessageBreak Please use \string\author*\space for that}%
+         {Please use at least one \string\author* command to set information %
+         about the corresponding author.\MessageBreak Have a look at the %
+         documentation for more details}}%
+         {\ifthenelse{\equal{\emails}{}}%
+            {\ClassError{beilstein}{The author has been made corresponding author.\MessageBreak Therefore please provide an email address for the author}%
+            {Use the second optional argument for that or use \string\author* instead}}{}}}
+    \ifthenelse{\value{c at totaffiliation}>1}%
+     {\affiliations\unskip\space and\space\temp at affil}%
+     {\affiliations\temp at affil}%
+    \par\vskip3ex
+    \normalsize Email:\space\emails\par\vskip2ex
+    \textsuperscript{$\ast$}\space{\small Corresponding author}%
+    \par\vskip3ex
+}%
+%    \end{macrocode}
+% For the \env{abstract} the three necessary items have their own command.
+%    \begin{macrocode}
+\beilstein at type@check
+\ifthenelse{\not\equal{\beilstein at manuscript}{\beilstein at manuscript@bookreport}}%
+{\renewenvironment{abstract}{\textbf{\large\abstractname}\\[2ex]}{\\[2ex]}%
+\newcommand*{\background}{\textbf{Background:\ }}
+\newcommand*{\results}{\\\textbf{Results:\ }}
+\newcommand*{\conclusion}{\\\textbf{Conclusion:\ }}}%
+{\renewenvironment{abstract}{\ClassWarning{beilstein}{An abstract %
+should not be part of the chosen document type \beilstein at manuscript}}{}%
+\newcommand*{\background}{\relax}%
+\newcommand*{\results}{\relax}%
+\newcommand*{\conclusion}{\relax}}%
+%    \end{macrocode}
+% Last, but not least the keywords can be given with a command to get
+% the correct format.
+% \DescribeMacro{keywords}
+%    \begin{macrocode}
+\ifthenelse{\not\equal{\beilstein at manuscript}{\beilstein at manuscript@commentary}%
+\and\not\equal{\beilstein at manuscript}{\beilstein at manuscript@bookreport}}%
+{\newcommand{\keywords}[1]{\textbf{\large Keywords}\\*#1}}%
+{\newcommand{\keywords}[1]{\ClassWarning{beilstein}{Keywords should not be part of the chosen document type \beilstein at manuscript}}}
+%    \end{macrocode}
+% Acknowledgments should be made inside the special environment.
+% \DescribeEnv{acknowledgements}
+%    \begin{macrocode}
+\newenvironment{acknowledgements}{\par\textbf{\large Acknowledgements\\*}}{}
+%    \end{macrocode}
+% Supporting Information are a special section at the end the main
+% document, so they get an own environment as well
+% \DescribeEnv{suppinfo}
+%    \begin{macrocode}
+\newenvironment{suppinfo}%
+   {\FloatBarrier%
+    \par\vskip2ex%
+    \textbf{\large Supporting Information\\*}}{}
+%    \end{macrocode}
+% \DescribeMacro{sifile}
+% Each supporting information file is added with \cs{sifile}. The
+% optional argument holds a detailed description.
+%    \begin{macrocode}
+\newcounter{suppinfo}
+\newcommand{\sifile}[4][]{%
+   \par
+	\refstepcounter{suppinfo}%
+	Supporting Information File \arabic{suppinfo}:\\*
+	File Name: \url{#2}\\
+	File Format: #3\\
+	Title: #4\\
+	\ifthenelse{\equal{#1}{}}{}{Description: #1}\vspace{1ex}}
+%    \end{macrocode}
+% \DescribeMacro{\CN}
+% Compounds are typeset in boldface. The \cs{CN} command is a shortcut.
+%    \begin{macrocode}
+\newcommand*{\CN}[1]{\textbf{#1}}
+%    \end{macrocode}
+% Some standard \LaTeX commands can not be used in documents of the
+% Beilstein-Institut. They have to be deactivated in order to avoid
+% trouble in the final layout process.
+% Footnotes are only allowed in tables, so a special mechanism is
+% implemented to achieve this.
+%    \begin{macrocode}
+\renewcommand\@makefntext[1]%
+    {\noindent\makebox[.5em][l]{\@makefnmark\,}#1}
+\renewcommand{\footnoterule}{}
+\let\ORIGfootnote\footnote
+\newcommand{\errorfootnote}[2]{\ClassError{beilstein}{Footnotes are not
+allowed throughout the document}%
+{Avoid footnotes and give those information in the main text}}
+\let\footnote\errorfootnote
+\renewenvironment{table}%
+   {\@nameuse{fst at table}%
+    \@float at setevery{table}\@float{table}
+    \testfnpara%
+    \begin{minipage}{\linewidth}%
+    \renewcommand\footnote[2][]{\protect\ORIGfootnote{##2}}}
+   {\end{minipage}%
+    \float at end%
+    \gdef\footnote{\errorfootnote\@gobble}}
+\let\ORIGlongtable\longtable
+\let\ORIGendlongtable\endlongtable
+\newcommand{\longtablefootnote}{}
+\newcounter{myfootnote}
+\newboolean{firstfootnote}
+\renewcommand\longtable{%
+   \renewcommand{\longtablefootnote}{}
+   \setcounter{footnote}{0}
+   \setcounter{myfootnote}{0}
+   \setboolean{firstfootnote}{true}
+   \renewcommand\thefootnote{\alph{footnote}}
+   \renewcommand\themyfootnote{\alph{myfootnote}}
+   \renewcommand\footnote[2][]{%
+      \footnotemark%
+      \g at addto@macro{\longtablefootnote}{%
+         \stepcounter{myfootnote}
+         \ifthenelse{\boolean{firstfootnote}}%
+            {\setboolean{firstfootnote}{false}}%
+            {\ifbeilstein at fnpara
+               \quad
+             \else
+               \newline
+             \fi
+            }%
+         \textsuperscript{\scriptsize\themyfootnote}%
+         \footnotesize ##2\normalsize}}%
+   \ORIGlongtable}
+\renewcommand\endlongtable{%
+   \ORIGendlongtable%
+   \longtablefootnote
+   \gdef\footnote{\errorfootnote\@gobble}}
+\renewcommand{\thanks}[1]{\ClassError{beilstein}{\string\thanks\space %
+   has been deactivated.\MessageBreak %
+   Please use the commands of the beilstein class instead}%
+   {The class defines commands to set the titlepage\MessageBreak %
+   properly. Have a look at the documentation for more details}}
+\renewcommand{\and}{\ClassError{beilstein}{\string\and\space has been deactivated.\MessageBreak %
+   Please use the commands of the beilstein class instead}{The class %
+   defines commands to set the titlepage\MessageBreak properly. Have a %
+   look at the documentation for more details}}
+%    \end{macrocode}
+% To get a correct line numbering around floats, the environments have
+% to be modified
+%    \begin{macrocode}
+\let\ORIGfigure\figure
+\let\ORIGscheme\scheme
+\let\ORIGtable\table
+\renewcommand{\figure}{\par\ORIGfigure\par}
+\renewcommand{\scheme}{\par\ORIGscheme\par}
+\renewcommand{\table}{\par\ORIGtable\par}
+%    \end{macrocode}
+% Some parameters are set to give a nicer output and less
+% ``overfull boxes''
+%    \begin{macrocode}
+\reversemarginpar
+\tolerance 1414
+\hbadness 1414
+\emergencystretch 1.5em
+\hfuzz 0.3pt
+\clubpenalty=5000
+\widowpenalty=10000
+\vfuzz \hfuzz
+%    \end{macrocode}
+%    \begin{macrocode}
+%</class>
+%    \end{macrocode}
+%
+% \Finale
+%
+% \iffalse
+%<*bst>
+%% bjnano.bst is based on achemso.bst which is part of the achemso
+%% bundle. Some code cleaning and modifications were done and new
+%% entry types and fields introduced.
+ENTRY
+  { address
+    author
+    booktitle
+    chapter
+    ctrl-use-title
+    ctrl-etal-number
+    doi
+    edition
+    editor
+    howpublished
+    institution
+    journal
+    key
+    note
+    number
+    organization
+    pages
+    publisher
+    school
+    series
+    title
+    type
+    url
+    urldate
+    venue
+    version
+    volume
+    year
+  }
+  {}
+  { label
+    extra.label
+    short.list
+  }
+
+INTEGERS { output.state before.all mid.sentence after.sentence }
+INTEGERS { after.block after.item author.or.editor }
+INTEGERS { separate.by.semicolon }
+INTEGERS { is.use.title etal.number }
+
+FUNCTION {init.state.consts}
+{ #0 'before.all :=
+  #1 'mid.sentence :=
+  #2 'after.sentence :=
+  #3 'after.block :=
+  #4 'after.item :=
+}
+
+%% #0 turns off the display of the title for articles
+%% #1 enables
+FUNCTION {default.is.use.title} { #0 }
+
+%% The number of names that force "et al." to be used
+FUNCTION {default.etal.number} { #100 }
+
+FUNCTION {add.comma}
+{ ", " * }
+
+FUNCTION {add.semicolon}
+{ "; " * }
+
+FUNCTION {add.comma.or.semicolon}
+{ #1 separate.by.semicolon =
+    'add.semicolon
+    'add.comma
+  if$
+}
+
+FUNCTION {add.colon}
+{ ": " * }
+
+STRINGS { s t }
+
+FUNCTION {output.nonnull}
+{ 's :=
+  output.state mid.sentence =
+    { add.comma write$ }
+    { output.state after.block =
+      { add.semicolon write$
+        newline$
+        "\newblock " write$
+      }
+      { output.state before.all =
+          'write$
+          { output.state after.item =
+            { " " * write$ }
+            { add.period$ " " * write$ }
+          if$
+          }
+        if$
+        }
+      if$
+      mid.sentence 'output.state :=
+    }
+  if$
+  s
+}
+
+FUNCTION {output}
+{ duplicate$ empty$
+    'pop$
+    'output.nonnull
+  if$
+}
+
+FUNCTION {output.check}
+{ 't :=
+  duplicate$ empty$
+    { pop$ "Empty " t * " in " * cite$ * warning$ }
+    'output.nonnull
+  if$
+}
+
+FUNCTION {new.block}
+{ output.state before.all =
+    'skip$
+    { after.block 'output.state := }
+  if$
+}
+
+FUNCTION {new.sentence}
+{ output.state after.block =
+    'skip$
+    { output.state before.all =
+        'skip$
+        { after.sentence 'output.state := }
+      if$
+    }
+  if$
+}
+
+
+FUNCTION {fin.entry}
+{ add.period$
+  write$
+""
+  newline$
+  note missing$
+  'skip$
+  {" " write$ note write$ }
+  if$
+  write$ newline$
+}
+
+FUNCTION {not}
+{   { #0 }
+    { #1 }
+  if$
+}
+
+FUNCTION {and}
+{   'skip$
+    { pop$ #0 }
+  if$
+}
+
+FUNCTION {or}
+{   { pop$ #1 }
+    'skip$
+  if$
+}
+
+FUNCTION {field.or.null}
+{ duplicate$ empty$
+    { pop$ "" }
+    'skip$
+  if$
+}
+
+FUNCTION {emphasize}
+{ duplicate$ empty$
+    { pop$ "" }
+    { "\emph{" swap$ * "}" * }
+  if$
+}
+
+FUNCTION {boldface}
+{ duplicate$ empty$
+    { pop$ "" }
+    { "\textbf{" swap$ * "}" * }
+  if$
+}
+
+FUNCTION {paren}
+{ duplicate$ empty$
+    { pop$ "" }
+    { "(" swap$ * ")" * }
+  if$
+}
+
+FUNCTION {bbl.and}
+{ "and" }
+
+FUNCTION {bbl.chapter}
+{ "Chapter" }
+
+FUNCTION {bbl.editor}
+{ "Ed." }
+
+FUNCTION {bbl.editors}
+{ "Eds." }
+
+FUNCTION {bbl.edition}
+{ "ed." }
+
+FUNCTION {bbl.etal}
+{ "et~al." }
+
+FUNCTION {bbl.in}
+{ "In" }
+
+FUNCTION {bbl.inpress}
+{ "in press" }
+
+FUNCTION {bbl.page}
+{ "p" }
+
+FUNCTION {bbl.pages}
+{ "pp" }
+
+FUNCTION {bbl.phd}
+{ "Ph.\,D.\ Thesis" }
+
+FUNCTION {bbl.submitted}
+{ "submitted for publication" }
+
+FUNCTION {bbl.volume}
+{ "Vol." }
+
+FUNCTION {bbl.first}
+{ "1st" }
+
+FUNCTION {bbl.second}
+{ "2nd" }
+
+FUNCTION {bbl.third}
+{ "3rd" }
+
+FUNCTION {bbl.fourth}
+{ "4th" }
+
+FUNCTION {bbl.fifth}
+{ "5th" }
+
+FUNCTION {bbl.st}
+{ "st" }
+
+FUNCTION {bbl.nd}
+{ "nd" }
+
+FUNCTION {bbl.rd}
+{ "rd" }
+
+FUNCTION {bbl.th}
+{ "th" }
+
+FUNCTION {eng.ord}
+{ duplicate$ "1" swap$ *
+  #-2 #1 substring$ "1" =
+     { bbl.th * }
+     { duplicate$ #-1 #1 substring$
+       duplicate$ "1" =
+         { pop$ bbl.st * }
+         { duplicate$ "2" =
+             { pop$ bbl.nd * }
+             { "3" =
+                 { bbl.rd * }
+                 { bbl.th * }
+               if$
+             }
+           if$
+          }
+       if$
+     }
+   if$
+}
+
+FUNCTION {is.a.digit}
+{ duplicate$ "" =
+    {pop$ #0}
+    {chr.to.int$ #48 - duplicate$
+     #0 < swap$ #9 > or not}
+  if$
+}
+
+FUNCTION {is.a.number}
+{
+  { duplicate$ #1 #1 substring$ is.a.digit }
+    {#2 global.max$ substring$}
+  while$
+  "" =
+}
+
+FUNCTION {extract.num}
+{ duplicate$ 't :=
+  "" 's :=
+  { t empty$ not }
+  { t #1 #1 substring$
+    t #2 global.max$ substring$ 't :=
+    duplicate$ is.a.number
+      { s swap$ * 's := }
+      { pop$ "" 't := }
+    if$
+  }
+  while$
+  s empty$
+    'skip$
+    { pop$ s }
+  if$
+}
+
+FUNCTION {chr.to.value}
+{ chr.to.int$ #48 -
+  duplicate$ duplicate$
+  #0 < swap$ #9 > or
+    { #48 + int.to.chr$
+      " is not a number..." *
+      warning$
+     pop$ #0
+    }
+    {}
+  if$
+}
+
+%% Some tricks from "Tame the BeaST" to convert a string
+%% to a number
+INTEGERS { a b }
+
+FUNCTION {mult}
+{ 'a :=
+  'b :=
+  b #0 <
+    {#-1 #0 b - 'b :=}
+    {#1}
+  if$
+  #0
+  {b #0 >}
+    { a +
+      b #1 - 'b :=
+    }
+  while$
+  swap$
+    'skip$
+    {#0 swap$ -}
+    if$
+}
+
+FUNCTION {str.to.int.aux}
+{ {duplicate$ empty$ not}
+    { swap$ #10 mult 'a :=
+      duplicate$ #1 #1 substring$
+      chr.to.value a +
+      swap$
+     #2 global.max$ substring$
+    }
+  while$
+  pop$
+}
+
+FUNCTION {str.to.int}
+{ duplicate$ #1 #1 substring$ "-" =
+    {#1 swap$ #2 global.max$ substring$}
+    {#0 swap$}
+  if$
+  #0 swap$ str.to.int.aux
+  swap$
+    {#0 swap$ -}
+    {}
+  if$
+}
+
+FUNCTION {bibinfo.check}
+{ swap$
+  duplicate$ missing$
+    { pop$ pop$
+      ""
+    }
+    { duplicate$ empty$
+        {
+          swap$ pop$
+        }
+        { swap$
+          pop$
+        }
+      if$
+    }
+  if$
+}
+
+FUNCTION {convert.edition}
+{ extract.num "l" change.case$ 's :=
+  s "first" = s "1" = or
+    { bbl.first 't := }
+    { s "second" = s "2" = or
+        { bbl.second 't := }
+        { s "third" = s "3" = or
+            { bbl.third 't := }
+            { s "fourth" = s "4" = or
+                { bbl.fourth 't := }
+                { s "fifth" = s "5" = or
+                    { bbl.fifth 't := }
+                    { s #1 #1 substring$ is.a.number
+                        { s eng.ord 't := }
+                        { edition 't := }
+                      if$
+                    }
+                  if$
+                }
+              if$
+            }
+          if$
+        }
+      if$
+    }
+  if$
+  t
+}
+
+FUNCTION {tie.or.space.connect}
+{ duplicate$ text.length$ #3 <
+    { "~" }
+    { " " }
+  if$
+  swap$ * *
+}
+
+FUNCTION {space.connect}
+{ " " swap$ * * }
+
+INTEGERS { nameptr namesleft numnames }
+
+FUNCTION {format.names}
+{ 's :=
+  #1 'nameptr :=
+  s num.names$ 'numnames :=
+  numnames 'namesleft :=
+  numnames etal.number > etal.number #0 > and
+    { s #1 "{vv~}{ll,}{~f.}{,~jj}" format.name$ 't :=
+      t bbl.etal space.connect
+    }
+    {
+       { namesleft #0 > }
+       { s nameptr "{vv~}{ll,}{~f.}{,~jj}" format.name$ 't :=
+           nameptr #1 >
+             { namesleft #1 >
+               { add.comma.or.semicolon t * }
+               { numnames #2 >
+                 { "" * }
+                 'skip$
+               if$
+               t "others," =
+                 { bbl.etal space.connect }
+                 { add.comma.or.semicolon t * }
+               if$
+               }
+             if$
+             }
+           't
+         if$
+         nameptr #1 + 'nameptr :=
+         namesleft #1 - 'namesleft :=
+         }
+     while$
+  }
+  if$
+}
+
+FUNCTION {format.authors}
+{ author empty$
+    { "" }
+    { #1 'author.or.editor :=
+        #1 'separate.by.semicolon :=
+      author format.names
+    }
+  if$
+}
+
+FUNCTION {format.editors}
+{ editor empty$
+    { "" }
+    { #2 'author.or.editor :=
+        #0 'separate.by.semicolon :=
+      editor format.names
+      add.comma
+      editor num.names$ #1 >
+        { bbl.editors }
+        { bbl.editor }
+      if$
+      *
+    }
+  if$
+}
+
+FUNCTION {n.separate.multi}
+{ 't :=
+  ""
+  #0 'numnames :=
+  t text.length$ #4 > t is.a.number and
+    {
+      { t empty$ not }
+      { t #-1 #1 substring$ is.a.number
+          { numnames #1 + 'numnames := }
+          { #0 'numnames := }
+        if$
+        t #-1 #1 substring$ swap$ *
+        t #-2 global.max$ substring$ 't :=
+        numnames #4 =
+          { duplicate$ #1 #1 substring$ swap$
+            #2 global.max$ substring$
+            "," swap$ * *
+            #1 'numnames :=
+          }
+          'skip$
+        if$
+      }
+      while$
+    }
+    { t swap$ * }
+  if$
+}
+
+FUNCTION {format.bvolume}
+{ volume empty$
+    { "" }
+    { bbl.volume volume tie.or.space.connect }
+  if$
+}
+
+FUNCTION {format.title.noemph}
+{ 't :=
+  t empty$
+    { "" }
+    { t }
+  if$
+}
+
+FUNCTION {format.title}
+{ 't :=
+  t empty$
+    { "" }
+    { t emphasize }
+  if$
+}
+
+%% The add.title function only does anything if the appropriate
+%% flag is set.
+FUNCTION {add.title}
+{ is.use.title
+    { title format.title.noemph "title" output.check
+      new.sentence }
+    'skip$
+  if$
+}
+
+FUNCTION {format.number.series}
+{ volume empty$
+    { number empty$
+       { series field.or.null }
+       { series empty$
+         { "There is a number but no series in " cite$ * warning$ }
+         { series number space.connect }
+       if$
+       }
+      if$
+    }
+    { "" }
+  if$
+}
+
+FUNCTION {format.url}
+{ url empty$
+    { "There is no url in " cite$ * warning$ }
+    { new.sentence "\url{" url * "}" * }
+  if$
+}
+
+FUNCTION {format.urldate}
+{ urldate empty$
+    { "There is no urldate in " cite$ * warning$ }
+    { "accessed " urldate * paren space.connect }
+  if$
+}
+
+FUNCTION {format.full.names}
+{'s :=
+  #1 'nameptr :=
+  s num.names$ 'numnames :=
+  numnames 'namesleft :=
+    { namesleft #0 > }
+    { s nameptr
+      "{vv~}{ll}" format.name$ 't :=
+      nameptr #1 >
+        {
+          namesleft #1 >
+            { ", " * t * }
+            {
+              numnames #2 >
+                { "," * }
+                'skip$
+              if$
+              t "others" =
+                { bbl.etal * }
+                { bbl.and space.connect t space.connect }
+              if$
+            }
+          if$
+        }
+        't
+      if$
+      nameptr #1 + 'nameptr :=
+      namesleft #1 - 'namesleft :=
+    }
+  while$
+}
+
+FUNCTION {author.editor.full}
+{ author empty$
+    { editor empty$
+        { "" }
+        { editor format.full.names }
+      if$
+    }
+    { author format.full.names }
+  if$
+}
+
+FUNCTION {author.full}
+{ author empty$
+    { "" }
+    { author format.full.names }
+  if$
+}
+
+FUNCTION {editor.full}
+{ editor empty$
+    { "" }
+    { editor format.full.names }
+  if$
+}
+
+FUNCTION {make.full.names}
+{ type$ "book" =
+  type$ "inbook" =
+  or
+    'author.editor.full
+    { type$ "proceedings" =
+        'editor.full
+        'author.full
+      if$
+    }
+  if$
+}
+
+FUNCTION {output.bibitem}
+{ newline$
+  "\setboolean{nobreakdashused}{false}" write$
+  "\bibitem[" write$
+  label write$
+  ")" make.full.names duplicate$ short.list =
+     { pop$ }
+     { * }
+   if$
+  "]{" * write$
+  cite$ write$
+  "}" write$
+  newline$
+  ""
+  before.all 'output.state :=
+}
+
+FUNCTION {n.dashify}
+{ 't :=
+  ""
+    { t empty$ not }
+    { t #1 #1 substring$ "-" =
+    { t #1 #2 substring$ "--" = not
+        { "\mynobreakdash " *
+          t #2 global.max$ substring$ 't :=
+        }
+        {   { t #1 #1 substring$ "-" = }
+        { "\mynobreakdash " *
+          t #2 global.max$ substring$ 't :=
+        }
+          while$
+        }
+      if$
+    }
+    { t #1 #1 substring$ *
+      t #2 global.max$ substring$ 't :=
+    }
+      if$
+    }
+  while$
+}
+
+FUNCTION {format.date}
+{ year empty$
+    { "" }
+    { year boldface }
+  if$
+}
+
+FUNCTION {format.bdate}
+{ year empty$
+    { "There's no year in " cite$ * warning$ }
+    'year
+  if$
+}
+
+FUNCTION {either.or.check}
+{ empty$
+    'pop$
+    { "Can't use both " swap$ * " fields in " * cite$ * warning$ }
+  if$
+}
+
+FUNCTION {format.edition}
+{ edition duplicate$ empty$
+    'skip$
+    { convert.edition
+      bbl.edition bibinfo.check
+      " " * bbl.edition *
+    }
+  if$
+}
+
+INTEGERS { multiresult }
+
+FUNCTION {multi.page.check}
+{ 't :=
+  #0 'multiresult :=
+    { multiresult not
+      t empty$ not
+      and
+    }
+    { t #1 #1 substring$
+      duplicate$ "-" =
+      swap$ duplicate$ "," =
+      swap$ "+" =
+      or or
+        { #1 'multiresult := }
+        { t #2 global.max$ substring$ 't := }
+      if$
+    }
+  while$
+  multiresult
+}
+
+FUNCTION {format.pages}
+{ pages empty$
+    { "" }
+    { pages multi.page.check
+      { bbl.pages pages n.dashify tie.or.space.connect }
+      { bbl.page pages tie.or.space.connect }
+    if$
+    }
+  if$
+}
+
+FUNCTION {format.pages.required}
+{ pages empty$
+    { ""
+      "There are no page numbers for " cite$ * warning$
+      output
+    }
+    { pages multi.page.check
+      { bbl.pages pages n.dashify tie.or.space.connect }
+      { bbl.page pages tie.or.space.connect }
+    if$
+    }
+  if$
+}
+
+FUNCTION {format.pages.nopp}
+{	pages empty$
+    { ""
+      "There are no page numbers for " cite$ * warning$
+      output
+    }
+    { pages multi.page.check
+      { pages n.dashify space.connect }
+      { pages space.connect }
+    if$
+    }
+  if$
+}
+
+FUNCTION {format.pages.patent}
+{ pages empty$
+    { "There is no patent number for " cite$ * warning$ }
+    { pages multi.page.check
+      { pages n.dashify }
+      { pages n.separate.multi }
+      if$
+    }
+  if$
+}
+
+FUNCTION {format.vol.pages}
+{	volume emphasize field.or.null
+	number empty$
+  	'skip$
+  	{ number paren tie.or.space.connect }
+	if$
+	duplicate$ empty$
+    { pop$ format.pages.required }
+    { add.comma pages n.dashify * }
+  if$
+}
+
+FUNCTION {format.chapter.pages}
+{ chapter empty$
+    'format.pages
+    { type empty$
+    { bbl.chapter }
+    { type "l" change.case$ }
+      if$
+      chapter tie.or.space.connect
+      pages empty$
+    'skip$
+    { add.comma format.pages * }
+      if$
+    }
+  if$
+}
+
+FUNCTION {format.title.in}
+{ 's :=
+  s empty$
+    { "" }
+    { editor empty$
+      { bbl.in s format.title space.connect }
+      { bbl.in s format.title space.connect
+        add.semicolon format.editors *
+      }
+    if$
+    }
+  if$
+}
+
+FUNCTION {format.proc.title.in}
+{ 's :=
+  s empty$
+    { "" }
+    { editor empty$
+      { bbl.in s format.title space.connect }
+      { venue empty$
+        { bbl.in s format.title space.connect
+          add.semicolon format.editors * }
+        { bbl.in s format.title space.connect
+          add.comma venue *
+          add.semicolon format.editors * }
+      if$
+      }
+    if$
+    }
+  if$
+}
+
+FUNCTION {format.pub.address}
+{ publisher empty$
+    { "" }
+    { address empty$
+        { publisher }
+        { publisher add.colon address *}
+      if$
+    }
+  if$
+}
+
+FUNCTION {format.school.address}
+{ school empty$
+    { "" }
+    { address empty$
+        { school }
+        { school add.colon address *}
+      if$
+    }
+  if$
+}
+
+FUNCTION {format.organization.address}
+{ organization empty$
+    { "" }
+    { address empty$
+        { organization }
+        { organization add.colon address *}
+      if$
+    }
+  if$
+}
+
+FUNCTION {format.venue}
+{ venue empty$
+    { "" }
+    { venue add.semicolon}
+  if$
+}
+
+FUNCTION {empty.misc.check}
+{ note empty$
+    { "note field is empty in " cite$ * warning$ }
+    'skip$
+  if$
+}
+
+FUNCTION {empty.doi.note}
+{ doi empty$ note empty$ and
+    { "Need either a note or DOI for " cite$ * warning$ }
+    'skip$
+  if$
+}
+
+FUNCTION {format.thesis.type}
+{ type empty$
+    'skip$
+    { pop$
+      type
+    }
+  if$
+}
+
+FUNCTION {format.doi}
+{ doi empty$
+	{ "  "} % 'skip$
+    { new.sentence "\url{doi:" doi tie.or.space.connect "}" * }
+  if$
+}
+
+FUNCTION {article}
+{ output.bibitem
+  author empty$
+  { format.editors "editor" output.check
+   after.item 'output.state :=
+   title empty$
+    'skip$
+    { title format.title.noemph output
+      after.sentence 'output.state :=
+    }
+   if$
+   journal emphasize "journal" output.check
+  }
+  { format.authors "author" output.check
+  after.item 'output.state :=
+  add.title
+  journal emphasize "journal" output.check
+  }
+  if$
+  after.item 'output.state :=
+  format.date "year" output.check
+  volume empty$
+    { number empty$
+  		{ "There is neither volume nor number given for " cite$ * warning$ }
+    	{ "No. " number * output}
+  	if$
+    	""
+      format.pages.nopp output
+    }
+    { format.vol.pages output }
+  if$
+  format.doi output
+  fin.entry
+  }
+
+FUNCTION {book}
+{ output.bibitem
+  author empty$
+    { booktitle empty$
+        { title format.title "title" output.check }
+        { booktitle format.title "booktitle" output.check }
+      if$
+      format.edition output
+      new.block
+      editor empty$
+        { "Need either an author or editor for " cite$ * warning$ }
+        { "" format.editors * "editor" output.check }
+      if$
+    }
+    { format.authors output
+      after.item 'output.state :=
+      "author and editor" editor either.or.check
+      booktitle empty$
+        { title format.title "title" output.check }
+        { booktitle format.title "booktitle" output.check }
+      if$
+      format.edition output
+    }
+  if$
+  new.block
+  format.number.series output
+  new.block
+  format.pub.address "publisher" output.check
+  format.bdate "year" output.check
+  new.block
+  format.bvolume output
+  pages empty$
+    'skip$
+    { format.pages output }
+  if$
+  format.doi output
+  fin.entry
+}
+
+FUNCTION {booklet}
+{ "Entrytype booklet of " cite$ " is not supported." * * warning$ }
+
+FUNCTION {inbook}
+{ output.bibitem
+  author empty$
+    { booktitle format.title "booktitle" output.check
+      format.edition output
+      new.block
+      editor empty$
+        { "Need at least an author or an editor for " cite$ * warning$ }
+        { "" format.editors * "editor" output.check }
+      if$
+    }
+    { format.authors output
+      after.item 'output.state :=
+      title empty$
+        'skip$
+        { title format.title.noemph output }
+      if$
+      after.sentence 'output.state :=
+      booktitle format.title.in "booktitle" output.check
+      format.edition output
+    }
+  if$
+  new.block
+  format.number.series output
+  new.block
+  format.pub.address "publisher" output.check
+  format.bdate "year" output.check
+  new.block
+  format.bvolume output
+  format.chapter.pages "chapter and pages" output.check
+  fin.entry
+}
+
+FUNCTION {incollection}
+{ output.bibitem
+  author empty$
+    { booktitle format.title "booktitle" output.check
+      format.edition output
+      new.block
+      editor empty$
+        { "Need at least an author or an editor for " cite$ * warning$ }
+        { "" format.editors * "editor" output.check }
+      if$
+    }
+    { format.authors output
+      after.item 'output.state :=
+      title empty$
+        'skip$
+        { title format.title.noemph output }
+      if$
+      after.sentence 'output.state :=
+      booktitle format.title.in "booktitle" output.check
+      format.edition output
+    }
+  if$
+  new.block
+  format.number.series output
+  new.block
+  format.pub.address "publisher" output.check
+  format.bdate "year" output.check
+  new.block
+  format.bvolume output
+  format.chapter.pages "chapter and pages" output.check
+  format.doi output
+  fin.entry
+}
+
+FUNCTION {inpress}
+{ output.bibitem
+  format.authors "author" output.check
+  after.item 'output.state :=
+  journal emphasize "journal" output.check
+  doi empty$
+    {  bbl.inpress output }
+    {  after.item 'output.state :=
+       format.date output
+       "doi:" doi tie.or.space.connect output
+    }
+  if$
+  format.doi output
+  fin.entry
+}
+
+FUNCTION {inproceedings}
+{ output.bibitem
+  format.authors "author" output.check
+  after.item 'output.state :=
+  title empty$
+    'skip$
+    { title format.title.noemph output
+      after.sentence 'output.state :=
+    }
+  if$
+  booktitle format.proc.title.in "booktitle" output.check
+  add.semicolon write$
+  format.pub.address "publisher" output.check
+  format.bdate "year" output.check
+  pages empty$
+    'skip$
+    { new.block
+      format.pages output }
+  if$
+  format.doi output
+  fin.entry
+}
+
+FUNCTION {manual}
+{ "Entrytype manual of " cite$ " is not supported." * * warning$ }
+
+FUNCTION {mastersthesis}
+{ "Entrytype masterthesis of " cite$ " is not supported." * * warning$ }
+
+FUNCTION {misc}
+{ output.bibitem
+  fin.entry
+}
+
+FUNCTION {online}
+{ output.bibitem
+  format.authors output
+  after.item 'output.state :=
+  title empty$
+    'skip$
+    { title output }
+  if$
+  format.url output
+  after.item 'output.state :=
+  format.urldate output
+  format.doi output
+  fin.entry
+}
+
+FUNCTION {patent}
+{ output.bibitem
+  format.authors "author" output.check
+  after.item 'output.state :=
+  title empty$
+    'skip$
+    { title format.title.noemph output
+      after.sentence 'output.state :=
+    }
+  if$
+  journal "journal" output.check
+  after.item 'output.state :=
+  format.pages.patent "pages" output.check
+  format.bdate "year" output.check
+  format.doi output
+  fin.entry
+}
+
+FUNCTION {phdthesis}
+{ output.bibitem
+  format.authors "author" output.check
+  after.item 'output.state :=
+  title empty$
+    'skip$
+    { title format.title.noemph output
+      after.sentence 'output.state :=
+    }
+  if$
+  bbl.phd format.thesis.type output
+  format.school.address "school" output.check
+  format.bdate "year" output.check
+  format.doi output
+  fin.entry
+}
+
+FUNCTION {proceedings}
+{ output.bibitem
+format.editors "editor" output.check
+after.item 'output.state :=
+  title format.title "title" output.check
+  venue empty$
+    { }
+    { venue output
+      add.semicolon write$ }
+  if$
+  format.pub.address "publisher" output.check
+  format.bdate "year" output.check
+  pages empty$
+    'skip$
+    { new.block
+      format.pages output }
+  if$
+  format.doi output
+  fin.entry
+}
+
+FUNCTION {software}
+{ output.bibitem
+  title format.title "title" output.check
+  version empty$
+  	'skip$
+  	{ version output }
+  if$
+  after.block 'output.state :=
+	format.pub.address "publisher" output.check
+  format.bdate "year" output.check
+  format.doi output
+  fin.entry
+}
+
+FUNCTION {techreport}
+{ "Entrytype techreport of " cite$ " is not supported." * * warning$ }
+
+FUNCTION {unpublished}
+{ "Entrytype unpublished of " cite$ " is not supported." * * warning$ }
+
+FUNCTION {www}
+{ output.bibitem
+  format.authors output
+  after.item 'output.state :=
+  title empty$
+    'skip$
+    { title output }
+  if$
+  format.url output
+  after.item 'output.state :=
+  format.urldate output
+  fin.entry
+}
+
+%% Convert the strings "yes" or "no" to #1 or #0 respectively
+FUNCTION {yes.no.to.int}
+{ "l" change.case$ duplicate$
+    "yes" =
+    { pop$  #1 }
+    { duplicate$ "no" =
+        { pop$ #0 }
+        { "unknown Boolean " quote$ * swap$ * quote$ *
+          " in " * cite$ * warning$
+          #0
+        }
+      if$
+    }
+  if$
+}
+
+%% Using the same mechanism as in IEEEtrans, control of
+%% output can be achieved using a special entry type.
+FUNCTION {Control}
+{ ctrl-use-title
+  empty$
+    { }
+    { ctrl-use-title
+      yes.no.to.int
+      'is.use.title := }
+  if$
+  ctrl-etal-number
+  empty$
+    { }
+    { ctrl-etal-number
+      str.to.int
+      'etal.number := }
+  if$
+}
+
+FUNCTION {conference} {inproceedings}
+
+FUNCTION {other} {patent}
+
+FUNCTION {default.type} {misc}
+
+MACRO {jan} {"Jan."}
+MACRO {feb} {"Feb."}
+MACRO {mar} {"Mar."}
+MACRO {apr} {"Apr."}
+MACRO {may} {"May"}
+MACRO {jun} {"June"}
+MACRO {jul} {"July"}
+MACRO {aug} {"Aug."}
+MACRO {sep} {"Sept."}
+MACRO {oct} {"Oct."}
+MACRO {nov} {"Nov."}
+MACRO {dec} {"Dec."}
+
+%% The ACS journals by CODEN
+MACRO {achre4} {"Acc.\ Chem.\ Res."}
+MACRO {acbcct} {"ACS Chem.\ Biol."}
+MACRO {ancac3} {"ACS Nano"}
+MACRO {ancham} {"Anal.\ Chem."}
+MACRO {armcbi} {"Annu.\ Rep.\ Med.\ Chem."}
+MACRO {bichaw} {"Biochemistry"}
+MACRO {bcches} {"Bioconjugate Chem."}
+MACRO {bjocbh} {"Beilstein J.~Org.\ Chem."}
+MACRO {bomaf6} {"Biomacromolecules"}
+MACRO {bipret} {"Biotechnol.\ Prog."}
+MACRO {ccccak} {"Collect.\ Czech.\ Chem.\ Commun."}
+MACRO {crtoec} {"Chem.\ Res.\ Toxicol."}
+MACRO {chlsac} {"Chem.\ Listy"}
+MACRO {chreay} {"Chem.\ Rev."}
+MACRO {cmatex} {"Chem.\ Mater."}
+MACRO {cmltag} {"Chem.\ Lett."}
+MACRO {cgdefu} {"Cryst.\ Growth Des."}
+MACRO {enfuem} {"Energy Fuels"}
+MACRO {eoider} {"Expert Opin.\ Invest.\ Drugs"}
+MACRO {eotpeg} {"Expert Opin.\ Ther.\ Pat."}
+MACRO {esthag} {"Environ.\ Sci.\ Technol."}
+MACRO {htcyam} {"Heterocycles"}
+MACRO {iechad} {"Ind.\ Eng.\ Chem.\ Res."}
+MACRO {inoraj} {"Inorg.\ Chem."}
+MACRO {jafcau} {"J.~Agric.\ Food Chem."}
+MACRO {jceaax} {"J.~Chem.\ Eng.\ Data"}
+MACRO {jcisd8} {"J.~Chem.\ Inf.\ Model."}
+MACRO {jctcce} {"J.~Chem.\ Theory Comput."}
+MACRO {jcchff} {"J. Comb. Chem."}
+MACRO {jmcmar} {"J. Med. Chem."}
+MACRO {jnprdf} {"J. Nat. Prod."}
+MACRO {joceah} {"J.~Org.\ Chem."}
+MACRO {jpcafh} {"J.~Phys.\ Chem.~A"}
+MACRO {jpcbfk} {"J.~Phys.\ Chem.~B"}
+MACRO {jpccck} {"J.~Phys.\ Chem.~C"}
+MACRO {jprobs} {"J.~Proteome Res."}
+MACRO {jacsat} {"J.~Am.\ Chem.\ Soc."}
+MACRO {langd5} {"Langmuir"}
+MACRO {mamobx} {"Macromolecules"}
+MACRO {mpohbp} {"Mol.\ Pharm."}
+MACRO {nalefd} {"Nano Lett."}
+MACRO {namefi} {"Nat.\ Med."}
+MACRO {obcrak} {"Org.\ Biomol.\ Chem."}
+MACRO {orlef7} {"Org.\ Lett."}
+MACRO {oprdfk} {"Org.\ Proc.\ Res.\ Dev."}
+MACRO {orgnd7} {"Organometallics"}
+MACRO {pachas} {"Pure Appl.\ Chem."}
+MACRO {phreeb} {"Pharm.\ Res."}
+MACRO {syntbf} {"Synthesis"}
+MACRO {teleay} {"Tetrahedron Lett."}
+MACRO {tetrab} {"Tetrahedron"}
+
+READ
+
+FUNCTION {initialize.controls}
+{ default.is.use.title 'is.use.title :=
+  default.etal.number 'etal.number :=
+}
+
+EXECUTE {initialize.controls}
+
+INTEGERS { len }
+
+FUNCTION {chop.word}
+{ 's :=
+  'len :=
+  s #1 len substring$ =
+    { s len #1 + global.max$ substring$ }
+    's
+  if$
+}
+
+FUNCTION {format.lab.names}
+{ 's :=
+  s #1 "{vv~}{ll}" format.name$
+  s num.names$ duplicate$
+  #2 >
+    { pop$ bbl.etal space.connect }
+    { #2 <
+        'skip$
+        { s #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" =
+            { bbl.etal space.connect }
+            { bbl.and space.connect s #2 "{vv~}{ll}" format.name$ space.connect }
+          if$
+        }
+      if$
+    }
+  if$
+}
+
+FUNCTION {author.key.label}
+{ author empty$
+    { key empty$
+        { cite$ #1 #3 substring$ }
+        'key
+      if$
+    }
+    { author format.lab.names }
+  if$
+}
+
+FUNCTION {author.editor.key.label}
+{ author empty$
+    { editor empty$
+        { key empty$
+            { cite$ #1 #3 substring$ }
+            'key
+          if$
+        }
+        { editor format.lab.names }
+      if$
+    }
+    { author format.lab.names }
+  if$
+}
+
+FUNCTION {author.key.organization.label}
+{ author empty$
+    { key empty$
+        { organization empty$
+            { cite$ #1 #3 substring$ }
+            { "The " #4 organization chop.word #3 text.prefix$ }
+          if$
+        }
+        'key
+      if$
+    }
+    { author format.lab.names }
+  if$
+}
+
+FUNCTION {editor.key.organization.label}
+{ editor empty$
+    { key empty$
+        { organization empty$
+            { cite$ #1 #3 substring$ }
+            { "The " #4 organization chop.word #3 text.prefix$ }
+          if$
+        }
+        'key
+      if$
+    }
+    { editor format.lab.names }
+  if$
+}
+
+FUNCTION {calc.short.authors}
+{ type$ "book" =
+  type$ "inbook" =
+  or
+    'author.editor.key.label
+    { type$ "proceedings" =
+        'editor.key.organization.label
+        { type$ "manual" =
+            'author.key.organization.label
+            'author.key.label
+          if$
+        }
+      if$
+    }
+  if$
+  'short.list :=
+}
+
+FUNCTION {calc.label}
+{ calc.short.authors
+  short.list
+  "("
+  *
+  year duplicate$ empty$
+  short.list key field.or.null = or
+     { pop$ "" }
+     'skip$
+  if$
+  *
+  'label :=
+}
+
+ITERATE {calc.label}
+
+STRINGS { longest.label last.label next.extra }
+
+INTEGERS { longest.label.width last.extra.num number.label }
+
+FUNCTION {initialize.longest.label}
+{ "" 'longest.label :=
+  #0 int.to.chr$ 'last.label :=
+  "" 'next.extra :=
+  #0 'longest.label.width :=
+  #0 'last.extra.num :=
+  #0 'number.label :=
+}
+
+FUNCTION {forward.pass}
+{ last.label label =
+    { last.extra.num #1 + 'last.extra.num :=
+      last.extra.num int.to.chr$ 'extra.label :=
+    }
+    { "a" chr.to.int$ 'last.extra.num :=
+      "" 'extra.label :=
+      label 'last.label :=
+    }
+  if$
+  number.label #1 + 'number.label :=
+}
+
+EXECUTE {initialize.longest.label}
+
+ITERATE {forward.pass}
+
+FUNCTION {begin.bib}
+{ preamble$ empty$
+    'skip$
+    { preamble$ write$ newline$ }
+  if$
+  "\begin{thebibliography}{"  number.label int.to.str$  * "}" *
+  write$ newline$
+}
+
+EXECUTE {begin.bib}
+
+EXECUTE {init.state.consts}
+
+ITERATE {call.type$}
+
+FUNCTION {end.bib}
+{ newline$
+  "\end{thebibliography}" write$ newline$
+}
+
+EXECUTE {end.bib}
+%</bst>
+%<*bib>
+ at COMMENT{This BibTeX database consists of entries of all types of
+documents listed in the ``Instructions for Authors'', pp 5--6}
+ at COMMENT{The references used in ``beilstein-template.tex'' are listed as well at the end of the file.}
+
+ at COMMENT{Article within a journal}
+ at ARTICLE{Constantino2001,
+author = {Constantino, M. G. and V. Lacerda, Jr. and Aragao, V.},
+year  ={2001},
+journal = Molecules,
+volume = 6,
+pages = {770--776}
+}
+
+ at COMMENT{Article within a journal with non-continuos (i.e.\ issue-based) pagination}
+ at ARTICLE{Groeger2000,
+  author = {Gr\"{o}ger, H. and Sans, J. and G\"{u}thner, T.},
+  journal = {Chim. Oggi},
+  year = 2000,
+  volume = 18,
+  number = {3/4},
+  pages = {12--16}
+}
+
+ at COMMENT{If no volume, but only a number is given, ``No.'' is added automatically}
+ at ARTICLE{Wills1983,
+  author = {Wills, M. R. and Savory, J.},
+  journal = {Lancet},
+  year = 1983,
+  number = 2,
+  pages = {29}
+}
+
+ at COMMENT{Article within a journal with article number}
+ at COMMENT{The ``pages'' field is used for the article number.}
+ at ARTICLE{Flamme2005,
+  author = {Flamme, E. M. and Roush, W. R.},
+  journal = {Beilstein J. Org. Chem.},
+  year = 2005,
+  volume = 1,
+  pages = {No. 7}
+}
+
+ at COMMENT{Article within a journal supplement}
+ at ARTICLE{Orengo1999,
+  author = {Orengo, C. A. and Bray, J. E. and Hubbard, T. and LoConte, L. and Sillitoe, I.},
+  journal = {Proteins},
+  year = {1999},
+  volume = 37,
+  number = {Suppl. S3},
+  pages = {149--170}
+}
+
+ at COMMENT{Article within a journal with two separate editions or with translations/article within a journal with aditional Chemical Abstracts reference}
+ at ARTICLE{Grubbs2006,
+  author = {Grubbs, R. H.},
+  journal = {Angew. Chem.},
+  year = 2006,
+  volume = 118,
+  pages = {3845--3850},
+  note = {{\emph{Angew. Chem., Int. Ed.} \textbf{2006,} \emph{45,} 3760--3765.}}
+}
+
+ at COMMENT{In press article}
+ at INPRESS{Schwartzman,
+  author = {Schwartzman, M. and S. J. Wind},
+  journal ={Nano Lett.}
+}
+
+ at COMMENT{Patent}
+ at COMMENT{``pages'' holds the patent number, ``journal'' the type of patent}
+ at PATENT{Schimmel,
+  author = {Schimmel, T. and Xie, F. and Obermair, C.},
+  title = {Gate controlled atomic switch},
+  journal = {U.S. Pat. Appl.},
+  pages = {20090195300},
+  year = {Aug 6, 2009}
+}
+
+ at COMMENT{Article within conference proceedings}
+ at INPROCEEDINGS{Jones1996,
+author = {Jones, X.},
+title  ={Zeolites and synthetic mechanisms},
+year = {1996},
+pages = {16--27},
+booktitle = {Proceedings of the First National Conference on Porous Sieves},
+publisher = {Butterworth-Heinemann},
+address = {Stoneham, MA},
+venue = {Baltimore, MD, June 27--30, 1996},
+editor = {Smith, Y.}
+}
+
+ at COMMENT{Whole issue of a journal}
+ at COMMENT{Instead of an author only an editor is given}
+ at ARTICLE{OBrian2002,
+editor = {O'Brian, P.},
+title = {Recent developments in chiral lithium amide base chemistry},
+year  ={2002},
+journal = {Tetrahedron},
+volume = 58,
+pages = {4567--4733}
+}
+
+ at COMMENT{Whole conference proceedings}
+ at Proceedings{Smith1996,
+editor = {Smith, Y.},
+title  ={Proceedings of the First National Conference on Porous Sieves},
+year = {1996},
+address = {Stoneham, MA},
+venue = {Baltimore, MD, June 27--30, 1996},
+publisher = {Butterworth-Heinemann}
+}
+
+ at COMMENT{Complete book}
+ at BOOK{Rao2005,
+  author = {Rao, C. N. R. and Govindaraj, A.},
+  title = {Nanotubes and Nanowires},
+  publisher = {Royal Society of Chemistry},
+  address = {Cambridge, U.K.},
+  year = 2005
+}
+
+ at COMMENT{Book edition}
+ at BOOK{Borisenko2008,
+  author = {Borisenko, V. E. and Ossicini, S.},
+  title = {What is what in the Nanoworld},
+  edition = 2,
+  publisher = {Wiley-VCH},
+  address = {Berlin},
+  year = 2008
+}
+
+ at COMMENT{Book chapter or article within book}
+ at INCOLLECTION{Taylor2007,
+  author = {Taylor, R. and Burley, G. A.},
+  title = {Production, Isolation and Purification of Fullerenes},
+  booktitle = {Fullerenes -- Principles and Application},
+  editor = {Langa, F. and Nierengarten, J.-F.},
+  publisher = {Royal Society of Chemistry},
+  address = {Cambridge, U.K.},
+  year = 2007,
+  pages = {1--14}
+}
+
+ at COMMENT{Book chapter or article within a multi-volume book}
+ at INCOLLECTION{Farnum2003,
+  author = {Farnum, M. A. and DesJarlais, R. L. and Agrafiotis, D. K.},
+  title = {Molecular Diversity},
+  booktitle = {Handbook of Chemoinformatics: From Data to Knowledge},
+  editor = {Gasteiger, J.},
+  publisher = {Wiley-VCH},
+  address = {Weinheim, Germany},
+  year = {2003},
+  volume = {4},
+  pages = {1640--1686}
+}
+
+ at COMMENT{Chapter of a book in a series}
+ at INCOLLECTION{Goldfuss2003,
+  author = {Goldfuss, B.},
+  title = {Enantioselective addition of organolithiums to C=O groups},
+  booktitle = {Organolithiums in Enantioselective Synthesis},
+  editor = {Hodgson, D. M.},
+  series = {Topics in Organometallic Chemistry, Vol.~5},
+  publisher = {Springer},
+  address = {Berlin},
+  year = 2003,
+  pages = {21--35}
+}
+
+ at COMMENT{Book with institutional author}
+ at BOOK{AnnualReport,
+  author = {{Advisory Committee on Genetic Modification}},
+  title = {Annual Report},
+  year = 1999,
+  address = {London}
+}
+
+ at COMMENT{Thesis}
+ at PhDThesis{Pfrang2004,
+author = {Pfrang, A.},
+title  ={Von den Fr\"uhstadien der Pyrokohlenstoffabscheidung bis zum Kompositwerkstoff -- Untersuchungen mit Rastersondenverfahren},
+year = {2004},
+school = {University of Karlsruhe, Germany}
+}
+
+ at COMMENT{For online resources a new type ``WWW'' is introduced. The fields ``url'' and ``urldate'' hold the corresponding address and access date. Please note: the urldate is not formatted, so it has to be in the correct format already.}
+ at WWW{Bozen2002,
+  title = {Proceedings of ``Molecular Informatics: Confronting Complexity'', May 13--16, 2002, Bozen, Italy},
+  url = {http://www.beilstein-institut.de/index.php?id=154},
+  urldate = {Sep 12, 2007}
+}
+
+ at COMMENT{Software}
+ at COMMENT{For software a field ``version'' can be used.}
+ at SOFTWARE{Gaussian03,
+  title = {Gaussian 03},
+  version = {Revision C.02},
+  publisher = {Gaussian, Inc.},
+  address = {Wallingford, CT},
+  year = {2004}
+}
+
+ at Comment{----------------------------------------------------------------------------------------------------------}
+ at Comment{References used in ``beilstein-template.tex''.}
+
+ at INCOLLECTION{Pornet2002,
+  author = {Pornet, J.},
+  title = {Product Subclass 32: Allenylsilanes},
+  booktitle = {Science of Synthesis},
+  editor = {Fleming, I.},
+  publisher = {Georg Thieme Verlag},
+  address = {Stuttgart},
+  year = {2002},
+  pages = {669--683},
+  volume = {4}
+}
+
+ at ARTICLE{Masse1995,
+  author = {Masse, C. E. and Panek, J. S.},
+  journal = chreay,
+  year = 1995,
+  volume = 95,
+  pages = {1293--1316}
+}
+
+ at ARTICLE{Jian1995,
+author = {Jian, J. and Smith, D. T. and Weinreb, S. M.},
+year  ={1995},
+journal = joceah,
+volume = 60,
+pages = {5366--5367}
+}
+
+ at ARTICLE{Weinreb1998,
+author = {Weinreb, S. M. and Smith, D. T. and Jian, J.},
+year  ={1998},
+journal = syntbf,
+pages = {509--521}
+}
+
+ at ARTICLE{Danheiser1980,
+author = {Danheiser, R. L. and Carini, D. J.},
+year  ={1980},
+journal = joceah,
+volume = 45,
+pages = {3925--3927}
+}
+
+ at ARTICLE{Danheiser1986,
+author = {Danheiser, R. L. and Carini, D. J. and Kwasigroch, C. A.},
+year  ={1986},
+journal = joceah,
+volume = 51,
+pages = {3870--3878}
+}
+
+ at ARTICLE{Danheiser1985,
+author = {Danheiser, R. L. and Kwasigroch, C. A. and Tsai, Y.-M.},
+year  ={1985},
+journal = jacsat,
+volume = 107,
+  pages = {7233--7235}
+}
+
+ at ARTICLE{Danheiser1985b,
+author = {Danheiser, R. L. and Fink, D. M.},
+year  ={1985},
+journal = {Tetrahedron Lett.},
+volume = 26,
+  pages = {2513--2516}
+}
+
+ at ARTICLE{Daidouji2005,
+author = {Daidouji, K. and Fuchibe, K. and Akiyama, T.},
+year  ={2005},
+journal = orlef7,
+volume = 7,
+pages = {1051--1053}
+}
+ at ARTICLE{Danheiser1981,
+author = {Danheiser, R. L. and Carini, D. J. and Basak, A.},
+year  ={1981},
+journal = jacsat,
+volume = 103,
+pages = {1604--1606}
+}
+
+ at ARTICLE{Danheiser1983,
+author = {Danheiser, R. L. and Carini, D. J. and Fink, D. M.},
+year  ={1983},
+journal = tetrab,
+volume = 39,
+pages = {935--947}
+}
+
+ at Article{Danheiser1987,
+author="R. L. Danheiser and D. A. Becker",
+journal="Heterocycles",
+year="1987",
+volume="25",
+pages="277-281",
+}
+
+ at Article{Yadav2004,
+author="V. K. Yadav and V. Sriramurthy",
+journal="Org. Lett.",
+year="2004",
+volume="6",
+pages="4495-4498",
+note="Annulations leading to cyclohexenes are known, see reference 11",
+}
+
+ at Article{Danheiser1987b,
+author="R. L. Danheiser and Y.-M. Tsai and D. M. Fink",
+journal="Org. Synth.",
+year="1987",
+volume="66",
+pages="1-4",
+}
+%</bib>
+%<*demo>
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% This is a (brief) example using the beilstein class.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% If issues arise when submitting your manuscript, you may want to
+%% un-comment the next line.  This provides information on the
+%% version of every file you have used. That way the maintainer of
+%% the class can handle the issue much easier.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%\listfiles
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% The document class does not have many options yet. It accepts an
+%% optional keyval option for the manuscript type and options for the
+%% language and inputencoding used.
+%% These are for the manuscript type:
+%% manuscript=fullresearchpaper (default),
+%% manuscript=letter,
+%% manuscript=commentary,
+%% manuscript=review,
+%% manuscript=bookreport.
+%%
+%% For the language (in terms of hyphenation):
+%% american -> American English (default),
+%% british, english -> British English.
+%%
+%% For the input encoding:
+%% latin1 (default),
+%% utf8,
+%% applemac.
+%%
+%% The defaults are [manuscript=fullresearchpaper,american,latin1].
+%% Please not, that you should consider using the utf8 option as this
+%% is the standard encoding nowadays.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\documentclass[utf8]{beilstein}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Place any additional packages needed here. Only include packages
+%% which are essential to avoid problems later. The class already
+%% loads some useful packages, so please have a look at the
+%% documentation.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\usepackage{xspace}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Place any additional macros here.  Please use \newcommand* where
+%% possible, and avoid layout-changing macros (which are not used
+%% when typesetting).
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\newcommand*{\CHCL}{\chem{CH_2Cl_2}}
+\newcommand*{\HNMR}{\chem{^{1}H~NMR}\xspace}
+\newcommand*{\CNMR}{\chem{^{13}C~NMR}\xspace}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Beginning of the article
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\begin{document}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Meta-data block
+%% ---------------
+%% The title of the article is given with the usual \title command.
+%%
+%% Each author should be given as a separate \author command.
+%%
+%% For corresponding authors please use \author* and give the email
+%% address as a second mandatory argument.
+%%
+%% The affiliation of authors is given after the authors; the
+%% affiliations are numbered consecutively.
+%%
+%% If some authors have the same affiliation you can use the optional
+%% argument of \author and \author* to give the number of that
+%% affiliation.
+%%
+%% The whole block is printed with the \maketitle command at the very
+%% end.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\title{Synthesis of highly substituted allenylsilanes by alkylidenation of silylketenes}
+\author*{Stephen P. Marsden}{s.p.marsden at leeds.ac.uk}
+\affiliation{School of Chemistry, University of Leeds, Leeds LS2 9JT, United Kingdom}
+\author{Pascal C. Ducept}
+\affiliation{Department of Chemistry, Imperial College London, London SW7 2AY, United Kingdom}
+\maketitle
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% The document should begin with an abstract, if appropriate. If one
+%% is given and should not be, a warning is issued.
+%%
+%% For the three parts of the abstract, ``Background'', ``Results''
+%% and ``Conclusions'', the corresponding commands should be used.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\begin{abstract}
+\background Allenylsilanes are useful intermediates in organic synthesis. An attractive,
+convergent but little used approach for their synthesis is the alkylidenation of stable silylketenes. Reactions thus far have been limited to the use of unsubstituted silylketenes (or equivalents) with stabilised or semi-stabilised ylides only. The current study explores the reactions of substituted ketenes prepared through rhodium(II)-mediated rearrangement of silylated diazoketones.
+\results A range of novel 1,3-disubstituted and 1,3,3-trisubstituted allenylsilanes were prepared using stabilised and semi-stabilised ylides. Alkylidenation with non-stabilised phosphorus ylides was not viable, but the use of titanium-based methylenating reagents was successful, allowing access to 1-substituted allenylsilanes.
+\conclusion Many novel allenylsilanes may be accessed by alkylidenation of substituted silylketenes. Importantly, for the first time, simple methylenation of silylketenes has been achieved using titanium carbenoid-based reagents.
+\end{abstract}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Keywords can be given with the \keywords command which takes five
+%% arguments. The arguments have to be sorted.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\keywords{allenylsilanes; rhodium(II) octanoate-mediated rearrangement; silylketenes; titanium carbenoids; ylide}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% The main text starts right here. For each required and optional
+%% section of the chosen document type a special command is defined.
+%%
+%% It is strongly recommended to use BibTeX for managing references.
+%% Citations and citation lists can be given with the \cite command.
+%% Please note, that not all references have been added to the
+%% example document.
+%%
+%% For references in floats \cite is locally redefined to
+%% adds the reference to the end of the list of references.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\section{Introduction}
+Allenylsilanes are versatile intermediates for organic synthesis \cite{Pornet2002,Masse1995}. They have two main modes of reactivity: firstly, as propargyl anion equivalents in thermal \cite{Jian1995,Weinreb1998} or Lewis acid-mediated \cite{Danheiser1980,Danheiser1986} addition to carbonyls, acetals and imines, and secondly as three-carbon partners in [3+2] annulation reactions. Thus, reaction with aldehydes \cite{Danheiser1985}, imines/iminiums \cite{Danheiser1985,Daidouji2005}, enones \cite{Danheiser1981,Danheiser1983,Danheiser1985b} and nitrosyl cations \cite{Danheiser1987} leads to dihydrofurans, dihydropyrroles, cyclopentenes and isoxazoles respectively \cite{Yadav2004}. In most cases the silicon is retained in the final product and can be used as a handle for further synthetic elaboration.
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% When referencing objects, LaTeX offers a label--ref mechanism.
+%% The beilstein class extends this approach with the \cref command,
+%% that adds the corresponding type of the object as well.
+%%
+%% Tables, figures and schemes must have a single column or double
+%% column width. To make life easier, some commands are defined.
+%%
+%% Captions (legends) will always be added at the correct place no
+%% matter where you put in the source code.
+%% Please note: labels always have to come /after/ the \caption.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+Amongst the myriad methods to prepare allenylsilanes \cite{Pornet2002,Danheiser1987b}, an attractive disconnection is to consider a Wittig-type alkylidenation of a silylketene (\cref{fig:AlkylidenationApproach}).
+\begin{figure}
+\caption{Alkylidenation approach to the synthesis of allenylsilanes.}
+\label{fig:AlkylidenationApproach}
+\includegraphics[width=8.2cm,keepaspectratio]{figure1}
+%% \sglcolfigure{figure1}
+\end{figure}
+
+[\ldots]
+
+\section{Results and Discussion}
+Our investigations began with the preparation of substituted silylketenes \CN{1} as substrates for the alkylidenation chemistry. This was carried out under our previously reported conditions for rhodium(II) octanoate-mediated rearrangement of silyl diazoketones \CN{2}, which in turn were prepared by \textit{C}-silylation of the parent diazoketones \CN{3} with triethylsilyl triflate (\cref{scheme:1}). It should be noted that while the alkyl-substituted silylketenes are relatively stable and show little decomposition at room temperature over several days, the (hetero)aromatic-substituted silylketenes are much less robust and should be used quickly or stored in a freezer.
+
+\begin{scheme}
+\caption{Synthesis of substituted silylketenes \CN{1}.}
+\label{scheme:1}
+\includegraphics[width=8.2cm,keepaspectratio]{scheme1}
+\end{scheme}
+
+[\ldots]
+
+With the requisite silylketenes in hand, attention turned to their reaction with the carboethoxy-stabilised phosphoranes \CN{4} and \CN{5}. At the outset, it was by no means certain that these would react efficiently with substituted silylketenes \CN{1} since it is well documented that nucleophiles attack silylketenes \textit{anti} to the silicon, i.e.\ the phosphoranes would be approaching from the same side as the \chem{R^1}-substituent. Since in all previous examples this substituent has been a hydrogen atom, the extension to bulkier substituents could not be taken for granted. In the event, however, we were pleased to find that in nearly all cases the desired allenylsilanes were formed in moderate to excellent yield (\cref{scheme:2}, \cref{tab:1}, see \cref{si:1} for full experimental data).
+\begin{scheme}
+\includegraphics[width=8.2cm,keepaspectratio]{scheme2}
+\caption{Reaction of substituted silylketenes with ester-stabilised phosphoranes.}
+\label{scheme:2}
+\end{scheme}
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Tables are a bit special. Only there the \footnote is allowed for
+%% Beilstein publications.
+%%
+%% As for figures and schemes sglcoltabular and dblcoltabular can be
+%% used to get tables of the correct width. If you do not want to
+%% messure the columns you can use parameter ``X'' of the tabularx
+%% package for one column or more to get equal-sized columns.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+\begin{table}
+\caption{Reaction of substituted silylketenes with ester-stabilised phosphoranes.}
+\label{tab:1}
+\begin{dblcoltabularx}{|l|l|l|l|l|X|X|}\hline
+\bfseries Entry & \bfseries Ketene & \bfseries Ylide & \bfseries Temp [\celsius] & \bfseries \textit{t} [h] & \bfseries Solvent & \bfseries Yield 6/7 (8)\\\hline
+1 & \CN{1a} & \CN{4} & 80 & 24 & PhH & 54\,\%\\\hline
+2 & \CN{1a} & \CN{5} & rt & 3  & \CHCL & 60\,\%\\\hline
+3 & \CN{1b} & \CN{4} & 110 & 24 & toluene & 45\,\%\\\hline
+4 & \CN{1b} & \CN{5} & reflux & 24 & \CHCL & 77\,\%\\\hline
+5 & \CN{1c} & \CN{4} & 80 & 24 & PhH & 60\,\%\\\hline
+6 & \CN{1c} & \CN{5} & rt & 6  & \CHCL & 81\,\%\\\hline
+7 & \CN{1d} & \CN{4} & 110 & 48 & toluene & 22\,\%%
+   \footnote{60\,\% of starting material recovered}\\\hline
+8 & \CN{1d} & \CN{5} & 80 & 48 & toluene & 78\,\%\\\hline
+9 & \CN{1e} & \CN{4} & 80 & 24 & PhH & 55\,\% (7\,\%)\\\hline
+10 & \CN{1f} & \CN{4} & 60 & 5 & \CHCL & 44\,\% (3\,\%)\\\hline
+11 & \CN{1h} & \CN{4} & rt & 6 & \CHCL & 0\,\% (57\,\%)\\\hline
+12 & \CN{1h} & \CN{4} & 50 & 1 & \CHCL & 7\,\% (23\,\%)\\\hline
+13 & \CN{1i} & \CN{4} & rt & 10 & \CHCL & 0\,\% (67\,\%)\\\hline
+14 & \CN{1i} & \CN{5} & rt & 2 & \CHCL & 98\,\%\\\hline
+15 & \CN{1j} & \CN{4} & 80 & 12 & PhH & 74\,\% (19\,\%)\\\hline
+\end{dblcoltabularx}
+\end{table}
+
+As expected, reactions with the more substituted ylide \CN{4} were significantly slower than those with the parent ylide \CN{5} (compare reaction temperatures and times, entries 1, 3 and 5 versus entries 2, 4 and 6). [...]
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% The Supporting Information is an essential part of many articles.
+%% They are given inside the ``suppinfo'' environment with the
+%% \sifile command which gets the following mandatory arguments:
+%% #1: File name
+%% #2: File type
+%% #3: Descriptive File title
+%% A long description can be given using the optional argument.
+%%
+%% You can label each entry and reference it in the text.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\begin{suppinfo}
+Supporting information features copies of \HNMR spectra of silylated diazoketones \CN{2} and silylketenes \CN{1}, plus \chem{{}^1H} and \CNMR spectra of allenylsilanes \CN{6}, \CN{7}, and \CN{14}--\CN{19}.
+\sifile{S1.pdf}{PDF}{Experimental part}\label{si:1}
+\sifile{S2.pdf}{PDF}{NMR spectra of compounds \CN{1}, \CN{2}, \CN{6} and \CN{7}}
+\sifile{S3.pdf}{PDF}{NMR spectra of compounds \CN{14--19}}
+\end{suppinfo}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% The "Acknowledgements" section can be given in all manuscripts.
+%% This should be done within the ``acknowledgements'' environment,
+%% which will make the correct section title.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\begin{acknowledgements}
+We acknowledge EPSRC grant GR/L60135/01 (PCD) and generous unrestricted research funding from Pfizer for financial support.
+\end{acknowledgements}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% The appropriate \bibliography command should be placed here.
+%% Notice that the class file automatically sets \bibliographystyle
+%% and also names the section correctly.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\bibliography{beilstein-template}
+\vspace{3cm}
+This article is published in full length in \textit{Beilstein J. Org. Chem.}
+\textbf{2005}, \textit{1}, No. 5.
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% That's it. Ending the document finishes the article. Happy TeXing!
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\end{document}
+%</demo>
+%\fi 


Property changes on: trunk/Master/texmf-dist/source/latex/beilstein/beilstein.dtx
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/Master/texmf-dist/source/latex/beilstein/beilstein.ins
===================================================================
--- trunk/Master/texmf-dist/source/latex/beilstein/beilstein.ins	                        (rev 0)
+++ trunk/Master/texmf-dist/source/latex/beilstein/beilstein.ins	2017-09-10 20:56:37 UTC (rev 45265)
@@ -0,0 +1,65 @@
+\input docstrip.tex
+\keepsilent
+\askforoverwritefalse
+\preamble
+----------------------------------------------------------------
+beilstein -- Support for submissions to the ``Beilstein Journal
+of Nanotechnology'' published by the Beilstein-Institut
+for the Advancement of Chemical Sciences
+Version:     1.2
+E-mail:      journals-support at beilstein-institut.de
+License:     Released under the LaTeX Project Public License v1.3c or later
+See          http://www.latex-project.org/lppl.txt
+----------------------------------------------------------------
+
+\endpreamble
+\postamble
+
+Originally developed by Martin Sievers (info at schoenerpublizieren.de)
+Copyright (C) 2009-2017 by Beilstein-Institut for the Advancement of Chemical Sciences (Beilstein)
+
+Part of this bundle is derived from cite.sty, to which the
+following license applies:
+  Copyright (C) 1989-2003 by Donald Arseneau
+  These macros may be freely transmitted, reproduced, or
+  modified provided that this notice is left intact.
+
+It may be distributed and/or modified under the conditions of
+the LaTeX Project Public License (LPPL), either version 1.3c of
+this license or (at your option) any later version.  The latest
+version of this license is in the file:
+
+   http://www.latex-project.org/lppl.txt
+
+This work has the LPPL maintenancce status "author-maintained".
+
+This work consists of the files beilstein.dtx,
+                                CHANGELOG.md,
+                                README.md
+          and the derived files beilstein.pdf,
+                                beilstein.cls,
+                                beilstein.ins,
+                                bjnano.bst,
+                                beilstein-template.tex,
+                                beilstein-template.bib.
+          Some graphic files for the documentation and template are also added:
+                                bjnano_logo.pdf
+                                scheme1.pdf
+                                scheme2.pdf
+                                figure1.pdf
+\endpostamble
+\usedir{tex/latex/beilstein}
+\generate{
+  \file{\jobname.cls}{\from{\jobname.dtx}{class}}
+}
+\usedir{bibtex/bst/beilstein}
+\generate{
+  \file{bjnano.bst}{\from{\jobname.dtx}{bst}}
+}
+\nopreamble\nopostamble
+\usedir{tex/latex/beilstein}
+\generate{
+   \file{beilstein-template.tex}{\from{\jobname.dtx}{demo}}
+   \file{beilstein-template.bib}{\from{\jobname.dtx}{bib}}
+}
+\endbatchfile

Added: trunk/Master/texmf-dist/source/latex/beilstein/bjnano_logo.pdf
===================================================================
(Binary files differ)

Index: trunk/Master/texmf-dist/source/latex/beilstein/bjnano_logo.pdf
===================================================================
--- trunk/Master/texmf-dist/source/latex/beilstein/bjnano_logo.pdf	2017-09-10 20:55:20 UTC (rev 45264)
+++ trunk/Master/texmf-dist/source/latex/beilstein/bjnano_logo.pdf	2017-09-10 20:56:37 UTC (rev 45265)

Property changes on: trunk/Master/texmf-dist/source/latex/beilstein/bjnano_logo.pdf
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/pdf
\ No newline at end of property
Added: trunk/Master/texmf-dist/tex/latex/beilstein/beilstein.cls
===================================================================
--- trunk/Master/texmf-dist/tex/latex/beilstein/beilstein.cls	                        (rev 0)
+++ trunk/Master/texmf-dist/tex/latex/beilstein/beilstein.cls	2017-09-10 20:56:37 UTC (rev 45265)
@@ -0,0 +1,890 @@
+%%
+%% This is file `beilstein.cls',
+%% generated with the docstrip utility.
+%%
+%% The original source files were:
+%%
+%% beilstein.dtx  (with options: `class')
+%% ----------------------------------------------------------------
+%% beilstein -- Support for submissions to the ``Beilstein Journal
+%% of Nanotechnology'' published by the Beilstein-Institut
+%% for the Advancement of Chemical Sciences
+%% Version:     1.2
+%% E-mail:      journals-support at beilstein-institut.de
+%% License:     Released under the LaTeX Project Public License v1.3c or later
+%% See          http://www.latex-project.org/lppl.txt
+%% ----------------------------------------------------------------
+%% 
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesClass{beilstein}
+[2017/08/21 v1.2 Template for submissions to the ``Beilstein Journal %
+   of Nanotechnology'' (BJNANO)]
+\RequirePackage{xkeyval}
+\RequirePackage{ifthen}
+\newif\iflangamerican
+\DeclareOptionX<beilstein>{american}{%
+   \langamericantrue%
+}%
+\DeclareOptionX<beilstein>{british}{%
+   \langamericanfalse%
+}
+\DeclareOptionX<beilstein>{english}{%
+   \langamericanfalse%
+}
+\DeclareOptionX<beilstein>{latin1}{\def\beilstein at inputenc{latin1}}
+\DeclareOptionX<beilstein>{utf8}{\def\beilstein at inputenc{utf8}}
+\DeclareOptionX<beilstein>{applemac}{\def\beilstein at inputenc{applemac}}
+\ExecuteOptionsX<beilstein>{american,latin1}
+\newcommand*\beilstein at manuscript{fullresearchpaper}
+\define at cmdkey{beilstein}[beilstein@]{manuscript}{}
+\define at boolkey{beilstein}[beilstein@]{sectionnumbering}[true]{}
+\define at boolkey{beilstein}[beilstein@]{fnpara}[true]{}
+\ProcessOptionsX*<beilstein>
+\newcommand*\beilstein at manuscript@fullresearchpaper{fullresearchpaper}
+\newcommand*\beilstein at manuscript@commentary{commentary}
+\newcommand*\beilstein at manuscript@bookreport{bookreport}
+\newcommand*\beilstein at manuscript@review{review}
+\newcommand*\beilstein at manuscript@letter{%
+letter}
+\newcommand*\beilstein at type@list{fullresearchpaper,commentary,%
+bookreport,review,letter}
+\newcommand*\beilstein at type@default{fullresearchpaper}
+\newcommand*\beilstein at type@check{%
+  \@tempswafalse
+  \@for\@tempa:=\beilstein at type@list\do{%
+    \ifx\@tempa\beilstein at manuscript
+      \expandafter\@tempswatrue
+    \fi
+  }%
+  \if at tempswa\else
+    \ClassWarningNoLine{beilstein}{%
+      Invalid manuscript type \beilstein at manuscript:\MessageBreak
+      changed to default type \beilstein at type@default
+    }%
+    \let\beilstein at manuscript\beilstein at type@default
+  \fi
+}
+\LoadClass[12pt,a4paper,oneside,onecolumn,titlepage]{article}
+\iflangamerican
+   \RequirePackage[american]{babel}%
+   \ClassInfo{beilstein}{Language has been set to American English}%
+\else%
+   \RequirePackage[british]{babel}%
+   \ClassInfo{beilstein}{Language has been set to British English}%
+\fi%
+\RequirePackage[\beilstein at inputenc]{inputenc}
+\ClassInfo{beilstein}{Input encoding has been set to \beilstein at inputenc}\RequirePackage{inputenc}
+\RequirePackage[T1]{fontenc}
+\RequirePackage{mathptmx}
+\RequirePackage[scaled=0.91]{helvet}
+\RequirePackage{courier}
+\RequirePackage{textcomp}
+\RequirePackage[%
+   textheight=23cm,%
+   textwidth=16.8cm,%
+   ignoreheadfoot]{geometry}
+\usepackage[doublespacing]{setspace}
+\pagestyle{plain}
+\RequirePackage[document,newcommands]{ragged2e}
+\setlength{\parindent}{0pt}
+\newcommand{\setdisplaywidth}{%
+   \ifthenelse{\boolean{widetext}}%
+      {\makeatletter%
+       \setlength{\mathindent}{0cm}%
+       \makeatother}%
+      {\makeatletter%
+       \setlength{\mathindent}{1.6cm}%
+       \makeatother}%
+}%
+\newboolean{widetext}
+\newenvironment{widetext}%
+   {\setboolean{widetext}{true}}%
+   {\setboolean{widetext}{false}}
+\RequirePackage[mathlines]{lineno}
+\linenumbers
+\newcommand*\patchAmsMathEnvironmentForLineno[1]{%
+  \expandafter\let\csname old#1\expandafter\endcsname\csname #1\endcsname
+  \expandafter\let\csname oldend#1\expandafter\endcsname\csname end#1\endcsname
+  \renewenvironment{#1}%
+     {\linenomath\setdisplaywidth\csname old#1\endcsname}%
+     {\csname oldend#1\endcsname\endlinenomath}}%
+\newcommand*\patchBothAmsMathEnvironmentsForLineno[1]{%
+  \patchAmsMathEnvironmentForLineno{#1}%
+  \patchAmsMathEnvironmentForLineno{#1*}}%
+\AtBeginDocument{%
+\patchBothAmsMathEnvironmentsForLineno{equation}%
+\patchBothAmsMathEnvironmentsForLineno{align}%
+\patchBothAmsMathEnvironmentsForLineno{flalign}%
+\patchBothAmsMathEnvironmentsForLineno{alignat}%
+\patchBothAmsMathEnvironmentsForLineno{gather}%
+\patchBothAmsMathEnvironmentsForLineno{multline}%
+}%
+\ifbeilstein at sectionnumbering%
+   \setcounter{secnumdepth}{3}
+   \ClassInfo{beilstein}{Section numbering turned on}
+\else%
+   \setcounter{secnumdepth}{-2}
+   \ClassInfo{beilstein}{Section numbering turned off}
+\fi%
+\renewcommand\Large{\fontsize{16pt}{22pt}\selectfont}
+\renewcommand\section{%
+\@startsection{section}{1}{\z@}%
+{-2ex}%
+{1ex}%
+{\normalfont\Large\bfseries}}
+\renewcommand\subsection{%
+\@startsection{subsection}{2}{\z@}%
+  {-2ex}%
+  {1ex}%
+  {\normalfont\large\bfseries}}
+\renewcommand\subsubsection{%
+\@startsection{subsubsection}{3}{\z@}%
+  {-2ex}%
+  {1ex}%
+  {\normalfont\normalsize\bfseries}}
+\renewcommand\paragraph{%
+   \ClassError{beilstein}{The sectioning command \string\paragraph\space
+   \MessageBreak is not supported by the beilstein class}{You can only use \string\section\space \string\subsection\space and \string\subsubsection}%
+   \@gobble}
+\renewcommand\subparagraph{
+   \ClassError{beilstein}{The sectioning command \string\paragraph\space
+   \MessageBreak is not supported by the beilstein class}{You can only use \string\section\space \string\subsection\space and \string\subsubsection}}
+\RequirePackage[intlimits,sumlimits,namelimits,fleqn]{amsmath}
+\setlength{\mathindent}{1.6cm}%
+\RequirePackage{amssymb}
+\DeclareFontFamily{U}{eur}{\skewchar\font'177}
+\DeclareFontShape{U}{eur}{m}{n}{%
+  <-6> eurm5 <6-8> eurm7 <8-> eurm10}{}
+\DeclareFontShape{U}{eur}{b}{n}{%
+  <-6> eurb5 <6-8> eurb7 <8-> eurb10}{}
+\DeclareSymbolFont{ugrf at m}{U}{eur}{m}{n}
+\SetSymbolFont{ugrf at m}{bold}{U}{eur}{b}{n}
+\let\uppi\@undefined
+\DeclareMathSymbol{\upalpha}{\mathord}{ugrf at m}{"0B}
+\DeclareMathSymbol{\upbeta}{\mathord}{ugrf at m}{"0C}
+\DeclareMathSymbol{\upgamma}{\mathord}{ugrf at m}{"0D}
+\DeclareMathSymbol{\updelta}{\mathord}{ugrf at m}{"0E}
+\DeclareMathSymbol{\upepsilon}{\mathord}{ugrf at m}{"0F}
+\DeclareMathSymbol{\upzeta}{\mathord}{ugrf at m}{"10}
+\DeclareMathSymbol{\upeta}{\mathord}{ugrf at m}{"11}
+\DeclareMathSymbol{\uptheta}{\mathord}{ugrf at m}{"12}
+\DeclareMathSymbol{\upiota}{\mathord}{ugrf at m}{"13}
+\DeclareMathSymbol{\upkappa}{\mathord}{ugrf at m}{"14}
+\DeclareMathSymbol{\uplambda}{\mathord}{ugrf at m}{"15}
+\DeclareMathSymbol{\upmu}{\mathord}{ugrf at m}{"16}
+\DeclareMathSymbol{\upnu}{\mathord}{ugrf at m}{"17}
+\DeclareMathSymbol{\upxi}{\mathord}{ugrf at m}{"18}
+\DeclareMathSymbol{\uppi}{\mathord}{ugrf at m}{"19}
+\DeclareMathSymbol{\uprho}{\mathord}{ugrf at m}{"1A}
+\DeclareMathSymbol{\upsigma}{\mathord}{ugrf at m}{"1B}
+\DeclareMathSymbol{\uptau}{\mathord}{ugrf at m}{"1C}
+\DeclareMathSymbol{\upupsilon}{\mathord}{ugrf at m}{"1D}
+\DeclareMathSymbol{\upphi}{\mathord}{ugrf at m}{"1E}
+\DeclareMathSymbol{\upchi}{\mathord}{ugrf at m}{"1F}
+\DeclareMathSymbol{\uppsi}{\mathord}{ugrf at m}{"20}
+\DeclareMathSymbol{\upomega}{\mathord}{ugrf at m}{"21}
+\DeclareMathSymbol{\upvarepsilon}{\mathord}{ugrf at m}{"22}
+\DeclareMathSymbol{\upvartheta}{\mathord}{ugrf at m}{"23}
+\DeclareMathSymbol{\upvarpi}{\mathord}{ugrf at m}{"24}
+\let\upvarrho\uprho
+\let\upvarsigma\upsigma
+\DeclareMathSymbol{\upvarphi}{\mathord}{ugrf at m}{"27}
+\DeclareMathSymbol{\Upgamma}{\mathord}{ugrf at m}{"00}
+\DeclareMathSymbol{\Updelta}{\mathord}{ugrf at m}{"01}
+\DeclareMathSymbol{\Uptheta}{\mathord}{ugrf at m}{"02}
+\DeclareMathSymbol{\Uplambda}{\mathord}{ugrf at m}{"03}
+\DeclareMathSymbol{\Upxi}{\mathord}{ugrf at m}{"04}
+\DeclareMathSymbol{\Uppi}{\mathord}{ugrf at m}{"05}
+\DeclareMathSymbol{\Upsigma}{\mathord}{ugrf at m}{"06}
+\DeclareMathSymbol{\Upupsilon}{\mathord}{ugrf at m}{"07}
+\DeclareMathSymbol{\Upphi}{\mathord}{ugrf at m}{"08}
+\DeclareMathSymbol{\Uppsi}{\mathord}{ugrf at m}{"09}
+\DeclareMathSymbol{\Upomega}{\mathord}{ugrf at m}{"0A}
+\RequirePackage{multicol}
+\newcommand*\patchAmsMathEnvironmentForOnecolumn[1]{%
+  \expandafter\let\csname old#1\expandafter\endcsname\csname #1\endcsname
+  \expandafter\let\csname oldend#1\expandafter\endcsname\csname end#1\endcsname
+  \renewenvironment{#1}%
+     {\csname old#1\endcsname}%
+     {\csname oldend#1\endcsname}}%
+\newcommand*\patchBothAmsMathEnvironmentsForOnecolumn[1]{%
+  \patchAmsMathEnvironmentForOnecolumn{#1}%
+  \patchAmsMathEnvironmentForOnecolumn{#1*}}%
+\def\testbx{bx}
+\AtBeginDocument{%
+   \@ifundefined{chem}{%
+      \DeclareRobustCommand*{\chem}[1]{\ensuremath{%
+         \ifx\testbx\f at series\mathbf{#1}\else\mathrm{#1}\fi}}}%
+      {}
+   \@ifundefined{unit}{%
+      \DeclareRobustCommand*{\unit}[1]{%
+         \ensuremath{\def\mu{\mbox{\textmu}}\def~{\,}%
+         \unskip~%
+         \ifx\testbx\f at series\mathbf{#1}\else\mathrm{#1}\fi}}}%
+      {}
+   \@ifundefined{degree}{%
+      \newcommand*{\degree}{\ensuremath{{}^{\circ}}}}%
+      {}
+   \@ifundefined{celsius}{%
+      \newcommand*{\celsius}{\degree\kern-\scriptspace C}}%
+      {}
+   \@ifundefined{angstrom}{%
+      \newcommand*{\angstrom}{\AA}}%
+      {}
+   \@ifundefined{permil}{%
+      \newcommand*{\permil}{\textperthousand}}%
+      {}
+   \@ifundefined{percent}{%
+      \newcommand*{\percent}{\%}}%
+      {}
+}%
+\AtBeginDocument{%
+   \@ifpackageloaded{bpchem}{}{%
+      \DeclareRobustCommand{\allowhyphens}{\penalty\@M \hskip\z at skip}
+      \DeclareRobustCommand{\BreakHyph}{\penalty\@M -\allowhyphens}
+      \DeclareRobustCommand{\MultiBreak}%
+         {\penalty\@M\discretionary{-}{}{\kern.03em}%
+          \allowhyphens}
+      \DeclareRobustCommand{\DoIUPAC}[1]{%
+         #1\endgroup}
+      \def\Prep{%
+         \let\-=\BreakHyph%
+         \let\|=\MultiBreak%
+         \DoIUPAC%
+      }
+      \DeclareRobustCommand*{\IUPAC}{%
+         \begingroup\ignorespaces%
+         \Prep}%
+      \expandafter\DeclareRobustCommand\expandafter\|\expandafter{\|}
+   }%
+   \DeclareRobustCommand{\-}{%
+      \discretionary{%
+         \char \ifnum\hyphenchar\font<\z@
+            \defaulthyphenchar
+         \else
+            \hyphenchar\font
+         \fi%
+      }{}{}%
+   }%
+}%
+\newcommand{\fnpara}{\setboolean{beilstein at fnpara}{true}}
+\newcommand{\fnnormal}{\setboolean{beilstein at fnpara}{false}}
+\newskip\footglue
+\newcommand{\testfnpara}{
+   \ifbeilstein at fnpara%
+      \renewcommand\@mpfootnotetext[1]{%
+        \global\setbox\@mpfootins\vbox{%
+          \unvbox\@mpfootins
+          \reset at font\footnotesize
+          \hsize\columnwidth
+          \@parboxrestore
+          \protected at edef\@currentlabel
+               {\csname p at mpfootnote\endcsname\@thefnmark}%
+          \color at begingroup
+          \setbox0=\hbox{%
+            \@makefntext{%
+              \rule\z@\footnotesep\ignorespaces##1\@finalstrut\strutbox
+              \penalty -10
+              \hskip\footglue
+            }%
+          }%
+          \dp0=0pt \ht0=\fudgefactor\wd0 \box0
+          \color at endgroup}}
+      \footglue=1em plus.3em minus.3em
+      \def\endminipage{%
+          \par
+          \unskip
+          \ifvoid\@mpfootins\else
+            \vskip\skip\@mpfootins
+            \normalcolor
+            \footnoterule
+            \mpmakefootnoteparagraph
+          \fi
+          \global\@minipagefalse %% added 24 May 89
+        \color at endgroup
+        \egroup
+        \expandafter\@iiiparbox\@mpargs{\unvbox\@tempboxa}}
+      \def\@makecol{%
+         \ifvoid\footins
+           \setbox\@outputbox\box\@cclv
+         \else
+           \setbox\@outputbox\vbox{%
+             \boxmaxdepth \@maxdepth
+             \unvbox \@cclv
+             \vskip \skip\footins
+             \color at begingroup
+               \normalcolor
+               \footnoterule
+               \makefootnoteparagraph
+             \color at endgroup
+             }%
+         \fi%
+         \xdef\@freelist{\@freelist\@midlist}%
+         \global\let\@midlist\@empty
+         \@combinefloats
+         \ifvbox\@kludgeins
+           \@makespecialcolbox
+         \else
+           \setbox\@outputbox\vbox to\@colht{%
+             \@texttop
+             \dimen@ \dp\@outputbox
+             \unvbox \@outputbox
+             \vskip -\dimen@
+             \@textbottom
+             }%
+         \fi%
+         \global\maxdepth\@maxdepth
+      }%
+      {\catcode`p=12 \catcode`t=12 \gdef\@ennumber##1pt {##1} }
+      {\footnotesize \newdimen\footnotebaselineskip
+        \global
+        \footnotebaselineskip=\normalbaselineskip}
+      \dimen0=\footnotebaselineskip \multiply\dimen0 by 1024
+      \divide \dimen0 by \columnwidth \multiply\dimen0 by 64
+      \xdef\fudgefactor{\expandafter0.2441}%%\@ennumber\the\dimen0 }
+      \def\makefootnoteparagraph{\unvbox\footins \makehboxofhboxes
+        \setbox0=\hbox{\unhbox0 \removehboxes}
+          \hsize\columnwidth
+          \@parboxrestore
+          \baselineskip=\footnotebaselineskip
+          \noindent
+        \rule{\z@}{\footnotesep}%
+        \unhbox0\par}
+      \def\mpmakefootnoteparagraph{\unvbox\@mpfootins \makehboxofhboxes
+        \setbox0=\hbox{\unhbox0 \removehboxes}
+          \hsize\columnwidth
+          \@parboxrestore
+          \baselineskip=\footnotebaselineskip
+          \noindent
+        \rule{\z@}{\footnotesep}%
+        \unhbox0\par}
+      \def\makehboxofhboxes{\setbox0=\hbox{}
+        \loop\setbox2=\lastbox \ifhbox2 \setbox0=\hbox{\box2\unhbox0}\repeat}
+      \def\removehboxes{\setbox0=\lastbox
+        \ifhbox0{\removehboxes}\unhbox0 \fi}%
+      \ClassInfo{beilstein}{Footnotes are set to paragraph mode.}
+   \fi%
+}%
+\RequirePackage{float}
+\let\belowcaptionskip\abovecaptionskip
+\renewcommand\floatc at plain[2]{{\bfseries #1:} #2\par}
+\floatstyle{plaintop}
+\restylefloat{table}
+\floatstyle{plain}
+\restylefloat{figure}
+\RequirePackage{flafter}
+\renewcommand*{\fps at figure}{htb}
+\renewcommand*{\fps at table}{htb}
+\def\FloatBarrier{\par\begingroup \let\@elt\relax
+ \edef\@tempa{\@botlist\@deferlist\@dbldeferlist}%
+ \ifx\@tempa\@empty%
+ \else
+    \ifx\@fltovf\relax % my indicator of recursion
+       \if at firstcolumn%
+         \clearpage
+       \else %
+         \null\newpage\FloatBarrier
+       \fi
+    \else%
+       \newpage \let\@fltovf\relax%
+       \FloatBarrier % recurse once only
+ \fi\fi \endgroup
+ \suppressfloats[t]}
+\newfloat{scheme}{htb}{los}
+\floatname{scheme}{Scheme}
+\RequirePackage{graphicx}
+\RequirePackage{array}
+\RequirePackage{tabularx}
+\RequirePackage{longtable}
+\newenvironment{sglcoltabular}[1]{\begin{tabular*}{8.2cm}{#1}}%
+{\end{tabular*}}
+\newenvironment{dblcoltabular}[1]{\begin{tabular*}{16.8cm}{#1}}%
+{\end{tabular*}}
+\newenvironment{sglcoltabularx}[1]{\tabularx{8.2cm}{#1}}{\endtabularx}
+\newenvironment{dblcoltabularx}[1]{\tabularx{16.8cm}{#1}}{\endtabularx}
+\newcommand{\sglcolfigure}[1]%
+{\includegraphics[width=8.2cm,keepaspectratio]{#1}}
+\newcommand{\dblcolfigure}[1]%
+{\includegraphics[width=16.8cm,keepaspectratio]{#1}}
+\newcommand{\sglcolscheme}[1]%
+{\includegraphics[width=8.2cm,keepaspectratio]{#1}}
+\newcommand{\dblcolscheme}[1]%
+{\includegraphics[width=16.8cm,keepaspectratio]{#1}}
+\IfFileExists{cleveref.sty}{%
+  \RequirePackage{cleveref}[2009/12/11]
+}{\ClassInfo{beilstein}{Package ``cleveref'' was not found and %
+  \MessageBreak therefore has not been loaded.}}
+\@ifpackageloaded{cleveref}{%
+\crefname{figure}{Figure}{Figures}
+\crefname{table}{Table}{Tables}
+\crefname{scheme}{Scheme}{Schemes}
+\crefformat{scheme}{Scheme~#2#1#3}
+\Crefformat{scheme}{Scheme~#2#1#3}
+\crefname{suppinfo}{Supporting Information File}{Supporting
+Information Files}
+\crefformat{suppinfo}{Supporting Information File~#2#1#3}
+\Crefformat{suppinfo}{Supporting Information File~#2#1#3}
+}{\newcommand{\cref}[1]%
+   {\ClassError{beilstein}{Macro \string\cref\space has not been
+    defined\MessageBreak since the cleveref package could not be
+    loaded}{Please install the package cleveref first}
+   }%
+}%
+\RequirePackage[sort&compress,numbers]{natbib}
+\renewcommand{\bibnumfmt}[1]{#1.\ }
+\bibliographystyle{bjnano}
+\def\NAT at spacechar{}%
+\def\NAT at citexnum[#1][#2]#3{%
+  \NAT at reset@parser
+  \NAT at sort@cites{#3}%
+  \NAT at reset@citea
+  \@cite{\def\NAT at num{-1}\let\NAT at last@yr\relax\let\NAT at nm\@empty
+    \@for\@citeb:=\NAT at cite@list\do
+    {\@safe at activestrue
+     \edef\@citeb{\expandafter\@firstofone\@citeb\@empty}%
+     \@safe at activesfalse
+     \@ifundefined{b@\@citeb\@extra at b@citeb}{%
+       {\reset at font\bfseries?}
+        \NAT at citeundefined\PackageWarning{natbib}%
+       {Citation `\@citeb' on page \thepage \space undefined}}%
+     {\let\NAT at last@num\NAT at num\let\NAT at last@nm\NAT at nm
+      \NAT at parse{\@citeb}%
+      \ifNAT at longnames\@ifundefined{bv@\@citeb\@extra at b@citeb}{%
+        \let\NAT at name=\NAT at all@names
+        \global\@namedef{bv@\@citeb\@extra at b@citeb}{}}{}%
+      \fi
+      \ifNAT at full\let\NAT at nm\NAT at all@names\else
+        \let\NAT at nm\NAT at name\fi
+      \ifNAT at swa
+       \@ifnum{\NAT at ctype>\@ne}{%
+        \@citea
+        \NAT at hyper@{\@ifnum{\NAT at ctype=\tw@}{\NAT at test{\NAT at ctype}}{\NAT at alias}}%
+       }{%
+        \@ifnum{\NAT at cmprs>\z@}{%
+         \NAT at ifcat@num\NAT at num
+          {\let\NAT at nm=\NAT at num}%
+          {\def\NAT at nm{-2}}%
+         \NAT at ifcat@num\NAT at last@num
+          {\@tempcnta=\NAT at last@num\relax}%
+          {\@tempcnta\m at ne}%
+         \@ifnum{\NAT at nm=\@tempcnta}{%
+          \@ifnum{\NAT at merge>\@ne}{}{\NAT at last@yr at mbox}%
+         }{%
+           \advance\@tempcnta by\@ne
+           \@ifnum{\NAT at nm=\@tempcnta}{%
+             \ifx\NAT at last@yr\relax
+               \def at NAT@last at yr{\@citea}%
+             \else
+               \def at NAT@last at yr{-\NAT at penalty}%
+             \fi
+           }{%
+             \NAT at last@yr at mbox
+           }%
+         }%
+        }{%
+         \@tempswatrue
+         \@ifnum{\NAT at merge>\@ne}{\@ifnum{\NAT at last@num=\NAT at num\relax}{\@tempswafalse}{}}{}%
+         \if at tempswa\NAT at citea@mbox\fi
+        }%
+       }%
+       \NAT at def@citea
+      \else
+        \ifcase\NAT at ctype
+          \ifx\NAT at last@nm\NAT at nm \NAT at yrsep\NAT at penalty\NAT at space\else
+            \@citea \NAT at test{\@ne}\NAT at spacechar\NAT at mbox{\NAT at super@kern\NAT@@open}%
+          \fi
+          \if*#1*\else#1\NAT at spacechar\fi
+          \NAT at mbox{\NAT at hyper@{{\citenumfont{\NAT at num}}}}%
+          \NAT at def@citea at box
+        \or
+          \NAT at hyper@citea at space{\NAT at test{\NAT at ctype}}%
+        \or
+          \NAT at hyper@citea at space{\NAT at test{\NAT at ctype}}%
+        \or
+          \NAT at hyper@citea at space\NAT at alias
+        \fi
+      \fi
+     }%
+    }%
+      \@ifnum{\NAT at cmprs>\z@}{\NAT at last@yr}{}%
+      \ifNAT at swa\else
+        \@ifnum{\NAT at ctype=\z@}{%
+          \if*#2*\else\NAT at cmt#2\fi
+        }{}%
+        \NAT at mbox{\NAT@@close}%
+      \fi
+  }{#1}{#2}%
+}%
+\newboolean{nobreakdashused}
+\newcommand{\mynobreakdash}{%
+   \ifthenelse{\boolean{nobreakdashused}}
+      {}
+      {\nobreakdash--%
+       \setboolean{nobreakdashused}{true}%
+      }}%
+\RequirePackage{url}
+\urlstyle{same}
+\newcounter{c at totalcites}
+\newcounter{c at floatcites}
+\AtBeginDocument{\setcounter{c at floatcites}{\value{c at totalcites}}}
+\def\floatcites{}
+\let\ORIG at bibliography\bibliography
+\renewcommand\bibliography{%
+   \FloatBarrier%
+   \@ifundefined{NAT at num}{\gdef\NAT at num{0}}{}%
+   \ifx\NAT at num\@empty\gdef\NAT at num{0}\fi%
+\immediate\write\@auxout{%
+        \string\setcounter{\string c at totalcites}{\NAT at num}}%
+\floatcites%
+\setlength{\bibsep}{0pt}%
+\ORIG at bibliography}
+\renewenvironment{thebibliography}[1]
+     {\section*{\refname}%
+      \@mkboth{\MakeUppercase\refname}{\MakeUppercase\refname}%
+      \list{\@biblabel{\@arabic\c at enumiv}}%
+           {\settowidth\labelwidth{\@biblabel{#1}}%
+            \leftmargin\labelwidth
+            \advance\leftmargin\labelsep
+            \@openbib at code
+            \usecounter{enumiv}%
+            \let\p at enumiv\@empty
+            \renewcommand\theenumiv{\@arabic\c at enumiv}}%
+      \sloppy
+      \clubpenalty10000
+      \@clubpenalty \clubpenalty
+      \widowpenalty10000%
+      \sfcode`\.\@m}
+     {\def\@noitemerr
+       {\@latex at warning{Empty `thebibliography' environment}}%
+      \endlist}
+\DeclareRobustCommand\authors{}
+\def\authorsep{}
+\DeclareRobustCommand\temp at author{}
+\DeclareRobustCommand\temp at superscripts{}
+\def\emails{}
+\def\emailsep{}
+\newcommand{\oneORnone}{1}
+\newcommand{\firstoptarg}{}
+\newcommand{\temp at firstoptarg}{}
+\newcounter{c at author}
+\newcounter{c at totauthor}
+\newcounter{c at totalauthors}
+\newboolean{corauth}
+\setboolean{corauth}{false}
+\newboolean{extraaffil}
+\setboolean{extraaffil}{false}
+\def\author{\@ifstar{\@ifnextchar[{\@@corauth}{\@corauth}}%
+{\@ifnextchar[{\@@author}{\@author}}}
+\def\@author#1{%
+   \stepcounter{c at totalauthors}%
+   \g at addto@macro\authors{%
+    \ifnum\value{c at totauthor}>1%
+     \unskip,\space%
+    \fi%
+    \temp at author\unskip\temp at superscripts\unskip%
+    \stepcounter{c at totauthor}%
+    \stepcounter{c at author}%
+    \renewcommand{\temp at author}{%
+      \upshape#1\unskip}%
+   \renewcommand{\temp at superscripts}{\empty}%
+   \setboolean{extraaffil}{false}%
+   }%
+}%
+\def\@@author[#1]{%
+   \stepcounter{c at totalauthors}%
+   \g at addto@macro\authors{\renewcommand\temp at firstoptarg{#1}}%
+   \@ifnextchar[{\@@@author}{\@@@@author}
+}%
+\def\@@@@author#1{%
+    \stepcounter{c at totalauthors}%
+    \g at addto@macro\authors{%
+    \ifnum\value{c at totauthor}>1%
+     \unskip,\space%
+    \fi%
+    \temp at author\unskip\temp at superscripts\unskip%
+    \stepcounter{c at totauthor}%
+    \let\firstoptarg\temp at firstoptarg
+    \renewcommand{\temp at author}{%
+        \ifthenelse{\equal{\firstoptarg}{1}}%
+            {\upshape#1\unskip\textsuperscript{%
+                \oneORnone}}%
+            {\upshape#1\unskip\textsuperscript{%
+                \firstoptarg}}\unskip%
+    }%
+    \renewcommand{\temp at superscripts}{\empty}%
+    \setboolean{extraaffil}{true}
+   }}%
+\def\@@@author[#1]#2{%
+   \stepcounter{c at totalauthors}%
+    \g at addto@macro\authors{%
+    \ifnum\value{c at totauthor}>1%
+     \unskip,\space%
+    \fi%
+    \temp at author\unskip\temp at superscripts\unskip%
+    \stepcounter{c at totauthor}%
+    \let\firstoptarg\temp at firstoptarg
+    \renewcommand{\temp at author}{%
+        \ifthenelse{\equal{\firstoptarg}{1}}%
+            {\upshape#2\unskip\textsuperscript{%
+                \oneORnone}}%
+            {\ifthenelse{\equal{\firstoptarg}{}}%
+               {\upshape#2\unskip}%
+               {\upshape#2\unskip\textsuperscript{%
+                \firstoptarg}}\unskip}%
+    }%
+    \renewcommand{\temp at superscripts}{\empty}%
+    \ifthenelse{\equal{\firstoptarg}{}}%
+      {\setboolean{extraaffil}{false}}%
+      {\setboolean{extraaffil}{true}}%
+    \g at addto@macro\emails{\normalsize%
+   \emailsep#2 - #1%
+   \def\emailsep{;\space}}
+   }%
+}%
+\def\@corauth#1#2{%
+   \setboolean{corauth}{true}%
+   \stepcounter{c at totalauthors}%
+   \g at addto@macro\authors{\normalsize%
+    \ifnum\value{c at totauthor}>1%
+     \unskip,\space%
+    \fi%
+    \temp at author\unskip%
+    \temp at superscripts\unskip%
+    \stepcounter{c at totauthor}%
+    \stepcounter{c at author}%
+    \renewcommand{\temp at author}{%
+     \upshape#1\unskip\textsuperscript{%
+            $\ast$}\unskip%
+        }%
+        \renewcommand{\temp at superscripts}{\empty}%
+        \setboolean{extraaffil}{false}%
+   }%
+\g at addto@macro\emails{\normalsize%
+\emailsep#1 - #2%
+\def\emailsep{;\space}}
+}%
+\def\@@corauth[#1]#2#3{
+    \setboolean{corauth}{true}%
+    \stepcounter{c at totalauthors}
+    \g at addto@macro\authors{\normalsize%
+    \ifnum\value{c at totauthor}>1%
+     \unskip,\space%
+    \fi%
+    \temp at author\unskip\temp at superscripts\unskip%
+    \stepcounter{c at totauthor}%
+    \renewcommand{\temp at author}{%
+      \ifthenelse{\equal{#1}{1}}%
+        {\upshape#2\unskip\textsuperscript{%
+            $\ast$\oneORnone}}%
+        {\upshape#2\unskip\textsuperscript{%
+            $\ast$#1}}%
+    }%
+    \renewcommand{\temp at superscripts}{\empty}%
+    \setboolean{extraaffil}{true}%
+}%
+\g at addto@macro\emails{\normalsize%
+   \emailsep#2 - #3%
+   \def\emailsep{;\space}}%
+}%
+\def\affiliations{}
+\newcounter{c at affiliation}
+\newcounter{c at totaffiliation}
+\newcounter{c at superscripts}
+\newcommand\temp at affil{\par\vskip2ex Address:\space}
+\newcommand\affiliation[2][]{
+   \stepcounter{c at totaffiliation}
+   \ifthenelse{\value{c at totaffiliation}>1}%
+      {\renewcommand{\oneORnone}{1}}{}%
+   \g at addto@macro\authors{%
+      \ifthenelse{\equal{\temp at superscripts}{\empty}\AND\NOT\boolean{extraaffil}}{%
+         \stepcounter{c at superscripts}%
+         \renewcommand{\temp at superscripts}{\unskip%
+            %\ifthenelse{\value{c at totaffiliation}>1}{}{}%
+               {\textsuperscript{\arabic{c at superscripts}}\unskip}%
+               %{\textsuperscript{\oneORnone}\unskip}%
+         }
+      }{\g at addto@macro\temp at superscripts{%
+         \protect\stepcounter{c at superscripts}%
+         \unskip\textsuperscript{,\,\arabic{c at superscripts}}\unskip}%
+      }%
+   }%
+   \g at addto@macro\affiliations{%
+    \ifnum\value{c at affiliation}>1%
+     \unskip;\space%
+    \fi%
+    \temp at affil%
+    \stepcounter{c at affiliation}%
+    \renewcommand{\temp at affil}%
+         {\ifthenelse{\value{c at affiliation}=1}%
+            {\ifthenelse{\value{c at totauthor}=1}%
+               {#2}%
+               {\textsuperscript{\oneORnone}#2}}%
+            {\ifthenelse{\value{c at totauthor}=1}%
+               {#2}%
+               {\textsuperscript{\arabic{c at affiliation}}#2}}%
+         }%
+   }%
+}%
+\long\def\maketitle{%
+    {\Large\bfseries\@title}\par\vskip2ex
+    \normalsize
+    \authors%
+    \ifthenelse{\value{c at totauthor}>1}%
+      {\unskip\space and\space\temp at author\temp at superscripts}%
+      {\ifthenelse{\boolean{corauth}}%
+         {\temp at author}%
+         {\temp at author\textsuperscript{$\ast$}}}%
+    \par\vskip2ex%
+    \ifthenelse{\boolean{corauth}}{}%
+      {\ifthenelse{\value{c at totauthor}>1}%
+         {\ClassError{beilstein}{At least one corresponding author has to be given.\MessageBreak Please use \string\author*\space for that}%
+         {Please use at least one \string\author* command to set information %
+         about the corresponding author.\MessageBreak Have a look at the %
+         documentation for more details}}%
+         {\ifthenelse{\equal{\emails}{}}%
+            {\ClassError{beilstein}{The author has been made corresponding author.\MessageBreak Therefore please provide an email address for the author}%
+            {Use the second optional argument for that or use \string\author* instead}}{}}}
+    \ifthenelse{\value{c at totaffiliation}>1}%
+     {\affiliations\unskip\space and\space\temp at affil}%
+     {\affiliations\temp at affil}%
+    \par\vskip3ex
+    \normalsize Email:\space\emails\par\vskip2ex
+    \textsuperscript{$\ast$}\space{\small Corresponding author}%
+    \par\vskip3ex
+}%
+\beilstein at type@check
+\ifthenelse{\not\equal{\beilstein at manuscript}{\beilstein at manuscript@bookreport}}%
+{\renewenvironment{abstract}{\textbf{\large\abstractname}\\[2ex]}{\\[2ex]}%
+\newcommand*{\background}{\textbf{Background:\ }}
+\newcommand*{\results}{\\\textbf{Results:\ }}
+\newcommand*{\conclusion}{\\\textbf{Conclusion:\ }}}%
+{\renewenvironment{abstract}{\ClassWarning{beilstein}{An abstract %
+should not be part of the chosen document type \beilstein at manuscript}}{}%
+\newcommand*{\background}{\relax}%
+\newcommand*{\results}{\relax}%
+\newcommand*{\conclusion}{\relax}}%
+\ifthenelse{\not\equal{\beilstein at manuscript}{\beilstein at manuscript@commentary}%
+\and\not\equal{\beilstein at manuscript}{\beilstein at manuscript@bookreport}}%
+{\newcommand{\keywords}[1]{\textbf{\large Keywords}\\*#1}}%
+{\newcommand{\keywords}[1]{\ClassWarning{beilstein}{Keywords should not be part of the chosen document type \beilstein at manuscript}}}
+\newenvironment{acknowledgements}{\par\textbf{\large Acknowledgements\\*}}{}
+\newenvironment{suppinfo}%
+   {\FloatBarrier%
+    \par\vskip2ex%
+    \textbf{\large Supporting Information\\*}}{}
+\newcounter{suppinfo}
+\newcommand{\sifile}[4][]{%
+   \par
+\refstepcounter{suppinfo}%
+Supporting Information File \arabic{suppinfo}:\\*
+File Name: \url{#2}\\
+File Format: #3\\
+Title: #4\\
+\ifthenelse{\equal{#1}{}}{}{Description: #1}\vspace{1ex}}
+\newcommand*{\CN}[1]{\textbf{#1}}
+\renewcommand\@makefntext[1]%
+    {\noindent\makebox[.5em][l]{\@makefnmark\,}#1}
+\renewcommand{\footnoterule}{}
+\let\ORIGfootnote\footnote
+\newcommand{\errorfootnote}[2]{\ClassError{beilstein}{Footnotes are not
+allowed throughout the document}%
+{Avoid footnotes and give those information in the main text}}
+\let\footnote\errorfootnote
+\renewenvironment{table}%
+   {\@nameuse{fst at table}%
+    \@float at setevery{table}\@float{table}
+    \testfnpara%
+    \begin{minipage}{\linewidth}%
+    \renewcommand\footnote[2][]{\protect\ORIGfootnote{##2}}}
+   {\end{minipage}%
+    \float at end%
+    \gdef\footnote{\errorfootnote\@gobble}}
+\let\ORIGlongtable\longtable
+\let\ORIGendlongtable\endlongtable
+\newcommand{\longtablefootnote}{}
+\newcounter{myfootnote}
+\newboolean{firstfootnote}
+\renewcommand\longtable{%
+   \renewcommand{\longtablefootnote}{}
+   \setcounter{footnote}{0}
+   \setcounter{myfootnote}{0}
+   \setboolean{firstfootnote}{true}
+   \renewcommand\thefootnote{\alph{footnote}}
+   \renewcommand\themyfootnote{\alph{myfootnote}}
+   \renewcommand\footnote[2][]{%
+      \footnotemark%
+      \g at addto@macro{\longtablefootnote}{%
+         \stepcounter{myfootnote}
+         \ifthenelse{\boolean{firstfootnote}}%
+            {\setboolean{firstfootnote}{false}}%
+            {\ifbeilstein at fnpara
+               \quad
+             \else
+               \newline
+             \fi
+            }%
+         \textsuperscript{\scriptsize\themyfootnote}%
+         \footnotesize ##2\normalsize}}%
+   \ORIGlongtable}
+\renewcommand\endlongtable{%
+   \ORIGendlongtable%
+   \longtablefootnote
+   \gdef\footnote{\errorfootnote\@gobble}}
+\renewcommand{\thanks}[1]{\ClassError{beilstein}{\string\thanks\space %
+   has been deactivated.\MessageBreak %
+   Please use the commands of the beilstein class instead}%
+   {The class defines commands to set the titlepage\MessageBreak %
+   properly. Have a look at the documentation for more details}}
+\renewcommand{\and}{\ClassError{beilstein}{\string\and\space has been deactivated.\MessageBreak %
+   Please use the commands of the beilstein class instead}{The class %
+   defines commands to set the titlepage\MessageBreak properly. Have a %
+   look at the documentation for more details}}
+\let\ORIGfigure\figure
+\let\ORIGscheme\scheme
+\let\ORIGtable\table
+\renewcommand{\figure}{\par\ORIGfigure\par}
+\renewcommand{\scheme}{\par\ORIGscheme\par}
+\renewcommand{\table}{\par\ORIGtable\par}
+\reversemarginpar
+\tolerance 1414
+\hbadness 1414
+\emergencystretch 1.5em
+\hfuzz 0.3pt
+\clubpenalty=5000
+\widowpenalty=10000
+\vfuzz \hfuzz
+%% 
+%% Originally developed by Martin Sievers (info at schoenerpublizieren.de)
+%% Copyright (C) 2009-2017 by Beilstein-Institut for the Advancement of Chemical Sciences (Beilstein)
+%% 
+%% Part of this bundle is derived from cite.sty, to which the
+%% following license applies:
+%%   Copyright (C) 1989-2003 by Donald Arseneau
+%%   These macros may be freely transmitted, reproduced, or
+%%   modified provided that this notice is left intact.
+%% 
+%% It may be distributed and/or modified under the conditions of
+%% the LaTeX Project Public License (LPPL), either version 1.3c of
+%% this license or (at your option) any later version.  The latest
+%% version of this license is in the file:
+%% 
+%%    http://www.latex-project.org/lppl.txt
+%% 
+%% This work has the LPPL maintenancce status "author-maintained".
+%% 
+%% This work consists of the files beilstein.dtx,
+%%                                 CHANGELOG.md,
+%%                                 README.md
+%%           and the derived files beilstein.pdf,
+%%                                 beilstein.cls,
+%%                                 beilstein.ins,
+%%                                 bjnano.bst,
+%%                                 beilstein-template.tex,
+%%                                 beilstein-template.bib.
+%%           Some graphic files for the documentation and template are also added:
+%%                                 bjnano_logo.pdf
+%%                                 scheme1.pdf
+%%                                 scheme2.pdf
+%%                                 figure1.pdf
+%%
+%% End of file `beilstein.cls'.


Property changes on: trunk/Master/texmf-dist/tex/latex/beilstein/beilstein.cls
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Modified: trunk/Master/tlpkg/bin/tlpkg-ctan-check
===================================================================
--- trunk/Master/tlpkg/bin/tlpkg-ctan-check	2017-09-10 20:55:20 UTC (rev 45264)
+++ trunk/Master/tlpkg/bin/tlpkg-ctan-check	2017-09-10 20:56:37 UTC (rev 45265)
@@ -84,7 +84,7 @@
     beamertheme-phnompenh beamertheme-upenn-bc
     beamerthemejltree
     beamerthemenirma
-    beebe begingreek begriff belleek bengali
+    beebe begingreek begriff beilstein belleek bengali
     bera berenisadf besjournals bestpapers betababel beton beuron
     bewerbung bez123 bezos bgreek bgteubner bguq bhcexam
     bib-fr bibarts biber bibhtml

Added: trunk/Master/tlpkg/tlpsrc/beilstein.tlpsrc
===================================================================
Modified: trunk/Master/tlpkg/tlpsrc/collection-publishers.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/collection-publishers.tlpsrc	2017-09-10 20:55:20 UTC (rev 45264)
+++ trunk/Master/tlpkg/tlpsrc/collection-publishers.tlpsrc	2017-09-10 20:56:37 UTC (rev 45265)
@@ -31,6 +31,7 @@
 depend bangorexam
 depend beamer-FUBerlin
 depend beamer-verona
+depend beilstein
 depend bgteubner
 depend br-lex
 depend brandeis-dissertation



More information about the tex-live-commits mailing list