Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Wiki Frontmatter

Every wiki note in ~/crossmem/wiki/ starts with YAML frontmatter between --- delimiters.

Fields

FieldTypeRequiredDescription
cite_keystringyesDSL-generated citation key. Example: vaswani2017attention
titlestringyesPaper title
authorslist[string]yesList of author names
yearintegeryesPublication year
arxiv_idstringyes (arXiv)arXiv identifier, e.g. 1706.03762
doistringnoDOI (may be preprint DOI)
doi_preprintstringnoPreprint DOI (e.g. 10.48550/arXiv.1706.03762)
doi_publishedstringnoPublished version DOI (if paper was published in a journal)
captured_atstringyesUnix timestamp of capture
rawstringyesPath to the raw PDF file
pdf_sha256stringyesSHA-256 hash of the raw PDF bytes
parserstringyesParser used: marker, pdftotext
chunksintegeryesNumber of chunks in the document
meta.sourceslist[string]yesMetadata sources used: arxiv, crossref, openalex
meta.reconciledbooleanyesWhether metadata was cross-verified across sources
meta.warningslist[string]noWarnings from metadata reconciliation

Example

---
cite_key: vaswani2017attention
title: "Attention Is All You Need"
authors:
  - "Ashish Vaswani"
  - "Noam Shazeer"
  - "Niki Parmar"
year: 2017
arxiv_id: "1706.03762"
doi: "10.48550/arXiv.1706.03762"
captured_at: "1776227254"
raw: "~/crossmem/raw/1776227254_vaswani2017attention.pdf"
pdf_sha256: "9a8f3b..."
parser: "marker"
chunks: 47
meta:
  sources: ["arxiv", "crossref", "openalex"]
  reconciled: true
  warnings: []
---

Citations section

After the frontmatter, the wiki body starts with a title heading and a ## Citations section containing five subsections:

# Attention Is All You Need

## Citations

### APA
Vaswani, A., & Shazeer, N. (2017). Attention Is All You Need. arXiv preprint arXiv:1706.03762.

### MLA
Vaswani, Ashish, et al. "Attention Is All You Need" arXiv preprint arXiv:1706.03762 (2017).

### Chicago
Vaswani, Ashish, and Noam Shazeer. "Attention Is All You Need" arXiv preprint arXiv:1706.03762 (2017).

### IEEE
A. Vaswani et al., "Attention Is All You Need" arXiv preprint arXiv:1706.03762, 2017.

### BibTeX
```bibtex
@article{vaswani2017attention,
  title={Attention Is All You Need},
  author={Ashish Vaswani and Noam Shazeer},
  year={2017}
}