Due: Before next class
Prerequisites:
{BALLPARK}_intro.ipynb existsThroughout this document, {BALLPARK} stands for your paper’s folder name (e.g. OptimumDebt, HKMOHousingChannelMP). Always replace it with your actual folder name.
Create a prior-literature notebook that summarizes the foundational literature your ballpark paper builds on, with proper MyST citations resolving against references.bib.
This step benefits from a premium AI model (Claude Opus 4.6 or ChatGPT 5.3), since it requires real knowledge of economics literature.
Work in your fork, on the same branch as your other ballpark work:
cd ~/github/<your-username>/ballpark/models/We-Would-Like-In-Econ-ARK/{BALLPARK}/
references.bib is presentYou should already have a .bib file from your earlier PaperPile assignment. Make sure it is in your paper folder and named references.bib:
ls *.bib
If it has a different name (e.g. bibliography.bib, paperpile-export.bib), rename it:
mv <your-file>.bib references.bib
Don’t have a references
.bibfile at all? The AI can create one for you in the next steps — but the result will be significantly better with a premium model (Opus 4.6 or ChatGPT 5.3).
self.bibCreate a file called self.bib in the paper folder containing a single BibTeX entry for the subject paper itself (the paper your ballpark entry is about). This entry must not appear in references.bib — if it is already there, move it to self.bib. The self.bib file holds only the paper that this ballpark entry summarizes.
Create {BALLPARK}_prior-literature.ipynb (e.g. if the summary notebook is OptimumDebt_summary.ipynb, create OptimumDebt_prior-literature.ipynb).
If you have a prior-literature.md working document from earlier work, copy its content into markdown cells in the notebook. If you don’t have one, the AI can generate the content — use a premium model for better results.
Organize into sections:
Where you mention foundational papers, add MyST citations. See MyST Citations and Bibliography:
{cite:t}smith2023`` — narrative citation (e.g. “Smith (2023)”){cite:p}smith2023`` — parenthetical citation (e.g. “(Smith, 2023)”)The citation key must exactly match an entry in references.bib or self.bib. (self.bib contains the subject paper’s own entry — use it when you refer to the paper this ballpark summarizes.)
Tip: Open references.bib and self.bib in Cursor and look for the keys (the first item after @article{ or @book{).
git add self.bib references.bib {BALLPARK}_prior-literature.ipynb
git commit -m "Add self.bib and prior-literature notebook with citations"
self.bib and {BALLPARK}_prior-literature.ipynb with MyST citations resolving against references.bib and self.bib.
What to check:
{cite:t} or {cite:p} syntax with keys that match entries in references.bib or self.bibself.bib contains exactly one entry — for the subject paperreferences.bibIf citations don’t resolve: Check that the citation key matches an entry in references.bib or self.bib, and that both .bib files are listed in myst.yml (configured in the MyST assembly assignment).
Ask Cursor AI. If the “auto” model is inadequate, try Claude Opus 4.6 or ChatGPT 5.3.