initiale Übernahme
This commit is contained in:
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -0,0 +1,5 @@
|
||||
# Defaults file for CUP Journal template
|
||||
reader: markdown
|
||||
writer: pdf
|
||||
pdf-engine: xelatex
|
||||
template: ./template.tex
|
||||
@@ -0,0 +1,45 @@
|
||||
name: "Cambridge University Press Journal Template"
|
||||
version: 1
|
||||
description: |
|
||||
Use this template to export your submission to the journal Network Science
|
||||
using the official template from Cambridge University Press.
|
||||
instructions: |
|
||||
This template requires the frontmatter variables `title`, `abstract`,
|
||||
`keywords`, and `author`. If any of these is not present, the PDF engine may
|
||||
throw errors.
|
||||
|
||||
This template supports the frontmatter variable `cup-journal`, which must be
|
||||
one of the supported journals of this template:
|
||||
|
||||
* Annals of Actuarial Science: `aas``
|
||||
* British Journal of Political Science: `jps`
|
||||
* Network Science: `nws`
|
||||
* Political Analysis: `pla`
|
||||
* Political Science Research and Methods: `ram`
|
||||
* Evolutionary Human Sciences: `ehs`
|
||||
* Natural Language Processing: `nlp`
|
||||
|
||||
Further frontmatter variables supported by this template:
|
||||
|
||||
* `title`: The article title
|
||||
* `author`: A list of authors, with sub-keys `name`, `affiliation`, and
|
||||
`email`. Property `email` is optional; each `author` that has `email` set is
|
||||
assumed to be a corresponding author.
|
||||
* `keywords`: A list of keywords
|
||||
* `abstract`: The article's abstract
|
||||
* `acknowledgements`: An acknowledgements section
|
||||
* `funding-statement`: A funding statement
|
||||
* `competing-interests`: A competing interests statement
|
||||
* `data-availability-statement`: A data availability statement
|
||||
* `ethical-standards`: A statement on ethical standards
|
||||
* `author-contributions`: An author contributions statement
|
||||
* `nocite-ids`: A list of works to be referenced in the bibliography that
|
||||
haven't been cited in the main body.
|
||||
authors:
|
||||
original: "Cambridge University Press"
|
||||
templater:
|
||||
name: "Hendrik Erz"
|
||||
email: "hendrik@zettlr.com"
|
||||
website: "https://www.hendrik-erz.de/"
|
||||
copyright: "Copyright (c) by Mats Dahlgren (1996-1998), Joseph Wright (2008-2018), Overleaf (2019), Donald Arsenau (1989-2009, cite.sty)"
|
||||
license: "LaTeX Project Public License (LPPL) 1.3c or later"
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 67 KiB |
@@ -0,0 +1,125 @@
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
% To select a journal, use its code for the
|
||||
% journal= option in the \documentclass command.
|
||||
% The journal codes for this template are:
|
||||
%
|
||||
% Annals of Actuarial Science: aas
|
||||
% British Journal of Political Science: jps
|
||||
% Network Science: nws
|
||||
% Political Analysis: pla
|
||||
% Political Science Research and Methods: ram
|
||||
% Evolutionary Human Sciences: ehs
|
||||
% Natural Language Processing: nlp
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
\documentclass[
|
||||
journal=$cup-journal$,
|
||||
manuscript=Research\ Article,
|
||||
year=,
|
||||
volume=,
|
||||
]{cup-journal}
|
||||
|
||||
\usepackage{amsmath}
|
||||
\usepackage[nopatch]{microtype}
|
||||
\usepackage{booktabs}
|
||||
|
||||
$fonts.latex()$
|
||||
$font-settings.latex()$
|
||||
$common.latex()$
|
||||
$for(header-includes)$
|
||||
$header-includes$
|
||||
$endfor$
|
||||
$after-header-includes.latex()$
|
||||
$hypersetup.latex()$
|
||||
|
||||
\title{$title$}
|
||||
|
||||
$if(author)$
|
||||
$for(author)$
|
||||
\author{$author.name$}
|
||||
\affiliation{$author.affiliation$}
|
||||
% Every author with an email set will be assumed corresponding author.
|
||||
$if(author.email)$
|
||||
\email[$author.name$]{$author.email$}
|
||||
$endif$
|
||||
$endfor$
|
||||
$endif$
|
||||
|
||||
\keywords{$for(keywords)$$keywords$$sep$, $endfor$}
|
||||
|
||||
\begin{document}
|
||||
|
||||
% DOC START
|
||||
|
||||
$if(abstract)$
|
||||
\begin{abstract}
|
||||
$abstract$
|
||||
\end{abstract}
|
||||
$endif$
|
||||
|
||||
$for(include-before)$
|
||||
$include-before$
|
||||
|
||||
$endfor$
|
||||
|
||||
$body$
|
||||
|
||||
$if(acknowledgements)$
|
||||
\paragraph{Acknowledgments}
|
||||
$acknowledgements$
|
||||
$endif$
|
||||
|
||||
$if(funding-statement)$
|
||||
\paragraph{Funding Statement}
|
||||
$funding-statement$
|
||||
$endif$
|
||||
|
||||
$if(competing-interests)$
|
||||
\paragraph{Competing Interests}
|
||||
$competing-interests$
|
||||
$endif$
|
||||
|
||||
$if(data-availability-statement)$
|
||||
\paragraph{Data Availability Statement}
|
||||
$data-availability-statement$
|
||||
$endif$
|
||||
|
||||
$if(ethical-standards)$
|
||||
\paragraph{Ethical Standards}
|
||||
$ethical-standards$
|
||||
$endif$
|
||||
|
||||
$if(author-contributions)$
|
||||
\paragraph{Author Contributions}
|
||||
$author-contributions$
|
||||
$endif$
|
||||
|
||||
%\endnote in some journals will behave like \footnote; and \printendnotes will not output anything.
|
||||
\printendnotes
|
||||
|
||||
$if(nocite-ids)$
|
||||
\nocite{$for(nocite-ids)$$it$$sep$, $endfor$}
|
||||
$endif$
|
||||
$if(natbib)$
|
||||
$if(bibliography)$
|
||||
$if(biblio-title)$
|
||||
$if(has-chapters)$
|
||||
\renewcommand\bibname{$biblio-title$}
|
||||
$else$
|
||||
\renewcommand\refname{$biblio-title$}
|
||||
$endif$
|
||||
$endif$
|
||||
\bibliography{$for(bibliography)$$bibliography$$sep$,$endfor$}
|
||||
|
||||
$endif$
|
||||
$endif$
|
||||
$if(biblatex)$
|
||||
\printbibliography$if(biblio-title)$[title=$biblio-title$]$endif$
|
||||
|
||||
$endif$
|
||||
|
||||
$for(include-after)$
|
||||
$include-after$
|
||||
|
||||
$endfor$
|
||||
|
||||
\end{document}
|
||||
Reference in New Issue
Block a user