こんにちはPandoc

これはPandoc拡張Markdownによって書かれた記事です。 仕様はPandoc - Pandoc User’s Guideを参照してください。

定義リスト

Term 1

Definition 1

Term 2 with inline markup

Definition 2

{ some code, part of Definition 2 }

Third paragraph of definition 2.

Haskellのソースコード

1
2
3
qsort [] = []
qsort (x:xs) = qsort (filter (< x) xs) ++ [x] ++
qsort (filter (>= x) xs)

いくつかのテーブル

Simple tables

Demonstration of simple table syntax.
Right Le ft Center De fault
12 12 12 12
123 12 3 123 123
1 1 1 1

Multiline tables

Here’s the caption. It, too, may span multiple lines.
Centered Header Default Aligned Right Aligned Left Aligned
First row 12.0 Example of a row that spans multiple lines.
Second row 5.0 Here’s another one. Note the blank line between rows.

Grid tables

Sample grid table.
Fruit Price Advantages

Bananas

$1.34

  • built-in wrapper
  • bright color

Oranges

$2.10

  • cures scurvy
  • tasty

Pipe tables

Demonstration of pipe table syntax.
Right Left Default Center
12 12 12 12
123 123 123 123
1 1 1 1

数式

\[ E = mc^2 \]

りんごが\(x\)個、みかんが\(y\)個。

\[ \left( \begin{array}{ccc} a & b & c \\ d & e & f \\ g & h & i \end{array} \right) \]

is given by the formula

\[ \chi(\lambda) = \left| \begin{array}{ccc} \lambda - a & -b & -c \\ -d & \lambda - e & -f \\ -g & -h & \lambda - i \end{array} \right|. \]

脚注

これは脚注の参照です1

参考文献

  • 非協力ゲーム理論の最近の展開[@oka1989]

  1. これは脚注です。