Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 31 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
Binary file added main.pdf
Binary file not shown.
24 changes: 24 additions & 0 deletions main.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
\\documentclass[11pt]{article}

\\usepackage[T1]{fontenc}
\\usepackage[utf8]{inputenc}

\\title{<Paper Title>}
\\author{<Author Name(s)>}
\\date{\\today}

\\begin{document}

\\maketitle

\\begin{abstract}
<Write abstract here.>
\\end{abstract}

\\section{Introduction}
<Write introduction here.>

\\bibliographystyle{plain}
\\bibliography{references}

\\end{document}
6 changes: 6 additions & 0 deletions references.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@misc{placeholder_reference,
title = {Placeholder Reference Title},
author = {Placeholder Author},
year = {2026},
note = {Replace this with real citations.}
}