texlive[62944] Master/texmf-dist: quantumarticle (25mar22)

commits+karl at tug.org commits+karl at tug.org
Wed Apr 6 00:12:33 CEST 2022


Revision: 62944
          http://tug.org/svn/texlive?view=revision&revision=62944
Author:   karl
Date:     2022-04-06 00:12:33 +0200 (Wed, 06 Apr 2022)
Log Message:
-----------
quantumarticle (25mar22)

Modified Paths:
--------------
    trunk/Master/texmf-dist/doc/latex/quantumarticle/README.md
    trunk/Master/texmf-dist/doc/latex/quantumarticle/quantum-template.pdf
    trunk/Master/texmf-dist/doc/latex/quantumarticle/quantum-template.tex
    trunk/Master/texmf-dist/tex/latex/quantumarticle/quantumarticle.cls

Added Paths:
-----------
    trunk/Master/texmf-dist/bibtex/bst/quantumarticle/
    trunk/Master/texmf-dist/bibtex/bst/quantumarticle/quantum.bst
    trunk/Master/texmf-dist/doc/latex/quantumarticle/example-plot.pdf
    trunk/Master/texmf-dist/doc/latex/quantumarticle/quantum-bibliographystyle-demo.bib
    trunk/Master/texmf-dist/doc/latex/quantumarticle/quantum-bibliographystyle-demo.pdf
    trunk/Master/texmf-dist/doc/latex/quantumarticle/quantum-bibliographystyle-demo.tex
    trunk/Master/texmf-dist/doc/latex/quantumarticle/quantumview-template.bib
    trunk/Master/texmf-dist/doc/latex/quantumarticle/quantumview-template.pdf
    trunk/Master/texmf-dist/doc/latex/quantumarticle/quantumview-template.tex
    trunk/Master/texmf-dist/tex/latex/quantumarticle/quantumview.cls

