Skip to content

Commit

Permalink
Merge pull request #137 from ReScience/2022_paper_26
Browse files Browse the repository at this point in the history
[2022] Paper 26
  • Loading branch information
koustuvsinha committed Jul 20, 2023
2 parents 91bbc0e + c646a71 commit 1330525
Show file tree
Hide file tree
Showing 25 changed files with 1,078 additions and 0 deletions.
1 change: 1 addition & 0 deletions 2022/26/Makefile
30 changes: 30 additions & 0 deletions 2022/26/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
### [ReScience C](https://rescience.github.io/) article template

This repository contains the Latex (optional) template for writing a ReScience
C article and the (mandatory) YAML metadata file. For the actual article,
you're free to use any software you like as long as you enforce the proposed
PDF style. A tool is available for the latex template that produces latex
definitions from the metadata file. If you use another software, make sure that
metadata and PDF are always synced.

You can also use overleaf with the [provided template](https://www.overleaf.com/read/kfrwdmygjyqw) but in this case, you'll have to enter `metadata.tex` manually.

#### Usage

For a submission, fill in information in
[metadata.yaml](./metadata.yaml), modify [content.tex](content.tex)
and type:

```bash
$ make
```

This will produce an `article.pdf` using xelatex and provided font.


After acceptance, you'll need to complete [metadata.yaml](./metadata.yaml) with information provided by the editor and type again:

```bash
$ make
```

10 changes: 10 additions & 0 deletions 2022/26/appendix.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
\newpage
\appendix
\section{Supplementary materials}
\subsection{Masked words} \label{app:masked-words}
The following words are masked for age:
\begin{itemize}
\item \textit{Young}: \textit{kid child, young, boy, little, baby, babies, childhood, babyhood, toddler, adolescence, adolescent, teenager, schoolboy, schoolgirl, youngster, infant, preschooler, toddler, student, girl,} and their plurals.
\item \textit{Old}: \textit{elder, man, woman, old, elderly, grandma, grandpa, mom, dad, father, ancient, aged, senior, grandparent, senior,} and their plurals.
\end{itemize}
See Hirota et al. \cite{hirota} for a list of masked words for gender. No words are masked for race, as it is generally not explicitly mentioned in captions.
Binary file added 2022/26/article.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions 2022/26/article.py
30 changes: 30 additions & 0 deletions 2022/26/article.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
% This is the entry point of the MLRC 2022 template
\documentclass{rescience}
% Place all your includes in the packages.tex file. Check the file for more information
\input{packages}

\begin{document}
% DO NOT MODIFY THE CONTENTS OF header.tex
\input{header.tex}

% IMPORTANT NOTE
% The title information should be added in metadata.yaml file. If you are compiling locally, then follow the instructions in https://github.com/ReScience/template. Else, you may edit the metadata.tex file directly. You can modify the fields "articleTITLE" and "articleABSTRACT".

% IMPORTANT NOTE: Ensure that you DO NOT ADD any author information, as that would violate double blind leading to desk rejection.


% Add the Reproducibility Summary in summary.tex
\input{summary}
\newpage
% Add your paper contents in content.tex
\input{content.tex}

\hypersetup{linkcolor=black,urlcolor=darkgray}
\renewcommand\emph[1]{{\bfseries #1}}
\setlength\bibitemsep{0pt}
\printbibliography

% If you have appendix to add, add it in the appendix.tex file
\input{appendix}

\end{document}
Loading

0 comments on commit 1330525

Please sign in to comment.