diff --git a/README.md b/README.md index 803b038..eec5baa 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,31 @@ -# fcmp-grimoire -Grimoire describing full-chain membership proofs +# fcmp-grimoire Paper Template + +Template workspace for the full-chain membership proofs paper. + +> Replace this README content with your paper/project details. + +## Purpose +This repository is a minimal workspace for: +- `main.tex` (LaTeX source) +- `references.bib` (BibTeX references) +- `main.pdf` (compiled paper) +- a lightweight change log for paper revisions + +## Repository Layout +- `main.tex` — main LaTeX entrypoint +- `references.bib` — bibliography database +- `main.pdf` — compiled PDF to track paper snapshots + +## How To Use +1. Edit `main.tex` with your paper content. +2. Add/update citations in `references.bib`. +3. Compile and commit updated `main.pdf`. +4. Add an entry to the change log section below. + +## Change Log +- YYYY-MM-DD — _Short description of what changed_ +- YYYY-MM-DD — _Short description of what changed_ + +## Notes +- Keep entries concise and focused on paper-level changes. +- Replace placeholder sections as needed. diff --git a/main.pdf b/main.pdf new file mode 100644 index 0000000..98d4d1e Binary files /dev/null and b/main.pdf differ diff --git a/main.tex b/main.tex new file mode 100644 index 0000000..96ee3f3 --- /dev/null +++ b/main.tex @@ -0,0 +1,24 @@ +\\documentclass[11pt]{article} + +\\usepackage[T1]{fontenc} +\\usepackage[utf8]{inputenc} + +\\title{} +\\author{} +\\date{\\today} + +\\begin{document} + +\\maketitle + +\\begin{abstract} + +\\end{abstract} + +\\section{Introduction} + + +\\bibliographystyle{plain} +\\bibliography{references} + +\\end{document} diff --git a/references.bib b/references.bib new file mode 100644 index 0000000..54604c7 --- /dev/null +++ b/references.bib @@ -0,0 +1,6 @@ +@misc{placeholder_reference, + title = {Placeholder Reference Title}, + author = {Placeholder Author}, + year = {2026}, + note = {Replace this with real citations.} +}