2つ目のリストタイプは番号付きリストで、各アイテムの出力表示をコントロールできます。
番号付きリストを作成するには [list=1][/list] を用います。番号順の代わりにアルファベット順にしたい場合は [list=a][/list] を用います。番号なしリストと同様に各項目を指定するには [*] を使用します。簡単な例を紹介します:
[list=1]
[*]Go to the shops
[*]Buy a new computer
[*]Swear at computer when it crashes
[/list]
上記のようにすると次のリストが表示されます:
- Go to the shops
- Buy a new computer
- Swear at computer when it crashes
一方、アルファベット付きリストを表示するには、以下のように記載します:
[list=a][*]The first possible answer
[*]The second possible answer
[*]The third possible answer
[/list]出力結果(アルファベット小文字)
- The first possible answer
- The second possible answer
- The third possible answer
[list=A][*]The first possible answer
[*]The second possible answer
[*]The third possible answer
[/list]出力結果(アルファベット大文字)
- The first possible answer
- The second possible answer
- The third possible answer
[list=i][*]The first possible answer
[*]The second possible answer
[*]The third possible answer
[/list]出力結果(ローマ数字小文字)
- The first possible answer
- The second possible answer
- The third possible answer
[list=I][*]The first possible answer
[*]The second possible answer
[*]The third possible answer
[/list]出力結果(ローマ数字大文字)
- The first possible answer
- The second possible answer
- The third possible answer