Skip to content

Commit

Permalink
sheet templates in latex and markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Shimorina committed Mar 23, 2021
1 parent 48695b8 commit ec5c325
Show file tree
Hide file tree
Showing 10 changed files with 6,898 additions and 4 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## LaTeX sources ##
###################
*.aux
*.bbl
*.blg
*.log
*.out
*.synctex.gz
*.pdf
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,5 @@ This repository accompanies the paper _[The Human Evaluation Datasheet v1.0: A T

Initially the sheet was developed for the [ReproGen](https://reprogen.github.io/) shared task.

## Repository Structure

### Sheet
the datasheet in LaTeX
## Sheet Templates
the datasheet [templates](./sheet/) in LaTeX and Markdown
13 changes: 13 additions & 0 deletions scripts/convert-md.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!bin/sh

pandoc --version
pandoc -f latex \
-t gfm-raw_html-fenced_divs \
-s ../sheet/latex/human-evaluation-datasheet-no-boxes.tex \
-o ../sheet/markdown/human-evaluation-datasheet.md \
--bibliography ../sheet/latex/human-evaluation-datasheet.bib \
-C \
--csl ../sheet/latex/apa-annotated-bibliography.csl \

# add reference section
# delete divs in references
Loading

0 comments on commit ec5c325

Please sign in to comment.