aboutsummaryrefslogtreecommitdiff
path: root/test/command/latex-thebibliography.md
blob: 54b257c61c06912a7dd47ce3757fa0beb33e0cef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# The bibliography

```
% pandoc -f latex -t native
\begin{thebibliography}{10}
  \bibitem{two} The Second.
  \bibitem{four} The Fourth.
\end{thebibliography}
\begin{thebibliography}{100}
  \bibitem[One1990]{one} The First.
  \bibitem{two} The Second.
\end{thebibliography}
^D
[ Div
    ( "" , [ "thebibliography" ] , [] )
    [ OrderedList
        ( 1 , Decimal , Period )
        [ [ Div
              ( "two" , [] , [] )
              [ Para [ Str "The" , Space , Str "Second." ] ]
          ]
        , [ Div
              ( "four" , [] , [] )
              [ Para [ Str "The" , Space , Str "Fourth." ] ]
          ]
        ]
    ]
, Div
    ( "" , [ "thebibliography" ] , [] )
    [ DefinitionList
        [ ( [ Str "One1990" ]
          , [ [ Div
                  ( "one" , [] , [] )
                  [ Para [ Str "The" , Space , Str "First." ] ]
              ]
            ]
          )
        , ( [ Str "1" ]
          , [ [ Div
                  ( "two" , [] , [] )
                  [ Para [ Str "The" , Space , Str "Second." ] ]
              ]
            ]
          )
        ]
    ]
]
```