Skip to content

Commit 5e152b3

Browse files
committed
go mod
1 parent 8e25e16 commit 5e152b3

9 files changed

Lines changed: 19 additions & 1 deletion

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,4 @@
1111
*.ipynb
1212
*.pyc
1313
*.lock
14-
docs
1514
/*.md

docs/.DS_Store

6 KB
Binary file not shown.

docs/academic/abstract.tex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This paper presents a comprehensive analysis of quantum zero-knowledge proofs, exploring their theoretical foundations, practical implementations, and potential applications in secure communication. We examine the unique advantages offered by quantum properties such as superposition and entanglement in constructing more efficient and secure zero-knowledge protocols. Our work contributes to the growing body of research in post-quantum cryptography and provides insights into the practical challenges of implementing quantum zero-knowledge proofs in real-world scenarios.

docs/academic/academia_paper.pdf

97.3 KB
Binary file not shown.
121 KB
Binary file not shown.
145 KB
Binary file not shown.

docs/academic/academia_simple.pdf

152 KB
Binary file not shown.

docs/academic/preprocess_md.sh

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/bin/bash
2+
3+
INPUT="SCIENTIFIC_PAPER_LATEX.md"
4+
OUTPUT="preprocessed_content.md"
5+
6+
# Remove YAML frontmatter if it exists
7+
sed '1,/^---$/d' "$INPUT" | \
8+
# Fix markdown headers
9+
sed 's/^#\+/\\section*/' | \
10+
# Fix tables by adding proper LaTeX formatting
11+
sed 's/|/ \& /g' | \
12+
# Fix math expressions
13+
sed 's/\^\([0-9-+()]*\)/^\{\1\}/g' | \
14+
# Fix special characters
15+
sed 's/—/---/g' \
16+
> "$OUTPUT"
17+
18+
echo "Preprocessed markdown saved to $OUTPUT"
113 KB
Binary file not shown.

0 commit comments

Comments
 (0)