Skip to content

Commit

Permalink
Merge pull request #143 from ReScience/2022_4
Browse files Browse the repository at this point in the history
[2022] Paper 4
  • Loading branch information
koustuvsinha committed Jul 20, 2023
2 parents 80b5bf1 + 5de00fc commit 1d0a487
Show file tree
Hide file tree
Showing 38 changed files with 1,247 additions and 0 deletions.
1 change: 1 addition & 0 deletions 2022/4/Makefile
30 changes: 30 additions & 0 deletions 2022/4/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
```

195 changes: 195 additions & 0 deletions 2022/4/appendix.tex

Large diffs are not rendered by default.

Binary file added 2022/4/article.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions 2022/4/article.py
32 changes: 32 additions & 0 deletions 2022/4/article.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
% 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}
\newpage
\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
\newpage

\input{appendix}

\end{document}
Loading

0 comments on commit 1d0a487

Please sign in to comment.