mirror of
https://github.com/kenryuS/report-temp.git
synced 2026-06-14 16:26:13 +09:00
31 lines
335 B
Markdown
31 lines
335 B
Markdown
---
|
|
documentclass: bxjsarticle
|
|
classoption:
|
|
- lualatex
|
|
- ja=standard
|
|
- 11pt
|
|
title: テストレポート
|
|
author: 高専太郎
|
|
date: 1970-01-01
|
|
---
|
|
|
|
# Test
|
|
|
|
* Normal
|
|
* *Italic*
|
|
* **Bold**
|
|
* `code`
|
|
|
|
> quote
|
|
|
|
```python
|
|
def fib(n):
|
|
if n <= 2:
|
|
return 1
|
|
return fib(n - 1) + fib(n - 2)
|
|
```
|
|
|
|
$$
|
|
e^{i\pi} + 1 = 0
|
|
$$
|