Added: trunk/Master/texmf-dist/bibtex/bst/quantumarticle/quantum.bst
===================================================================
--- trunk/Master/texmf-dist/bibtex/bst/quantumarticle/quantum.bst	                        (rev 0)
+++ trunk/Master/texmf-dist/bibtex/bst/quantumarticle/quantum.bst	2022-04-05 22:12:33 UTC (rev 62944)
@@ -0,0 +1,1789 @@
+% This is the BibTeX style file for the Quantum journal.
+% It is based on hyperabbrv.bst, and the extensions by Aram Harrow
+% (see https://github.com/harrow/arxiv-bibstyle) and Andrew Comech
+% (see https://www.math.tamu.edu/~comech/tools/bibtex-doi-eprint/).
+%
+% In addition to added arxiv and DOI hyperlinks, the file style incorporates design
+% choices made for Quantum journal, in particular in the light of online availability.
+% Furthermore, this file style introduces some custom reference classes as well as
+% custom entry fields.
+
+ENTRY
+  { address
+    archivePrefix
+    author
+    booktitle
+    chapter
+    code
+    commit
+    date
+    doi
+    edition
+    editor
+    eprint
+    howpublished
+    institution
+    journal
+    journaltitle
+    key
+    month
+    note
+    nolink
+    number
+    organization
+    pages
+    primaryClass
+    publisher
+    school
+    series
+    shortjournal
+    shorturl
+    title
+    type
+    url
+    urldate
+    version
+    volume
+    year
+  }
+  {}
+  {}
+
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+% Variables and state descriptors
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+
+INTEGERS
+  {
+    % These are state describing integers to control
+    % punctuation, capitalization, and line breaks
+    output.state
+    before.all
+    mid.sentence
+    after.sentence
+    after.block
+
+    multiresult
+    doi.linked
+
+    % Counters
+    length
+    namesleft
+    numnames
+    found.slashes
+    number.label
+    longest.label.width
+
+    % Config integers
+    %  - whether to print out DOI links explicitly or add the link to parts of the
+    %    citation itself.
+    explicit.doi.links
+    %  - whether to raise compilation errors from (many) BibTeX warnings
+    warnings.are.errors
+
+    % pointers
+    nameptr
+    ptr
+  }
+
+STRINGS { s t m longest.label label }
+
+FUNCTION {init.state.consts}
+{ % Initialize the global state describing integeres for punctuation
+  % Args:
+  % Returns:
+  #0 'before.all :=
+  #1 'mid.sentence :=
+  #2 'after.sentence :=
+  #3 'after.block :=
+}
+
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+% Custom warning
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+
+FUNCTION {my.warning}
+{ % Print cited element in bibliography with error message in red.
+  % If warnings.are.errors (default:True), raise a \PackageError
+  % Args: str - Warning message
+  % Returns:
+  'm :=
+  "{\color{red}{ This bibitem caused a BibTeX warning: " m * " entry.}}" *
+  warnings.are.errors
+    { "\PackageError{quantum.bst}{The bibitem " *
+      cite$ *
+      " caused a BibTeX warning}" *
+      "{By default, quantum.bst handles BibTeX warnings like compilation " *
+      "errors. Please refer to the bibliography style demo for details and options.}" *
+    }
+    'skip$
+  if$
+  write$
+  m cite$ * warning$
+}
+
+FUNCTION {my.warning.newline}
+{ % Print cited element in bibliography with error message in red.
+  % If warnings.are.errors (default:True), raise a \PackageError
+  % This function includes a newline in the bibliography to ensure
+  % that the error message for missing links is formatted correctly.
+  % Args: str - Second line of warning message
+  %       str - First line of warning message
+  % Returns:
+  's :=
+  'm :=
+  "{\color{red}{ This bibitem caused a BibTeX warning: " m * "}}" *
+  write$
+  newline$
+  "{\color{red}{" s * " entry.}}" *
+  warnings.are.errors
+    { "\PackageError{quantum.bst}{The bibitem " *
+      cite$ *
+      " caused a BibTeX warning}" *
+      "{By default, quantum.bst handles BibTeX warnings like compilation " *
+      "errors. Please refer to the bibliography style demo for details.}" *
+    }
+    'skip$
+  if$
+  write$
+  m cite$ * warning$
+}
+
+FUNCTION {my.crossref.warning}
+{ % Print cited crossref element in bibliography with error message in red.
+  % If warnings.are.errors (default:True), raise a \PackageError
+  % Args: str - Warning message
+  % Returns:
+  'm :=
+  warnings.are.errors
+    { "{\color{red} This bibitem caused a crossref-BibTeX warning: need "
+      m * " to crossref.}\PackageError{quantum.bst}{The crossref bibitem " *
+      cite$ *
+      " caused a BibTeX warning}" *
+      "{By default, quantum.bst handles BibTeX warnings like compilation " *
+      "errors. Please refer to the bibliography style demo for details.}" *
+      write$
+    }
+    'skip$
+  if$
+  "need " m * " for " * cite$ * " to crossref " * crossref * warning$
+}
+
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+% Boolean functions
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+
+FUNCTION {not}
+{ % Logical NOT of a "Boolean"
+  % Args: int - Boolean to negate
+  % Returns: int - negated Boolean
+    { #0 }
+    { #1 }
+  if$
+}
+
+FUNCTION {and}
+{ % Logical AND between two "Booleans"
+  % Args: int - First Boolean to combine
+  %       int - Second Boolean to combine
+  % Returns: int - logical AND of input Booleans
+    'skip$
+    { pop$ #0 }
+  if$
+}
+
+FUNCTION {or}
+{ % Logical OR between two "Booleans"
+  % Args: int - First Boolean to combine
+  %       int - Second Boolean to combine
+  % Returns: int - logical OR of input Booleans
+    { pop$ #1 }
+    'skip$
+  if$
+}
+
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+% String manipulation
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+
+FUNCTION {string.length}
+{ % Count the length of a string
+  % Args: str - String to count
+  % Returns: int - Length of input string
+  #1 'length :=
+  % Increase the length by 1 until the substring of the current length is the full string
+  {duplicate$ duplicate$ #1 length substring$ = not}
+    {length #1 + 'length :=}
+  while$
+  % Pop the string and return the length
+  pop$ length
+}
+
+FUNCTION {contains.substring}
+{ % Check whether a substring is contained in a string
+  % Args: str - Substring to find in larger string
+  %       str - String to find the substring in
+  % Returns: int("Boolean") - whether the substring is contained in the string
+  's :=
+  't :=
+  % Count the length of the substring
+  s string.length 'length :=
+  % cut away starting characters of the string until it is empty or the substring is found
+  { t empty$ not }
+    % Check whether the current string starts with the substring
+    { t #1 length substring$ s =
+        { % If yes, empty the string and return #1
+          "" 't :=
+          #1
+        }
+        { % If not, delete the first character of the string
+          t #2 global.max$ substring$ 't :=
+          % If the string is empty, return #0
+          t empty$
+            { #0 }
+            'skip$
+          if$
+        }
+      if$
+    }
+  while$
+}
+
+FUNCTION {chop.word}
+{ % Chop the beginning of a string if it matches a given second string
+  % Args: str - String to chop
+  %       int - Length of substring to match
+  %       str - Substring to match
+  % Returns: str - (Potentially) chopped string
+  's :=
+  'length :=
+  s #1 length substring$ =
+    { s length #1 + global.max$ substring$ }
+    's
+  if$
+}
+
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+% Elementary output functions
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+
+FUNCTION {output.nonnull}
+{ % Output a string that is guaranteed not to be empty
+  % Args: str - String to process
+  % Returns:
+  % The written output via write$ depends on the position in a sentence or block,
+  % as stored in outpute.state, which is updated accordingly.
+  's :=
+  output.state mid.sentence =
+    'write$
+    { output.state after.block =
+        { add.period$ write$
+          newline$
+          "\newblock " write$
+        }
+        { output.state before.all =
+            'write$
+            { add.period$ " " * write$ }
+          if$
+        }
+      if$
+      mid.sentence 'output.state :=
+    }
+  if$
+  s
+}
+
+FUNCTION {output}
+{ % Output a string if it is not empty
+  % Args: str - String to check and output
+  % Returns:
+  duplicate$ empty$
+    'pop$
+    'output.nonnull
+  if$
+}
+
+FUNCTION {output.check}
+{ % Check whether a string is empty, output it if it is not, and raise a my.warning if it is.
+  % Args: str - Describing string of argument that is checked to provide a useful error message
+  %       str - String to check and output if it is not empty
+  % Returns:
+  't :=
+  duplicate$ empty$
+    { pop$ "empty " t * " in " * my.warning }
+    'output.nonnull
+  if$
+}
+
+FUNCTION {no.output.check}
+{ % Check whether a string is empty and raise a my.warning if it is.
+  % Args: str - Describing string of argument that is checked to provide a useful error message
+  %       str - String to check
+  % Returns:
+  't :=
+  duplicate$ empty$
+    { pop$ "empty " t * " in " * my.warning }
+    'skip$
+  if$
+}
+
+FUNCTION {no.output.check.links}
+{ % Check whether a string is empty and raise a my.warning.newline if it is.
+  % Args: str - Describing string of argument that is checked to provide a useful error message
+  %       str - String to check
+  % Returns:
+  % The separate handling from no.output.check is the special warning message that contains
+  % special characters, requiring us to use my.warning.newline. In addition, if the field
+  % `nolink` is not missing (it may be empty though), the warning is not raised.
+  't :=
+  duplicate$ empty$ nolink missing$ and
+    { pop$ "empty " t * ". " *
+      "If none of these fields is applicable for the cited work you can include the field " *
+      "\verb|`nolink = {}`| in its bib"
+      my.warning.newline
+    }
+    'skip$
+  if$
+}
+
+FUNCTION {output.bibitem}
+{ % Write the current buffer and the header for a new bibitem to the bbl file and
+  % updates the output.state
+  % Args: str - Current buffer is written to the bbl file
+  % Returns: str - An empty string
+  newline$
+  % Write the header for a new bibitem
+  "\bibitem{" write$
+  cite$ write$
+  "}" write$
+  newline$
+  ""
+  before.all 'output.state :=
+}
+
+FUNCTION {fin.entry}
+{ % Finalize an entry by appending a period if appropriate and writing to the bbl file
+  % Args: str - Current string to write to the bbl file
+  % Returns:
+  add.period$
+  write$
+  newline$
+}
+
+FUNCTION {new.block}
+{ % Start a new block in an entry, setting the output.state accordingly
+  % Args:
+  % Returns:
+  output.state before.all =
+    'skip$
+    { after.block 'output.state := }
+  if$
+}
+
+FUNCTION {new.sentence}
+{ % Start a new sentence in an entry, setting the output.state accordingly
+  % Args:
+  % Returns:
+  output.state after.block =
+  output.state before.all =
+  or
+    'skip$
+    { after.sentence 'output.state := }
+  if$
+}
+
+FUNCTION {new.block.checka}
+{ % Start a new block in an entry if the input string is not empty
+  % Args: str - String to decide whether a new block is started
+  % Returns:
+  empty$
+    'skip$
+    'new.block
+  if$
+}
+
+FUNCTION {new.block.checkb}
+{ % Start a new block in an entry if any of two input strings are not empty
+  % Args: str - Second string to decide whether a new block is started
+  %       str - First string to decide whether a new block is started
+  % Returns:
+  empty$
+  swap$ empty$
+  and
+    'skip$
+    'new.block
+  if$
+}
+
+FUNCTION {new.sentence.checka}
+{ % Start a new sentence in an entry if the input string is not empty
+  % Args: str - String to decide whether a new sentence is started
+  % Returns:
+  empty$
+    'skip$
+    'new.sentence
+  if$
+}
+
+FUNCTION {new.sentence.checkb}
+{ % Start a new sentence in an entry if any of two input strings are not empty
+  % Args: str - Second string to decide whether a new sentence is started
+  %       str - First string to decide whether a new sentence is started
+  % Returns:
+  empty$
+  swap$ empty$
+  and
+    'skip$
+    'new.sentence
+  if$
+}
+
+FUNCTION {field.or.null}
+{ % Replace an empty field or string by the empty string ""
+  % Args: str - Field or string to check and replace
+  % Returns: str - The input string if it was not empty, else ""
+  % This function does nothing on strings, it just replaces empty (but defined)
+  % fields by the empty string in order to allow for string comparisons and other operations
+  % that are not defined on empty (non-string) fields.
+  duplicate$ empty$
+    { pop$ "" }
+    'skip$
+  if$
+}
+
+FUNCTION {tie.or.space.connect}
+{ % Connect two strings with a space or a non-breaking ~
+  % Args: str - Second string to connect. If it is shorter than 3 characters, a ~ is used
+  %       str - First string to connect.
+  % Returns: str - The connected strings.
+  duplicate$ text.length$ #3 <
+    { % Use a ~ if the second string is shorter than 3 characters
+      "~"
+    }
+    { % Use a space else
+      " "
+    }
+  if$
+  % Bring the strings in the order (first string, connector, second string) and merge them
+  swap$ * *
+}
+
+FUNCTION {init.longest.label}
+{ % Initializes globally used variables to determine the longest label in the bibliography
+  % Args:
+  % Returns:
+  "" 'longest.label :=
+  #1 'number.label :=
+  #0 'longest.label.width :=
+}
+
+FUNCTION {longest.label.pass}
+{ % Update the longest.label.width and the longest.label, as measured by width$
+  % Args:
+  % Returns:
+  % Note that this function does not require any input from the bilbiography items,
+  % but only depends on the number of items.
+  number.label int.to.str$ 'label :=
+  number.label #1 + 'number.label :=
+  label width$ longest.label.width >
+    { label 'longest.label :=
+      label width$ 'longest.label.width :=
+    }
+    'skip$
+  if$
+}
+
+
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+% Entry formatting
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+
+FUNCTION {boldfont}
+{ % Add a bold font formatting string to a string (if it is not empty)
+  % Args: str - The string to format in bold font
+  % Returns: str - The input string wrapped in a formatting string for bold font
+  % Only add the formatting string to a non-empty string
+  duplicate$ empty$
+    { pop$ "" }
+    { "{\bf " swap$ * "}" * }
+  if$
+}
+
+FUNCTION {format.names}
+{ % Format a given string with names
+  % Args: str - The string with names
+  % Returns: str - The formatted names
+  's :=
+  % initialize pointer, counter for names and counter for names to handle left
+  #1 'nameptr :=
+  s num.names$ 'numnames :=
+  numnames 'namesleft :=
+  % Iterate over names
+  { namesleft #0 > }
+    { s nameptr "{ff~}{vv~}{ll}{, jj}" format.name$ 't :=
+      nameptr #1 >
+        { % After the first name, include connecting characters
+          namesleft #1 >
+            { % If there is more than the current name left, use a comma
+              ", " * t *
+            }
+            { % If there is only the current name left, use "and" or "et al."
+              numnames #2 >
+                { % Add a comma before "and" if there were more than two names
+                  "," *
+                }
+                'skip$
+              if$
+              t "others" =
+                { % Replace "and others" by "et~al."
+                  " et~al." *
+                }
+                { " and " * t * }
+              if$
+            }
+          if$
+        }
+        { % Simply write the first name to buffer
+          t
+        }
+      if$
+      nameptr #1 + 'nameptr :=
+      namesleft #1 - 'namesleft :=
+    }
+  while$
+}
+
+FUNCTION {format.authors}
+{ % Apply format.names to the author field and return it
+  % Args:
+  % Returns: str - author field formatted via format.names
+  % If the author field is empty, the empty string is returned instead.
+  author empty$
+    { "" }
+    { author format.names }
+  if$
+}
+
+FUNCTION {format.editors}
+{ % Apply format.names to the editor field, add a remark "editor(s)" to it, and return it
+  % Args:
+  % Returns: str - editor field formatted via format.names, with ", editor(s)" appended.
+  % If the editor field is empty, the empty string is returned instead.
+  editor empty$
+    { "" }
+    {
+      editor format.names
+      ", editor" *
+      % Add plural "s" if multiple editors are given
+      editor num.names$ #1 >
+        { "s" * }
+        'skip$
+      if$
+    }
+  if$
+}
+
+FUNCTION {format.title}
+{ % Wrap the title in quotation marks and change its capitalization.
+  % Args:
+  % Returns: str - title field wrapped in quotation marks with new capitalization
+  % Note that change.case$ together with the option "t" removes all capitalization
+  % of text that is not in curly braces, except for the very first character.
+  title empty$
+    { "" }
+    { "``" title "t" change.case$ * "''" *  }
+  if$
+}
+
+FUNCTION { format.arxiv.hyperlink }
+{ % Extract the arXiv handle from a string, removing a leading "arXiv"
+  % Args: str - The string to extract the handle from
+  % Returns: str - The extracted arXiv handle
+  % If the string starts with "arxiv:" or "arxiv" (or any capitalized version of these),
+  % the length-9 handle is extracted, otherwise the original string is returned.
+  duplicate$ #1 #6 substring$ "l" change.case$ "arxiv:" =
+    { #7 #9 substring$  }
+    { duplicate$ #1 #5 substring$ "l" change.case$ "arxiv" =
+      { #6 #9 substring$  }
+      'skip$
+    if$
+    }
+  if$
+}
+
+FUNCTION {format.eprint}
+{ % Format the eprint link, including the hyperlink and the link text.
+  % Args:
+  % Returns: str - Hyperlink to extracted arxiv reference
+  eprint empty$
+    { "" }
+    { archivePrefix empty$
+        { primaryClass empty$
+            { "arXiv" }
+            { primaryClass }
+          if$
+        }
+        { archivePrefix }
+      if$
+      " \href{http://arxiv.org/abs/"
+      eprint format.arxiv.hyperlink *
+      "}{" *
+      swap$ *
+      ":" *
+      eprint #1 #5 substring$ "arXiv" =
+        { eprint #7 #15 substring$ * }
+        { eprint * }
+      if$
+      "}" *
+    }
+  if$
+}
+
+FUNCTION {add.doi.link}
+{ % Add a hyperlink referring to a DOI reference to a string, using the doi field.
+  % Args: str - String to add the hyperlink to
+  % Returns: str - Input string with hyperlink added
+  "\href{https://dx.doi.org/" doi * "}{" * swap$ * "}" *
+}
+
+FUNCTION {n.dashify}
+{ % Replace single dashes by double dashes
+  % Args: str - Input string to be modified
+  % Returns: str - Input string with single dashes replaced by double dashes
+  't :=
+  ""
+  % Iterate over the characters in the string
+  { t empty$ not }
+    { t #1 #1 substring$ "-" =
+        {
+          t #1 #2 substring$ "--" = not
+            { % If the current `t` starts with a "-" but not with "--", replace
+              % the single dash with "--" and cut the leading dash from `t`
+              "--" *
+              t #2 global.max$ substring$ 't :=
+            }
+            { % If the current `t` starts with a "--", add all dashes in the
+              % current `t` to the output string without any replacement
+              { t #1 #1 substring$ "-" = }
+                { "-" *
+                  t #2 global.max$ substring$ 't :=
+                }
+              while$
+            }
+          if$
+        }
+        { % If the current `t` does not start with a dash, simply move the first
+          % character to the output string.
+          t #1 #1 substring$ *
+          t #2 global.max$ substring$ 't :=
+        }
+      if$
+    }
+  while$
+}
+
+FUNCTION {format.year}
+{ % Format the year of an entry
+  % Args:
+  % Returns: str - Formatted year in brackets
+  % If the year field is empty, the year is extracted from the date field, assuming
+  % that it starts with the year.
+  year empty$
+    { date empty$
+        { "" }
+        { "~(" date #1 #4 substring$ * ")" * }
+      if$
+    }
+    { "~(" year * ")" * }
+  if$
+}
+
+FUNCTION {format.urldate}
+{ % Format the date on which a URL was accessed
+  % Args:
+  % Returns: str - The formatted date in brackets with a remark "accessed:"
+  % The urldate field preceeds the date field.
+  urldate empty$
+    { date empty$
+        { "" }
+        { "(accessed:~" date * ")" * }
+      if$
+    }
+    { "(accessed:~" urldate * ")" * }
+  if$
+}
+
+FUNCTION {format.chapter}
+{ % Format the chapter field for an entry
+  % Args: int - "Boolean" indicating whether the "Chapter" should be turned to lower case
+  % Returns: str - The formatted chapter with leading "Chapter" string.
+  % If the field `type` is not empty, it is used instead of the generic "Chapter".
+  type empty$
+    { "Chapter" }
+    { type }
+  if$
+  swap$
+    { "l" change.case$ }
+    'skip$
+  if$
+  chapter tie.or.space.connect
+}
+
+FUNCTION {multi.page.check}
+{ % Check whether a string indicates multiple pages
+  % Args: str - The string describing a page or multiple pages
+  % Returns: int - "Boolean" indicating whether the string describes multiple pages
+  't :=
+  #0 'multiresult :=
+  { multiresult not
+    t empty$ not
+    and
+  }
+    { % Check whether the first character in the current `t` is one of "-", "," or "+"
+      t #1 #1 substring$
+      duplicate$ "-" =
+      swap$ duplicate$ "," =
+      swap$ "+" =
+      or or
+        { #1 'multiresult := }
+        { % Remove the first character from the current `t`
+          t #2 global.max$ substring$ 't :=
+        }
+      if$
+    }
+  while$
+  multiresult
+}
+
+FUNCTION {format.pages}
+{ % Format the pages field of an entry
+  % Args: int - "Boolean" indicating whether to capitalize the word "page(s)"
+  % Returns: str - The formatted pages field, including the word "page(s)"
+    { "p" }
+    { "P" }
+  if$
+  pages multi.page.check
+    { "ages" * pages n.dashify tie.or.space.connect }
+    { "age" * pages tie.or.space.connect }
+  if$
+}
+
+FUNCTION {format.bvol.series}
+{ % Format the book volume and the series of an entry
+  % Args:
+  % Returns: str - The volume and series field formatted into one string.
+  % Raises a warning if the field `number` is present in addition to `volume`.
+  volume empty$
+    { "" }
+    { mid.sentence output.state =
+        { "v" }
+        { "V" }
+      if$
+      "olume" * volume tie.or.space.connect
+      series empty$
+        'skip$
+        { " of " * series * }
+      if$
+      number empty$
+        'skip$
+        { "can't use both volume and number fields in " * my.warning }
+      if$
+    }
+  if$
+}
+
+FUNCTION {format.bvol.chap.pages}
+{ % Format the book volume, series and the chapter and pages of an entry
+  % Args:
+  % Returns: str - The volume and series field formatted into one string.
+  % This function wraps the previously defined functions format.bvol.series,
+  % format.chapter, and format.pages into one.
+  format.bvol.series
+  chapter empty$
+    'skip$
+    { duplicate$ empty$
+        { #0 }
+        { ", " *
+          #1
+        }
+      if$
+      format.chapter *
+    }
+  if$
+  pages empty$
+    'skip$
+    { duplicate$ empty$
+        { #0 }
+        { ", " *
+          #1
+        }
+      if$
+      format.pages *
+    }
+  if$
+}
+
+FUNCTION {format.number.series}
+{ % Format the number and the series of an entry
+  % Args:
+  % Returns: str - The number and series field formatted into one string.
+  % The returned string is empty if the `volume` field is not empty.
+  % Raises a warning if the field `series` is empty.
+  volume empty$
+    { number empty$
+        { series field.or.null }
+        { output.state mid.sentence =
+            { "number" }
+            { "Number" }
+          if$
+          number tie.or.space.connect
+          series empty$
+            { "there's a number but no series in " my.warning }
+            { " in " * series * }
+          if$
+        }
+      if$
+    }
+    { "" }
+  if$
+}
+
+FUNCTION {format.edition}
+{ % Format the edition field of an entry
+  % Args:
+  % Returns: str - The edition of the entry with "edition" comment, if it
+  %     is not contained in the field itself already.
+  edition empty$
+  { "" }
+  { output.state mid.sentence =
+    { edition "l" change.case$ }
+    { edition "t" change.case$ }
+    if$
+    edition "edition" contains.substring
+      'skip$
+      { " edition" * }
+    if$
+  }
+  if$
+}
+
+FUNCTION {format.vol.pages}
+{ % Format the volume and pages for an article entry
+  % Args:
+  % Returns: The volume and page numbers as a single string
+  volume field.or.null boldfont
+  pages empty$
+    'skip$
+    { duplicate$ empty$
+        { pop$ mid.sentence output.state = format.pages }
+        { " " swap$ * ", " * pages n.dashify * }
+      if$
+    }
+  if$
+}
+
+FUNCTION {format.chapter.pages}
+{ % Format the chapter and pages for an entry
+  % Args:
+  % Returns: str - chapter and pages description in one string
+  chapter empty$
+    { #0 format.pages }
+    {
+      mid.sentence output.state =
+      format.chapter
+      pages empty$
+        'skip$
+        { ", " *  #1 format.pages * }
+      if$
+    }
+  if$
+}
+
+FUNCTION {format.in.ed.booktitle}
+{ % Format the booktitle together with editors of an entry
+  % Args:
+  % Returns: The booktitle for an entry contained in the book.
+  booktitle empty$
+    { "" }
+    { editor empty$
+        { "In " booktitle * }
+        { "In " format.editors * ", " * booktitle * }
+      if$
+    }
+  if$
+}
+
+FUNCTION {empty.misc.check}
+{ % Checks whether all relevant fields for a misc entry are empty
+  % Args:
+  % Returns:
+  % Raises a warning if all fields are empty
+  author empty$ title empty$ howpublished empty$
+  month empty$ year empty$ note empty$
+  and and and and and
+  % Only warn for entries that actually have a key
+  key empty$ not and
+    { "all relevant fields are empty in " my.warning }
+    'skip$
+  if$
+}
+
+FUNCTION {format.thesis.type}
+{ % Replace a string with the type field if given, and add a DOI link
+  % Args: str - String to add the DOI link to, or to replace by the `type` field.
+  % Returns: str - Input string or `type` string if present, with DOI link.
+  type empty$
+    'skip$
+    { pop$
+      type "t" change.case$
+    }
+  if$
+  doi missing$
+  explicit.doi.links
+  or
+    'skip$
+    { add.doi.link }
+  if$
+}
+
+FUNCTION {format.tr.number}
+{ % Format the number of a technical report and add the remark "Technical Report"
+  % or the `type` field if present.
+  % Args:
+  % Returns: str - `type` field or "Technical Report" together with the `number` field
+  type empty$
+    { "Technical Report" }
+    'type
+  if$
+  number empty$
+    { "t" change.case$ }
+    { number tie.or.space.connect }
+  if$
+}
+
+FUNCTION {get.journal}
+{ % Obtain the journal from either journal, journaltitle or shortjournal,
+  % in that order of priority
+  % Args:
+  % Returns: str - The name of the journal.
+  journal missing$
+    {
+    journaltitle missing$
+      {
+      shortjournal missing$
+        { "" }
+        { shortjournal }
+      if$
+      }
+      { journaltitle }
+    if$
+    }
+    { journal }
+  if$
+}
+
+FUNCTION {format.article.crossref}
+{ % Fomat a cross-reference of an article
+  % Args:
+  % Returns: str - Crossref entry for an article incl. citation
+  key empty$
+    { get.journal empty$
+        { "key or journal" my.crossref.warning
+          ""
+        }
+        { "In {\em " get.journal * "\/}" * }
+      if$
+    }
+    { "In " key * }
+  if$
+  " \cite{" * crossref * "}" *
+}
+
+FUNCTION {format.crossref.editor}
+{ % Fomat the editors for a cross-reference to a book, collection or proceedings
+  % Args:
+  % Returns: str - Editors names formatted for a cross-reference.
+  editor #1 "{vv~}{ll}" format.name$
+  editor num.names$ duplicate$
+  #2 >
+    { pop$ " et~al." * }
+    { #2 <
+        'skip$
+        { editor #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" =
+            { " et~al." * }
+            { " and " * editor #2 "{vv~}{ll}" format.name$ * }
+          if$
+        }
+      if$
+    }
+  if$
+}
+
+FUNCTION {format.book.crossref}
+{ % Fomat a cross-reference to a book
+  % Args:
+  % Returns: str - Crossref entry to a book incl. citation
+  volume empty$
+    { "volume" my.crossref.warning
+      "In "
+    }
+    { "Volume" volume tie.or.space.connect
+      " of " *
+    }
+  if$
+  editor empty$
+  editor field.or.null author field.or.null =
+  or
+    { key empty$
+        { series empty$
+            { "editor, key, or series" my.crossref.warning
+              "" *
+            }
+            { "{\em " * series * "\/}" * }
+          if$
+        }
+        { key * }
+      if$
+    }
+    { format.crossref.editor * }
+  if$
+  " \cite{" * crossref * "}" *
+}
+
+FUNCTION {format.incoll.inproc.crossref}
+{ % Fomat a cross-reference for an entry from a collection or proceedings
+  % Args:
+  % Returns: str - Crossref entry to the collection/proceedings incl. citation.
+  editor empty$
+  editor field.or.null author field.or.null =
+  or
+    { key empty$
+        { booktitle empty$
+            { "editor, key, or booktitle" my.crossref.warning
+              ""
+            }
+            { "In {\em " booktitle * "\/}" * }
+          if$
+        }
+        { "In " key * }
+      if$
+    }
+    { "In " format.crossref.editor * }
+  if$
+  " \cite{" * crossref * "}" *
+}
+
+FUNCTION {extract.repo}
+{ % Obtain the repository name from the `code` field
+  % Args:
+  % Returns: str - The repository name to print
+  % Look for registered formatting of github repos and remove them
+  "github.com/" #11
+    "www.github.com/" #15
+      "https://github.com/" #19
+        code
+      chop.word
+    chop.word
+  chop.word
+  % Extract the part of the repository name until the second slash
+  't :=
+  #0 'found.slashes :=
+  #1 'ptr :=
+  { ptr t text.length$ < #2 found.slashes > and}
+    {t ptr #1 substring$ "/" =
+      { found.slashes #1 + 'found.slashes := }
+      'skip$
+    if$
+    ptr #1 + 'ptr := }
+  while$
+  % Return only the part up to the second slash from above
+  #2 found.slashes =
+    { t #1 ptr #2 - substring$ }
+    { t #1 ptr substring$ }
+  if$
+}
+
+FUNCTION {format.version}
+{ % Format the `version` field of an entry with `code` field
+  % Args:
+  % Returns: str - The version with a "v" abbreviation
+  version empty$
+    { "" }
+    {
+      "v" version #1 #1 substring$ =
+        { " " version * }
+        { " v" version * }
+      if$
+    }
+  if$
+}
+
+FUNCTION {format.commit}
+{ % Format the `commit` field of an entry with `code` field
+  % Args:
+  % Returns: str - The commit field with the remark "commit"
+  commit empty$
+    { "" }
+    { " commit:" commit #1 #7 substring$ * }
+  if$
+}
+
+FUNCTION {format.code}
+{ % Format the `code` field
+  % Args:
+  % Returns: str - The `code` field with version and commit,
+  %   including a link to the repository
+  code empty$
+    { "" }
+    { " code:~\href{" code * "}{" * extract.repo * format.version * format.commit * "}" * }
+  if$
+}
+
+FUNCTION {format.url}
+{ % Format a url
+  % Args:
+  % Returns: str - The `shorturl` (preferred) or `url` field including a link
+  % The "https" part is removed from the printed string of the hyperlink
+  shorturl empty$
+    { url empty$
+        { "" }
+        { " url:~\href{" url * "}{" * "https://" #8 url chop.word * "}" * }
+      if$
+    }
+    { " url:~\href{" url * "}{" * "https://" #8 shorturl chop.word * "}" * }
+  if$
+}
+
+FUNCTION {check.links}
+{ % Check that one of the fields providing a hyperlink is present and raise a warning if not
+  % Args:
+  % Returns:
+  % The fields of which one should be present are `doi`, `eprint` and
+  % `url`. Setting the (empty) field `nolink={}` suppresses this warning.
+  doi missing$ eprint missing$ and
+    { format.url "doi, eprint and url" no.output.check.links pop$ }
+    'skip$
+  if$
+}
+
+FUNCTION {output.links}
+{ % Output the links of an entry
+  % Args:
+  % Returns:
+  new.block
+  explicit.doi.links
+    { % If explicit DOI links are set via the config, output it
+      % explicitly (if it's not missing)
+      doi missing$
+        'skip$
+        { " doi:~" doi add.doi.link * output
+          new.block
+        }
+      if$
+    }
+    'skip$ % Without explicit DOI links, it has already been added to another string.
+  if$
+  % Add eprint link
+  format.eprint output
+  doi missing$ eprint missing$ and
+    { % If the DOI and the eprint link are missing, add the `url` field hyperlink
+      new.block
+      format.url output
+    }
+    'skip$
+  if$
+  new.block
+  % Add the code hyperlink
+  format.code output
+}
+
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+% Interpretation of bib entries
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+
+FUNCTION {is.arxiv.article}
+{ % Determine whether an article class is an arxiv article only.
+  % Args:
+  % Returns: int - "Boolean" indicating whether the entry is an arxiv article only
+  % The article is considered an arxiv article only if
+  % - get.journal delivers an empty string and the `archivePrefix` field matches "arxiv"
+  %   (up to capitalization)
+  % - "arxiv" (or a capitalized version of it) is present in the output of get.journal
+  % If the output of get.journal is empty and the `archivePrefix` field is present but not
+  % known, a warning is raised.
+  get.journal empty$
+    { archivePrefix missing$
+        { #0 }
+        { archivePrefix "l" change.case$ "arxiv" =
+          { #1 }
+          { "The `archivePrefix' " archivePrefix * " is not supported for entry" * my.warning
+            #0
+          }
+        if$
+        }
+      if$
+    }
+    { get.journal "l" change.case$ "arxiv" contains.substring
+        { #1 }
+        { #0 }
+      if$
+    }
+  if$
+}
+
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+% Raw citation classes that are aliased in the public citation classes
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+
+FUNCTION {arxiv.article}
+{ % Format an arxiv-only article
+  output.bibitem
+  format.authors "author" output.check
+  new.block
+  format.title "title" output.check
+  crossref missing$
+    {
+      format.year "year" output.check
+      new.block
+      check.links
+      output.links
+    }
+    { format.article.crossref output.nonnull
+      #1 format.pages output
+    }
+  if$
+  fin.entry
+}
+
+FUNCTION {std.article}
+{ % Format a standard published article
+  output.bibitem
+  format.authors "author" output.check
+  new.block
+  format.title "title" output.check
+  crossref missing$
+    { new.block
+      get.journal "journal, shortjournal and journaltitle" no.output.check
+      format.vol.pages *
+      doi missing$
+      explicit.doi.links
+      or
+        'skip$
+        { add.doi.link }
+      if$
+      output
+      format.year "year" output.check
+      new.block
+      check.links
+      output.links
+    }
+    { format.article.crossref output.nonnull
+      #1 format.pages output
+    }
+  if$
+  fin.entry
+}
+
+FUNCTION {std.misc}
+{ % Format a standard misc entry
+  output.bibitem
+  format.authors output
+  title howpublished new.block.checkb
+  format.title output
+  howpublished new.block.checka
+  howpublished output
+  format.year output
+  format.eprint output
+  new.block
+  note output
+  fin.entry
+  empty.misc.check
+}
+
+FUNCTION {thesis.start}
+{ % Format the first part of a thesis entry
+  output.bibitem
+  format.authors "author" output.check
+  new.block
+  format.title "title" output.check
+  new.block
+}
+
+FUNCTION {thesis.end}
+{ % Format the second (and last) part of a thesis entry
+  new.block
+  school "school" output.check
+  new.block
+  address output
+  format.year "year" output.check
+  new.block
+  output.links
+  fin.entry
+}
+
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+% Recognized citation classes
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+
+FUNCTION {article}
+{ is.arxiv.article
+  'arxiv.article
+  'std.article
+  if$
+}
+
+FUNCTION {conditional.doi.link}
+{ duplicate$ empty$
+  doi missing$
+  explicit.doi.links
+  doi.linked
+  or or or
+    'skip$
+    { add.doi.link
+      #1 'doi.linked :=
+    }
+  if$
+}
+
+FUNCTION {book}
+{ output.bibitem
+  author empty$
+    { format.editors "author and editor" output.check }
+    { format.authors output.nonnull }
+  if$
+  new.block
+  format.title "title" output.check
+  new.block
+  #0 'doi.linked :=
+  crossref missing$
+    { format.bvol.chap.pages
+      conditional.doi.link output
+      new.block
+      format.number.series
+      conditional.doi.link output
+      new.sentence
+      publisher "publisher" no.output.check
+      conditional.doi.link output
+      new.sentence
+      address output
+    }
+    { format.chapter.pages output
+      new.block
+      format.book.crossref output.nonnull
+    }
+  if$
+  format.year "year" output.check
+  new.block
+  format.edition output
+  check.links
+  output.links
+  fin.entry
+}
+
+FUNCTION {repository}
+{ output.bibitem
+  format.authors output
+  format.year output
+  new.block
+  code empty$
+    { format.url "url" output.check }
+    { format.code output }
+  if$
+  fin.entry
+}
+
+FUNCTION {website}
+{ output.bibitem
+  author empty$
+    'skip$
+    { format.authors output.nonnull }
+  if$
+  new.block
+  format.title "title" output.check
+  new.block
+  format.url "url" output.check
+  new.block
+  code empty$
+    'skip$
+    { format.code output
+      new.block
+    }
+  if$
+  format.urldate output
+  note output
+  fin.entry
+}
+
+FUNCTION {misc}
+{ is.arxiv.article
+    'arxiv.article
+    'std.misc
+  if$
+}
+
+FUNCTION {inbook}
+{
+  format.chapter.pages empty$
+    { "`inbook' requires chapter or pages, otherwise use `book'" my.warning }
+    'skip$
+  if$
+  book
+}
+
+FUNCTION {proceedings}
+{ output.bibitem
+  editor empty$
+    { organization output }
+    { format.editors output.nonnull }
+  if$
+  new.block
+  format.title "title" no.output.check
+  doi missing$
+  explicit.doi.links
+  or
+    'skip$
+    { add.doi.link }
+  if$
+  output
+  new.block
+  format.bvol.series output
+  format.number.series output
+  new.block
+  address empty$
+    { editor empty$
+        { publisher new.sentence.checka }
+        { organization publisher new.sentence.checkb
+          organization output
+        }
+      if$
+      new.block
+      publisher output
+      format.year "year" output.check
+    }
+    { address output.nonnull
+      format.year "year" output.check
+      new.sentence
+      editor empty$
+        'skip$
+        { organization output }
+      if$
+      new.block
+      publisher output
+    }
+  if$
+  new.block
+  check.links
+  output.links
+  fin.entry
+}
+
+FUNCTION {booklet}
+{ output.bibitem
+  format.authors output
+  new.block
+  format.title "title" output.check
+  howpublished new.block.checka
+  howpublished output
+  address new.block.checka
+  address output
+  format.year output
+  output.links
+  new.block
+  note output
+  fin.entry
+}
+
+FUNCTION {unpublished}
+{ output.bibitem
+  format.authors "author" output.check
+  new.block
+  format.title "title" output.check
+  new.block
+  note "note" output.check
+  format.year output
+  format.eprint output
+  fin.entry
+}
+
+FUNCTION {incollection}
+{ output.bibitem
+  format.authors "author" output.check
+  new.block
+  format.title "title" output.check
+  new.block
+  #0 'doi.linked :=
+  crossref missing$
+    { format.in.ed.booktitle "booktitle" output.check
+      new.block
+      format.bvol.chap.pages
+      conditional.doi.link output
+      new.block
+      format.number.series
+      conditional.doi.link output
+      new.sentence
+      publisher "publisher" no.output.check
+      conditional.doi.link
+      address missing$
+        'skip$
+        { ", " * address * }
+      if$
+      output
+      format.year "year" output.check
+      new.block
+      format.edition output
+    }
+    { format.incoll.inproc.crossref output.nonnull
+      format.chapter.pages output
+    }
+  if$
+  new.block
+  output.links
+  fin.entry
+}
+
+FUNCTION {inproceedings}
+{ output.bibitem
+  format.authors "author" output.check
+  new.block
+  format.title "title" output.check
+  new.block
+  #0 'doi.linked :=
+  crossref missing$
+    { format.in.ed.booktitle "booktitle" output.check
+      new.block
+      format.bvol.chap.pages
+      conditional.doi.link output
+      new.block
+      format.number.series
+      conditional.doi.link output
+      address empty$
+        { organization publisher new.sentence.checkb
+          organization output
+          publisher output
+          format.year "year" output.check
+        }
+        { address output.nonnull
+          format.year "year" output.check
+          new.sentence
+          organization output
+          new.sentence
+          publisher output
+        }
+      if$
+    }
+    { format.incoll.inproc.crossref output.nonnull
+      format.pages output
+    }
+  if$
+  new.block
+  check.links
+  output.links
+  fin.entry
+}
+
+FUNCTION {conference} { inproceedings }
+
+FUNCTION {techreport}
+{ output.bibitem
+  format.authors "author" output.check
+  new.block
+  format.title "title" output.check
+  new.block
+  format.tr.number
+  doi missing$
+  explicit.doi.links
+  or
+    'skip$
+    { add.doi.link }
+  if$
+  output.nonnull
+  new.block
+  institution "institution" output.check
+  address output
+  format.year "year" output.check
+  output.links
+  fin.entry
+}
+
+FUNCTION {manual}
+{ output.bibitem
+  author empty$
+    { organization empty$
+        'skip$
+        { organization output.nonnull
+          new.block
+          address output
+        }
+      if$
+    }
+    { format.authors output.nonnull }
+  if$
+  new.block
+  format.title "title" output.check
+  author empty$
+    { organization empty$
+        { address new.block.checka
+          address output
+        }
+        'skip$
+      if$
+    }
+    { organization address new.block.checkb
+      organization output
+      new.block
+      address output
+    }
+  if$
+  new.block
+  format.edition output
+  format.year output
+  output.links
+  fin.entry
+}
+
+FUNCTION {mastersthesis}
+{ thesis.start
+  "Master's thesis" format.thesis.type output.nonnull
+  thesis.end
+}
+
+FUNCTION {phdthesis}
+{ thesis.start
+  "PhD thesis" format.thesis.type output.nonnull
+  thesis.end
+}
+
+
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+% Default citation type
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+
+FUNCTION {default.type} { article }
+
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+% Macros/aliases
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+
+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."}
+
+MACRO {acmcs} {"ACM Comput. Surv."}
+
+MACRO {acta} {"Acta Inf."}
+
+MACRO {cacm} {"Commun. ACM"}
+
+MACRO {ibmjrd} {"IBM J. Res. Dev."}
+
+MACRO {ibmsj} {"IBM Syst.~J."}
+
+MACRO {ieeese} {"IEEE Trans. Softw. Eng."}
+
+MACRO {ieeetc} {"IEEE Trans. Comput."}
+
+MACRO {ieeetcad}
+ {"IEEE Trans. Comput.-Aided Design Integrated Circuits"}
+
+MACRO {ipl} {"Inf. Process. Lett."}
+
+MACRO {jacm} {"J.~ACM"}
+
+MACRO {jcss} {"J.~Comput. Syst. Sci."}
+
+MACRO {scp} {"Sci. Comput. Programming"}
+
+MACRO {sicomp} {"SIAM J. Comput."}
+
+MACRO {tocs} {"ACM Trans. Comput. Syst."}
+
+MACRO {tods} {"ACM Trans. Database Syst."}
+
+MACRO {tog} {"ACM Trans. Gr."}
+
+MACRO {toms} {"ACM Trans. Math. Softw."}
+
+MACRO {toois} {"ACM Trans. Office Inf. Syst."}
+
+MACRO {toplas} {"ACM Trans. Prog. Lang. Syst."}
+
+MACRO {tcs} {"Theoretical Comput. Sci."}
+
+READ
+
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+% BIBLIOGRAPHY HEADER AND FOOTER
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+
+FUNCTION {begin.bib}
+{ % Print the beginning of the bibliography to the .bbl file. Also set the
+  % "Booleans" for the global config of DOI link printing and handling of warnings.
+  #0 'explicit.doi.links :=
+  #1 'warnings.are.errors :=
+  preamble$ empty$
+    'skip$
+    { preamble$ "MakeDoiLinksExplicit" contains.substring
+        { #1 'explicit.doi.links :=
+          "\newcommand{\MakeDoiLinksExplicit}{}" write$ newline$
+        }
+        { #0 'explicit.doi.links := }
+      if$
+      preamble$ "DoNotMakeWarningsErrors" contains.substring
+        { #0 'warnings.are.errors :=
+          "\newcommand{\DoNotMakeWarningsErrors}{}" write$ newline$
+        }
+        { #1 'warnings.are.errors := }
+      if$
+      preamble$ write$ newline$
+    }
+  if$
+  "\begin{thebibliography}{"  longest.label  * "}" * write$ newline$
+}
+
+FUNCTION {end.bib}
+{ % Print the ending of the bibliography to the .bbl file.
+  newline$
+  "\end{thebibliography}" write$ newline$
+}
+
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+% EXECUTION
+% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
+
+% Initialize global constants indicating the positions in an entry
+EXECUTE {init.state.consts}
+
+% Initialize global variables for the longest label
+EXECUTE {init.longest.label}
+
+% Determine the longest label that will be needed
+ITERATE {longest.label.pass}
+
+% Begin the library and handle the preamble
+EXECUTE {begin.bib}
+
+% Create all bibliography entries
+ITERATE {call.type$}
+
+% Finalize the library
+EXECUTE {end.bib}


Property changes on: trunk/Master/texmf-dist/bibtex/bst/quantumarticle/quantum.bst
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Modified: trunk/Master/texmf-dist/doc/latex/quantumarticle/README.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/quantumarticle/README.md	2022-04-05 22:11:40 UTC (rev 62943)
+++ trunk/Master/texmf-dist/doc/latex/quantumarticle/README.md	2022-04-05 22:12:33 UTC (rev 62944)
@@ -2,15 +2,17 @@
 
 # LaTeX document class for Quantum
 
-This is version 5.1 of `quantumarticle`, the document class for typesetting articles in Quantum - the open journal for quantum science.
+This is version 6.0 of `quantumarticle`, the document class for typesetting articles in Quantum - the open journal for quantum science.
 
 [Click here](https://raw.githubusercontent.com/quantum-journal/quantum-journal/master/quantumarticle.cls) to download the latest stable version.
 
 [More information](https://raw.githubusercontent.com/quantum-journal/quantum-journal/master/quantum-template.pdf) on using quantumarticle and on typesetting manuscripts for Quantum can be found in the accompanying template.
 
-[Documentation](https://raw.githubusercontent.com/quantum-journal/quantum-journal/master/quantumarticle.pdf) of all class options is also provided. 
+[Extra information on the Quantum bibstyle](https://raw.githubusercontent.com/quantum-journal/quantum-journal/master/quantum-bibliographystyle-demo.pdf) can be found in the bibstyle demo.
 
+[Documentation](https://raw.githubusercontent.com/quantum-journal/quantum-journal/master/quantumarticle.pdf) of all class options is also provided.
 
+
 ## Installation and usage
 
 To use the `quantumarticle` document class with LaTeX simply start your document with the line:
@@ -48,14 +50,20 @@
 
 ## Beta features
 
-In addition, this document class come bundled with two new extras (currently in beta phase):
+In addition, this document class comes bundled with two new extras (currently in beta phase):
 
-1. The quantum-plots.ipynb Jupyter notebook and matplotlib style for effortlessly producing professional looking plots in python.
+1. The quantum-lyx-template.lyx LyX layout, which allows you to generate the LaTeX source of your quantumarticle manuscript with the LyX document processor.
 
-2. The quantum-lyx-template.lyx LxY layout, which allow you to generate the LaTeX source of your quantumarticle manuscript with the LyX document processor.
+2. The quantum.bst bibliography style for BibTeX, see the corresponding demo for usage details.
 
 ## Changelog
 
+### New in v6.0
+
+* introduced the Quantum bibstyle `quantum.bst` together with the demo file `quantum-bibliographystyle-demo`
+* Removed the quantum-plots package, which is superseeded by [rsmf](https://pypi.org/project/rsmf/)
+* Fixed typo in allowfontchangeintitle option
+
 ### New in v5.1
 
 * fix for workaround in ltxgrid no longer being necessary and, on the contrary, causing an error under TeXLive 2020, with revtex/ltygrid 4.2e/4.2d
@@ -75,18 +83,18 @@
 * enforce that users put `\pdfoutput=1` (as recommended by the arXiv) to prevent problems with multi-line hyper links
 * improved error messages
 * fixed a bug that lead to the title not being centered with the `titlepage` option
-* better layout of titles 
+* better layout of titles
 * fixed various bugs in option processing
 * the document class is now documented in `quantumarticle.pdf`
 * introduced the plotting notebook `quantum-plots.ipynb` as a beta feature
 * introduced the LyX template `quantum-lyx-template.lyx` as a beta feature
 
-
 ## Contributors
 
-Developed by: Christian Gogolin, Christopher Granade, Johannes J. Meyer, and Victor V. Albert
+Developed by: Christian Gogolin, Cassandra Granade, Johannes J. Meyer, and Victor V. Albert
 
-With contributions from: Shahnawaz Ahmed, Andrey Rakhubovsky, liantze, and Abhinav Deshpande
+With contributions from: Shahnawaz Ahmed, Andrey Rakhubovsky, liantze,
+Abhinav Deshpande, and David Wierichs
 
 ## Contributing
 
@@ -98,7 +106,7 @@
 
 ## Copyright
 
-Copyright 2017, 2018, 2019, 2020
+Copyright 2017, 2018, 2019, 2020, 2021, 2022
 Verein zur Förderung des Open Access Publizierens in den Quantenwissenschaften
 (http://quantum-journal.org/about/)
 
@@ -113,4 +121,4 @@
 and version 1.3c or later is part of all distributions of LaTeX
 version 2005/12/01 or later.
 
-[comment]: # (To submit to the overleaf galary: push, open the project, go to Journals and Services and click Submit to Overleaf Gallery. To submit to sharelatex: write them an email)
+[comment]: # (To submit to the overleaf gallery: push, open the project, go to Journals and Services and click Submit to Overleaf Gallery. To submit to sharelatex: write them an email)

Added: trunk/Master/texmf-dist/doc/latex/quantumarticle/example-plot.pdf
===================================================================
(Binary files differ)

Index: trunk/Master/texmf-dist/doc/latex/quantumarticle/example-plot.pdf
===================================================================
--- trunk/Master/texmf-dist/doc/latex/quantumarticle/example-plot.pdf	2022-04-05 22:11:40 UTC (rev 62943)
+++ trunk/Master/texmf-dist/doc/latex/quantumarticle/example-plot.pdf	2022-04-05 22:12:33 UTC (rev 62944)

Property changes on: trunk/Master/texmf-dist/doc/latex/quantumarticle/example-plot.pdf
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/pdf
\ No newline at end of property
Added: trunk/Master/texmf-dist/doc/latex/quantumarticle/quantum-bibliographystyle-demo.bib
===================================================================
--- trunk/Master/texmf-dist/doc/latex/quantumarticle/quantum-bibliographystyle-demo.bib	                        (rev 0)
+++ trunk/Master/texmf-dist/doc/latex/quantumarticle/quantum-bibliographystyle-demo.bib	2022-04-05 22:12:33 UTC (rev 62944)
@@ -0,0 +1,533 @@
+preamble{"\DoNotMakeWarningsErrors"}
+preamble{"\MakeDoiLinksExplicit"}
+
+ at article{andreas_test_case,
+  title = {Toolbox for Reconstructing Quantum Theory from Rules on Information Acquisition},
+  author = {H\"{o}hn, Philipp A.},
+  year = {2017},
+  month = dec,
+  volume = {1},
+  pages = {38},
+  doi = {10.22331/q-2017-12-14-38},
+  archivePrefix = {arXiv},
+  eprint = {1412.8323},
+  eprinttype = {arxiv},
+  journal = {Quantum}
+}
+
+ at article{article_doi_eprint_url_code,
+  doi = {10.22331/q-2017-04-25-1},
+  url = {https://doi.org/10.22331/q-2017-04-25-1},
+  author = {McKague, Matthew},
+  issn = {2521-327X},
+  publisher = {{Verein zur F{\"{o}}rderung des Open Access Publizierens in den Quantenwissenschaften}},
+  journal = {{Quantum}},
+  volume = {1},
+  pages = {1},
+  month = apr,
+  year = {2017},
+  title = {Self-testing in parallel with {CHSH}},
+  code = {https://github.com/tony-blake/Hybrid-x509-s},
+  archivePrefix = {arXiv},
+  eprint = {1609.09584}
+}
+
+ at article{article_doi_eprint_url,
+  doi = {10.22331/q-2017-04-25-1},
+  url = {https://doi.org/10.22331/q-2017-04-25-1},
+  title = {Self-testing in parallel with {CHSH}},
+  author = {McKague, Matthew},
+  journal = {{Quantum}},
+  issn = {2521-327X},
+  publisher = {{Verein zur F{\"{o}}rderung des Open Access Publizierens in den Quantenwissenschaften}},
+  volume = {1},
+  pages = {1},
+  month = apr,
+  year = {2017},
+  eprint = {1609.09584}
+}
+
+ at article{article_eprint_url_code,
+  url = {https://doi.org/10.22331/q-2017-04-25-1},
+  title = {Self-testing in parallel with {CHSH}},
+  author = {McKague, Matthew},
+  year = {2017},
+  eprint = {1609.09584},
+  code={https://github.com/tony-blake/Hybrid-x509-s},
+  journal = {{Quantum}},
+  volume = {1},
+  pages = {1}
+}
+
+ at article{article_eprint_url,
+  url = {https://doi.org/10.22331/q-2017-04-25-1},
+  title = {Self-testing in parallel with {CHSH}},
+  author = {McKague, Matthew},
+  year = {2017},
+  eprint = {1609.09584},
+  journal = {{Quantum}},
+  volume = {1},
+  pages = {1}
+}
+
+ at article{article_url_code,
+  url = {https://doi.org/10.22331/q-2017-04-25-1},
+  title = {Self-testing in parallel with {CHSH}},
+  author = {McKague, Matthew},
+  year = {2017},
+  code = {https://github.com/tony-blake/Hybrid-x509-s},
+  journal = {{Quantum}},
+  volume = {1},
+  pages = {1}
+}
+
+ at article{article_url_code_shorturl,
+  url = {https://doi.org/10.22331/q-2017-04-25-1},
+  shorturl = {10.22331/q-2017-04-25-1},
+  title = {Self-testing in parallel with {CHSH}},
+  author = {McKague, Matthew},
+  year = {2017},
+  code = {https://github.com/tony-blake/Hybrid-x509-s},
+  journal = {{Quantum}},
+  volume = {1},
+  pages = {1}
+}
+
+ at article{article_url,
+  url = {https://doi.org/10.22331/q-2017-04-25-1},
+  title = {Self-testing in parallel with {CHSH}},
+  author = {McKague, Matthew},
+  year = {2017},
+  journal = {{Quantum}},
+  volume = {1},
+  pages = {1}
+}
+
+ at repository{repo_code_url,
+  title={Right-size my figures},
+  author={Johannes Jakob Meyer},
+  code={https://github.com/johannesjmeyer/rsmf},
+  url={https://github.com/johannesjmeyer/rsmf}
+}
+
+ at repository{repo_code_year,
+  title={Right-size my figures},
+  year={2021},
+  author={Johannes Jakob Meyer},
+  commit={1fcb463},
+  code={https://github.com/johannesjmeyer/rsmf}
+}
+
+ at repository{repo_code_year_version,
+  title={Right-size my figures},
+  year={2021},
+  author={Johannes Jakob Meyer},
+  version={v0.1},
+  code={https://github.com/johannesjmeyer/rsmf}
+}
+
+ at repository{repo_url,
+  author={Johannes Jakob Meyer},
+  url={https://github.com/johannesjmeyer/rsmf}
+}
+
+ at repository{repo_code_year_commit,
+  author={David Wierichs},
+  code={https://github.com/quantum-journal/quantum-journal/pull/123/commits/1fcb463b560fbcd93843cc7c9aefb8ccecf8089e},
+  commit={1fcb463},
+  year={2021}
+}
+
+ at website{web_author_code,
+  author={The Wiki-authors},
+  title={Wikipedia},
+  url={https://wikipedia.com},
+  code={https://github.com/wikimedia/mediawiki}
+}
+
+ at website{web_author,
+  author={The Wiki-authors},
+  title={Wikipedia},
+  url={https://wikipedia.com}
+}
+
+ at website{web_author_date,
+  author={The Wiki-authors},
+  title={Wikipedia},
+  url={https://wikipedia.com},
+  urldate={12.07.2019}
+}
+
+ at website{web_code,
+  title={Wikipedia},
+  url={https://wikipedia.com},
+  code={https://github.com/wikimedia/mediawiki}
+}
+
+ at website{web,
+  title={Wikipedia},
+  url={https://wikipedia.com}
+}
+
+% Some other test cases
+
+% directly from the arxiv- just changed into article
+ at article{mendez2021dissipation,
+      title={Dissipation in 2D degenerate gases with non-vanishing rest mass},
+      author={A. R. Mendez and A. L. Garcia-Perciante and G. Chacon-Acosta},
+      year={2021},
+      eprint={2110.03402},
+      archivePrefix={arXiv},
+      primaryClass={cond-mat.quant-gas}
+}
+
+% arxiv via zotero
+ at article{mendez2021dissipation_2,
+	title = {Dissipation in 2D degenerate gases with non-vanishing rest mass},
+	url = {http://arxiv.org/abs/2110.03402},
+	journaltitle = {{arXiv}:2110.03402 [cond-mat.quant-gas]},
+    author={A. R. Mendez and A. L. Garcia-Perciante and G. Chacon-Acosta},
+	urldate = {2021-10-09},
+	date = {2021-10-06},
+	eprinttype = {arxiv},
+	eprint = {2110.03402},
+	keywords = {Computer Science - Machine Learning, Quantum Physics}
+}
+
+% via zotero
+ at article{holevo2012quantum,
+	title = {Quantum channels and their entropic characteristics},
+	volume = {75},
+	issn = {0034-4885, 1361-6633},
+	url = {http://stacks.iop.org/0034-4885/75/i=4/a=046001?key=crossref.c00c20a2d90f601c3579a72385e32b76},
+	doi = {10.1088/0034-4885/75/4/046001},
+	pages = {046001},
+	number = {4},
+	journaltitle = {Reports on Progress in Physics},
+	author = {Holevo, A S and Giovannetti, V},
+	urldate = {2018-10-22},
+	date = {2012-04-01},
+	langid = {english}
+}
+
+% data from crossref
+ at article{Holevo_2012,
+	doi = {10.1088/0034-4885/75/4/046001},
+	url = {https://doi.org/10.1088%2F0034-4885%2F75%2F4%2F046001},
+	year = 2012,
+	month = {mar},
+	publisher = {{IOP} Publishing},
+	volume = {75},
+	number = {4},
+	pages = {046001},
+	author = {A S Holevo and V Giovannetti},
+	title = {Quantum channels and their entropic characteristics},
+	journal = {Reports on Progress in Physics}
+}
+
+% data from web of science
+ at article{akers2020simple,
+	title = {Simple holographic models of black hole evaporation},
+	issn = {1029-8479},
+	doi = {10.1007/JHEP08(2020)032},
+	number = {8},
+	journaltitle = {{JOURNAL} {OF} {HIGH} {ENERGY} {PHYSICS}},
+	author = {Akers, Chris and Engelhardt, Netta and Harlow, Daniel},
+	date = {2020-08-06},
+	note = {Place: {ONE} {NEW} {YORK} {PLAZA}, {SUITE} 4600, {NEW} {YORK}, {NY}, {UNITED} {STATES}
+Publisher: {SPRINGER}
+Type: Article},
+	keywords = {{AdS}-{CFT} Correspondence, Black Holes, Models of Quantum Gravity}
+}
+
+ at article{katariya2021geometric,
+	title = {Geometric distinguishability measures limit quantum channel estimation and discrimination},
+	volume = {20},
+	issn = {1573-1332},
+	url = {https://doi.org/10.1007/s11128-021-02992-7},
+	doi = {10.1007/s11128-021-02992-7},
+	pages = {78},
+	number = {2},
+	journaltitle = {Quantum Information Processing},
+	shortjournal = {Quantum Inf Process},
+	author = {Katariya, Vishal and Wilde, Mark M.},
+	urldate = {2021-04-29},
+	date = {2021-02-22},
+	langid = {english}
+}
+
+ at article{katariya2021geometric_2,
+    title = {Geometric distinguishability measures limit quantum channel estimation and discrimination},
+    author = {Katariya, Vishal and Wilde, Mark M},
+    journal = {Quantum Information Processing},
+    volume = {20},
+    number = {2},
+    pages = {1--170},
+    year = {2021},
+    url = {https://doi.org/10.1007/s11128-021-02992-7},
+    publisher = {Springer}
+}
+
+ at inproceedings{liang2019fisher-rao,
+	title = {Fisher-Rao Metric, Geometry, and Complexity of Neural Networks},
+	eventtitle = {The 22nd International Conference on Artificial Intelligence and Statistics},
+	pages = {9},
+	booktitle = {The 22nd International Conference on Artificial Intelligence and Statistics},
+	author = {Liang, Tengyuan and Poggio, Tomaso and Rakhlin, Alexander and Stokes, James},
+	date = {2019},
+	url = {http://proceedings.mlr.press/v89/liang19a/liang19a.pdf},
+	eprint = {1711.01530},
+	langid = {english}
+}
+
+ at incollection{jain2010guaranteed,
+	title = {Guaranteed Rank Minimization via Singular Value Projection},
+	url = {http://papers.nips.cc/paper/3904-guaranteed-rank-minimization-via-singular-value-projection.pdf},
+	pages = {937--945},
+	booktitle = {Advances in Neural Information Processing Systems 23},
+	publisher = {Curran Associates, Inc.},
+	author = {Jain, Prateek and Meka, Raghu and Dhillon, Inderjit S.},
+	editor = {Lafferty, J. D. and Williams, C. K. I. and Shawe-Taylor, J. and Zemel, R. S. and Culotta, A.},
+	urldate = {2019-06-11},
+	date = {2010}
+}
+
+% preamble{"\MakeDoiLinksExplicit"}
+
+ at misc{misc_arxiv,
+      title={Dissipation in 2D degenerate gases with non-vanishing rest mass},
+      author={A. R. Mendez and A. L. Garcia-Perciante and G. Chacon-Acosta},
+      year={2021},
+      eprint={2110.03402},
+      archivePrefix={arXiv},
+      primaryClass={cond-mat.quant-gas}
+}
+
+ at misc{misc_note,
+    note = {Indeed, only a note was provided for this reference}
+}
+
+ at misc{misc_correspondence,
+    title={Purple became very popular after this.},
+    author={Christian Gogolin},
+    note={Private correspondence}
+}
+
+ at book{book_author_doi_url,
+  doi = {10.1017/cbo9780511976667},
+  url = {https://doi.org/10.1017/cbo9780511976667},
+  year = {2009},
+  publisher = {Cambridge University Press},
+  author = {Michael A. Nielsen and Isaac L. Chuang},
+  title = {Quantum Computation and Quantum Information}
+}
+
+ at book{book_author_url_edition,
+  url = {https://doi.org/10.1017/cbo9780511976667},
+  year = {2009},
+  publisher = {Cambridge University Press},
+  author = {Michael A. Nielsen and Isaac L. Chuang},
+  title = {Quantum Computation and Quantum Information},
+  edition = {10th {A}nniversary}
+}
+
+ at book{book_editor_doi,
+  doi = {10.1017/cbo9780511976667},
+  year = {2009},
+  publisher = {Cambridge University Press},
+  chapter = {1},
+  pages = {70},
+  editor = {Simon Capelin},
+  title = {Quantum Computation and Quantum Information}
+}
+ at book{book_editor_doi2,
+  doi = {10.1017/cbo9780511976667},
+  year = {2009},
+  publisher = {Cambridge University Press},
+  volume = {1},
+  pages = {70},
+  editor = {Simon Capelin},
+  title = {Quantum Computation and Quantum Information}
+}
+
+ at inbook{inbook_author_doi_url_chapter,
+  doi = {10.1017/cbo9780511976667},
+  url = {https://doi.org/10.1017/cbo9780511976667},
+  year = {2009},
+  chapter = {3},
+  publisher = {Cambridge University Press},
+  author = {Michael A. Nielsen and Isaac L. Chuang},
+  title = {Quantum Computation and Quantum Information}
+}
+
+ at inbook{inbook_author_doi_url_chapter_pages,
+  doi = {10.1017/cbo9780511976667},
+  url = {https://doi.org/10.1017/cbo9780511976667},
+  year = {2009},
+  chapter = {3},
+  pages = {120--169},
+  publisher = {Cambridge University Press},
+  author = {Michael A. Nielsen and Isaac L. Chuang},
+  title = {Quantum Computation and Quantum Information}
+}
+
+ at inbook{inbook_author_doi_url_volume_chapter_pages,
+  doi = {10.1017/cbo9780511976667},
+  url = {https://doi.org/10.1017/cbo9780511976667},
+  year = {2009},
+  chapter = {3},
+  volume = {1},
+  pages = {120--169},
+  publisher = {Cambridge University Press},
+  author = {Michael A. Nielsen and Isaac L. Chuang},
+  title = {Quantum Computation and Quantum Information}
+}
+
+ at misc{article_arxiv,
+  title={Decoding the Entanglement Structure of Monitored Quantum Circuits},
+  author={Beni Yoshida},
+  year={2021},
+  eprint={2109.08691},
+  archivePrefix={arXiv},
+  primaryClass={quant-ph}
+}
+
+ at booklet{booklet,
+  title        = {The title of the booklet},
+  author       = {Laura Caxton},
+  howpublished = {How it was published},
+  address      = {The address of the publisher},
+  month        = 7,
+  year         = 1993,
+  note         = {An optional note}
+}
+
+ at unpublished{unpublished,
+  author       = {Petra Marcheford},
+  title        = {The title of the unpublished work},
+  note         = {A note is required to provide context},
+  month        = 7,
+  year         = 1993
+}
+
+% The following two entries are not meant to be used but were
+% used to verify statements in the template.
+article{article_trailing_comma,
+  author={Matthew McKague},
+  doi = {10.1017/cbo9780511976667},
+  year={2017},
+  journal={Quantum},
+  volume={1},
+  title={Self-testing in parallel with {CHSH}},
+}
+
+article{article_missing_comma,
+ author={Matthew McKague},
+ doi = {10.1017/cbo9780511976667},
+ year={2017},
+ journal={Quantum},
+ volume={1}
+ title={Self-testing in parallel with {CHSH}}
+}
+
+ at incollection{incollection,
+  author       = {Lex Farindon},
+  title        = {Title of part of the collection},
+  booktitle    = {Title of the collection},
+  publisher    = {The name of the publisher},
+  year         = {1993},
+  editor       = {An editor},
+  volume       = 4,
+  series       = 5,
+  chapter      = 8,
+  pages        = {201-213},
+  address      = {The address of the publisher},
+  edition      = 3,
+  month        = 7,
+}
+
+ at conference{conference,
+  author       = {Zoe Draper},
+  title        = {Title of part of the conference},
+  booktitle    = {Title of the conference},
+  year         = 1993,
+  editor       = {The editor},
+  volume       = 4,
+  series       = 5,
+  pages        = 213,
+  address      = {The address of the publisher},
+  month        = 7,
+  organization = {The organization},
+  publisher    = {The publisher},
+  url          = {https://ecosia.org},
+  note         = {An optional note}
+}
+
+ at conference{inproceedings,
+  author       = {Mark Hammington},
+  title        = {The title of the work},
+  booktitle    = {The title of the proceedings},
+  year         = 1993,
+  editor       = {The editor},
+  volume       = 4,
+  series       = 5,
+  pages        = 213,
+  month        = 7,
+  url          = {10.1351/pac199264060907},
+  publisher    = {The publisher}
+}
+
+ at techreport{CoplenKrouse,
+  author = {Tyler B. Coplen and H. R. Krouse and John Karl Böhlke},
+  doi = {10.1351/pac199264060907},
+  url = {https://doi.org/10.1351/pac199264060907},
+  title = {{R}eporting of nitrogen-isotope abundances},
+  journal = {Pure and Applied Chemistry},
+  number = {6},
+  institution = {{I}nternational {U}nion of {P}ure and {A}pplied {C}hemistry},
+  volume = {64},
+  year = {1992},
+  pages = {907--908},
+  type = {Custom type TR}
+}
+
+ at manual{manual,
+  title        = {The title of the manual},
+  author       = {Alex Scottson},
+  organization = {The organization},
+  address      = {The address of the publisher},
+  edition      = 3,
+  month        = 7,
+  year         = 1993
+}
+
+ at mastersthesis{mastersthesis,
+  author       = {Kilian Harwood},
+  title        = {The title of the thesis},
+  school       = {The school of the thesis},
+  year         = 1993,
+  address      = {The address of the publisher},
+  month        = 7
+}
+
+ at phdthesis{phdthesis,
+  author       = {Gottesman, Daniel Eric},
+  title        = {{S}tabilizer {C}odes and {Q}uantum {E}rror {C}orrection},
+  school       = {{C}alifornia {I}nstitute of {T}echnology},
+  year         = {1997},
+  doi          = {10.7907/rzr7-dt72}
+}
+
+ at proceedings{proceedings,
+  title        = {The title of the proceedings},
+  year         = 1993,
+  editor       = {Sarah Kidwelly},
+  volume       = 4,
+  series       = 5,
+  address      = {The address of the publisher},
+  month        = 7,
+  organization = {The organization},
+  url          = {xkcd.com},
+  publisher    = {The name of the publisher}
+}
+


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

Index: trunk/Master/texmf-dist/doc/latex/quantumarticle/quantum-bibliographystyle-demo.pdf
===================================================================
--- trunk/Master/texmf-dist/doc/latex/quantumarticle/quantum-bibliographystyle-demo.pdf	2022-04-05 22:11:40 UTC (rev 62943)
+++ trunk/Master/texmf-dist/doc/latex/quantumarticle/quantum-bibliographystyle-demo.pdf	2022-04-05 22:12:33 UTC (rev 62944)

Property changes on: trunk/Master/texmf-dist/doc/latex/quantumarticle/quantum-bibliographystyle-demo.pdf
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/pdf
\ No newline at end of property
Added: trunk/Master/texmf-dist/doc/latex/quantumarticle/quantum-bibliographystyle-demo.tex
===================================================================
--- trunk/Master/texmf-dist/doc/latex/quantumarticle/quantum-bibliographystyle-demo.tex	                        (rev 0)
+++ trunk/Master/texmf-dist/doc/latex/quantumarticle/quantum-bibliographystyle-demo.tex	2022-04-05 22:12:33 UTC (rev 62944)
@@ -0,0 +1,267 @@
+\documentclass[a4paper,twocolumn,11pt]{quantumarticle}
+\pdfoutput=1
+\usepackage[utf8]{inputenc}
+\usepackage[english]{babel}
+\usepackage[T1]{fontenc}
+\usepackage[numbers]{natbib}
+\usepackage{listings}
+
+\usepackage{amsmath}
+\usepackage{amssymb}
+\usepackage{hyperref}
+\usepackage[resetlabels]{multibib}
+
+\newcites{article}{article references}
+\newcites{book}{book references}
+\newcites{misc}{misc references}
+\newcites{repo}{repository references}
+\newcites{web}{website references}
+\newcites{other}{Other references}
+
+\begin{document}
+\title{Template demonstrating the quantum bibstyle}
+
+\author{David~Wierichs}
+\affiliation{Institute for Theoretical Physics, University of Cologne, Germany}
+\author{Johannes~Jakob~Meyer}
+\affiliation{Dahlem Center for Complex Quantum Systems, Freie Universit\"{a}t Berlin, 14195 Berlin, Germany}
+\affiliation{QMATH, Department of Mathematical Sciences, University of Copenhagen, 2100 Copenhagen, Denmark}
+
+\maketitle
+
+\section{Overview}\label{sec:overview}
+
+We use the opportunity of talking about bibtex entries to give an overview of the available reference classes:
+
+\begin{center}
+\begin{tabular}{ll}
+    \texttt{article} & Section \ref{sec:article}\\
+    \texttt{book} & Section \ref{sec:book}\\
+    \texttt{repository} & Section \ref{sec:repo}\\
+    \texttt{website} & Section \ref{sec:web}\\
+    \texttt{misc} & Section \ref{sec:misc}\\
+    Other classes & Section \ref{sec:other}\\
+    \hspace{0.8cm}\texttt{booklet} & Section \ref{sec:booklet}\\
+    \hspace{0.8cm}\texttt{inbook} & Section \ref{sec:inbook}\\
+    \hspace{0.8cm}\texttt{incollection} & Section \ref{sec:incollection}\\
+    \hspace{0.8cm}\texttt{inproceedings} & Section \ref{sec:inproceedings}\\
+    \hspace{0.8cm}\texttt{conference} & Section \ref{sec:conference}\\
+    \hspace{0.8cm}\texttt{manual} & Section \ref{sec:manual}\\
+    \hspace{0.8cm}\texttt{mastersthesis}\&\texttt{phdthesis} & Section \ref{sec:theses}\\
+    \hspace{0.8cm}\texttt{proceedings} & Section \ref{sec:proceedings}\\
+    \hspace{0.8cm}\texttt{techreport} & Section \ref{sec:techreport}\\
+    \hspace{0.8cm}\texttt{unpublished} & Section \ref{sec:unpublished}\\
+\end{tabular}
+\end{center}
+
+All of these reference classes are available in standard bibtex style files as well, with the exception of \texttt{repository} and \texttt{website}.
+Of course there may be other style files supporting reference classes with the same name, but the implementation in quantum.bst will not be based on any of those.
+In Sec.~\ref{sec:customization} we describe a few minimal options for customization of the quantum bibstyle.
+
+
+\section{Reference class \texttt{article}}\label{sec:article}
+For the \texttt{article} class, the \texttt{title} is printed in quotation marks. The \texttt{journal} is not reformatted, the \texttt{volume} printed in \textbf{bold font}. We also include the \texttt{pages} if present and the \texttt{year} in round brackets ().
+\texttt{doi} links are always included if given, the same holds for \texttt{eprint}. Only if neither of these two fields is given do we use the \texttt{url} to provide a hyperlink to the article.
+If the custom field \texttt{shorturl} is provided, it is used to manually pretty-print the URL.
+This can be useful if a URL contains long character strings, particularly if they are not human-readable.
+The \texttt{url} field is used as linked URL, that is \texttt{shorturl} only changes the printed appearance
+and not the function of the hyperlink.
+Code repositories are linked whenever provided via the \texttt{code} field, which is a non-standard field in
+quantum.bst.
+
+Examples:
+
+\begin{tabular}{ccccc}
+    \texttt{doi}& \texttt{eprint} & \texttt{url} & \texttt{code} & result \\
+    $\checkmark$ & $\checkmark$ & $\checkmark\big / \times$ & $\checkmark$ & \citearticle{article_doi_eprint_url_code} \\
+    $\checkmark$ & $\checkmark$ & $\checkmark\big / \times$ & $\times$ & \citearticle{article_doi_eprint_url} \\
+    $\times$ & $\checkmark$ & $\checkmark\big / \times$ & $\checkmark$ & \citearticle{article_eprint_url_code} \\
+    $\times$ & $\checkmark$ & $\checkmark\big / \times$ & $\times$ & \citearticle{article_eprint_url} \\
+    $\times$ & $\times$ & $\checkmark$ & $\checkmark$ & \citearticle{article_url_code} \\
+    $\times$ & $\times$ & $\checkmark$ (\texttt{shorturl}) & $\checkmark$ & \citearticle{article_url_code_shorturl} \\
+    $\times$ & $\times$ & $\checkmark$ & $\times$ & \citearticle{article_url} \\
+\end{tabular}
+
+Note that in particular article citations via a URL alone are not recommended. If you want to cite a website or code repository, please use the respective reference classes \texttt{website} or \texttt{repository} (see below).
+
+If an \texttt{article} citation only has an arXiv id but no journal reference, the journal title is skipped accordingly \citearticle{article_arxiv}.
+
+\bibliographystylearticle{quantum}
+\bibliographyarticle{quantum-bibliographystyle-demo}
+
+\section{Reference class \texttt{book}}\label{sec:book}
+For the reference class \texttt{book}, the \texttt{title}, the \texttt{year}, the \texttt{publisher} as well as \emph{either} the \texttt{author} \emph{or} the \texttt{editor} field must be given.
+The \texttt{volume}, \texttt{number} and \texttt{series}, the (publisher) \texttt{address}, the \texttt{edition} as well as links in the fields \texttt{doi}, \texttt{eprint} and \texttt{url} are optional.
+The order in which links are printed is the same as for \texttt{article}, see Sec.~\ref{sec:article}.
+Some example \texttt{book} references are \citebook{book_author_doi_url, book_author_url_edition, book_editor_doi, book_editor_doi2}.
+
+\bibliographystylebook{quantum}
+\bibliographybook{quantum-bibliographystyle-demo}
+
+\section{Reference class \texttt{repository}}\label{sec:repo}
+For the custom \texttt{repository} reference class, the \texttt{author} field is used if given but is not required (in contrast to the \texttt{article} class).
+If the repository address is given via \texttt{code} (strongly recommended), a properly formatted repository name is printed and links to the given address, including potentially version-, branch- or even commit-specific links.
+If no \texttt{code} entry is given, \texttt{url} is used as address instead, without any formatting of the printed text; Either \texttt{code} or \texttt{url} have to be provided.
+
+\begin{tabular}{ccc}
+    \texttt{code}& \texttt{url} & result \\
+    $\checkmark$ & $\checkmark\big / \times$ &\citerepo{repo_code_url} \\
+    $\times$ & $\checkmark$ &\citerepo{repo_url} \\
+    $\times$ & $\times$ & invalid \\
+\end{tabular}
+
+Providing a year is optional, a title is \emph{not} considered even if given \citerepo{repo_code_year}.
+Note that if you want both a \texttt{url} and a \texttt{code} link to be displayed, you can use the \texttt{website} reference class presented below for that.
+
+To specify the version of a software repository, use the new \texttt{version} field, see \citerepo{repo_code_year_version}. Even more specifically, the commit hash can be given via the \texttt{commit} field, like in \citerepo{repo_code_year_commit}. Note, however, that no check is performed between the provided \texttt{code} url and the \texttt{commit} or \texttt{version} fields, so that users have to assert consistency between these fields.
+
+\bibliographystylerepo{quantum}
+\bibliographyrepo{quantum-bibliographystyle-demo}
+
+\section{Reference class \texttt{website}}\label{sec:web}
+For the new custom reference class \texttt{website}, we require a \texttt{title} and a \texttt{url} which are both printed always.
+\texttt{author} is optional and printed if given, the same holds for \texttt{code}, which is formatted as repository link like for \texttt{repository}. If you want to provide \texttt{code} but not \texttt{url}, the reference class \texttt{repository} (see above) is made for you.
+
+\begin{tabular}{ccc}
+    \texttt{author} & \texttt{code} & result \\
+    $\checkmark$ & $\checkmark$ &\citeweb{web_author_code} \\
+    $\times$ & $\checkmark$ &\citeweb{web_code} \\
+    $\checkmark$ & $\times$ &\citeweb{web_author} \\
+    $\times$ & $\times$ &\citeweb{web} \\
+\end{tabular}
+
+An access date can be given via either \texttt{date} or \texttt{urldate}, as in \citeweb{web_author_date}, with \texttt{urldate} taking precedence over \texttt{date}.
+
+\bibliographystyleweb{quantum}
+\bibliographyweb{quantum-bibliographystyle-demo}
+
+\section{Reference class \texttt{misc}}\label{sec:misc}
+The reference class \texttt{misc} is meant to be used for miscellaneous entries that do not fall into any of the provided categories.
+As such, \texttt{misc} entries display the generic properties \texttt{author}, \texttt{title}, \texttt{howpublished}, \texttt{date}, \texttt{eprint} and \texttt{note}, the only requirement being at least one of these fields to be provided and non-empty.
+As the reference class \texttt{article} covers the case of preprint articles, the \texttt{misc} class was modified to refer back to \texttt{article} if \texttt{archivePrefix} is set to ``arxiv'' or an anyhow capitalized version thereof \emph{and} \texttt{primaryClass} is provided.
+
+We provide some examples, not covering all cases, because \texttt{misc} is very flexible and there are many possibilities.
+\begin{itemize}
+    \item A citation that actually is an article on the arXiv: \citemisc{misc_arxiv}
+    \item A footnote-like reference only containing a note: \citemisc{misc_note}
+    \item A reference to a private correspondence: \citemisc{misc_correspondence}
+\end{itemize}
+
+\bibliographystylemisc{quantum}
+\bibliographymisc{quantum-bibliographystyle-demo}
+
+\section{Other reference classes}\label{sec:other}
+\subsection{Reference class \texttt{booklet}}\label{sec:booklet}
+The reference class \texttt{booklet} allows for rather flexible references, focusing on information of publishing:
+The only required field is the \texttt{title}, optional fields are \texttt{author}, \texttt{howpublished}, \texttt{address}, \texttt{year/date}, an \texttt{eprint} reference, and finally a custom \texttt{note} \citeother{booklet}.
+
+\subsection{Reference class \texttt{inbook}}\label{sec:inbook}
+
+The reference class \texttt{inbook} is an alias for \texttt{book} and will produce the same output.
+The only difference is that that \texttt{chapter}, \texttt{pages}, or both are \emph{required} for \texttt{inbook}.
+Examples would be Refs.~\citeother{inbook_author_doi_url_chapter, inbook_author_doi_url_chapter_pages, inbook_author_doi_url_volume_chapter_pages}.
+
+\subsection{Reference class \texttt{incollection}}\label{sec:incollection}
+The reference class \texttt{incollection} requires the fields \texttt{author}, \texttt{title}, \texttt{booktitle}, \texttt{publisher} and \texttt{year}.
+Optional entries are \texttt{doi}, \texttt{editor}, \texttt{volume}, \texttt{chapter}, \texttt{pages}, \texttt{number}, \texttt{series}, \texttt{address}, \texttt{edition}, and \texttt{eprint}. This class mostly behaves like \texttt{book} but references a collection of which the referenced item is part.
+\citeother{incollection}
+
+\subsection{Reference class \texttt{inproceedings}}\label{sec:inproceedings}
+The reference class \texttt{inproceedings} requires the fields \texttt{author}, \texttt{title}, \texttt{booktitle}, \texttt{publisher} and \texttt{year}.
+Optional entries are \texttt{doi}, \texttt{editor}, \texttt{volume}, \texttt{chapter}, \texttt{pages}, \texttt{number}, \texttt{series}, \texttt{address}, \texttt{edition}, and \texttt{eprint}. This class mostly behaves like \texttt{book} but references a collection of which the referenced item is part.
+\citeother{inproceedings, conference, liang2019fisher-rao}
+
+\subsection{Reference class \texttt{conference}}\label{sec:conference}
+This class is an alias for \texttt{inproceedings}.
+
+\subsection{Reference class \texttt{manual}}\label{sec:manual}
+The reference class \texttt{manual} only requires a \texttt{title}. It uses the optional fields \texttt{author}, \texttt{organization}, \texttt{address}, \texttt{edition}, \texttt{year}, and \texttt{eprint} \citeother{manual}.
+
+\subsection{Reference classes \texttt{mastersthesis} and \texttt{phdthesis}}\label{sec:theses}
+Both thesis reference classes are identical up to the note that remarks the type of thesis. They require the fields \texttt{author}, \texttt{title}, \texttt{school}, \texttt{year} and allow optionally for \texttt{address} and \texttt{eprint} as well as a \texttt{doi}.
+
+\citeother{mastersthesis, phdthesis}
+
+\subsection{Reference class \texttt{proceedings}}\label{sec:proceedings}
+The reference class \texttt{proceedings} can be used to cite full proceedings instead of a single contribution therein.
+Required fields are \texttt{title} and \texttt{year} and the class makes use of \texttt{editor}, \texttt{organization}, \texttt{volume}, \texttt{number}, \texttt{series}, \texttt{address}, \texttt{publisher}, \texttt{organization}, \texttt{doi}, and \texttt{eprint} \citeother{proceedings}.
+
+\subsection{Reference class \texttt{techreport}}\label{sec:techreport}
+The reference class \texttt{techreport} requires the fields \texttt{author}, \texttt{title}, \texttt{institution}, and \texttt{year}.
+In addition, the fields \texttt{address}, \texttt{eprint}, \texttt{doi}, \texttt{number}, and \texttt{type} (to specify the kind of technical report further) may be provided \citeother{CoplenKrouse}.
+
+\subsection{Reference class \texttt{unpublished}}\label{sec:unpublished}
+The reference class \texttt{unpublished} requires the \texttt{author}, \texttt{title}, and \texttt{note} fields.
+Optionally, a \texttt{year/date} as well as an \texttt{eprint} reference may be provided.
+\citeother{unpublished}
+
+\bibliographystyleother{quantum}
+\bibliographyother{quantum-bibliographystyle-demo}
+
+\section{Customization}\label{sec:customization}
+
+\paragraph{Warnings raise Errors}
+By default, the quantum bibstyle tries to catch as many bibtex warnings and raises a proper compiling error if any warnings are found. This is to avoid silent bibtex warnings that yield partial reference outputs while hiding the warnings raised by bibtex in the \texttt{.blg} file.
+Note that not all warnings are caught, though. In particular, syntax errors like a missing comma in a \texttt{bibitem}, which cause bibtex to interrupt for that item alone, are only caught if they lead to required fields being missing.
+
+An example for a caught mistake is
+{\small
+\begin{verbatim}
+ at article{article_missing_comma,
+ author={Matthew McKague},
+ doi={10.1017/cbo9780511976667},
+ year={2017},
+ journal={Quantum},
+ volume={1}
+ title={Self-testing in parallel with {CHSH}}
+}
+\end{verbatim}
+}
+Here, the missing comma after \texttt{volume={1}} would make bibtex abort the processing of the item, leading
+to the \texttt{title} field, which is required, being missed.
+In contrast, the following would not be caught:
+{\small
+\begin{verbatim}
+ at article{article_trailing_comma,
+ author={Matthew McKague},
+ doi={10.1017/cbo9780511976667},
+ year={2017},
+ journal={Quantum},
+ volume={1},
+ title={Self-testing in parallel with {CHSH}},
+}
+\end{verbatim}
+}
+The additional comma in the \texttt{title} line raises an internal bibtex warning, which the bibstyle file cannot catch. While in this case no harm is done, there are errors that are not caught but simultaneously lead to incomplete output.
+
+If you want to turn off these errors raised from bibtex warnings, include the entry
+\begin{verbatim*}
+ at preamble{"\DoNotMakeWarningsErrors"}
+\end{verbatim*}
+anywhere in the \emph{bibliography} (i.e. the \texttt{.bib} file) like one would include a reference.
+
+\emph{Note:} Commenting the above \texttt{@preamble} entry out via \texttt{\%} will \emph{not} deactivate it as bibtex does not attribute commenting functionality to \texttt{\%}. Instead, you can simply remove the leading \texttt{@}, as is currently done in the \texttt{.bib} file accompanying this document (\texttt{quantum\_bst\_demo.bib}).
+
+\paragraph{Explicit DOI links}
+By default, and if the entry \texttt{doi} is provided for a \texttt{bibitem}, the quantum bibstyle will link to the DOI via the \texttt{journal/volume/issue} part of the citation for articles and via the a) \texttt{volume/chapter/pages} or b) \texttt{number/series} or c) \texttt{publisher} part for books, with a) taking precedence if provided over b) taking precedence if provided over c).
+This behaviour can be changed to output explicit DOI links instead. To do so, include the entry
+\begin{verbatim*}
+ at preamble{"\MakeDoiLinksExplicit"}
+\end{verbatim*}
+anywhere in the \emph{bibliography} (i.e. the \texttt{.bib} file) like one would include a reference.
+
+\paragraph{Compression}
+By default, the quantum bibstyle prints the numbers for all references separately and does not compress
+a range of citations, like so: [1, 6, 7, 8, 11, 12, 13, 14].
+This has the advantage of making all references explicitly accessible from the citation position and enables readers to find all occurrences of a given reference.
+If you prefer to compress citations (like so: [1, 6-8, 11-14]), simply add
+\begin{verbatim*}
+\PassOptionsToPackage{compress}{natbib}
+\end{verbatim*}
+to the preamble \emph{before} including
+\begin{verbatim*}
+\usepackage[numbers]{natbib}
+\end{verbatim*}
+where the option \texttt{numbers} is required to make the bibliography style work.
+
+\end{document}


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

Modified: trunk/Master/texmf-dist/doc/latex/quantumarticle/quantum-template.tex
===================================================================
--- trunk/Master/texmf-dist/doc/latex/quantumarticle/quantum-template.tex	2022-04-05 22:11:40 UTC (rev 62943)
+++ trunk/Master/texmf-dist/doc/latex/quantumarticle/quantum-template.tex	2022-04-05 22:12:33 UTC (rev 62944)
@@ -27,7 +27,7 @@
 \author{Marcus Huber}
 \affiliation{Institute for Quantum Optics \& Quantum Information (IQOQI), Austrian Academy of Sciences, Boltzmanngasse 3, Vienna A-1090, Austria}
 \orcid{0000-0003-1985-4623}
-\author{Christopher Granade}
+\author{Cassandra Granade}
 \affiliation{Microsoft Research, Quantum Architectures and Computation Group, Redmond, WA 98052, USA}
 \author{Johannes Jakob Meyer}
 \affiliation{Dahlem Center for Complex Quantum Systems, Freie Universität Berlin, 14195 Berlin, Germany}
@@ -64,7 +64,7 @@
   \caption{Every figure must have an informative caption and a number.
     The caption can be placed above, below, or to the side of the figure, as you see fit.
     The same applies for tables, boxes, and other floating elements.
-    Quantum provides a Jupyter notebook to create plots that integrate seamlessly with \texttt{quantumarticle}, described in Section \ref{sec:plots}.
+    Plots that integrate seamlessly with \texttt{quantumarticle} can be obtained through the Python package rsmf, as described in Section~\ref{sec:plots}.
     Figures spanning multiple columns can by typeset with the usual \texttt{figure*} environment.}
   \label{fig:figure1}
 \end{figure}
@@ -105,6 +105,8 @@
 \end{theorem}
 
 This can be achieved in several ways, depending on how you are formatting your bibliography.
+This is done easiest using the custom bibliography style for Quantum,
+please refer to its separate demo for details (\texttt{quantum\_bst\_demo.pdf}).
 Suppose the DOI of an article \cite{examplecitation} that you want to cite is \texttt{10.22331/idonotexist}.
 If you are formatting your bibliography manually, you can cite this work using the following in your \texttt{thebibliography} environment:
 \begin{verbatim}
@@ -141,15 +143,16 @@
 
 If you are using BibTeX, you can load the \texttt{natbib} package by putting
 \begin{verbatim}
-\usepackage[numbers,sort&compress]{natbib}
+\usepackage[numbers]{natbib}
 \end{verbatim}
-in the preamble of your document and then use the \texttt{plainnat} citation style by including your BibTeX bibliography \texttt{mybibliography.bib} where you want the bibliography to appear as follows:
+in the preamble of your document and then use the \texttt{quantum} citation style by including your BibTeX bibliography \texttt{mybibliography.bib} where you want the bibliography to appear as follows:
 \begin{verbatim}
-\bibliographystyle{plainnat}
+\bibliographystyle{quantum}
 \bibliography{mybibliography}
 \end{verbatim}
 The quantumarticle class automatically detects that the \texttt{natbib} package was loaded and redefines the \texttt{\textbackslash{}doi} command to create hyperlinks.
 This is likely the easiest option if you are converting from another document class.
+The \texttt{quantum.bst} bibliography style is currently a beta feature and feedback is very much appreciated. Please open a \href{https://github.com/quantum-journal/quantum-journal/issues}{github issue} or write an email to \href{mailto:latex at quantum-journal.org}{latex at quantum-journal.org} if you come across any bugs or possible improvements.
 
 If you want to use BibLaTeX, you can instead add
 \begin{verbatim}
@@ -181,9 +184,9 @@
 
 \section{Plots}
 \label{sec:plots}
-Quantum provides a \href{https://jupyter.org/}{Jupyter notebook} based on the widely used \href{https://matplotlib.org/}{matplotlib} library that greatly simplifies the creation of plots that integrate seamlessly with the \texttt{quantumarticle} document class. This is intended as a service to the authors, is \textit{not} mandatory, and currently in beta stage. You can download the \href{https://raw.githubusercontent.com/quantum-journal/quantum-journal/master/quantum-plots.ipynb}{quantum-plots.ipynb} notebook and accompanying \href{https://raw.githubusercontent.com/quantum-journal/quantum-journal/master/quantum-plots.mplstyle}{quantum-plots.mplstyle} file from the \href{https://github.com/quantum-journal/quantum-journal}{quantumarticle GitHub repository}. You only need to specify the font size and paper format that were passed as options to \texttt{quantumarticle} to get plots with fitting font sizes and dimensions.
-We strongly encourage authors to use the vector based PDF format for plots.
+We strongly encourage authors to use the vector based PDF format for plots. The Python package \href{https://pypi.org/project/rsmf/}{rsmf} (``right-size my figures'') together with the widely used plotting library \href{https://matplotlib.org/}{matplotlib} can be used to create plots that integrate seamlessly with the \texttt{quantumarticle} document class. In the Quantum \href{https://github.com/quantum-journal/quantum-journal/}{GitHub repository}, you find the script \href{https://raw.githubusercontent.com/quantum-journal/quantum-journal/master/example-plot.py}{example-plot.py} that shows how these tools were used to create Figure~\ref{fig:figure1}.
 
+
 \begin{theorem}[Be mindful of the colorblind]
   About 4\% of the worlds population are affected by some form of color vision deficiency or color blindness.
   Please make sure that your plots and figures can still be understood when printed in gray scale and avoid the simultaneous use of red and green, as the inability to distinguish these two colors is the most widespread form of color vision deficiency.
@@ -240,8 +243,8 @@
 \author[2]{Author 3}
 \author[1,3]{Author 4}
 \affil[1]{Affiliation 1}
-\affil[2]{Affiliation 1}
-\affil[3]{Affiliation 1}
+\affil[2]{Affiliation 2}
+\affil[3]{Affiliation 3}
 \end{verbatim}
 
 \section{LyX layout}
@@ -253,7 +256,7 @@
 \label{sec:version}
 This is quantumarticle version v\quantumarticleversion.
 
-\bibliographystyle{plain}
+\bibliographystyle{quantum}
 \begin{thebibliography}{9}
 \bibitem{examplecitation}
   Name Surname,
@@ -276,12 +279,18 @@
 
 
 
-\onecolumn\newpage
+\onecolumn
 \appendix
 
 \section{First section of the appendix}
 Quantum allows the usage of appendices.
+If you want your appendices to appear in \texttt{onecolumn} mode but the rest of the
+document in \texttt{twocolumn} mode, you can insert the command
+\texttt{\textbackslash{}onecolumn\textbackslash{}newpage} or just
+\texttt{\textbackslash{}onecolumn} before
+\texttt{\textbackslash{}appendix}.
 
+
 \subsection{Subsection}
 Ideally, the command \texttt{\textbackslash{}appendix} should be put before the appendices to get appropriate section numbering.
 The appendices are then numbered alphabetically, with numeric (sub)subsection numbering.
@@ -291,8 +300,6 @@
 \end{equation}
 You are free to change this in case it is more appropriate for your article, but a consistent and unambiguous numbering of sections and equations must be ensured.
 
-If you want your appendices to appear in \texttt{onecolumn} mode but the rest of the document in \texttt{twocolumn} mode, you can insert the command \texttt{\textbackslash{}onecolumn\textbackslash{}newpage} before \texttt{\textbackslash{}appendix}.
-
 \section{Problems and Bugs}
 In case you encounter problems using the quantumarticle class please analyze the error message carefully and look for help online; \href{http://tex.stackexchange.com/}{http://tex.stackexchange.com/} is an excellent resource.
 If you cannot resolve a problem, please open a bug report in our bug-tracker under \href{https://github.com/quantum-journal/quantum-journal/issues}{https://github.com/quantum-journal/quantum-journal/issues}.

Added: trunk/Master/texmf-dist/doc/latex/quantumarticle/quantumview-template.bib
===================================================================
--- trunk/Master/texmf-dist/doc/latex/quantumarticle/quantumview-template.bib	                        (rev 0)
+++ trunk/Master/texmf-dist/doc/latex/quantumarticle/quantumview-template.bib	2022-04-05 22:12:33 UTC (rev 62944)
@@ -0,0 +1,43 @@
+%% This is a sample bibliography demonstrating how citations with
+%% appropriate links to the DOI and arXiv version can be achieved.
+
+ at book{Nielsen_Chuang_2000,
+    author= {Nielsen, Michael A. and Chuang, Isaac L.},
+    title = {{Quantum Computation and Quantum Information}},
+    publisher = {Cambridge University Press},
+    address = {Cambridge, U.K.},
+    nolink = {},
+    year = {2000}
+}
+
+ at article{Preskill2018,
+    author = {Preskill, John},
+    title = {{Quantum Computing in the NISQ era and beyond}},
+    journal = {Quantum},
+    year = {2018},
+    volume = {2},
+    pages = {79},
+    archiveprefix = {arXiv},
+    primaryclass  = {quant-ph},
+    eprint = {2007.01307}
+}
+
+ at article{AcinBrussLewensteinSanpera2001,
+    author = {Ac{\'i}n, Antonio and Bru{\ss}, Dagmar and Lewenstein, Maciej and Sanpera, Anna},
+    title = {{Classification of Mixed Three-Qubit States}},
+    journal = {Phys. Rev. Lett.},
+    volume = {87},
+    pages = {040401},
+    year = {2001},
+    doi = {10.1103/PhysRevLett.87.040401},
+    archiveprefix = {arXiv},
+    eprint = {quant-ph/0103025}
+}
+
+ at article{SchwarzhansLockErkerFriisHuber2020,
+    title = {Autonomous Temporal Probability Concentration: Clockworks and the Second Law of Thermodynamics},
+    author = {Schwarzhans, Emanuel and Lock, Maximilian P. E. and Erker, Paul and Friis, Nicolai and Huber, Marcus},
+    year = {2020},
+    archiveprefix = {arXiv},
+    eprint = {2007.01307},
+}


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

Index: trunk/Master/texmf-dist/doc/latex/quantumarticle/quantumview-template.pdf
===================================================================
--- trunk/Master/texmf-dist/doc/latex/quantumarticle/quantumview-template.pdf	2022-04-05 22:11:40 UTC (rev 62943)
+++ trunk/Master/texmf-dist/doc/latex/quantumarticle/quantumview-template.pdf	2022-04-05 22:12:33 UTC (rev 62944)

Property changes on: trunk/Master/texmf-dist/doc/latex/quantumarticle/quantumview-template.pdf
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/pdf
\ No newline at end of property
Added: trunk/Master/texmf-dist/doc/latex/quantumarticle/quantumview-template.tex
===================================================================
--- trunk/Master/texmf-dist/doc/latex/quantumarticle/quantumview-template.tex	                        (rev 0)
+++ trunk/Master/texmf-dist/doc/latex/quantumarticle/quantumview-template.tex	2022-04-05 22:12:33 UTC (rev 62944)
@@ -0,0 +1,68 @@
+\documentclass{quantumview}
+\usepackage[utf8]{inputenc}
+\usepackage[english]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{amsmath}
+\usepackage{hyperref}
+\usepackage{fixltx2e}
+\usepackage[numbers,sort&compress]{natbib}
+
+\begin{document}
+
+\title{Template demonstrating the quantumview document class}
+
+\author{Johannes Jakob Meyer}
+\affiliation{Dahlem Center for Complex Quantum Systems, Freie Universität Berlin, 14195 Berlin, Germany}
+\affiliation{QMATH, Department of Mathematical Sciences, K{\o}benhavns Universitet, 2100 K{\o}benhavn \O, Denmark}
+\orcid{0000-0003-1533-8015}
+
+\maketitle
+
+\section{Introduction}
+Quantum Views is Quantum's venue for perspectives, views, editorials and other opinion pieces. The publishing process is different from that of regular articles in Quantum because Views are published as \emph{HTML only}, and need not be uploaded to the arXiv.
+
+Quantum provides the quantumview documentclass to enable authors of Views to use their common LaTeX environment to prepare their contributions. The editors at Quantum can then generate the HTML output by supplying the \texttt{html} option.
+
+\section{Supported Formatting Options}
+The documentclass natively supports the following operations:
+
+\paragraph{Text formatting} The following text formats are supported:
+\emph{emphasis}, \textit{italic}, \textbf{bold}, \texttt{typewriter}, \textsuperscript{superscript} and \textsubscript{subscript}.
+
+\paragraph{Sectioning} Sectioning -- if needed -- can be performed using the regular \texttt{{\textbackslash}section}, \texttt{{\textbackslash}subsection}, \texttt{{\textbackslash}subsubsection} and \texttt{{\textbackslash}paragraph} commands. These will be converted to HTML header tags and therefore not show section numbers in the final HTML.
+
+\paragraph{Citations and Bibliography} You can cite references using the regular \texttt{{\textbackslash}cite} command. For example, here is some text citing a textbook~\cite{Nielsen_Chuang_2000}, a journal article~\cite{Preskill2018}, a newer preprint~\cite{SchwarzhansLockErkerFriisHuber2020} and a journal article whose preprint has an arXiv identifier in old format~\cite{AcinBrussLewensteinSanpera2001}.
+
+Please see quantumview-template.bib for an example of how to provide bibliographic information to BibLaTeX in a way that yields a suitable bibliography with DOI links.
+In both Quantum and Quantum Views all citations to cited works that have a DOI must include a hyperlink to the DOI of the work.
+
+\paragraph{Formulas} You are free to use inline math $\mathcal{Z} - \pi = \nabla \Gamma$ and both the \texttt{equation}
+\begin{equation}
+    \int_0^1 \mathrm{d}x \, |\psi(x)\rangle \! \langle \psi(x)|= \hat{O}^2
+\end{equation}
+and \texttt{align} environment
+\begin{align}
+    \oint_C = \mathcal{Z}^2.
+\end{align}
+As formulas are directly rendered on the webpage, \emph{you can not use custom commands and libraries}. If you are unsure wether or not the command you want to use is supported, please consult the MathJax documentation. You should thus refrain from using the \texttt{{\textbackslash}label} and \texttt{{\textbackslash}ref} commands.
+
+\paragraph{Lists} You are free to use both \texttt{itemize} for unordered lists,
+\begin{itemize}
+    \item Item 1 lorem ipsum
+    \item Item 2
+\end{itemize}
+and \texttt{enumerate} for ordered lists:
+\begin{enumerate}
+    \item Item 1
+    \item Item 2
+\end{enumerate}
+Note that further modifiers, \emph{e.g.}\ for roman numbering and additional packages like \texttt{enumerate} are not supported.
+
+\section{Copy-Editing Tools}
+The quantumview document class also provides commands that are useful in copy-editing. These are \texttt{{\textbackslash}corr} for \corr{correctons}{corrections} and \texttt{{\textbackslash}ins} \ins{for insertions}.
+
+\bibliography{quantumview-template}
+\bibliographystyle{quantum}
+
+
+\end{document}


Property changes on: trunk/Master/texmf-dist/doc/latex/quantumarticle/quantumview-template.tex
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Modified: trunk/Master/texmf-dist/tex/latex/quantumarticle/quantumarticle.cls
===================================================================
--- trunk/Master/texmf-dist/tex/latex/quantumarticle/quantumarticle.cls	2022-04-05 22:11:40 UTC (rev 62943)
+++ trunk/Master/texmf-dist/tex/latex/quantumarticle/quantumarticle.cls	2022-04-05 22:12:33 UTC (rev 62944)
@@ -3,7 +3,7 @@
 %% it provides the quantumarticle class for typesetting articles in
 %% Quantum - the open journal for quantum science
 %%
-%% Copyright 2016,2017,2018,2019,2020
+%% Copyright 2016,2017,2018,2019,2020,2021,2022
 %% Verein zur Förderung des Open Access Publizierens in den Quantenwissenschaften
 %% (https://quantum-journal.org/about/)
 %% 
@@ -19,9 +19,9 @@
 %% version 2005/12/01 or later.
 %% 
 \NeedsTeXFormat{LaTeX2e}[1995/12/01]
-\def\quantumarticleversion{5.1}
+\def\quantumarticleversion{6.0}
 \ProvidesClass{quantumarticle}
-[2020/10/27 v\quantumarticleversion
+[2021/12/07 v\quantumarticleversion
 class for Quantum - the open journal for quantum science (https://quantum-journal.org)]
 \RequirePackage{xkeyval}
 \RequirePackage{etoolbox}

Added: trunk/Master/texmf-dist/tex/latex/quantumarticle/quantumview.cls
===================================================================
--- trunk/Master/texmf-dist/tex/latex/quantumarticle/quantumview.cls	                        (rev 0)
+++ trunk/Master/texmf-dist/tex/latex/quantumarticle/quantumview.cls	2022-04-05 22:12:33 UTC (rev 62944)
@@ -0,0 +1,1004 @@
+%%
+%% This is file `quantumview.cls',
+%% it provides the quantumview class for typesetting perspective articles in
+%% Quantum - the open journal for quantum science
+%%
+%% Copyright 2020, 2021
+%% Verein zur Förderung des Open Access Publizierens in den Quantenwissenschaften
+%% (https://quantum-journal.org/about/)
+%% 
+%% It is derived from `quantumarticle.cls' available from Quantum.
+%%
+%% It may be distributed and/or modified under the
+%% conditions of the LaTeX Project Public License, either version 1.3c
+%% of this license or (at your option) any later version.
+%% The latest version of this license is in
+%%    http://www.latex-project.org/lppl.txt
+%% and version 1.3c or later is part of all distributions of LaTeX
+%% version 2005/12/01 or later.
+%% 
+\NeedsTeXFormat{LaTeX2e}[1995/12/01]
+\def\quantumviewversion{5.1}
+\ProvidesClass{quantumview}
+[2020/10/27 v\quantumviewversion
+class for Quantum - the open journal for quantum science (https://quantum-journal.org)]
+\RequirePackage{xkeyval}
+\RequirePackage{etoolbox}
+
+\newcommand*\@ptsize{}
+
+\newtoggle{@restonecol}
+
+\newtoggle{@html}
+\togglefalse{@html}
+\DeclareOptionX{html}{\toggletrue{@html}}
+
+\setlength\paperheight{297mm}%
+\setlength\paperwidth{210mm}
+
+\renewcommand*\@ptsize{1}
+
+\ProcessOptionsX
+
+\input{size1\@ptsize.clo}
+
+\newcommand{\@tag}[2]{<#1>#2</#1>}
+
+\RequirePackage{soul}
+\newcommand{\corr}[2]{\textcolor{red}{\st{#1}}\textcolor{blue}{#2}}
+\newcommand{\ins}[1]{\textcolor{red}{#1}}
+
+\iftoggle{@html}{\renewcommand*\familydefault{\ttdefault}}{}
+
+\AtBeginDocument{
+	% avoid bitmap fonts by loading lmodern or at least checking for cm-super
+	\IfFileExists{lmodern.sty}{
+		\RequirePackage{lmodern}
+	}{}
+	% Define a revtex-style openone symbol
+	\IfFileExists{bbm.sty}{
+		\RequirePackage{bbm}
+		\DeclareRobustCommand\openone{\mathbbm{1}}
+	}{
+		\IfFileExists{dsfont.sty}{
+			\RequirePackage{dsfont}
+			\DeclareRobustCommand\openone{\mathds{1}}
+		}{
+			% This uses a similar technique to {revtex4-1}'s openone,
+			% namely two overstruck numeral 1s, but implemented using mboxes
+			% and math kerning as suggested by The Comprehensive LaTeX Symbol List.
+			\DeclareRobustCommand\openone{{\mbox{\small1}\mkern-5.5mu1}}
+		}
+	}
+	\RequirePackage{xcolor}
+	\definecolor{quantumviolet}{HTML}{53257F} %Quantum violet
+	\definecolor{quantumgray}{HTML}{555555} %Quantum gray
+	\iftoggle{@html}{
+		\RequirePackage{verbatim}
+		\RequirePackage[draft]{graphicx}		
+	}{}
+}
+
+
+\AfterEndPreamble{
+	\iftoggle{@html}{
+		% remove stry hyphens in HTML
+		\righthyphenmin=62
+		\lefthyphenmin=62
+		% convert other commands
+		\renewcommand{\emph}[1]{\@tag{em}{#1}}
+		\renewcommand{\textit}[1]{\@tag{i}{#1}}
+		\renewcommand{\textbf}[1]{\@tag{b}{#1}}
+		\renewcommand{\texttt}[1]{\@tag{tt}{#1}}
+		\renewcommand{\textsuperscript}[1]{\@tag{sup}{#1}}
+		\renewcommand{\textsubscript}[1]{\@tag{sub}{#1}}
+		\renewcommand{\cite}[1]{{\textbackslash}cite\{\detokenize{#1}\}}
+		\renewcommand{\label}[1]{{\textbackslash}label\{\detokenize{#1}\}}
+		\renewcommand{\ref}[1]{{\textbackslash}ref\{\detokenize{#1}\}}
+		\renewcommand{\section}[1]{\noindent\@tag{h2}{#1}\\ }
+		\renewcommand{\subsection}[1]{\noindent\@tag{h3}{#1}\\ }
+		\renewcommand{\subsubsection}[1]{\noindent\@tag{h4}{#1}\\ }
+		\renewcommand{\paragraph}[1]{\par ~\\\noindent<br/>\@tag{b}{#1}}
+		\renewenvironment{equation}
+			{\endgraf \noindent {\textbackslash}begin\{equation\} \verbatim}
+			{\endverbatim {\textbackslash}end\{equation\} \endgraf}
+		\renewenvironment{align}
+			{\endgraf \noindent {\textbackslash}begin\{align\} \verbatim}
+			{\endverbatim {\textbackslash}end\{align\} \endgraf}
+		\renewenvironment{eqnarray}
+			{\endgraf \noindent {\textbackslash}begin\{eqnarray\} \verbatim}
+			{\endverbatim {\textbackslash}end\{eqnarray\} \endgraf}
+		% This solution for itemize and enumerate is due to David Carlisle from tex.stackexchange
+		\def\itemize{%
+			\par\noindent <ul>\let\zz\relax
+			\let\olditem\item
+			\def\item{\zz\par\indent<li>\def\zz{\ifhmode\unskip\fi</li>\par}}
+		}
+		\def\enditemize{\zz\endgraf\noindent</ul>\par \let\item\olditem}
+		\def\enumerate{%
+			\par\noindent <ol>\let\zz\relax
+			\let\olditem\item
+			\def\item{\zz\par\indent<li>\def\zz{\ifhmode\unskip\fi</li>\par}}
+		}
+		\def\endenumerate{\zz\endgraf\noindent</ol>\par \let\item\olditem}
+		
+		\def\@@addnewlinebetween#1{#1 \\ \noindent }
+		\def\@affiliationsonly{\forlistloop{\@@addnewlinebetween}{\affiliations}}
+		\renewcommand{\@maketitle}{%
+			\noindent {\footnotesize Title:} \\
+			\noindent {\@title} \\
+			\noindent {\footnotesize Author:} \\
+			\noindent \@authorsonly \\
+			\noindent {\footnotesize Affiliations:} \\
+			\noindent \@affiliationsonly
+			\par\noindent\rule{\textwidth}{0.4pt}
+			\vspace{1.5em}
+		}
+		\renewcommand{\bibliography}[1]{~}
+		% convert links		
+		\renewcommand{\href}[2]{<a href="#1">#2</a>}
+}{}
+}
+
+\setcounter{topnumber}{2}
+\renewcommand*\topfraction{.7}
+\setcounter{bottomnumber}{1}
+\renewcommand*\bottomfraction{.3}
+\setcounter{totalnumber}{3}
+\renewcommand*\textfraction{.2}
+\renewcommand*\floatpagefraction{.5}
+\setcounter{dbltopnumber}{2}
+\renewcommand*\dbltopfraction{.7}
+\renewcommand*\dblfloatpagefraction{.5}
+
+\def\ps at headings{%
+\let\@oddfoot\@empty
+\def\@oddhead{{\slshape\rightmark}\hfil\thepage}%
+\let\@mkboth\markboth
+\def\sectionmark##1{%
+	\markright {\MakeUppercase{%
+			\ifnumgreater{\c at secnumdepth}{\m at ne}
+				{\thesection\quad}
+				{}
+			##1}}%
+	}%
+}%
+
+\def\ps at myheadings{%
+	\let\@oddfoot\@empty\let\@evenfoot\@empty
+	\def\@evenhead{\thepage\hfil\slshape\leftmark}%
+	\def\@oddhead{{\slshape\rightmark}\hfil\thepage}%
+	\let\@mkboth\@gobbletwo
+	\let\sectionmark\@gobble
+	\let\subsectionmark\@gobble
+}
+
+
+\newcommand\maketitle{\par
+\begingroup
+\renewcommand\thefootnote{\@fnsymbol\c at footnote}%
+\def\@makefnmark{\rlap{\@textsuperscript{\normalfont\@thefnmark}}}%
+\long\def\@makefntext##1{\parindent 1em\noindent
+\hb at xt@1.8em{%
+\hss\@textsuperscript{\normalfont\@thefnmark}}##1}%
+\global\@topnum\z@   % Prevents figures from going at top of page.
+\@maketitle
+\thispagestyle{fancy}%\@thanks
+\endgroup
+\setcounter{footnote}{0}%
+\global\let\thanks\relax
+\global\let\maketitle\relax
+\global\let\@maketitle\relax
+%  \global\let\@thanks\@empty
+%  \global\let\@author\@empty
+%  \global\let\@date\@empty
+%  \global\let\@title\@empty
+\global\let\title\relax
+\global\let\author\relax
+\global\let\date\relax
+\global\let\and\relax
+}
+
+\def\@maketitle{%
+	\sffamily
+	\null
+	\let \footnote \thanks
+	\noindent%
+	\begin{minipage}{\textwidth}%
+          \noindent{\huge\hyphenpenalty=5000 \@printtitle\par}%
+        \end{minipage}%
+	\vskip 1.5em%
+	\begin{flushleft}%
+		\noindent \@printauthors
+	\end{flushleft}%
+	\vskip 1em%
+	\noindent\@printaffiliations
+	\vskip 0em%
+	\ifdefempty{\@date}{}{\noindent{\footnotesize\color{quantumgray}\@date}}%
+	\par
+	\vskip 1.5em
+	\makeatletter%
+	\begingroup
+	\hypersetup{%
+		pdftitle={\detokenize\expandafter{\@title}},
+		pdfauthor={\@authorsonly},
+		pdfkeywords={\@keywords},
+		pdfcreator={LaTeX with hyperref package and class quantumview \csname ver at quantumview.cls\endcsname},
+	}%
+	\endgroup
+	\makeatother%
+}
+
+\setcounter{secnumdepth}{3}
+\newcounter {part}
+\newcounter {section}
+\newcounter {subsection}[section]
+\newcounter {subsubsection}[subsection]
+\newcounter {paragraph}[subsubsection]
+\newcounter {subparagraph}[paragraph]
+\renewcommand*\thepart {\@Roman\c at part}
+\renewcommand*\thesection {\@arabic\c at section}
+\renewcommand*\thesubsection   {\thesection.\@arabic\c at subsection}
+\renewcommand*\thesubsubsection{\thesubsection.\@arabic\c at subsubsection}
+\renewcommand*\theparagraph    {\thesubsubsection.\@arabic\c at paragraph}
+\renewcommand*\thesubparagraph {\theparagraph.\@arabic\c at subparagraph}
+\newcommand\part{%
+	\ifbool{@noskipsec}{\leavevmode}{}
+	\par
+	\addvspace{4ex}%
+	\boolfalse{@afterindent}
+	\secdef\@part\@spart}
+
+\def\@part[#1]#2{%
+\ifnumgreater{\c at secnumdepth}{\m at ne}
+	{\refstepcounter{part}\addcontentsline{toc}{part}{\thepart\hspace{1em}#1}}
+	{\addcontentsline{toc}{part}{#1}}
+{\parindent \z@ \raggedright
+\interlinepenalty \@M
+\normalfont
+\ifnumgreater{\c at secnumdepth}{\m at ne}{\Large\bfseries \partname\nobreakspace\thepart\par\nobreak}{}
+\huge \bfseries #2%
+\markboth{}{}\par}%
+\nobreak
+\vskip 3ex
+\@afterheading%
+}
+
+\def\@spart#1{%
+	{\parindent \z@ \raggedright
+			\interlinepenalty \@M
+			\normalfont
+			\huge \bfseries #1\par}%
+	\nobreak
+	\vskip 3ex
+	\@afterheading}
+
+\newcommand*\section{\@startsection {section}{1}{\z@}%
+  {-3.5ex \@plus -1ex \@minus -.2ex}%
+  {2.3ex \@plus.2ex}%
+  {\normalfont\Large\sffamily}}
+
+\newcommand*\subsection{\@startsection{subsection}{2}{\z@}%
+	{-3.25ex\@plus -1ex \@minus -.2ex}%
+	{1.5ex \@plus .2ex}%
+	{\normalfont\large\sffamily}}
+
+\newcommand*\subsubsection{\@startsection{subsubsection}{3}{\z@}%
+	{-3.25ex\@plus -1ex \@minus -.2ex}%
+	{1.5ex \@plus .2ex}%
+	{\normalfont\normalsize\sffamily}}
+
+\newcommand*\paragraph{\@startsection{paragraph}{4}{\z@}%
+	{3.25ex \@plus1ex \@minus.2ex}%
+	{-1em}%
+	{\normalfont\normalsize\bfseries}}
+
+\newcommand*\subparagraph{\@startsection{subparagraph}{5}{\parindent}%
+	{3.25ex \@plus1ex \@minus .2ex}%
+	{-1em}%
+	{\normalfont\normalsize\bfseries}}
+
+\setlength\leftmargini{2.5em}
+\leftmargin  \leftmargini
+\setlength\leftmarginii  {2.2em}
+\setlength\leftmarginiii {1.87em}
+\setlength\leftmarginiv  {1.7em}
+
+\setlength\leftmarginv  {1em}
+\setlength\leftmarginvi {1em}
+
+\setlength  \labelsep  {.5em}
+\setlength  \labelwidth{\leftmargini}
+\addtolength\labelwidth{-\labelsep}
+\@beginparpenalty -\@lowpenalty
+\@endparpenalty   -\@lowpenalty
+\@itempenalty     -\@lowpenalty
+\renewcommand*\theenumi{\@arabic\c at enumi}
+\renewcommand*\theenumii{\@alph\c at enumii}
+\renewcommand*\theenumiii{\@roman\c at enumiii}
+\renewcommand*\theenumiv{\@Alph\c at enumiv}
+\newcommand*\labelenumi{\theenumi.}
+\newcommand*\labelenumii{(\theenumii)}
+\newcommand*\labelenumiii{\theenumiii.}
+\newcommand*\labelenumiv{\theenumiv.}
+\renewcommand*\p at enumii{\theenumi}
+\renewcommand*\p at enumiii{\theenumi(\theenumii)}
+\renewcommand*\p at enumiv{\p at enumiii\theenumiii}
+\newcommand*\labelitemi{\textbullet}
+\newcommand*\labelitemii{\normalfont\bfseries \textendash}
+\newcommand*\labelitemiii{\textasteriskcentered}
+\newcommand*\labelitemiv{\textperiodcentered}
+\newenvironment{description}
+{\list{}{\labelwidth\z@ \itemindent-\leftmargin
+		\let\makelabel\descriptionlabel}}
+{\endlist}
+\newcommand*\descriptionlabel[1]{\hspace\labelsep
+	\normalfont\bfseries #1}
+
+\newenvironment{abstract}{%
+	\ifdefempty{\maketitle}{\relax{}}{\maketitle}
+	\vskip 1em \quotation%
+}
+{
+	\endquotation\vskip 2em%
+}
+
+\newenvironment{verse}
+{\let\\\@centercr
+	\list{}{\itemsep      \z@
+		\itemindent   -1.5em%
+		\listparindent\itemindent
+		\rightmargin  \leftmargin
+		\advance\leftmargin 1.5em}%
+	\item\relax}
+{\endlist}
+
+\newenvironment{quotation}
+{\list{}{\listparindent 1.5em%
+		\itemindent    \listparindent
+		\rightmargin   \leftmargin
+		\parsep        \z@ \@plus\p@}%
+	\item\relax}
+{\endlist}
+
+\newenvironment{quote}
+{\list{}{\rightmargin\leftmargin}%
+	\item\relax}
+{\endlist}
+
+\newcommand*\appendix{\par
+	\setcounter{section}{0}%
+	\setcounter{subsection}{0}%
+	\gdef\thesection{\@Alph\c at section}}
+\setlength\arraycolsep{5\p@}
+\setlength\tabcolsep{6\p@}
+\setlength\arrayrulewidth{.4\p@}
+\setlength\doublerulesep{2\p@}
+\setlength\tabbingsep{\labelsep}
+\skip\@mpfootins = \skip\footins
+\setlength\fboxsep{3\p@}
+\setlength\fboxrule{.4\p@}
+\renewcommand*\theequation {\@arabic\c at equation}
+\newcounter{figure}
+\renewcommand*\thefigure {\@arabic\c at figure}
+\def\fps at figure{tbp}
+\def\ftype at figure{1}
+\def\ext at figure{lof}
+\def\fnum at figure{\figurename\nobreakspace\thefigure}
+
+\newenvironment{figure}
+{\@float{figure}}
+{\end at float}
+
+\newenvironment{figure*}
+{\@dblfloat{figure}}
+{\end at dblfloat}
+
+\newcounter{table}
+\renewcommand*\thetable{\@arabic\c at table}
+\def\fps at table{tbp}
+\def\ftype at table{2}
+\def\ext at table{lot}
+\def\fnum at table{\tablename\nobreakspace\thetable}
+
+\newenvironment{table}
+{\@float{table}}
+{\end at float}
+
+\newenvironment{table*}
+{\@dblfloat{table}}
+{\end at dblfloat}
+
+\newlength\abovecaptionskip
+\newlength\belowcaptionskip
+\setlength\abovecaptionskip{10\p@}
+\setlength\belowcaptionskip{0\p@}
+\long\def\@makecaption#1#2{%
+	\vskip\abovecaptionskip
+	\sbox\@tempboxa{#1: #2}%
+	\ifdimgreater{\wd\@tempboxa}{\hsize}
+		{#1: #2\par}
+		{\global\boolfalse{@minipage}
+		\hb at xt@\hsize{\hfil\box\@tempboxa\hfil}}%
+	\vskip\belowcaptionskip}
+
+\DeclareOldFontCommand{\rm}{\normalfont\rmfamily}{\mathrm}
+\DeclareOldFontCommand{\sf}{\normalfont\sffamily}{\mathsf}
+\DeclareOldFontCommand{\tt}{\normalfont\ttfamily}{\mathtt}
+\DeclareOldFontCommand{\bf}{\normalfont\bfseries}{\mathbf}
+\DeclareOldFontCommand{\it}{\normalfont\itshape}{\mathit}
+\DeclareOldFontCommand{\sl}{\normalfont\slshape}{\@nomath\sl}
+\DeclareOldFontCommand{\sc}{\normalfont\scshape}{\@nomath\sc}
+\DeclareRobustCommand*\cal{\@fontswitch\relax\mathcal}
+\DeclareRobustCommand*\mit{\@fontswitch\relax\mathnormal}
+
+\newcommand*\@pnumwidth{1.55em}
+\newcommand*\@tocrmarg{2.55em}
+\newcommand*\@dotsep{4.5}
+\setcounter{tocdepth}{3}
+
+% We use a trick from Ivan Andrus (https://stackoverflow.com/a/2785740)
+% to hide the "\section*{Contents}" command from the table of contents
+% to avoid getting an ugly duplication of the Contents header inside
+% the table itself.
+%
+% This trick consists of temporarily redefining \addcontentsline to
+% do nothing during the expansion of the arguments to \tocless.
+\newcommand{\nocontentsline}[3]{}
+\newcommand{\tocless}[2]{\bgroup\let\addcontentsline=\nocontentsline#1{#2}\egroup}
+\newcommand\tableofcontents{%
+	\tocless{\section*}{\contentsname
+		\@mkboth{%
+			\MakeUppercase\contentsname}{\MakeUppercase\contentsname}}%
+	\@starttoc{toc}%
+}
+
+\newcommand*\l at part[2]{%	
+	\ifnumgreater{\c at tocdepth}{-2}{\relax
+		\addpenalty\@secpenalty
+		\addvspace{2.25em \@plus\p@}%
+		\setlength\@tempdima{3em}%
+		\begingroup
+		\parindent \z@ \rightskip \@pnumwidth
+		\parfillskip -\@pnumwidth
+		{\leavevmode
+			\large \bfseries #1\hfil \hb at xt@\@pnumwidth{\hss #2}}\par
+		\nobreak
+		\endgroup
+	}{}%
+}
+
+\newcommand*\l at section[2]{%
+	\ifnumgreater{\c at tocdepth}{\z@}{
+		\addpenalty\@secpenalty
+		\addvspace{1.0em \@plus\p@}%
+		\setlength\@tempdima{1.5em}%
+		\begingroup
+		\parindent \z@ \rightskip \@pnumwidth
+		\parfillskip -\@pnumwidth
+		\leavevmode \bfseries
+		\advance\leftskip\@tempdima
+		\hskip -\leftskip
+		#1\nobreak\hfil \nobreak\hb at xt@\@pnumwidth{\hss #2}\par
+		\endgroup
+	}{}%
+}
+
+\newcommand*\l at subsection{\@dottedtocline{2}{1.5em}{2.3em}}
+\newcommand*\l at subsubsection{\@dottedtocline{3}{3.8em}{3.2em}}
+\newcommand*\l at paragraph{\@dottedtocline{4}{7.0em}{4.1em}}
+\newcommand*\l at subparagraph{\@dottedtocline{5}{10em}{5em}}
+
+\newcommand\listoffigures{%
+	\section*{\listfigurename}%
+	\@mkboth{\MakeUppercase\listfigurename}%
+	{\MakeUppercase\listfigurename}%
+	\@starttoc{lof}%
+}
+
+\newcommand*\l at figure{\@dottedtocline{1}{1.5em}{2.3em}}
+\newcommand\listoftables{%
+	\section*{\listtablename}%
+	\@mkboth{%
+		\MakeUppercase\listtablename}%
+	{\MakeUppercase\listtablename}%
+	\@starttoc{lot}%
+}
+
+\let\l at table\l at figure
+% Declare a new \acknowledgements command for {revtex4-1}
+% compatability.
+\newcommand*{\acknowledgmentsname}{Acknowledgments}
+\newcommand{\acknowledgments}[1]{%
+	\section*{\acknowledgmentsname}%
+	#1%
+}
+
+\newdimen\bibindent
+\setlength\bibindent{1.5em}
+
+\newenvironment{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
+  \clubpenalty4000
+  \@clubpenalty \clubpenalty
+  \widowpenalty4000%
+  \sfcode`\.\@m
+  \setlength{\itemsep}{0pt plus 0.3ex}
+}
+{\def\@noitemerr
+	{\@latex at warning{Empty `thebibliography' environment}}%
+	\endlist}
+
+\newcommand\newblock{\hskip .11em\@plus.33em\@minus.07em}
+\let\@openbib at code\@empty
+
+\newenvironment{theindex}{%
+	\toggletrue{@restonecol}
+	\twocolumn[\section*{\indexname}]%
+	\@mkboth{\MakeUppercase\indexname}%
+	{\MakeUppercase\indexname}%
+	\thispagestyle{fancy}\parindent\z@
+	\parskip\z@ \@plus .3\p@\relax
+	\columnseprule \z@
+	\columnsep 35\p@
+	\let\item\@idxitem%
+}
+{
+	\iftoggle{@restonecol}
+		{\onecolumn}
+		{\clearpage}
+}
+
+\newcommand\@idxitem{\par\hangindent 40\p@}
+\newcommand\subitem{\@idxitem \hspace*{20\p@}}
+\newcommand\subsubitem{\@idxitem \hspace*{30\p@}}
+\newcommand\indexspace{\par \vskip 10\p@ \@plus5\p@ \@minus3\p@\relax}
+
+\renewcommand*\footnoterule{%
+	\kern-3\p@
+	\hrule\@width.4\columnwidth
+	\kern2.6\p@}
+
+\newcommand*\@makefntext[1]{%
+\parindent 1em%
+\noindent
+\hb at xt@1.8em{\hss\@makefnmark}#1}
+
+\newcommand*\contentsname{Contents}
+\newcommand*\listfigurename{List of Figures}
+\newcommand*\listtablename{List of Tables}
+\newcommand*\refname{References}
+\newcommand*\indexname{Index}
+\newcommand*\figurename{Figure}
+\newcommand*\tablename{Table}
+\newcommand*\partname{Part}
+\newcommand*\appendixname{Appendix}
+\newcommand*\abstractname{Abstract}
+
+\def\today{\ifcase\month\or
+		January\or February\or March\or April\or May\or June\or
+		July\or August\or September\or October\or November\or December\fi
+	\space\number\day, \number\year}
+\setlength\columnsep{20\p@}
+\setlength\columnseprule{0\p@}
+\setlength{\footnotesep}{\baselineskip}
+\RequirePackage{fancyhdr}
+\pagestyle{fancy}
+\renewcommand{\headrule}{}
+\renewcommand{\footrule}{\vbox to 0pt{\hbox to\headwidth{\color{quantumgray}\leaders\hrule\hfil}\vss}}
+\fancyhf{}
+
+\pagenumbering{arabic}
+\raggedbottom
+\onecolumn
+
+%title
+\def\@printtitle{%
+	{%		
+		\edef\@titleexpanded{\detokenize\expandafter{\@title}}%
+		\iftoggle{@xstring}%
+			{\saveexploremode\exploregroups\StrSubstitute{\@titleexpanded}{ }{\%20}[\@titleforurl]\restoreexploremode}%
+			{\gdef\@titleforurl{\@titleexpanded}}%
+		\href{https://quantum-journal.org/?s=\@titleforurl\&reason=title-click}{%
+				\color{quantumviolet}{%
+											\@printtitletextwithappropriatefontsize\unskip%
+				}%
+										}%
+		}%
+}
+% In the macro below we compute the appropriate font size of the title.
+% We use \Huge if the title fits on one line and \huge if it extends over more
+% than one line in font size \Huge
+\def\@titleatfontsize#1{%
+	#1%
+	\begingroup%
+	\raggedright%
+	\def\selectfont{\ClassError{quantumview}{When submitting to Quantum, you are not supposed to use \string\textbf{}, \string\bf, \string\textit{} or other font formating commands inside \string\title{}. Please remove all such commands from your \string\title{}. If you really have to change the font for some part of the title you can turn off this error by giving the option allowfontchangeintitle}{}}%solution from https://tex.stackexchange.com/questions/347596/disallowing-textbf-it-sffamily-in-argument-of-macro-or-environment
+	\@title%
+	\endgroup%
+}%
+
+\def\@printtitletextwithappropriatefontsize{%
+	\newsavebox{\@titelsaveboxHuge}%
+	\savebox{\@titelsaveboxHuge}{%
+		\parbox[b]{\linewidth}{%
+			\@titleatfontsize{\Huge}%
+		}%
+	}%
+	\newsavebox{\@titelsaveboxHugeoneline}%
+	\savebox{\@titelsaveboxHugeoneline}{%
+		\@titleatfontsize{\Huge}%
+	}%
+	\newsavebox{\@titelsaveboxhhuge}%
+	\savebox{\@titelsaveboxhhuge}{%
+		\parbox[b]{\linewidth}{%
+			\@titleatfontsize{\huge}%
+		}%
+	}%
+	\ifdimgreater{\ht\@titelsaveboxHuge}{\ht\@titelsaveboxHugeoneline}
+	{\@titleatfontsize{\huge}%\usebox{\@titelsaveboxhhuge}% using huge because \the\ht\@titelsaveboxHuge{} is larger than \the\ht\@titelsaveboxHugeoneline{}
+	}
+	{\@titleatfontsize{\Huge}% using Huge because \the\ht\@titelsaveboxHuge{} is not larger than \the\ht\@titelsaveboxHugeoneline{}
+	}
+}
+
+%renew \title to allow for and ignore an optional argument
+\renewcommand{\title}[2][]{\gdef\@title{#2}}
+% author handling
+\newcounter{@authorcounter}
+\csdef{@authors}{}
+\renewcommand{\author}[2][]{%
+	\ifstrempty{#1}{%
+		\internal at author{#2}%
+	}{%
+		\internal at elseauthor{#1}{#2}
+	}%
+	\csdef{@authorname\the at authorcounter}{#2}%
+	\def\@currentauthornumber{\the at authorcounter}%
+}%
+\def\addauthortolabel#1#2{%
+	\ifcsdef{authorswithlabel#2}{}{\csdef{authorswithlabel#2}{}}%
+	\listcsxadd{authorswithlabel#2}{#1}}%
+\def\internal at elseauthor#1#2{%
+	\stepcounter{@authorcounter}
+	\ifcsdef{@authors}{}{\csdef{@authors}{}}%
+	\listadd{\@authors}{#2}%
+	\forcsvlist{\addauthortolabel{\the at authorcounter}}{#1}%
+	\ifbool{@startnewauthorgroup}{\csundef{@authorgroup}}{}%
+	\ifcsdef{@authorgroup}{}{\csdef{@authorgroup}{}}%
+	\listxadd{\@authorgroup}{\the at authorcounter}%
+	\boolfalse{@startnewauthorgroup}%
+}%
+\def\internal at author#1{%
+	\stepcounter{@authorcounter}
+	\ifcsdef{@authors}{}{\csdef{@authors}{}}%
+	\listadd{\@authors}{#1}%
+	\ifbool{@startnewauthorgroup}{\csundef{@authorgroup}}{}
+	\ifcsdef{@authorgroup}{}{\csdef{@authorgroup}{}}%
+	\listxadd{\@authorgroup}{\the at authorcounter}
+	\boolfalse{@startnewauthorgroup}
+}
+\def\@@spaceafter#1{#1 }
+\def\@@@comma{\def\@@@comma{,}}
+\def\@@commaspacebefore#1{\@@@comma{}#1}
+\def\@printauthor#1#2{\def\footnote{\ClassError{quantumview}{You must not put a \string\footnote{} command inside the argument of \string\author}{}}\mbox{\ifcsdef{author#1orcid}{\href{https://orcid.org/\csname author#1orcid\endcsname}{\color{black}#2}}{#2}}\ifnumcomp{\the at affiliationcounter}{>}{1}{\textsuperscript{\forlistcsloop{\@@commaspacebefore}{author#1affiliations}\unskip}}{}\ifnumcomp{#1}{<}{\the at authorcounter-1}{, }{\ifnumcomp{#1}{=}{\the at authorcounter-1}{\ifnumcomp{#1}{=}{1}{ and }{, and }}{}}}
+\def\@printauthors{%
+	\newcounter{@authornum}%
+	\large\forlistloop{\stepcounter{@authornum}%
+		\ifcsdef{author\the at authornum hasextras}{%
+			\insert\footins{\footnotesize%
+				%      \interlinepenalty\interfootnotelinepenalty
+				%      \splittopskip\footnotesep
+				%      \splitmaxdepth \dp\strutbox \floatingpenalty \@MM
+				\hsize\dimexpr \linewidth\relax \@parboxrestore%
+				% \flushleft%
+				% \baselineskip=0pt%
+				\@printauthorextrainfo{\the at authornum}\vspace{0.5\baselineskip}%
+			}}{}%
+		\@printauthor\the at authornum}{\@authors}%
+}
+\def\@@addcommabetween#1{#1, }%this adds an ugly extra comma at the end but the variant below is not expandable and therefore leads to ugly warnings: https://tex.stackexchange.com/questions/50978/macro-to-extract-typeset-plain-text-from-a-command
+%\def\@@addcommabetween#1{\ifdef{\firstauthoronly}{, }{\def\firstauthoronly{\empty}}#1}
+\def\@authorsonly{\forlistloop{\@@addcommabetween}{\@authors}}
+% affiliation handling
+\newbool{@startnewauthorgroup}
+\newcounter{@affiliationcounter}
+\def\@addaffiliation#1#2{
+	\ifcsdef{author#2affiliations}{}{\csdef{author#2affiliations}{}}%
+	\listcsgadd{author#2affiliations}{#1}
+}
+\newcommand{\address}[2][]{\affiliation[#1]{#2}}
+
+%for compatibility with authblk
+\newcommand{\affil}[2][]{
+	\affiliation[#1]{#2}}
+\newcommand{\affiliation}[2][]{%
+	\ifstrempty{#1}{%
+		\internal at affiliation{#2}%
+	}{%
+		\elseinternal at affiliation{#1}{#2}
+	}}%
+\def\elseinternal at affiliation#1#2{%
+	\booltrue{@startnewauthorgroup}
+	\ifcsdef{affiliations}{}{\csdef{affiliations}{}}%
+	\expandafter\def\csname\detokenize{#2}\endcsname{#2}%
+	\stepcounter{@affiliationcounter}%
+	\listxadd{\affiliations}{\iftoggle{@html}{#2}{\detokenize{#2}}}%
+	\csxdef{affiliation\detokenize{#2}number}{\the at affiliationcounter{}}%
+	\ifcsdef{authorswithlabel#1}{%
+		\forlistcsloop{\@addaffiliation{\csname affiliation\detokenize{#2}number\endcsname}}{authorswithlabel#1}%
+	}{}%
+}
+\def\internal at affiliation#1{%
+	\booltrue{@startnewauthorgroup}
+	\ifcsdef{affiliations}{}{\csdef{affiliations}{}}%
+	\expandafter\def\csname\detokenize{#1}\endcsname{#1} %to handle special characters such as \'a and \l we create a macro whose name is the detokenized version of #1 and that expands to #1 and later call it in \@printaffiliation
+	\xifinlist{\detokenize{#1}}{\affiliations}{}{\stepcounter{@affiliationcounter}\listxadd{\affiliations}{\iftoggle{@html}{#1}{\detokenize{#1}}}\csxdef{affiliation\detokenize{#1}number}{\the at affiliationcounter{}}}%
+	\forlistloop{\@addaffiliation{\csname affiliation\detokenize{#1}number\endcsname}}{\@authorgroup}%
+}
+\def\@printaffiliation#1#2{\ifnumcomp{\the at affiliationcounter}{>}{1}{\llap{\textsuperscript{#1}}}{}\csname #2\endcsname\ifnumcomp{#1}{<}{\the at affiliationcounter}{\newline}{}}
+\def\@printaffiliations{%
+	\ifcsdef{affiliations}{}{\csdef{affiliations}{}}%
+	\newcounter{@affiliationnum}%
+	\ifnumcomp{\the at affiliationcounter}{>}{1}{%
+		\settowidth{\leftskip}{\footnotesize\textsuperscript{\the at affiliationcounter}}%
+	}{}%
+	{\footnotesize\color{quantumgray}%
+		\forlistloop{\stepcounter{@affiliationnum}\@printaffiliation\the at affiliationnum}{\affiliations}}%
+}
+%collaboration and altaffiliation
+\newcommand{\collaboration}[1]{\author{#1}}
+\newcommand{\altaffiliation}[2][]{\affiliation{#1#2}}
+
+% email, homepage, and thanks handling
+% be careful - this section is highly sensitive to the positioning of the % marks
+\def\@printauthorextrainfo#1{
+	\csname @authorname#1\endcsname: 
+	\ifcsdef{author#1emails}
+	{%
+		\forlistcsloop{\@@spaceafter}{author#1emails}%
+	}
+	{}%
+	\ifcsdef{author#1homepages}
+	{%
+		\ifcsdef{author#1emails}
+		{\unskip, }
+		{}%
+		\forlistcsloop{\@@spaceafter}{author#1homepages}%
+	}
+	{}%
+	\ifcsdef{author#1thanks}
+	{%
+		\ifcsdef{author#1emails}
+		{%
+			\ifcsdef{author#1homepages}
+			{\unskip, }
+			{\unskip, }%
+		}
+		{%
+			\ifcsdef{author#1homepages}
+			{\unskip, }
+			{}%
+		}%
+		\forlistcsloop{\@@spaceafter}{author#1thanks}%
+	}
+	{}%
+}
+
+\newcommand{\email}[2][]{%
+	\ifcsdef{@currentauthornumber}{}{\ClassError{quantumview}{\string\email{} may only appear after the first \string\author{} command}{}}
+	\@email{#1}{\href{mailto:#2}{#2}}}
+\newcommand{\homepage}[2][]{%
+	\ifcsdef{@currentauthornumber}{}{\ClassError{quantumview}{\string\homepage{} may only appear after the first \string\author{} command}{}}
+	\@homepage{#1}{\href{#2}{#2}}}
+\renewcommand{\thanks}[2][]{%
+	\ifcsdef{@currentauthornumber}{}{\ClassError{quantumview}{\string\thanks{} may only appear after the first \string\author{} command}{}}
+	\@thanks{#1}{#2}}
+\newcommand{\orcid}[2][]{%
+	\ifcsdef{@currentauthornumber}{}{\ClassError{quantumview}{\string\orcid{} may only appear after the first \string\author{} command}{}}
+	\@orcid{#1}{#2}}
+\def\@email#1#2{%}
+	\@addemail{#1#2}{\@currentauthornumber}
+	\csdef{author\@currentauthornumber hasextras}{}
+}
+\def\@homepage#1#2{%
+	\ifcsdef{@currentauthornumber}{}{\def\@currentauthornumber{0}}%in case \homepage is called before the first author
+	\@addhomepage{#1#2}{\@currentauthornumber}
+	\csdef{author\@currentauthornumber hasextras}{}
+}
+\def\@thanks#1#2{%
+	\ifcsdef{@currentauthornumber}{}{\def\@currentauthornumber{0}}%in case \thanks is called before the first author
+	\@addthanks{#1#2}{\@currentauthornumber}
+	\csdef{author\@currentauthornumber hasextras}{}
+}
+\def\@orcid#1#2{%
+	\ifcsdef{@currentauthornumber}{}{\def\@currentauthornumber{0}}%in case \orcid is called before the first author
+	\@addorcid{#1#2}{\@currentauthornumber}
+}
+\def\@addemail#1#2{
+	\ifcsdef{author#2emails}{}{\csdef{author#2emails}{}}%
+	\listcsgadd{author#2emails}{#1}
+}
+\def\@addhomepage#1#2{
+	\ifcsdef{author#2homepages}{}{\csdef{author#2homepages}{}}%
+	\listcsgadd{author#2homepages}{#1}
+}
+\def\@addthanks#1#2{
+	\ifcsdef{author#2thanks}{}{\csdef{author#2thanks}{}}%
+	\listcsgadd{author#2thanks}{#1}
+}
+\def\@addorcid#1#2{
+	\csdef{author#2orcid}{#1}%
+}
+
+\newtoggle{@tikz}
+\IfFileExists{tikz.sty}{\toggletrue{@tikz}}{\togglefalse{@tikz}}
+
+\newtoggle{@xstring}
+\IfFileExists{xstring.sty}{\toggletrue{@xstring}}{\togglefalse{@xstring}}
+
+\AtBeginDocument{
+	\iftoggle{@xstring}
+		{\RequirePackage{xstring}}
+		{}
+	\iftoggle{@tikz}
+	{%
+		\RequirePackage{tikz}
+		\usetikzlibrary{calc}
+		\newlength{\@eQ}%Capital Q height
+		\newlength{\@w}%line width
+		\newlength{\@rl}%rounding length
+		\newlength{\@cw}%character width
+		\newlength{\@ch}%lower case character height
+		\newlength{\@cr}%corner radius
+		\newlength{\@sl}%<> slant
+		\newlength{\@xt}%<> x thickeness
+
+		\DeclareRobustCommand{\Quantum}{%
+		{\sffamily%\color{quantumviolet}%
+		\setlength{\@eQ}{\dimexpr\fontcharht\font`Q\relax}%
+		\setlength{\@w}{0.088\@eQ}%
+		\setlength{\@rl}{0.2\@eQ}%
+		\setlength{\@cw}{0.5\@eQ}%
+		\setlength{\@ch}{0.65\@eQ}%
+		\setlength{\@cr}{0.3\@w}%
+		\setlength{\@sl}{0.22\@eQ}%
+		\setlength{\@xt}{1.113588507968435\@w}%=math.sqrt(1/(1-pow(22./50.,2)))*\@w
+		\tikz[baseline,x=\@eQ,y=\@eQ,every node/.append style={fill=none,inner sep=0pt,outer sep=0pt,node distance=0},rounded corners=\@cr]{%
+		% <> leg in back
+		% \fill[] (0,0.5) -- ++(\@sl,0.5) -- ++(\@xt,0) -- ++(-\@sl,-0.5) -- ++(\@sl,-0.5) -- ++(-\@xt,0) -- cycle;
+		% \fill[xshift=.95\@eQ] (0,0.5) node (eastend) {} -- ++(-\@sl,0.5) -- ++(-\@xt,0) -- ++(\@sl,-0.5) -- ++(-\@sl,-0.5) -- ++(\@xt,0) -- cycle;
+		% \begin{scope}
+		%   \clip[xshift=.95\@eQ,overlay] (0.5\@xt,0.5) -- ++(-\@sl,-0.5) -- (0,0) -- (0.5\@xt,0.5) ++(-2\@xt,0) -- ++(-\@sl,-0.5) -- ($(-2*\@sl,0)$) -- ++(\@sl,0.5) --cycle;
+		%   \fill[xshift=.95\@eQ] (0,0) -- ++(-\@sl,0.5) -- ++(-\@xt,0) -- ++(\@sl,-0.5) -- cycle;    
+		% \end{scope}
+		\node[overlay,anchor=base west,opacity=0] {Q};
+		% <> leg in front
+		\fill[] (0,0.5) -- ++(\@sl,0.5) -- ++(\@xt,0) -- ++(-\@sl,-0.5) -- ++(\@sl,-0.5) -- ++(-\@xt,0) -- cycle;
+		\begin{scope}[xshift=\@eQ]
+			\fill (0,0) -- ++(-\@sl,0.5) -- ++(-\@xt,0) -- ++(\@sl,-0.5) -- cycle;
+			\clip[overlay,rounded corners=0] (-1.34\@xt,0) -- ++(-\@sl,0.5) -- ++(0,-0.5) -- cycle (0.34\@xt,0) -- ++($2*(-\@sl,0.5)$) -- (0.5\@xt,1) --cycle;
+			\fill (0,0.5) node (eastend) {} -- ++(-\@sl,0.5) -- ++(-\@xt,0) -- ++(\@sl,-0.5) -- ++(-\@sl,-0.5) -- ++(\@xt,0) -- cycle;
+		\end{scope}
+		% u
+		\def\@u##1{%
+		\fill[##1] (0,\@ch) -- (0,1.06\@rl) to[out=-90,in=184,looseness=1.2,overlay] ($(\@cw-\@w,0)$) -- ($(\@cw,0)$) -- ++(0,\@ch) -- ++(-\@w,0) -- ++($(0,-\@ch) + (0,\@w)$) -- ($(\@cw-\@w,\@w)$) to[out=184,in=-90,looseness=1.1] ($(\@w,1.06\@rl)$) -- (\@w,\@ch) --cycle;}
+		\@u{shift={($(current bounding box.south east)+(0.172\@eQ,0)$)}}
+		\node[overlay,anchor=base east,opacity=0] at (current bounding box.south east) {u};
+		% a
+		\fill[shift={($(current bounding box.south east)+(0.110\@eQ,0)$)}] (\@cw,0) -- ++($(0,\@ch)-(0,\@rl)$) to[out=90,in=0,looseness=1.22] ++($(-1.22\@rl,\@rl)$) -- ($(\@w,\@ch)$) -- ++(0,-\@w) -- ($(1.22\@rl,\@ch-\@w)$) to[out=0,in=90,looseness=1.3,rounded corners=0] ($(\@cw,\@ch)-(\@w,\@rl)$) -- ($(\@cw,0)-(\@w,-\@w)$) --
+		($(\@rl,\@w)$) to[out=180,in=-100,looseness=0.95,rounded corners=0] ($(1.05\@w,0.33\@ch)$) to[out=80,in=176,looseness=1.0] ($(\@cw-\@w,0.47\@ch)$) to[rounded corners=0] ++(0,-\@cr) to[rounded corners=0] ++($(0,\@cr+\@w)$) to[out=176,in=0] ($(1.2\@rl,0.48\@ch)+(0,\@w)$) to[out=180,in=90,rounded corners=0] ($(0.05\@w,0.33\@ch)$) to[out=-90,in=180,looseness=1.1,rounded corners=0] ($(\@rl,0)$) -- cycle;
+		\node[overlay,anchor=base east,opacity=0] at (current bounding box.south east) {a};
+		% \fill[shift={($(current bounding box.south east)+(0.110\@eQ,0)$)}] (\@cw,0) -- ++($(0,\@ch)-(0,\@rl)$) to[out=90,in=0,looseness=1.22] ++($(-1.22\@rl,\@rl)$) -- ($(\@w,\@ch-0.1\@w)$) -- ++(0.1\@w,-\@w) -- ($(1.22\@rl,\@ch-\@w)$) to[out=0,in=90,looseness=1.3,rounded corners=0] ($(\@cw,\@ch)-(\@w,\@rl)$) -- ($(\@cw,0)-(\@w,-\@w)$) -- 
+		% ($(\@rl,\@w)$) to[out=180,in=-100,looseness=0.95,rounded corners=0] ($(1.05\@w,0.33\@ch)$) to[out=80,in=176,looseness=1.0] ($(\@cw-\@w,0.47\@ch)$) to[rounded corners=0] ++(0,-\@cr) to[rounded corners=0] ++($(0,\@cr+\@w)$) to[out=176,in=0] ($(1.2\@rl,0.48\@ch)+(0,\@w)$) to[out=180,in=90,rounded corners=0] ($(0.05\@w,0.33\@ch)$) to[out=-90,in=180,looseness=1.1,rounded corners=0] ($(\@rl,0)$) -- cycle;
+		% \node[overlay,anchor=base east,opacity=0] at (current bounding box.south east) {a};
+		%n
+		\fill[shift={($(current bounding box.south east)+(0.181\@eQ+\@cw,\@ch)$)},rotate=180] (0,\@ch) -- (0,\@rl) to[out=-90,in=180,looseness=1.22] ($(1.2\@rl,0)$) -- (\@cw,0) -- ++(0,\@ch) -- ++(-\@w,0) -- ++($(0,-\@ch) + (0,1.05\@w)$) to[out=182,in=-90,looseness=1.04] ($(\@w,\@rl)$) -- (\@w,\@ch) --cycle;
+		\node[overlay,anchor=base east,opacity=0] at (current bounding box.south east) {n};
+		% t
+		\fill[shift={($(current bounding box.south east)+(0.111\@eQ,0)$)}]
+		(\@w,0.9) [rounded corners=0] -- (\@w,\@ch) [rounded corners=\@cr] -- (0,\@ch) -- ++(0,-\@w) to[rounded corners=0] ++(\@w,0) -- (\@w,\@rl) to[out=-90,in=180,looseness=1.3,overlay] ($(\@w+\@rl,-0.07\@w)$) to[overlay] ++($(0.64\@cw-\@w-\@rl,0)$) -- ++(0,\@w) -- ++($(\@w+\@rl-0.64\@cw,0)$) to[out=180,in=-90,looseness=1.4] ($(2\@w,\@rl)$) -- ++($(0,\@ch-\@rl-\@w)$) -- ($(0.64\@cw,\@ch-\@w)$) -- ++(0,\@w) to[rounded corners=0] (2\@w,\@ch) -- ($(2\@w,0.9)$) --cycle;
+		\node[overlay,anchor=base east,opacity=0] at (current bounding box.south east) {t};
+		% u
+		\@u{shift={($(current bounding box.south east)+(0.125\@eQ,0)$)}}
+		% \fill[shift={($(current bounding box.south east)+(0.125\@eQ,0)$)}] (0,\@ch) -- (0,\@rl) to[out=-90,in=180] ($(\@rl,0)$) -- (\@cw,0) -- ++(0,\@ch) -- ++(-\@w,0) -- ++($(0,-\@ch) + (0,\@w)$) -- ($(\@rl,\@w)$) to[out=180,in=-90] ($(\@w,\@rl)$) -- (\@w,\@ch) --cycle;
+		\node[overlay,anchor=base east,opacity=0] at (current bounding box.south east) {u};
+		% m
+		\fill[shift={($(current bounding box.south east)+(0.16\@eQ+1.93*\@cw-\@w,\@ch)$)},rotate=180] (0,\@ch) -- (0,\@rl) to[out=-90,in=180,looseness=1.2] ($(1.2\@rl,0)$) -- ($(1.93\@cw,0)-(\@w,0)$) -- ++(0,\@ch) -- ++(-\@w,0) -- ++($(0,-\@ch) + (0,1.05\@w)$) to[out=184,in=-4] ($(0.97\@cw,1.05\@w)+(0,0)$) -- ++($(0,-1.05\@w)+(0,\@ch)$) -- ++($(-\@w,0)$) -- ++($(0,-\@ch)+(0,1.05\@w)$) to[out=182,in=-90,looseness=1.04] ($(\@w,\@rl)$) -- (\@w,\@ch) --cycle;
+		\node[overlay,anchor=base east,opacity=0] at (current bounding box.south east) {m};
+		}}}
+	}
+	{%
+		\ClassWarning{quantumview}{The tikz package could not be found and the \string\Quantum command will not produce the Quantum logo, but fall back to outputting simply the text Quantum.}
+		\DeclareRobustCommand{\Quantum}{Quantum}
+	}
+}
+%elsearticle style extra header information
+\newcommand{\ead}[2][]{
+	\ifstrempty{#1}{
+		\email{#2}
+	}{
+		\iftoggle{@xstring}
+			{\IfStrEq{#1}{url}{\homepage{#2}}{\email{#2}}}
+			{email{#2}}
+	}
+}
+\AtEndPreamble{
+	\providecommand{\@elsearticlecommandsnotsupportederror}{\ClassError{quantumview}{The elsearticle style \string\cortext{}, \string\corref{}, \string\fntext{}, \string\fnref{}, \string\tnotetext{}, and \string\tnoteref{} commands are not supported by quantumview. Please refrain from using footnotes in the title part of your document and use the \string\tahnks{} command for author footnotes instead.}{}}
+	\providecommand{\cortext}[2][]{\@elsearticlecommandsnotsupportederror} %corresponding author information
+	\providecommand{\corref}[1]{\@elsearticlecommandsnotsupportederror} %corresponding author information reference
+	\providecommand{\fntext}[2][]{\@elsearticlecommandsnotsupportederror} %author footnote
+	\providecommand{\fnref}[1]{\@elsearticlecommandsnotsupportederror} %author footnot reference
+	\providecommand{\tnotetext}[2][]{\@elsearticlecommandsnotsupportederror} %title footnote
+	\providecommand{\tnoteref}[1]{\@elsearticlecommandsnotsupportederror} %title footnote reference
+}
+
+% set default options for hyperref to make links more pretty
+\PassOptionsToPackage{colorlinks=true,hyperindex}{hyperref}
+
+\PassOptionsToPackage{allcolors=quantumviolet}{hyperref}
+
+%enable DOIs if biblatex is used by default
+\PassOptionsToPackage{doi=true}{biblatex}
+
+\AtBeginDocument{%
+
+	\RequirePackage{hyperref}%	
+
+	\@ifpackageloaded{natbib}{%
+		\setlength{\bibsep}{0pt plus 0.3ex}
+		\@ifpackageloaded{doi}{}{%
+			\providecommand{\doi}[1]{}
+			\renewcommand{\doi}[1]{\href{https://doi.org/\detokenize{#1}}{DOI: \detokenize{#1}}}%
+		}%
+	}{%
+		\@ifpackageloaded{biblatex}{
+			\DeclareFieldFormat{doi}{\mkbibacro{DOI}\addcolon\space\href{https://doi.org/\detokenize{#1}}{\detokenize{#1}}}
+			\setcounter{biburllcpenalty}{1000}
+			\setcounter{biburlucpenalty}{1000}
+			\setcounter{biburlnumpenalty}{1000}
+		}{}%
+	}
+}
+
+\def\@keywords{}
+\providecommand{\keywords}{}
+\renewcommand{\keywords}[1]{\def\@keywords{#1}}
+
+\newenvironment{acknowledgements}{\section*{Acknowledgements}}{}
+
+\AtBeginDocument{%
+	\providecommand\text[1]{
+		\ClassError{quantumview}{To use the \string\text{} command please load the mathtools package}{}
+	}
+}
+
+\PassOptionsToPackage{font={small,sf}}{caption}
+
+\AtEndPreamble{
+	\RequirePackage{caption}
+}
+
+\begingroup
+\catcode`\$=\active
+\protected\gdef$#1${\$\detokenize{#1}\$}
+\endgroup
+
+\iftoggle{@html}{
+	\AtBeginDocument{\catcode`\$=\active}
+}{}
+
+\endinput
+%%
+%% End of file `quantumview.cls'.


Property changes on: trunk/Master/texmf-dist/tex/latex/quantumarticle/quantumview.cls
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property


More information about the tex-live-commits mailing list.