mirror of
https://github.com/kenryuS/report-temp.git
synced 2026-06-15 00:36:13 +09:00
335 B
335 B
documentclass, classoption, title, author, date
| documentclass | classoption | title | author | date | |||
|---|---|---|---|---|---|---|---|
| bxjsarticle |
|
テストレポート | 高専太郎 | 1970-01-01 |
Test
- Normal
- Italic
- Bold
code
quote
def fib(n):
if n <= 2:
return 1
return fib(n - 1) + fib(n - 2)
e^{i\pi} + 1 = 0