-
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.
Merge pull request #117 from ReScience/2022_paper_11
[2022] Paper 11
- Loading branch information
Showing
75 changed files
with
2,383 additions
and
0 deletions.
There are no files selected for viewing
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/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 | ||
``` | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
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,29 @@ | ||
% 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.