Purpose: Add BibTeX files to your ballpark directory and configure MyST to use them.
External resources:
You must be in: ~/GitHub/econ-ark/ballpark
The .bib file goes in: models/We_Would_Like_In_Econ-ARK/[your-paper-folder]/
Run this now:
cd ~/GitHub/econ-ark/ballpark && pwd
Expected output: Path ending in /ballpark
You should have a .bib file from PaperPile (see google-drive-paperpile-sync).
Find your .bib file location:
~/Library/CloudStorage/GoogleDrive-[email]/My Drive/Run (replace YourPaperFolder with your actual folder name):
ls models/We_Would_Like_In_Econ-ARK/YourPaperFolder/
Expected: You see files like README.md or *.ipynb
# Navigate to your ballpark item
cd ~/GitHub/econ-ark/ballpark/models/We_Would_Like_In_Econ-ARK/YourPaperFolder/
# Copy the .bib file (adjust the source path to your actual location)
cp ~/Library/CloudStorage/GoogleDrive-*/My\ Drive/*.bib ./references.bib
Google Drive files are on the Windows filesystem. You need to access them through /mnt/c/:
# Navigate to your ballpark item
cd ~/GitHub/econ-ark/ballpark/models/We_Would_Like_In_Econ-ARK/YourPaperFolder/
# Find your Google Drive path (usually something like this)
# Replace 'YourUsername' with your Windows username
cp "/mnt/c/Users/YourUsername/Google Drive/My Library.bib" ./references.bib
If you can’t find the file: See WSL Google Drive access for detailed instructions.
If your path has spaces: See paths with spaces — you must use quotes around the path.
ls *.bib
Expected: Shows references.bib (or whatever you named it)
head -5 references.bib
Expected: Shows BibTeX entries (lines starting with @article{ or similar)
If you want a separate .bib file for just the paper you’re working on:
paper.bib“Generate a BibTeX entry for [paper title] by [authors]”
If your project uses MyST, modify myst.yml or the document frontmatter to include your bibliography:
bibliography:
- references.bib
- paper.bib # if you created this
Ask Cursor if you’re unsure:
“How do I add a bibliography to this MyST document?”