initial commit
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
/.quarto/
|
||||
**/*.quarto_ipynb
|
||||
@@ -0,0 +1,65 @@
|
||||
version: "3"
|
||||
|
||||
vars:
|
||||
PROJECT_NAME: Manuscript
|
||||
PYTHON: '{{if eq OS "windows"}}python{{else}}python3{{end}}'
|
||||
UTILS: "../resources/scripts/task_utils.py"
|
||||
|
||||
tasks:
|
||||
default:
|
||||
desc: "List available tasks"
|
||||
cmd: task --list
|
||||
|
||||
render:
|
||||
desc: "Render with the default (non-anonymized) profile, all formats"
|
||||
cmd: quarto render --profile=default --output-dir _output/default
|
||||
|
||||
render:anonymized:
|
||||
desc: "Render with the anonymized profile, all formats"
|
||||
cmd: quarto render --profile=anonymized --output-dir _output/anonymized
|
||||
|
||||
render:html:
|
||||
desc: "Render to HTML only (default profile)"
|
||||
cmd: quarto render --profile=default --to html --output-dir _output/default
|
||||
|
||||
render:docx:
|
||||
desc: "Render to docx only (default profile)"
|
||||
cmd: quarto render --profile=default --to docx --output-dir _output/default
|
||||
|
||||
render:jats:
|
||||
desc: "Render to JATS XML only (default profile)"
|
||||
cmd: quarto render --profile=default --to jats --output-dir _output/default
|
||||
|
||||
render:pdf:
|
||||
desc: "Render to PDF only (default profile) - requires pdf format configured in _quarto.yml"
|
||||
cmd: quarto render --profile=default --to pdf --output-dir _output/default
|
||||
|
||||
package:
|
||||
desc: "Zip the default-profile rendered output into Manuscript-default.zip"
|
||||
deps: [render]
|
||||
cmd: "{{.PYTHON}} {{.UTILS}} zip _output/default {{.PROJECT_NAME}}-default.zip"
|
||||
sources:
|
||||
- _output/default/**/*
|
||||
generates:
|
||||
- "{{.PROJECT_NAME}}-default.zip"
|
||||
|
||||
package:anonymized:
|
||||
desc: "Zip the anonymized-profile rendered output into Manuscript-anonymized.zip"
|
||||
deps: [render:anonymized]
|
||||
cmd: "{{.PYTHON}} {{.UTILS}} zip _output/anonymized {{.PROJECT_NAME}}-anonymized.zip"
|
||||
sources:
|
||||
- _output/anonymized/**/*
|
||||
generates:
|
||||
- "{{.PROJECT_NAME}}-anonymized.zip"
|
||||
|
||||
package:data:
|
||||
desc: "Zip the data/ folder into data.zip (skips with a warning if data/ doesn't exist)"
|
||||
cmd: "{{.PYTHON}} {{.UTILS}} zip-if-exists data data.zip"
|
||||
sources:
|
||||
- data/**/*
|
||||
generates:
|
||||
- data.zip
|
||||
|
||||
clean:
|
||||
desc: "Remove _output, .quarto, and stray *_files/*_cache folders"
|
||||
cmd: "{{.PYTHON}} {{.UTILS}} clean-project ."
|
||||
@@ -0,0 +1,287 @@
|
||||
% Options for packages loaded elsewhere
|
||||
% Options for packages loaded elsewhere
|
||||
\PassOptionsToPackage{unicode}{hyperref}
|
||||
\PassOptionsToPackage{hyphens}{url}
|
||||
\PassOptionsToPackage{dvipsnames,svgnames,x11names}{xcolor}
|
||||
%
|
||||
\documentclass[
|
||||
american,
|
||||
letterpaper,
|
||||
DIV=11,
|
||||
numbers=noendperiod]{scrartcl}
|
||||
\usepackage{xcolor}
|
||||
\usepackage{amsmath,amssymb}
|
||||
\setcounter{secnumdepth}{-\maxdimen} % remove section numbering
|
||||
\usepackage{iftex}
|
||||
\ifPDFTeX
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage{textcomp} % provide euro and other symbols
|
||||
\else % if luatex or xetex
|
||||
\usepackage{unicode-math} % this also loads fontspec
|
||||
\defaultfontfeatures{Scale=MatchLowercase}
|
||||
\defaultfontfeatures[\rmfamily]{Ligatures=TeX,Scale=1}
|
||||
\fi
|
||||
\usepackage{lmodern}
|
||||
\ifPDFTeX\else
|
||||
% xetex/luatex font selection
|
||||
\fi
|
||||
% Use upquote if available, for straight quotes in verbatim environments
|
||||
\IfFileExists{upquote.sty}{\usepackage{upquote}}{}
|
||||
\IfFileExists{microtype.sty}{% use microtype if available
|
||||
\usepackage[]{microtype}
|
||||
\UseMicrotypeSet[protrusion]{basicmath} % disable protrusion for tt fonts
|
||||
}{}
|
||||
\makeatletter
|
||||
\@ifundefined{KOMAClassName}{% if non-KOMA class
|
||||
\IfFileExists{parskip.sty}{%
|
||||
\usepackage{parskip}
|
||||
}{% else
|
||||
\setlength{\parindent}{0pt}
|
||||
\setlength{\parskip}{6pt plus 2pt minus 1pt}}
|
||||
}{% if KOMA class
|
||||
\KOMAoptions{parskip=half}}
|
||||
\makeatother
|
||||
% Make \paragraph and \subparagraph free-standing
|
||||
\makeatletter
|
||||
\ifx\paragraph\undefined\else
|
||||
\let\oldparagraph\paragraph
|
||||
\renewcommand{\paragraph}{
|
||||
\@ifstar
|
||||
\xxxParagraphStar
|
||||
\xxxParagraphNoStar
|
||||
}
|
||||
\newcommand{\xxxParagraphStar}[1]{\oldparagraph*{#1}\mbox{}}
|
||||
\newcommand{\xxxParagraphNoStar}[1]{\oldparagraph{#1}\mbox{}}
|
||||
\fi
|
||||
\ifx\subparagraph\undefined\else
|
||||
\let\oldsubparagraph\subparagraph
|
||||
\renewcommand{\subparagraph}{
|
||||
\@ifstar
|
||||
\xxxSubParagraphStar
|
||||
\xxxSubParagraphNoStar
|
||||
}
|
||||
\newcommand{\xxxSubParagraphStar}[1]{\oldsubparagraph*{#1}\mbox{}}
|
||||
\newcommand{\xxxSubParagraphNoStar}[1]{\oldsubparagraph{#1}\mbox{}}
|
||||
\fi
|
||||
\makeatother
|
||||
|
||||
|
||||
\usepackage{longtable,booktabs,array}
|
||||
\usepackage{calc} % for calculating minipage widths
|
||||
% Correct order of tables after \paragraph or \subparagraph
|
||||
\usepackage{etoolbox}
|
||||
\makeatletter
|
||||
\patchcmd\longtable{\par}{\if@noskipsec\mbox{}\fi\par}{}{}
|
||||
\makeatother
|
||||
% Allow footnotes in longtable head/foot
|
||||
\IfFileExists{footnotehyper.sty}{\usepackage{footnotehyper}}{\usepackage{footnote}}
|
||||
\makesavenoteenv{longtable}
|
||||
\usepackage{graphicx}
|
||||
\makeatletter
|
||||
\newsavebox\pandoc@box
|
||||
\newcommand*\pandocbounded[1]{% scales image to fit in text height/width
|
||||
\sbox\pandoc@box{#1}%
|
||||
\Gscale@div\@tempa{\textheight}{\dimexpr\ht\pandoc@box+\dp\pandoc@box\relax}%
|
||||
\Gscale@div\@tempb{\linewidth}{\wd\pandoc@box}%
|
||||
\ifdim\@tempb\p@<\@tempa\p@\let\@tempa\@tempb\fi% select the smaller of both
|
||||
\ifdim\@tempa\p@<\p@\scalebox{\@tempa}{\usebox\pandoc@box}%
|
||||
\else\usebox{\pandoc@box}%
|
||||
\fi%
|
||||
}
|
||||
% Set default figure placement to htbp
|
||||
\def\fps@figure{htbp}
|
||||
\makeatother
|
||||
|
||||
|
||||
|
||||
\ifLuaTeX
|
||||
\usepackage[bidi=basic]{babel}
|
||||
\else
|
||||
\usepackage[bidi=default]{babel}
|
||||
\fi
|
||||
% get rid of language-specific shorthands (see #6817):
|
||||
\let\LanguageShortHands\languageshorthands
|
||||
\def\languageshorthands#1{}
|
||||
\ifLuaTeX
|
||||
\usepackage[english]{selnolig} % disable illegal ligatures
|
||||
\fi
|
||||
|
||||
|
||||
\setlength{\emergencystretch}{3em} % prevent overfull lines
|
||||
|
||||
\providecommand{\tightlist}{%
|
||||
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
\KOMAoption{captions}{tableheading}
|
||||
\usepackage{pdfpages}
|
||||
\pagenumbering{gobble}
|
||||
\usepackage{booktabs}
|
||||
\usepackage{caption}
|
||||
\DeclareCaptionLabelSeparator{period-newline}{.\par}
|
||||
\usepackage{setspace}
|
||||
\usepackage{float} % enables [H]
|
||||
\usepackage[section]{placeins} % <- add [section]
|
||||
\makeatletter
|
||||
\@ifpackageloaded{caption}{}{\usepackage{caption}}
|
||||
\AtBeginDocument{%
|
||||
\ifdefined\contentsname
|
||||
\renewcommand*\contentsname{Table of contents}
|
||||
\else
|
||||
\newcommand\contentsname{Table of contents}
|
||||
\fi
|
||||
\ifdefined\listfigurename
|
||||
\renewcommand*\listfigurename{List of Figures}
|
||||
\else
|
||||
\newcommand\listfigurename{List of Figures}
|
||||
\fi
|
||||
\ifdefined\listtablename
|
||||
\renewcommand*\listtablename{List of Tables}
|
||||
\else
|
||||
\newcommand\listtablename{List of Tables}
|
||||
\fi
|
||||
\ifdefined\figurename
|
||||
\renewcommand*\figurename{Figure}
|
||||
\else
|
||||
\newcommand\figurename{Figure}
|
||||
\fi
|
||||
\ifdefined\tablename
|
||||
\renewcommand*\tablename{Table}
|
||||
\else
|
||||
\newcommand\tablename{Table}
|
||||
\fi
|
||||
}
|
||||
\@ifpackageloaded{float}{}{\usepackage{float}}
|
||||
\floatstyle{ruled}
|
||||
\@ifundefined{c@chapter}{\newfloat{codelisting}{h}{lop}}{\newfloat{codelisting}{h}{lop}[chapter]}
|
||||
\floatname{codelisting}{Listing}
|
||||
\newcommand*\listoflistings{\listof{codelisting}{List of Listings}}
|
||||
\makeatother
|
||||
\makeatletter
|
||||
\makeatother
|
||||
\makeatletter
|
||||
\@ifpackageloaded{caption}{}{\usepackage{caption}}
|
||||
\@ifpackageloaded{subcaption}{}{\usepackage{subcaption}}
|
||||
\makeatother
|
||||
\usepackage{bookmark}
|
||||
\IfFileExists{xurl.sty}{\usepackage{xurl}}{} % add URL line breaks if available
|
||||
\urlstyle{same}
|
||||
\hypersetup{
|
||||
pdftitle={Title},
|
||||
pdfauthor={, , and },
|
||||
pdflang={en-US},
|
||||
pdfkeywords={Open Science Practices, Open Access, Open Data, Open
|
||||
Materials, Preregistration, Text Mining, Machine Learning
|
||||
Classification, AI-assisted Coding, Replication},
|
||||
colorlinks=true,
|
||||
linkcolor={blue},
|
||||
filecolor={Maroon},
|
||||
citecolor={Blue},
|
||||
urlcolor={Blue},
|
||||
pdfcreator={LaTeX via pandoc}}
|
||||
|
||||
|
||||
\title{Title}
|
||||
\author{John Doe\textsuperscript{$\dagger{}$,1,*} \and John
|
||||
Roe\textsuperscript{1} \and Jane Roe\textsuperscript{$\dagger{}$,1,2}}
|
||||
\date{}
|
||||
\begin{document}
|
||||
\maketitle
|
||||
\begin{abstract}
|
||||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy
|
||||
eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam
|
||||
voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet
|
||||
clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit
|
||||
amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
|
||||
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,
|
||||
sed diam voluptua. At vero eos et accusam et justo duo dolores et ea
|
||||
rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem
|
||||
ipsum dolor sit amet.
|
||||
\end{abstract}
|
||||
|
||||
|
||||
\textsuperscript{$\dagger{}$}
|
||||
These authors contributed equally to this work.
|
||||
|
||||
\textsuperscript{1} John Doe Center for Technology, John Doe University,
|
||||
Doetown, Germany.\\
|
||||
\textsuperscript{2} Institute of Technology, John Doe University,
|
||||
Doetown, Germany.
|
||||
|
||||
\textsuperscript{*} Correspondence: \href{mailto:john.doe@jdct.edu}{John
|
||||
Doe \textless{}john.doe@jdct.edu\textgreater{}}
|
||||
|
||||
% keeps the title page numbers empty
|
||||
\pagestyle{empty}
|
||||
\newpage
|
||||
\pagenumbering{arabic}
|
||||
\pagestyle{headings}
|
||||
\onehalfspacing % 1.5 line spacing from here on
|
||||
|
||||
\section{Introduction}\label{introduction}
|
||||
|
||||
\section{Background}\label{background}
|
||||
|
||||
\section{Research Design}\label{research-design}
|
||||
|
||||
\subsection{Data}\label{data}
|
||||
|
||||
\subsection{Method}\label{method}
|
||||
|
||||
\section{Results}\label{results}
|
||||
|
||||
\section{Discussion}\label{discussion}
|
||||
|
||||
\section{Conclusion}\label{conclusion}
|
||||
|
||||
Conclusions here.
|
||||
|
||||
\section*{Acknowlegments}\label{acknowlegments}
|
||||
\addcontentsline{toc}{section}{Acknowlegments}
|
||||
|
||||
I would like to thank my advisor, {[}Advisor Name{]}, for his guidance,
|
||||
constructive feedback, and steady support throughout this project. His
|
||||
expertise and encouragement were invaluable in shaping both the research
|
||||
and this publication.
|
||||
|
||||
\section*{Data availability}\label{data-availability}
|
||||
\addcontentsline{toc}{section}{Data availability}
|
||||
|
||||
Materials, Data and Code are made available at a public OSF-repository
|
||||
that can be accessed here:
|
||||
|
||||
\begin{itemize}
|
||||
\tightlist
|
||||
\item
|
||||
https://osf.io/
|
||||
\end{itemize}
|
||||
|
||||
\section*{Funding}\label{funding}
|
||||
\addcontentsline{toc}{section}{Funding}
|
||||
|
||||
This research received no external funding.
|
||||
|
||||
\section*{Conflict of interest}\label{conflict-of-interest}
|
||||
\addcontentsline{toc}{section}{Conflict of interest}
|
||||
|
||||
The authors declare no conflict of interest.
|
||||
|
||||
\section*{Author Biography}\label{author-biography}
|
||||
\addcontentsline{toc}{section}{Author Biography}
|
||||
|
||||
Jane doe is a scientist.
|
||||
|
||||
\section*{Bibliography}\label{bibliography}
|
||||
\addcontentsline{toc}{section}{Bibliography}
|
||||
|
||||
\phantomsection\label{refs}
|
||||
|
||||
|
||||
|
||||
|
||||
\end{document}
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,312 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving
|
||||
and Interchange DTD v1.2 20190208//EN" "JATS-archivearticle1.dtd">
|
||||
|
||||
<article xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:xlink="http://www.w3.org/1999/xlink" dtd-version="1.2" article-type="other">
|
||||
|
||||
<front>
|
||||
|
||||
|
||||
<article-meta>
|
||||
|
||||
|
||||
<title-group>
|
||||
<article-title>Title</article-title>
|
||||
</title-group>
|
||||
|
||||
<contrib-group>
|
||||
<contrib contrib-type="author" equal-contrib="yes" corresp="yes">
|
||||
<contrib-id contrib-id-type="orcid">0000-1111-2222-3333</contrib-id>
|
||||
<name>
|
||||
<surname>Doe</surname>
|
||||
<given-names>John</given-names>
|
||||
</name>
|
||||
<string-name>John Doe</string-name>
|
||||
|
||||
<email>john.doe@jdct.edu</email>
|
||||
<xref ref-type="aff" rid="jdct">a</xref>
|
||||
<xref ref-type="corresp" rid="cor-1">*</xref>
|
||||
<xref ref-type="deceased" rid="equal-1">‡</xref>
|
||||
</contrib>
|
||||
<contrib contrib-type="author">
|
||||
<contrib-id contrib-id-type="orcid">0000-3333-2222-1111</contrib-id>
|
||||
<name>
|
||||
<surname>Roe</surname>
|
||||
<given-names>John</given-names>
|
||||
</name>
|
||||
<string-name>John Roe</string-name>
|
||||
|
||||
<xref ref-type="aff" rid="jdct">a</xref>
|
||||
</contrib>
|
||||
<contrib contrib-type="author" equal-contrib="yes">
|
||||
<contrib-id contrib-id-type="orcid">0000-2222-1111-3333</contrib-id>
|
||||
<name>
|
||||
<surname>Roe</surname>
|
||||
<given-names>Jane</given-names>
|
||||
</name>
|
||||
<string-name>Jane Roe</string-name>
|
||||
|
||||
<xref ref-type="aff" rid="jdct">a</xref>
|
||||
<xref ref-type="aff" rid="iot">b</xref>
|
||||
<xref ref-type="deceased" rid="equal-3">‡</xref>
|
||||
</contrib>
|
||||
</contrib-group>
|
||||
<author-notes>
|
||||
<corresp id="cor-DoeJohnJohn Doe">john.doe@jdct.edu</corresp>
|
||||
<fn id="equal-DoeJohnJohn Doe" fn-type="equal" symbol="‡"><p>John
|
||||
Doe</p></fn>
|
||||
<fn id="equal-RoeJaneJane Roe" fn-type="equal" symbol="‡"><p>Jane
|
||||
Roe</p></fn>
|
||||
</author-notes>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<history></history>
|
||||
|
||||
|
||||
<abstract>
|
||||
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
|
||||
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,
|
||||
sed diam voluptua. At vero eos et accusam et justo duo dolores et ea
|
||||
rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem
|
||||
ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing
|
||||
elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna
|
||||
aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo
|
||||
dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus
|
||||
est Lorem ipsum dolor sit amet.</p>
|
||||
</abstract>
|
||||
<kwd-group kwd-group-type="author">
|
||||
<kwd>Open Science Practices</kwd>
|
||||
<kwd>Open Access</kwd>
|
||||
<kwd>Open Data</kwd>
|
||||
<kwd>Open Materials</kwd>
|
||||
<kwd>Preregistration</kwd>
|
||||
<kwd>Text Mining</kwd>
|
||||
<kwd>Machine Learning Classification</kwd>
|
||||
<kwd>AI-assisted Coding</kwd>
|
||||
<kwd>Replication</kwd>
|
||||
</kwd-group>
|
||||
|
||||
|
||||
|
||||
|
||||
</article-meta>
|
||||
|
||||
</front>
|
||||
|
||||
<body>
|
||||
<p><sup>*</sup> These authors contributed equally to this work.</p>
|
||||
<p><sup>1</sup> John Doe Center for Technology, John Doe University,
|
||||
Doetown, Germany.
|
||||
<sup>2</sup> Institute of Technology, John Doe University, Doetown,
|
||||
Germany.</p>
|
||||
<p><sup>✉</sup> Correspondence:
|
||||
<ext-link ext-link-type="uri" xlink:href="mailto:john.doe@jdct.edu">John
|
||||
Doe <john.doe@jdct.edu></ext-link></p>
|
||||
<sec id="introduction">
|
||||
<title>Introduction</title>
|
||||
</sec>
|
||||
<sec id="background">
|
||||
<title>Background</title>
|
||||
</sec>
|
||||
<sec id="research-design">
|
||||
<title>Research Design</title>
|
||||
<sec id="data">
|
||||
<title>Data</title>
|
||||
</sec>
|
||||
<sec id="method">
|
||||
<title>Method</title>
|
||||
</sec>
|
||||
</sec>
|
||||
<sec id="results">
|
||||
<title>Results</title>
|
||||
</sec>
|
||||
<sec id="discussion">
|
||||
<title>Discussion</title>
|
||||
</sec>
|
||||
<sec id="conclusion">
|
||||
<title>Conclusion</title>
|
||||
<p>Conclusions here.</p>
|
||||
</sec>
|
||||
<sec id="acknowlegments">
|
||||
<title>Acknowlegments</title>
|
||||
<p>I would like to thank my advisor, [Advisor Name], for his guidance,
|
||||
constructive feedback, and steady support throughout this project. His
|
||||
expertise and encouragement were invaluable in shaping both the
|
||||
research and this publication.</p>
|
||||
</sec>
|
||||
<sec id="data-availability">
|
||||
<title>Data availability</title>
|
||||
<p>Materials, Data and Code are made available at a public
|
||||
OSF-repository that can be accessed here:</p>
|
||||
<list list-type="bullet">
|
||||
<list-item>
|
||||
<p>https://osf.io/</p>
|
||||
</list-item>
|
||||
</list>
|
||||
</sec>
|
||||
<sec id="funding">
|
||||
<title>Funding</title>
|
||||
<p>This research received no external funding.</p>
|
||||
</sec>
|
||||
<sec id="conflict-of-interest">
|
||||
<title>Conflict of interest</title>
|
||||
<p>The authors declare no conflict of interest.</p>
|
||||
</sec>
|
||||
<sec id="author-biography">
|
||||
<title>Author Biography</title>
|
||||
<p>Jane doe is a scientist.</p>
|
||||
</sec>
|
||||
<sec id="bibliography">
|
||||
<title>Bibliography</title>
|
||||
</sec>
|
||||
</body>
|
||||
|
||||
<back>
|
||||
</back>
|
||||
|
||||
<sub-article article-type="notebook" id="nb-1-nb-article">
|
||||
<front-stub>
|
||||
<title-group>
|
||||
<article-title>Title</article-title>
|
||||
</title-group>
|
||||
<contrib-group>
|
||||
<contrib contrib-type="author" equal-contrib="yes" corresp="yes">
|
||||
<contrib-id contrib-id-type="orcid">0000-1111-2222-3333</contrib-id>
|
||||
<name>
|
||||
<surname>Doe</surname>
|
||||
<given-names>John</given-names>
|
||||
</name>
|
||||
<string-name>John Doe</string-name>
|
||||
|
||||
<email>john.doe@jdct.edu</email>
|
||||
<xref ref-type="aff" rid="jdct-nb-article">a</xref>
|
||||
<xref ref-type="corresp" rid="cor-1-nb-article">*</xref>
|
||||
<xref ref-type="deceased" rid="equal-1-nb-article">‡</xref>
|
||||
</contrib>
|
||||
<contrib contrib-type="author">
|
||||
<contrib-id contrib-id-type="orcid">0000-3333-2222-1111</contrib-id>
|
||||
<name>
|
||||
<surname>Roe</surname>
|
||||
<given-names>John</given-names>
|
||||
</name>
|
||||
<string-name>John Roe</string-name>
|
||||
|
||||
<xref ref-type="aff" rid="jdct-nb-article">a</xref>
|
||||
</contrib>
|
||||
<contrib contrib-type="author" equal-contrib="yes">
|
||||
<contrib-id contrib-id-type="orcid">0000-2222-1111-3333</contrib-id>
|
||||
<name>
|
||||
<surname>Roe</surname>
|
||||
<given-names>Jane</given-names>
|
||||
</name>
|
||||
<string-name>Jane Roe</string-name>
|
||||
|
||||
<xref ref-type="aff" rid="jdct-nb-article">a</xref>
|
||||
<xref ref-type="aff" rid="iot-nb-article">b</xref>
|
||||
<xref ref-type="deceased" rid="equal-3-nb-article">‡</xref>
|
||||
</contrib>
|
||||
</contrib-group>
|
||||
<author-notes>
|
||||
<corresp id="cor-DoeJohnJohn Doe-nb-article">john.doe@jdct.edu</corresp>
|
||||
<fn id="equal-DoeJohnJohn Doe-nb-article" fn-type="equal" symbol="‡"><p>John
|
||||
Doe</p></fn>
|
||||
<fn id="equal-RoeJaneJane Roe-nb-article" fn-type="equal" symbol="‡"><p>Jane
|
||||
Roe</p></fn>
|
||||
</author-notes>
|
||||
<abstract>
|
||||
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
|
||||
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,
|
||||
sed diam voluptua. At vero eos et accusam et justo duo dolores et ea
|
||||
rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem
|
||||
ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing
|
||||
elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna
|
||||
aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo
|
||||
dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus
|
||||
est Lorem ipsum dolor sit amet.</p>
|
||||
</abstract>
|
||||
</front-stub>
|
||||
|
||||
<body>
|
||||
<p><sup>*</sup> These authors contributed equally to this work.</p>
|
||||
<p><sup>1</sup> John Doe Center for Technology, John Doe University,
|
||||
Doetown, Germany.
|
||||
<sup>2</sup> Institute of Technology, John Doe University, Doetown,
|
||||
Germany.</p>
|
||||
<p><sup>✉</sup> Correspondence:
|
||||
<ext-link ext-link-type="uri" xlink:href="mailto:john.doe@jdct.edu">John
|
||||
Doe <john.doe@jdct.edu></ext-link></p>
|
||||
<sec id="introduction-nb-article">
|
||||
<title>Introduction</title>
|
||||
</sec>
|
||||
<sec id="background-nb-article">
|
||||
<title>Background</title>
|
||||
</sec>
|
||||
<sec id="research-design-nb-article">
|
||||
<title>Research Design</title>
|
||||
<sec id="data-nb-article">
|
||||
<title>Data</title>
|
||||
</sec>
|
||||
<sec id="method-nb-article">
|
||||
<title>Method</title>
|
||||
</sec>
|
||||
</sec>
|
||||
<sec id="results-nb-article">
|
||||
<title>Results</title>
|
||||
</sec>
|
||||
<sec id="discussion-nb-article">
|
||||
<title>Discussion</title>
|
||||
</sec>
|
||||
<sec id="conclusion-nb-article">
|
||||
<title>Conclusion</title>
|
||||
<p>Conclusions here.</p>
|
||||
</sec>
|
||||
<sec id="acknowlegments-nb-article">
|
||||
<title>Acknowlegments</title>
|
||||
<p>I would like to thank my advisor, [Advisor Name], for his guidance,
|
||||
constructive feedback, and steady support throughout this project. His
|
||||
expertise and encouragement were invaluable in shaping both the
|
||||
research and this publication.</p>
|
||||
</sec>
|
||||
<sec id="data-availability-nb-article">
|
||||
<title>Data availability</title>
|
||||
<p>Materials, Data and Code are made available at a public
|
||||
OSF-repository that can be accessed here:</p>
|
||||
<list list-type="bullet">
|
||||
<list-item>
|
||||
<p>https://osf.io/</p>
|
||||
</list-item>
|
||||
</list>
|
||||
</sec>
|
||||
<sec id="funding-nb-article">
|
||||
<title>Funding</title>
|
||||
<p>This research received no external funding.</p>
|
||||
</sec>
|
||||
<sec id="conflict-of-interest-nb-article">
|
||||
<title>Conflict of interest</title>
|
||||
<p>The authors declare no conflict of interest.</p>
|
||||
</sec>
|
||||
<sec id="author-biography-nb-article">
|
||||
<title>Author Biography</title>
|
||||
<p>Jane doe is a scientist.</p>
|
||||
</sec>
|
||||
<sec id="bibliography-nb-article">
|
||||
<title>Bibliography</title>
|
||||
</sec>
|
||||
</body>
|
||||
|
||||
|
||||
|
||||
<back>
|
||||
</back>
|
||||
|
||||
|
||||
</sub-article>
|
||||
|
||||
</article>
|
||||
@@ -0,0 +1,19 @@
|
||||
@article{knuth84,
|
||||
author = {Knuth, Donald E.},
|
||||
title = {Literate Programming},
|
||||
year = {1984},
|
||||
issue_date = {May 1984},
|
||||
publisher = {Oxford University Press, Inc.},
|
||||
address = {USA},
|
||||
volume = {27},
|
||||
number = {2},
|
||||
issn = {0010-4620},
|
||||
url = {https://doi.org/10.1093/comjnl/27.2.97},
|
||||
doi = {10.1093/comjnl/27.2.97},
|
||||
journal = {Comput. J.},
|
||||
month = may,
|
||||
pages = {97–111},
|
||||
numpages = {15}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
project:
|
||||
output-dir: _output/anonymized
|
||||
|
||||
metadata-files:
|
||||
- ../resources/author_profiles/_quarto-anonymized.yml
|
||||
@@ -0,0 +1,5 @@
|
||||
project:
|
||||
output-dir: _output/default
|
||||
|
||||
metadata-files:
|
||||
- ../resources/author_profiles/_quarto-default.yml
|
||||
@@ -0,0 +1,59 @@
|
||||
project:
|
||||
type: manuscript
|
||||
|
||||
manuscript:
|
||||
article: index.qmd
|
||||
|
||||
format:
|
||||
docx:
|
||||
prefer-html: true
|
||||
toc: true
|
||||
toc-depth: 3
|
||||
lot: true
|
||||
lof: true
|
||||
fig-dpi: 300
|
||||
reference-doc: ../resources/custom-reference-doc.docx
|
||||
jats: default
|
||||
pdf: default
|
||||
|
||||
profile:
|
||||
default: default
|
||||
|
||||
execute:
|
||||
freeze: auto
|
||||
echo: false
|
||||
warning: false
|
||||
|
||||
bibliography: ../resources/references.bib
|
||||
citeproc: true
|
||||
citation-package: none
|
||||
reference-section-title: Bibliography
|
||||
link-citations: true
|
||||
# Check https://www.zotero.org/styles/ for more styles
|
||||
csl: ../resources/apa7.csl
|
||||
|
||||
lang: en-US
|
||||
|
||||
keywords:
|
||||
- Open Science Practices
|
||||
- Open Access
|
||||
- Open Data
|
||||
- Open Materials
|
||||
- Preregistration
|
||||
- Text Mining
|
||||
- Machine Learning Classification
|
||||
- AI-assisted Coding
|
||||
- Replication
|
||||
|
||||
abstract: |
|
||||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
||||
|
||||
header-includes: |
|
||||
\usepackage{pdfpages}
|
||||
\pagenumbering{gobble}
|
||||
\usepackage{booktabs}
|
||||
\usepackage{caption}
|
||||
\DeclareCaptionLabelSeparator{period-newline}{.\par}
|
||||
\usepackage{setspace}
|
||||
\usepackage{float} % enables [H]
|
||||
\usepackage[section]{placeins} % <- add [section]
|
||||
@@ -0,0 +1 @@
|
||||
Put your figures in this folder.
|
||||
@@ -0,0 +1 @@
|
||||
Put your figures in this folder.
|
||||
@@ -0,0 +1,69 @@
|
||||
---
|
||||
title: Lorem Ipsum
|
||||
---
|
||||
|
||||
```{=latex}
|
||||
% keeps the title page numbers empty
|
||||
\pagestyle{empty}
|
||||
\newpage
|
||||
\pagenumbering{arabic}
|
||||
\pagestyle{headings}
|
||||
\onehalfspacing % 1.5 line spacing from here on
|
||||
```
|
||||
|
||||
# Introduction
|
||||
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas ac egestas ipsum. Vivamus bibendum accumsan nisi ac porta. Aenean efficitur sit amet lacus sollicitudin condimentum. Cras eros ipsum, euismod in odio pulvinar, imperdiet semper enim. Proin lobortis molestie mi eu blandit. Etiam eget velit laoreet, fringilla ligula at, fermentum velit. Sed mollis justo vitae quam pharetra, luctus aliquam neque vulputate. In tincidunt purus at viverra accumsan. Vivamus scelerisque suscipit turpis vitae pellentesque. Aliquam et euismod mauris. Mauris vitae erat velit. Aliquam id tincidunt est. Donec consequat est tellus, vitae sagittis tortor laoreet ut. Morbi sed dolor tristique lacus interdum imperdiet eget vitae elit. Cras ut eleifend turpis.
|
||||
|
||||
In efficitur efficitur magna. Praesent id facilisis ex, ut eleifend mi. Sed id felis dapibus, vestibulum elit ac, ultricies nibh. Maecenas accumsan rhoncus rhoncus. Duis quis erat at risus convallis pretium. Sed eget varius nulla, ut sagittis felis. Donec magna justo, sagittis et feugiat a, iaculis in felis. Nam sed aliquam tellus. Fusce non metus quis enim condimentum gravida laoreet non mi. Fusce efficitur laoreet libero, id tincidunt dui tristique molestie. In nisi dolor, pulvinar eu massa at, tempor posuere libero. Suspendisse aliquam dui luctus justo rutrum, in feugiat urna elementum. Quisque rhoncus erat et aliquet dictum. Quisque rutrum nibh sit amet malesuada pretium. Curabitur eget malesuada sapien.
|
||||
|
||||
Fusce faucibus risus sed feugiat lacinia. Nulla nec augue ut nulla facilisis efficitur. Fusce volutpat condimentum tincidunt. Curabitur sodales lacus vel iaculis rutrum. Donec ipsum massa, sagittis vitae ornare sit amet, pulvinar et dui. Duis aliquam laoreet consequat. Nulla rhoncus turpis mauris, eget mollis ipsum malesuada id. Vestibulum dictum erat id nibh laoreet, et facilisis lacus mollis. Aliquam libero neque, efficitur suscipit interdum eget, tempus in nisi. Mauris at convallis metus. Sed in viverra dolor. Etiam suscipit nisl id vestibulum sodales. Phasellus dolor mi, elementum a scelerisque vestibulum, blandit sit amet ex. Interdum et malesuada fames ac ante ipsum primis in faucibus. Mauris risus nunc, blandit ac leo eget, pulvinar rutrum tellus. Quisque vel congue est.
|
||||
|
||||
Duis scelerisque tempus convallis. Donec condimentum gravida augue, sit amet hendrerit ligula dictum nec. Nam elementum eu erat id dignissim. Vestibulum pretium, nisl tempus cursus luctus, nisl lacus blandit odio, nec dictum massa dui sollicitudin nisi. Nam ornare eros eu leo cursus egestas. Nulla scelerisque metus a dictum condimentum. Aliquam scelerisque sapien eget eros efficitur, at maximus urna tincidunt.
|
||||
|
||||
Morbi in tincidunt urna. In lacinia, quam non iaculis vulputate, elit ante placerat nisl, nec ornare justo eros fermentum elit. Integer id semper lectus. Ut ac tincidunt leo. Suspendisse nec nisi imperdiet, auctor dui sed, eleifend arcu. In nec turpis volutpat orci pulvinar lacinia. Sed nisi diam, dictum at ex nec, blandit maximus dolor. Ut vitae ullamcorper felis. Let's cite @knuth84.
|
||||
|
||||
# Background
|
||||
|
||||
Phasellus tempor et nulla et maximus. Nulla mattis placerat lacus, sed bibendum nibh ultricies rhoncus. Maecenas ex libero, gravida at feugiat in, hendrerit sed libero. Proin semper orci sem, sit amet aliquam urna elementum mattis. Morbi lacinia euismod metus sed sollicitudin. Sed interdum maximus turpis, a ultrices velit pharetra non. Etiam eu lorem ligula. Pellentesque leo magna, facilisis et magna sed, porta vestibulum augue. Pellentesque interdum neque et nisl gravida, id luctus ipsum eleifend.
|
||||
|
||||
# Research Design
|
||||
|
||||
## Data
|
||||
|
||||
## Method
|
||||
|
||||
# Results
|
||||
|
||||
# Discussion
|
||||
|
||||
# Conclusion
|
||||
|
||||
Conclusions here.
|
||||
|
||||
# Acknowlegments {.unnumbered}
|
||||
|
||||
I would like to thank my advisor, [Advisor Name], for his guidance, constructive feedback, and steady support throughout this project. His expertise and encouragement were invaluable in shaping both the research and this publication.
|
||||
|
||||
# Data availability {.unnumbered}
|
||||
|
||||
Materials, Data and Code are made available at a public OSF-repository that can be accessed here:
|
||||
|
||||
- https://osf.io/
|
||||
|
||||
# Funding {.unnumbered}
|
||||
|
||||
This research received no external funding.
|
||||
|
||||
# Conflict of interest {.unnumbered}
|
||||
|
||||
The authors declare no conflict of interest.
|
||||
|
||||
# Author Biography {.unnumbered}
|
||||
|
||||
Jane doe is a scientist.
|
||||
|
||||
# Bibliography {.unnumbered}
|
||||
|
||||
::: {#refs}
|
||||
:::
|
||||
Reference in New Issue
Block a user