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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
```
% pandoc -f native -t opendocument --quiet
[ Header 1 ( "chapter1" , [] , [] ) [ Str "The Chapter" ]
, Para
[ Str "Chapter 1 references "
, Link
( "" , [] , [] ) [ Str "The Chapter" ] ( "#chapter1" , "" )
]
]
^D
<text:h text:style-name="Heading_20_1" text:outline-level="1"><text:bookmark-start text:name="chapter1" />The
Chapter<text:bookmark-end text:name="chapter1" /></text:h>
<text:p text:style-name="First_20_paragraph">Chapter 1 references
<text:a xlink:type="simple" xlink:href="#chapter1" office:name=""><text:span text:style-name="Definition">The
Chapter</text:span></text:a></text:p>
```
```
% pandoc -f native -t opendocument+xrefs_name --quiet
[ Header 1 ( "chapter1" , [] , [] ) [ Str "The Chapter" ]
, Para
[ Str "Chapter 1 references "
, Link
( "" , [] , [] ) [ Str "The Chapter" ] ( "#chapter1" , "" )
]
, Para
[ Image
( "lalune" , [] , [] )
[ Str "lalune" ]
( "lalune.jpg" , "fig:Voyage dans la Lune" )
]
, Para
[ Str "Image 1 references "
, Link ( "" , [] , [] ) [ Str "La Lune" ] ( "#lalune" , "" )
]
]
^D
<text:h text:style-name="Heading_20_1" text:outline-level="1"><text:bookmark-start text:name="chapter1" />The
Chapter<text:bookmark-end text:name="chapter1" /></text:h>
<text:p text:style-name="First_20_paragraph">Chapter 1 references
<text:bookmark-ref text:reference-format="text" text:ref-name="chapter1">The
Chapter</text:bookmark-ref></text:p>
<text:p text:style-name="FigureWithCaption"><draw:frame draw:name="img1"><draw:image xlink:href="lalune.jpg" xlink:type="simple" xlink:show="embed" xlink:actuate="onLoad" /></draw:frame></text:p>
<text:p text:style-name="FigureCaption">lalune</text:p>
<text:p text:style-name="Text_20_body">Image 1 references
<text:sequence-ref text:reference-format="caption" text:ref-name="lalune">La
Lune</text:sequence-ref></text:p>
```
```
% pandoc -f native -t opendocument+xrefs_number --quiet
[ Header 1 ( "chapter1" , [] , [] ) [ Str "The Chapter" ]
, Para
[ Str "Chapter 1 references "
, Link
( "" , [] , [] ) [ Str "The Chapter" ] ( "#chapter1" , "" )
]
, Para
[ Image
( "lalune" , [] , [] )
[ Str "lalune" ]
( "lalune.jpg" , "fig:Voyage dans la Lune" )
]
, Para
[ Str "Image 1 references "
, Link ( "" , [] , [] ) [ Str "La Lune" ] ( "#lalune" , "" )
]
]
^D
<text:h text:style-name="Heading_20_1" text:outline-level="1"><text:bookmark-start text:name="chapter1" />The
Chapter<text:bookmark-end text:name="chapter1" /></text:h>
<text:p text:style-name="First_20_paragraph">Chapter 1 references
<text:bookmark-ref text:reference-format="number" text:ref-name="chapter1"></text:bookmark-ref></text:p>
<text:p text:style-name="FigureWithCaption"><draw:frame draw:name="img1"><draw:image xlink:href="lalune.jpg" xlink:type="simple" xlink:show="embed" xlink:actuate="onLoad" /></draw:frame></text:p>
<text:p text:style-name="FigureCaption">lalune</text:p>
<text:p text:style-name="Text_20_body">Image 1 references
<text:sequence-ref text:reference-format="value" text:ref-name="lalune"></text:sequence-ref></text:p>
```
```
% pandoc -f native -t opendocument+xrefs_number+xrefs_name --quiet
[ Header 1 ( "chapter1" , [] , [] ) [ Str "The Chapter" ]
, Para
[ Str "Chapter 1 references "
, Link
( "" , [] , [] ) [ Str "The Chapter" ] ( "#chapter1" , "" )
]
, Para
[ Image
( "lalune" , [] , [] )
[ Str "lalune" ]
( "lalune.jpg" , "fig:Voyage dans la Lune" )
]
, Para
[ Str "Image 1 references "
, Link ( "" , [] , [] ) [ Str "La Lune" ] ( "#lalune" , "" )
]
]
^D
<text:h text:style-name="Heading_20_1" text:outline-level="1"><text:bookmark-start text:name="chapter1" />The
Chapter<text:bookmark-end text:name="chapter1" /></text:h>
<text:p text:style-name="First_20_paragraph">Chapter 1 references
<text:bookmark-ref text:reference-format="number" text:ref-name="chapter1"></text:bookmark-ref><text:s /><text:bookmark-ref text:reference-format="text" text:ref-name="chapter1">The
Chapter</text:bookmark-ref></text:p>
<text:p text:style-name="FigureWithCaption"><draw:frame draw:name="img1"><draw:image xlink:href="lalune.jpg" xlink:type="simple" xlink:show="embed" xlink:actuate="onLoad" /></draw:frame></text:p>
<text:p text:style-name="FigureCaption">lalune</text:p>
<text:p text:style-name="Text_20_body">Image 1 references
<text:sequence-ref text:reference-format="value" text:ref-name="lalune"></text:sequence-ref><text:s /><text:sequence-ref text:reference-format="caption" text:ref-name="lalune">La
Lune</text:sequence-ref></text:p>
```
|