-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
67bcf96
commit c646a71
Showing
25 changed files
with
1,078 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../template/Makefile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../template/article.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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} |
Oops, something went wrong.