This template is heavily based on the AEA Data Editor's template https://github.com/AEADataEditor/replication-template Thanks! 🙏
- Install Quarto to compile the report.
- Quarto works more like latex and less then Word: you need to include all inputs to the document (like pictures) if sharing with others, or those elements will not appear.
- Given that sharing here works via
git, you will have tocommitall the files I need to compile your report.
gitVScode: you should install the markdown paste extension to easily paste screenshots into the.qmdfile.
- clone this repo to a findable location on your computer (maybe
~/JPE-replications?). Click on the green button "Code" and copy the URL. Do thiscd ~/JPE-replications # or wherever you prefer git clone https://github.com/JPE-Reproducibility/JPE-Oswald-66666666.git - If so, you will have
~/JPE-replications/JPE-Oswald-66666666on your machine. You will work inside this folder. - The content of this repo right now is:
.
├── LICENSE
├── README.md
├── TEMPLATE.qmd
├── _quarto.yml
├── _variables.yml
├── generated
├── images
├── package-output-map.xlsx
├── paper-appendices
├── replication-package <- code only
└── tools
Few remarks:
- You will edit the file
TEMPLATE.qmdin your text editor (VScode ideally). - Your screenshots will be saved to
images/if you use VScode with the correct extension (see below) - The files
_quarto.ymland_variables.ymlare generated inputs for the template, as is the content of thegenerated/folder. - the folder
replication-packagecontains everything which considered code of some sort, so we track it here. You need to overwrite this folder with the full unzipped package, such that you have the full package content (the data, not only the code!). You will see that the folder structure is identical to what you see in the full package - I just omitted from here everything that is not code. See next step. toolscontains useful config files which you can use to prepare a clean environment.- the folder
paper-appendicesis available via the shared dropbox link in your assignment email.
- In your assignment email, there was a link to a dropox folder. Download and unzip the replication package as
replication-packageinto this repository. That is, your repo should look like this after you downloaded the package:
├── LICENSE
├── README.md
├── TEMPLATE.html
├── TEMPLATE.qmd
├── TEMPLATE_files
├── _quarto.yml
├── _variables.yml
├── generated
├── images
├── package-output-map.xlsx
├── paper-appendices <- copied from dropbox
├── replication-package <- code, data, docs, everything
└── tools
Do NOT copy replication-package from dropbox to another location outside this repository!
- Get VScode
- install markdown paste extension
- Go to https://jpe-reproducibility.github.io/jpereplicators/ for step by step guidance.