Initialisation (avant implémentation des énumérations)
This commit is contained in:
commit
d010fcc917
152
README.md
Normal file
152
README.md
Normal file
|
@ -0,0 +1,152 @@
|
|||
# text-crossrefs: getting references to page and note numbers in Pandoc
|
||||
|
||||
This filters aims at extending Pandoc's cross-referencing
|
||||
capacities by enabling automatic references to any piece of text
|
||||
by either its page or, whenever it applies, its note number. It
|
||||
currently supports the following target formats:
|
||||
|
||||
* context
|
||||
* docx
|
||||
* latex
|
||||
* odt
|
||||
* opendocument
|
||||
|
||||
It doesn't permit to refer to references in other files: if you want to do this, use text-extrefs.
|
||||
|
||||
N.-B.: When opening for the first time a DOCX or ODT/Opendocument file produced by Pandoc with text-crossrefs, you probably will have to refresh the fields in order to get the correct values. In LibreOffice, press `F9`; in Word, a dialog box should appear when the file opens.
|
||||
|
||||
## Usage
|
||||
|
||||
### Basics
|
||||
|
||||
Mark the span of text you want to refer to later with an
|
||||
identifier composed of alphanumeric characters, periods, colons, underscores and hyphens:
|
||||
|
||||
``` markdown
|
||||
Émile Gaboriau published [_L'Affaire Lerouge_ in
|
||||
1866]{#publication}.[^1]
|
||||
|
||||
[^1]: It is a very [fine piece of literature]{#my-evaluation}.
|
||||
|
||||
[It was very popular.]{#reception}
|
||||
```
|
||||
|
||||
You can refer to it using another span with class `ref` containing
|
||||
the target's identifier. If the targetted span is part of a
|
||||
footnote, you can refer to it either by page or by note number according to
|
||||
the value of the `type` attribute (defaults to `page`). For instance, this:
|
||||
|
||||
``` markdown
|
||||
See [publication]{.ref} for the publication date. I gave my
|
||||
opinion in [my-evaluation]{.ref type=note}, [my-evaluation]{.ref}.
|
||||
```
|
||||
|
||||
will render in LaTeX output:
|
||||
|
||||
``` tex
|
||||
See p. \pageref{publication} for the publication date. I expressed
|
||||
my thoughts about it in \ref{my-evaluation},
|
||||
p. \pageref{my-evaluation}.
|
||||
```
|
||||
|
||||
If you want to give a reference by note and page number like in the example above, you can also use the following shorthand:
|
||||
|
||||
```md
|
||||
[my-evaluation]{.ref type=pagenote}
|
||||
```
|
||||
|
||||
You can refer to headers as well using either explicit or automatically generated identifiers (see Pandoc user’s guide).
|
||||
|
||||
### Page ranges
|
||||
|
||||
You can refer to a page range like this:
|
||||
|
||||
``` markdown
|
||||
If you want to know more about _L'Affaire Lerouge_, see [publication>reception]{.ref}.
|
||||
```
|
||||
|
||||
The separator (here `>`) can be set to any string composed of characters other than alphanumeric, period, colon, underscore, hyphen and space.
|
||||
|
||||
In LaTeX and ConTeXt output, the page range will be printed as a simple page reference if the page numbers are identical. You can provide your own definition of the macro `\tcrfpagerangeref{<label1>}{<label2>}` in the preamble. In DOCX and ODT/Opendocument output, the same result can be achieved in a word processor by the means of automatic search and replace with regular expressions.
|
||||
|
||||
## Enumerations
|
||||
|
||||
Rather
|
||||
|
||||
## Customization
|
||||
|
||||
The following metadata fields can be set as strings:
|
||||
|
||||
* `tcrf-page-prefix`:
|
||||
* “page” prefix;
|
||||
* defaults to `p. `.
|
||||
* `tcrf-pages-prefix`:
|
||||
* “pages” prefix;
|
||||
* defaults to `p. `.
|
||||
* `tcrf-note-prefix`:
|
||||
* “note” prefix;
|
||||
* defaults to `n. `.
|
||||
* `tcrf-pagenote-separator`:
|
||||
* the separator between the references when `type` is set to `pagenote`;
|
||||
* defaults to `, `.
|
||||
* `tcrf-pagenote-at-end`:
|
||||
* the string printed at the end of a pagenote reference;
|
||||
* defaults to an empty string, can be used to achieve something like *n. 3 (p. 5)*.
|
||||
* `tcrf-pagenote-order`:
|
||||
* the order in which the references to note and page are printed;
|
||||
* defaults to `pagefirst`, can be set to `notefirst`.
|
||||
* `tcrf-references-range-separator`:
|
||||
* the string used to separate two references in a reference span; can be composed of any character not authorized in an identifier other than space or tab;
|
||||
* defaults to `>`.
|
||||
* `tcrf-range-separator`:
|
||||
* the string inserted between to page numbers in a range;
|
||||
* defaults to `-`.
|
||||
* `tcrf-references-enum-separator`:
|
||||
* the string used to separate the elements of an enumeration in a reference span; can be composed of any character not authorized in an identifier other than space or tab;
|
||||
* defaults to `;`.
|
||||
* `tcrf-enum-separator`:
|
||||
* the string inserted between two elements (but the two last ones) in an enumeration;
|
||||
* defaults to a comma followed by a space.
|
||||
* `tcrf-before-last-in-enum`:
|
||||
* the string inserted between the two last elements in an enumeration;
|
||||
* defaults to `and` surrounded with spaces.
|
||||
* `tcrf-only-explicit-labels`:
|
||||
* set it to `true` if you want that _tcrf_ handle only spans with class `label`;
|
||||
* defaults to `false`.
|
||||
* `tcrf-default-info-type`:
|
||||
* default value for the `type` attribute (`note`, `page` or `pagenote`);
|
||||
* defaults to `page`.
|
||||
* `tcrf-filelabel-ref-separator`:
|
||||
* only useful in conjunction with the text-exrefs filter;
|
||||
* separator between external files' labels and references;
|
||||
* defaults to `::`.
|
||||
|
||||
## Compatibility with other filters
|
||||
|
||||
Text-crossrefs must be run after all other filters that can create, delete or move
|
||||
footnotes, like citeproc.
|
||||
|
||||
In order to give and identifier to a note produced by a citation inside square brackets, the span should not include the citation key, the locator or the `;`
|
||||
delimiter. If it is placed immediatly after the locator, this should be surrounded by curly brackets. So this should work:
|
||||
|
||||
``` markdown
|
||||
[@Jones1973, p. 5-70; @Doe2004[]{#jones-doe}]
|
||||
|
||||
[@Jones1973, p. 5-70; [it was elaborated upon]{#further-elaboration} by @Doe2004]
|
||||
|
||||
[@Jones1973, {p. 5-70}[]{#ref-to-jones}; @Doe2004]
|
||||
```
|
||||
|
||||
not that:
|
||||
|
||||
``` markdown
|
||||
[[@Jones1973, p. 5-70]{#ref-to-jones}; @Doe2004]
|
||||
|
||||
[[@Jones1973, p. 5-70; @Doe2004]{#jones-doe}]
|
||||
|
||||
[@Jones1973, p. 5-70[]{#ref-to-jones}; @Doe2004]
|
||||
```
|
||||
|
||||
You can set classes and attributes to your spans other than those defined by text-crossrefs (for instance `[some text]{#to-be-referred-to .highlighted color=red}` or `[reference]{.ref color=red}`). No span is removed.
|
||||
|
||||
Text-crossrefs is fully compatible with text-extrefs. Whenever possible, when a metadata is not set for text-extrefs, its value is taken from its text-crossrefs equivalent, so that you don't need to duplicate similar variables.
|
27
sample.md
Normal file
27
sample.md
Normal file
|
@ -0,0 +1,27 @@
|
|||
---
|
||||
tcrf-pagenote-separator: '\ ('
|
||||
tcrf-pagenote-at-end: ')'
|
||||
---
|
||||
|
||||
Émile Gaboriau published [_L'Affaire Lerouge_ in
|
||||
1866]{#publication}.[^1]
|
||||
|
||||
[^1]: It is a very [fine piece of literature]{#my-evaluation}.
|
||||
|
||||
[It was very popular.]{#reception}
|
||||
|
||||
See [publication]{.ref} for the publication date. I expressed
|
||||
my thoughts about it in [my-evaluation]{.ref type=pagenote}.
|
||||
|
||||
If you want to know more about _L'Affaire Lerouge_, see [publication>reception]{.ref}.
|
||||
|
||||
Here are some precisions.[^2]
|
||||
|
||||
[^2]: [Whatever format]{#format} you choose, you can [refer to a note]{#refer-to-note} by the identifier of [any of its spans. You can even [nest spans]{#nested-spans}!]{#which-identifier}
|
||||
|
||||
I want to refer to a note:
|
||||
|
||||
* How can I refer to a note by its number? → See [refer-to-note]{.ref}.
|
||||
* What formats are supported? → See [format]{.ref}.
|
||||
* What if the note contains multiple spans with identifiers? → See [which-identifier]{.ref}.
|
||||
* What happens if a span in contained in a span? → See [nested-spans]{.ref}.
|
2
sampledocs/docx/[Content_Types].xml
Normal file
2
sampledocs/docx/[Content_Types].xml
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"><Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml"/><Default Extension="xml" ContentType="application/xml"/><Override PartName="/word/document.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml"/><Override PartName="/customXml/itemProps1.xml" ContentType="application/vnd.openxmlformats-officedocument.customXmlProperties+xml"/><Override PartName="/word/styles.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml"/><Override PartName="/word/stylesWithEffects.xml" ContentType="application/vnd.ms-word.stylesWithEffects+xml"/><Override PartName="/word/settings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml"/><Override PartName="/word/webSettings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml"/><Override PartName="/word/footnotes.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml"/><Override PartName="/word/endnotes.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml"/><Override PartName="/word/fontTable.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml"/><Override PartName="/word/theme/theme1.xml" ContentType="application/vnd.openxmlformats-officedocument.theme+xml"/><Override PartName="/docProps/core.xml" ContentType="application/vnd.openxmlformats-package.core-properties+xml"/><Override PartName="/docProps/app.xml" ContentType="application/vnd.openxmlformats-officedocument.extended-properties+xml"/></Types>
|
2
sampledocs/docx/_rels/.rels
Normal file
2
sampledocs/docx/_rels/.rels
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml"/><Relationship Id="rId2" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml"/><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="word/document.xml"/></Relationships>
|
2
sampledocs/docx/customXml/_rels/item1.xml.rels
Normal file
2
sampledocs/docx/customXml/_rels/item1.xml.rels
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXmlProps" Target="itemProps1.xml"/></Relationships>
|
1
sampledocs/docx/customXml/item1.xml
Normal file
1
sampledocs/docx/customXml/item1.xml
Normal file
|
@ -0,0 +1 @@
|
|||
<b:Sources xmlns:b="http://schemas.openxmlformats.org/officeDocument/2006/bibliography" xmlns="http://schemas.openxmlformats.org/officeDocument/2006/bibliography" SelectedStyle="\APA.XSL" StyleName="APA"/>
|
2
sampledocs/docx/customXml/itemProps1.xml
Normal file
2
sampledocs/docx/customXml/itemProps1.xml
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<ds:datastoreItem ds:itemID="{3EEF9221-BE09-4CC6-B525-B434A5F2FCF8}" xmlns:ds="http://schemas.openxmlformats.org/officeDocument/2006/customXml"><ds:schemaRefs><ds:schemaRef ds:uri="http://schemas.openxmlformats.org/officeDocument/2006/bibliography"/></ds:schemaRefs></ds:datastoreItem>
|
2
sampledocs/docx/docProps/app.xml
Normal file
2
sampledocs/docx/docProps/app.xml
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes"><Template>Normal.dotm</Template><TotalTime>3</TotalTime><Pages>1</Pages><Words>8</Words><Characters>47</Characters><Application>Microsoft Office Word</Application><DocSecurity>0</DocSecurity><Lines>1</Lines><Paragraphs>1</Paragraphs><ScaleCrop>false</ScaleCrop><Company></Company><LinksUpToDate>false</LinksUpToDate><CharactersWithSpaces>54</CharactersWithSpaces><SharedDoc>false</SharedDoc><HyperlinksChanged>false</HyperlinksChanged><AppVersion>14.0000</AppVersion></Properties>
|
2
sampledocs/docx/docProps/core.xml
Normal file
2
sampledocs/docx/docProps/core.xml
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><dc:title></dc:title><dc:subject></dc:subject><dc:creator>Bastien DUMONT</dc:creator><cp:keywords></cp:keywords><dc:description></dc:description><cp:lastModifiedBy>Bastien DUMONT</cp:lastModifiedBy><cp:revision>2</cp:revision><dcterms:created xsi:type="dcterms:W3CDTF">2021-05-22T09:07:00Z</dcterms:created><dcterms:modified xsi:type="dcterms:W3CDTF">2021-05-22T09:17:00Z</dcterms:modified></cp:coreProperties>
|
BIN
sampledocs/docx/testref.docx
Executable file
BIN
sampledocs/docx/testref.docx
Executable file
Binary file not shown.
2
sampledocs/docx/word/_rels/document.xml.rels
Normal file
2
sampledocs/docx/word/_rels/document.xml.rels
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId8" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Target="fontTable.xml"/><Relationship Id="rId3" Type="http://schemas.microsoft.com/office/2007/relationships/stylesWithEffects" Target="stylesWithEffects.xml"/><Relationship Id="rId7" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/endnotes" Target="endnotes.xml"/><Relationship Id="rId2" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="styles.xml"/><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml" Target="../customXml/item1.xml"/><Relationship Id="rId6" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes" Target="footnotes.xml"/><Relationship Id="rId5" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings" Target="webSettings.xml"/><Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" Target="settings.xml"/><Relationship Id="rId9" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="theme/theme1.xml"/></Relationships>
|
2
sampledocs/docx/word/document.xml
Normal file
2
sampledocs/docx/word/document.xml
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<w:document xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 wp14"><w:body><w:p w:rsidR="00C45E87" w:rsidRDefault="001F7E14"><w:bookmarkStart w:id="0" w:name="_Ref72574139"/><w:r><w:rPr><w:rStyle w:val="FootnoteReference"/></w:rPr><w:footnoteReference w:id="1"/></w:r><w:bookmarkEnd w:id="0"/></w:p><w:p w:rsidR="001F7E14" w:rsidRDefault="001F7E14"><w:r><w:t xml:space="preserve">Référence à la note : </w:t></w:r><w:r><w:fldChar w:fldCharType="begin"/></w:r><w:r><w:instrText xml:space="preserve"> NOTEREF _Ref72574139 \h </w:instrText></w:r><w:r><w:fldChar w:fldCharType="separate"/></w:r><w:r><w:t>1</w:t></w:r><w:r><w:fldChar w:fldCharType="end"/></w:r></w:p><w:sectPr w:rsidR="001F7E14"><w:pgSz w:w="11906" w:h="16838"/><w:pgMar w:top="1440" w:right="1440" w:bottom="1440" w:left="1440" w:header="720" w:footer="720" w:gutter="0"/><w:cols w:space="720"/><w:docGrid w:linePitch="360"/></w:sectPr></w:body></w:document>
|
2
sampledocs/docx/word/endnotes.xml
Normal file
2
sampledocs/docx/word/endnotes.xml
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<w:endnotes xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 wp14"><w:endnote w:type="separator" w:id="-1"><w:p w:rsidR="00977FFA" w:rsidRDefault="00977FFA" w:rsidP="001F7E14"><w:pPr><w:spacing w:after="0" w:line="240" w:lineRule="auto"/></w:pPr><w:r><w:separator/></w:r></w:p></w:endnote><w:endnote w:type="continuationSeparator" w:id="0"><w:p w:rsidR="00977FFA" w:rsidRDefault="00977FFA" w:rsidP="001F7E14"><w:pPr><w:spacing w:after="0" w:line="240" w:lineRule="auto"/></w:pPr><w:r><w:continuationSeparator/></w:r></w:p></w:endnote></w:endnotes>
|
2
sampledocs/docx/word/fontTable.xml
Normal file
2
sampledocs/docx/word/fontTable.xml
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<w:fonts xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14"><w:font w:name="Calibri"><w:panose1 w:val="020F0502020204030204"/><w:charset w:val="00"/><w:family w:val="swiss"/><w:pitch w:val="variable"/><w:sig w:usb0="E10002FF" w:usb1="4000ACFF" w:usb2="00000009" w:usb3="00000000" w:csb0="0000019F" w:csb1="00000000"/></w:font><w:font w:name="Times New Roman"><w:panose1 w:val="02020603050405020304"/><w:charset w:val="00"/><w:family w:val="roman"/><w:pitch w:val="variable"/><w:sig w:usb0="20002A87" w:usb1="80000000" w:usb2="00000008" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/></w:font><w:font w:name="Cambria"><w:panose1 w:val="02040503050406030204"/><w:charset w:val="00"/><w:family w:val="roman"/><w:pitch w:val="variable"/><w:sig w:usb0="E00002FF" w:usb1="400004FF" w:usb2="00000000" w:usb3="00000000" w:csb0="0000019F" w:csb1="00000000"/></w:font></w:fonts>
|
2
sampledocs/docx/word/footnotes.xml
Normal file
2
sampledocs/docx/word/footnotes.xml
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<w:footnotes xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 wp14"><w:footnote w:type="separator" w:id="-1"><w:p w:rsidR="00977FFA" w:rsidRDefault="00977FFA" w:rsidP="001F7E14"><w:pPr><w:spacing w:after="0" w:line="240" w:lineRule="auto"/></w:pPr><w:r><w:separator/></w:r></w:p></w:footnote><w:footnote w:type="continuationSeparator" w:id="0"><w:p w:rsidR="00977FFA" w:rsidRDefault="00977FFA" w:rsidP="001F7E14"><w:pPr><w:spacing w:after="0" w:line="240" w:lineRule="auto"/></w:pPr><w:r><w:continuationSeparator/></w:r></w:p></w:footnote><w:footnote w:id="1"><w:p w:rsidR="001F7E14" w:rsidRPr="001F7E14" w:rsidRDefault="001F7E14"><w:pPr><w:pStyle w:val="FootnoteText"/><w:rPr><w:lang w:val="en-US"/></w:rPr></w:pPr><w:r><w:rPr><w:rStyle w:val="FootnoteReference"/></w:rPr><w:footnoteRef/></w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:rPr><w:lang w:val="en-US"/></w:rPr><w:t xml:space="preserve">La </w:t></w:r><w:bookmarkStart w:id="1" w:name="lebookmark"/><w:r><w:rPr><w:lang w:val="en-US"/></w:rPr><w:t>note</w:t></w:r><w:r w:rsidR="00E06E2D"><w:rPr><w:lang w:val="en-US"/></w:rPr><w:t xml:space="preserve"> </w:t></w:r><w:bookmarkEnd w:id="1"/><w:proofErr w:type="spellStart"/><w:r w:rsidR="00E06E2D"><w:rPr><w:lang w:val="en-US"/></w:rPr><w:t>ici</w:t></w:r><w:bookmarkStart w:id="2" w:name="_GoBack"/><w:bookmarkEnd w:id="2"/><w:proofErr w:type="spellEnd"/></w:p></w:footnote></w:footnotes>
|
2
sampledocs/docx/word/settings.xml
Normal file
2
sampledocs/docx/word/settings.xml
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<w:settings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" mc:Ignorable="w14"><w:zoom w:percent="200"/><w:proofState w:spelling="clean" w:grammar="clean"/><w:defaultTabStop w:val="708"/><w:hyphenationZone w:val="425"/><w:characterSpacingControl w:val="doNotCompress"/><w:footnotePr><w:footnote w:id="-1"/><w:footnote w:id="0"/></w:footnotePr><w:endnotePr><w:endnote w:id="-1"/><w:endnote w:id="0"/></w:endnotePr><w:compat><w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="14"/><w:compatSetting w:name="overrideTableStyleFontSizeAndJustification" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/><w:compatSetting w:name="enableOpenTypeFeatures" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/><w:compatSetting w:name="doNotFlipMirrorIndents" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/></w:compat><w:rsids><w:rsidRoot w:val="001F7E14"/><w:rsid w:val="001F7E14"/><w:rsid w:val="00977FFA"/><w:rsid w:val="00C45E87"/><w:rsid w:val="00E06E2D"/><w:rsid w:val="00FF1D51"/></w:rsids><m:mathPr><m:mathFont m:val="Cambria Math"/><m:brkBin m:val="before"/><m:brkBinSub m:val="--"/><m:smallFrac m:val="0"/><m:dispDef/><m:lMargin m:val="0"/><m:rMargin m:val="0"/><m:defJc m:val="centerGroup"/><m:wrapIndent m:val="1440"/><m:intLim m:val="subSup"/><m:naryLim m:val="undOvr"/></m:mathPr><w:themeFontLang w:val="fr-FR" w:eastAsia="x-none" w:bidi="x-none"/><w:clrSchemeMapping w:bg1="light1" w:t1="dark1" w:bg2="light2" w:t2="dark2" w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:hyperlink="hyperlink" w:followedHyperlink="followedHyperlink"/><w:shapeDefaults><o:shapedefaults v:ext="edit" spidmax="1026"/><o:shapelayout v:ext="edit"><o:idmap v:ext="edit" data="1"/></o:shapelayout></w:shapeDefaults><w:decimalSymbol w:val="."/><w:listSeparator w:val=","/></w:settings>
|
2
sampledocs/docx/word/styles.xml
Normal file
2
sampledocs/docx/word/styles.xml
Normal file
File diff suppressed because one or more lines are too long
2
sampledocs/docx/word/stylesWithEffects.xml
Normal file
2
sampledocs/docx/word/stylesWithEffects.xml
Normal file
File diff suppressed because one or more lines are too long
2
sampledocs/docx/word/theme/theme1.xml
Normal file
2
sampledocs/docx/word/theme/theme1.xml
Normal file
File diff suppressed because one or more lines are too long
2
sampledocs/docx/word/webSettings.xml
Normal file
2
sampledocs/docx/word/webSettings.xml
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<w:webSettings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14"><w:optimizeForBrowser/><w:allowPNG/></w:webSettings>
|
BIN
sampledocs/docx/~$estref.docx
Normal file
BIN
sampledocs/docx/~$estref.docx
Normal file
Binary file not shown.
1
sampledocs/filter-docx/[Content_Types].xml
Normal file
1
sampledocs/filter-docx/[Content_Types].xml
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"><Default Extension="xml" ContentType="application/xml" /><Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml" /><Override PartName="/word/webSettings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml" /><Override PartName="/word/numbering.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml" /><Override PartName="/word/settings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml" /><Override PartName="/word/theme/theme1.xml" ContentType="application/vnd.openxmlformats-officedocument.theme+xml" /><Override PartName="/word/fontTable.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml" /><Override PartName="/docProps/app.xml" ContentType="application/vnd.openxmlformats-officedocument.extended-properties+xml" /><Override PartName="/docProps/core.xml" ContentType="application/vnd.openxmlformats-package.core-properties+xml" /><Override PartName="/docProps/custom.xml" ContentType="application/vnd.openxmlformats-officedocument.custom-properties+xml" /><Override PartName="/word/styles.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml" /><Override PartName="/word/document.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml" /><Override PartName="/word/comments.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml" /><Override PartName="/word/footnotes.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml" /></Types>
|
1
sampledocs/filter-docx/_rels/.rels
Normal file
1
sampledocs/filter-docx/_rels/.rels
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="word/document.xml" /><Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml" /><Relationship Id="rId3" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml" /><Relationship Id="rId5" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties" Target="docProps/custom.xml" /></Relationships>
|
18
sampledocs/filter-docx/docProps/app.xml
Normal file
18
sampledocs/filter-docx/docProps/app.xml
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
|
||||
<Words>83</Words>
|
||||
<SharedDoc>false</SharedDoc>
|
||||
<HyperlinksChanged>false</HyperlinksChanged>
|
||||
<Lines>12</Lines>
|
||||
<AppVersion>12.0000</AppVersion>
|
||||
<LinksUpToDate>false</LinksUpToDate>
|
||||
<Application>Microsoft Word 12.0.0</Application>
|
||||
<CharactersWithSpaces>583</CharactersWithSpaces>
|
||||
<Template>Normal.dotm</Template>
|
||||
<DocSecurity>0</DocSecurity>
|
||||
<TotalTime>6</TotalTime>
|
||||
<ScaleCrop>false</ScaleCrop>
|
||||
<Characters>475</Characters>
|
||||
<Paragraphs>8</Paragraphs>
|
||||
<Pages>1</Pages>
|
||||
</Properties>
|
1
sampledocs/filter-docx/docProps/core.xml
Normal file
1
sampledocs/filter-docx/docProps/core.xml
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><dc:title></dc:title><dc:creator></dc:creator><cp:keywords></cp:keywords><dcterms:created xsi:type="dcterms:W3CDTF">2021-05-23T17:28:34Z</dcterms:created><dcterms:modified xsi:type="dcterms:W3CDTF">2021-05-23T17:28:34Z</dcterms:modified></cp:coreProperties>
|
1
sampledocs/filter-docx/docProps/custom.xml
Normal file
1
sampledocs/filter-docx/docProps/custom.xml
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/custom-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes"><property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="2" name="tcrf-pagenote-at-end"><vt:lpwstr>)</vt:lpwstr></property><property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="3" name="tcrf-pagenote-separator"><vt:lpwstr> (</vt:lpwstr></property></Properties>
|
BIN
sampledocs/filter-docx/test.docx
Normal file
BIN
sampledocs/filter-docx/test.docx
Normal file
Binary file not shown.
1
sampledocs/filter-docx/word/_rels/document.xml.rels
Normal file
1
sampledocs/filter-docx/word/_rels/document.xml.rels
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering" Id="rId1" Target="numbering.xml" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Id="rId2" Target="styles.xml" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" Id="rId3" Target="settings.xml" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings" Id="rId4" Target="webSettings.xml" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Id="rId5" Target="fontTable.xml" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Id="rId6" Target="theme/theme1.xml" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes" Id="rId7" Target="footnotes.xml" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments" Id="rId8" Target="comments.xml" /></Relationships>
|
1
sampledocs/filter-docx/word/_rels/footnotes.xml.rels
Normal file
1
sampledocs/filter-docx/word/_rels/footnotes.xml.rels
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships" />
|
1
sampledocs/filter-docx/word/comments.xml
Normal file
1
sampledocs/filter-docx/word/comments.xml
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><w:comments xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" />
|
1
sampledocs/filter-docx/word/document.xml
Normal file
1
sampledocs/filter-docx/word/document.xml
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><w:document xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"><w:body><w:p><w:pPr><w:pStyle w:val="FirstParagraph" /></w:pPr><w:r><w:t xml:space="preserve">Émile Gaboriau published </w:t></w:r><w:bookmarkStart w:id="20" w:name="publication" /><w:r><w:rPr><w:iCs /><w:i /></w:rPr><w:t xml:space="preserve">L’Affaire Lerouge</w:t></w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">in</w:t></w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">1866</w:t></w:r><w:bookmarkEnd w:id="20" /><w:r><w:t xml:space="preserve">.</w:t></w:r><w:bookmarkStart w:id="my-evaluation_pageNb" w:name="my-evaluation_pageNb"/><w:bookmarkStart w:id="my-evaluation_noteNb" w:name="my-evaluation_noteNb"/><w:bookmarkEnd w:id="my-evaluation_pageNb"/><w:r><w:rPr><w:rStyle w:val="FootnoteReference" /></w:rPr><w:footnoteReference w:id="21" /></w:r><w:bookmarkEnd w:id="my-evaluation_noteNb"/></w:p><w:p><w:pPr><w:pStyle w:val="BodyText" /></w:pPr><w:bookmarkStart w:id="23" w:name="reception" /><w:r><w:t xml:space="preserve">It was very popular.</w:t></w:r><w:bookmarkEnd w:id="23" /></w:p><w:p><w:pPr><w:pStyle w:val="BodyText" /></w:pPr><w:r><w:t xml:space="preserve">See</w:t></w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">p. </w:t></w:r><w:r><w:fldChar w:fldCharType="begin" w:dirty="true"/></w:r><w:r><w:instrText xml:space="preserve"> PAGEREF publication_pageNb \h </w:instrText></w:r><w:r><w:fldChar w:fldCharType="separate"/></w:r><w:r><w:t>000</w:t></w:r><w:r><w:fldChar w:fldCharType="end"/></w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">for the publication date. I expressed</w:t></w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">my thoughts about it</w:t></w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">p. </w:t></w:r><w:r><w:fldChar w:fldCharType="begin" w:dirty="true"/></w:r><w:r><w:instrText xml:space="preserve"> PAGEREF my-evaluation_pageNb \h </w:instrText></w:r><w:r><w:fldChar w:fldCharType="separate"/></w:r><w:r><w:t>000</w:t></w:r><w:r><w:fldChar w:fldCharType="end"/></w:r><w:r><w:t xml:space="preserve"> (</w:t></w:r><w:r><w:t xml:space="preserve">n. </w:t></w:r><w:r><w:fldChar w:fldCharType="begin" w:dirty="true"/></w:r><w:r><w:instrText xml:space="preserve"> NOTEREF my-evaluation_noteNb \h </w:instrText></w:r><w:r><w:fldChar w:fldCharType="separate"/></w:r><w:r><w:t>000</w:t></w:r><w:r><w:fldChar w:fldCharType="end"/></w:r><w:r><w:t xml:space="preserve">)</w:t></w:r><w:r><w:t xml:space="preserve">.</w:t></w:r></w:p><w:sectPr /></w:body></w:document>
|
52
sampledocs/filter-docx/word/fontTable.xml
Normal file
52
sampledocs/filter-docx/word/fontTable.xml
Normal file
|
@ -0,0 +1,52 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<w:fonts xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
|
||||
	<w:font w:name="Symbol">
|
||||
		<w:panose1 w:val="02000500000000000000" />
|
||||
		<w:charset w:val="02" />
|
||||
		<w:family w:val="auto" />
|
||||
		<w:pitch w:val="variable" />
|
||||
		<w:sig w:usb0="00000000" w:usb1="00000000" w:usb2="00010000" w:usb3="00000000" w:csb0="80000000" w:csb1="00000000" />
|
||||
	</w:font>
|
||||
	<w:font w:name="Times New Roman">
|
||||
		<w:panose1 w:val="02020603050405020304" />
|
||||
		<w:charset w:val="00" />
|
||||
		<w:family w:val="auto" />
|
||||
		<w:pitch w:val="variable" />
|
||||
		<w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="00000001" w:csb1="00000000" />
|
||||
	</w:font>
|
||||
	<w:font w:name="Courier New">
|
||||
		<w:panose1 w:val="02070309020205020404" />
|
||||
		<w:charset w:val="00" />
|
||||
		<w:family w:val="auto" />
|
||||
		<w:pitch w:val="variable" />
|
||||
		<w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="00000001" w:csb1="00000000" />
|
||||
	</w:font>
|
||||
	<w:font w:name="Wingdings">
|
||||
		<w:panose1 w:val="05020102010804080708" />
|
||||
		<w:charset w:val="02" />
|
||||
		<w:family w:val="auto" />
|
||||
		<w:pitch w:val="variable" />
|
||||
		<w:sig w:usb0="00000000" w:usb1="00000000" w:usb2="00010000" w:usb3="00000000" w:csb0="80000000" w:csb1="00000000" />
|
||||
	</w:font>
|
||||
	<w:font w:name="Cambria">
|
||||
		<w:panose1 w:val="02040503050406030204" />
|
||||
		<w:charset w:val="00" />
|
||||
		<w:family w:val="auto" />
|
||||
		<w:pitch w:val="variable" />
|
||||
		<w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="00000001" w:csb1="00000000" />
|
||||
	</w:font>
|
||||
	<w:font w:name="Calibri">
|
||||
		<w:panose1 w:val="020F0502020204030204" />
|
||||
		<w:charset w:val="00" />
|
||||
		<w:family w:val="auto" />
|
||||
		<w:pitch w:val="variable" />
|
||||
		<w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="00000001" w:csb1="00000000" />
|
||||
	</w:font>
|
||||
	<w:font w:name="Arial">
|
||||
		<w:panose1 w:val="020B0604020202020204" />
|
||||
		<w:charset w:val="00" />
|
||||
		<w:family w:val="auto" />
|
||||
		<w:pitch w:val="variable" />
|
||||
		<w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="00000001" w:csb1="00000000" />
|
||||
	</w:font>
|
||||
</w:fonts>
|
6
sampledocs/filter-docx/word/footnotes.xml
Normal file
6
sampledocs/filter-docx/word/footnotes.xml
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><w:footnotes xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"><w:footnote w:type="continuationSeparator" w:id="0"><w:p><w:r><w:continuationSeparator /></w:r></w:p></w:footnote><w:footnote w:type="separator" w:id="-1"><w:p><w:r><w:separator /></w:r></w:p></w:footnote><w:footnote w:id="21"><w:p><w:pPr><w:pStyle w:val="FootnoteText" /></w:pPr><w:r>
|
||||
<w:rPr>
|
||||
<w:rStyle w:val="FootnoteReference" />
|
||||
</w:rPr>
|
||||
<w:footnoteRef />
|
||||
</w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">It is a very </w:t></w:r><w:bookmarkStart w:id="22" w:name="my-evaluation" /><w:r><w:t xml:space="preserve">fine piece of literature</w:t></w:r><w:bookmarkEnd w:id="22" /><w:r><w:t xml:space="preserve">.</w:t></w:r></w:p></w:footnote></w:footnotes>
|
1
sampledocs/filter-docx/word/numbering.xml
Normal file
1
sampledocs/filter-docx/word/numbering.xml
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><w:numbering xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:abstractNum w:abstractNumId="990"><w:nsid w:val="A990" /><w:multiLevelType w:val="multilevel" /><w:lvl w:ilvl="0"><w:numFmt w:val="bullet" /><w:lvlText w:val=" " /><w:lvlJc w:val="left" /><w:pPr><w:ind w:left="720" w:hanging="480" /></w:pPr></w:lvl><w:lvl w:ilvl="1"><w:numFmt w:val="bullet" /><w:lvlText w:val=" " /><w:lvlJc w:val="left" /><w:pPr><w:ind w:left="1440" w:hanging="480" /></w:pPr></w:lvl><w:lvl w:ilvl="2"><w:numFmt w:val="bullet" /><w:lvlText w:val=" " /><w:lvlJc w:val="left" /><w:pPr><w:ind w:left="2160" w:hanging="480" /></w:pPr></w:lvl><w:lvl w:ilvl="3"><w:numFmt w:val="bullet" /><w:lvlText w:val=" " /><w:lvlJc w:val="left" /><w:pPr><w:ind w:left="2880" w:hanging="480" /></w:pPr></w:lvl><w:lvl w:ilvl="4"><w:numFmt w:val="bullet" /><w:lvlText w:val=" " /><w:lvlJc w:val="left" /><w:pPr><w:ind w:left="3600" w:hanging="480" /></w:pPr></w:lvl><w:lvl w:ilvl="5"><w:numFmt w:val="bullet" /><w:lvlText w:val=" " /><w:lvlJc w:val="left" /><w:pPr><w:ind w:left="4320" w:hanging="480" /></w:pPr></w:lvl><w:lvl w:ilvl="6"><w:numFmt w:val="bullet" /><w:lvlText w:val=" " /><w:lvlJc w:val="left" /><w:pPr><w:ind w:left="5040" w:hanging="480" /></w:pPr></w:lvl><w:lvl w:ilvl="7"><w:numFmt w:val="bullet" /><w:lvlText w:val=" " /><w:lvlJc w:val="left" /><w:pPr><w:ind w:left="5760" w:hanging="480" /></w:pPr></w:lvl><w:lvl w:ilvl="8"><w:numFmt w:val="bullet" /><w:lvlText w:val=" " /><w:lvlJc w:val="left" /><w:pPr><w:ind w:left="6480" w:hanging="480" /></w:pPr></w:lvl></w:abstractNum><w:num w:numId="1000"><w:abstractNumId w:val="990" /></w:num></w:numbering>
|
46
sampledocs/filter-docx/word/settings.xml
Normal file
46
sampledocs/filter-docx/word/settings.xml
Normal file
|
@ -0,0 +1,46 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><w:settings xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word">
|
||||
<w:zoom w:percent="90" />
|
||||
<w:embedSystemFonts />
|
||||
<w:proofState w:grammar="clean" w:spelling="clean" />
|
||||
<w:stylePaneFormatFilter w:val="0004" />
|
||||
<w:footnotePr>
|
||||
<w:footnote w:id="-1" />
|
||||
<w:footnote w:id="0" />
|
||||
</w:footnotePr>
|
||||
<w:doNotTrackMoves />
|
||||
<w:defaultTabStop w:val="720" />
|
||||
<w:drawingGridHorizontalSpacing w:val="360" />
|
||||
<w:drawingGridVerticalSpacing w:val="360" />
|
||||
<w:displayHorizontalDrawingGridEvery w:val="0" />
|
||||
<w:displayVerticalDrawingGridEvery w:val="0" />
|
||||
<w:characterSpacingControl w:val="doNotCompress" />
|
||||
<w:savePreviewPicture />
|
||||
<w:rsids>
|
||||
<w:rsidRoot w:val="00590D07" />
|
||||
<w:rsid w:val="00011C8B" />
|
||||
<w:rsid w:val="004E29B3" />
|
||||
<w:rsid w:val="00590D07" />
|
||||
<w:rsid w:val="00784D58" />
|
||||
<w:rsid w:val="008D6863" />
|
||||
<w:rsid w:val="00B86B75" />
|
||||
<w:rsid w:val="00BC48D5" />
|
||||
<w:rsid w:val="00C36279" />
|
||||
<w:rsid w:val="00E315A3" />
|
||||
</w:rsids>
|
||||
<m:mathPr>
|
||||
<m:mathFont m:val="Lucida Grande" />
|
||||
<m:brkBin m:val="before" />
|
||||
<m:brkBinSub m:val="--" />
|
||||
<m:smallFrac m:val="false" />
|
||||
<m:dispDef m:val="false" />
|
||||
<m:lMargin m:val="0" />
|
||||
<m:rMargin m:val="0" />
|
||||
<m:wrapRight />
|
||||
<m:intLim m:val="subSup" />
|
||||
<m:naryLim m:val="subSup" />
|
||||
</m:mathPr>
|
||||
<w:themeFontLang w:val="en-US" />
|
||||
<w:clrSchemeMapping w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:bg1="light1" w:bg2="light2" w:followedHyperlink="followedHyperlink" w:hyperlink="hyperlink" w:t1="dark1" w:t2="dark2" />
|
||||
<w:decimalSymbol w:val="." />
|
||||
<w:listSeparator w:val="," />
|
||||
<w:proofState w:grammar="clean" w:spelling="clean" /></w:settings>
|
467
sampledocs/filter-docx/word/styles.xml
Normal file
467
sampledocs/filter-docx/word/styles.xml
Normal file
File diff suppressed because one or more lines are too long
2
sampledocs/filter-docx/word/theme/theme1.xml
Normal file
2
sampledocs/filter-docx/word/theme/theme1.xml
Normal file
File diff suppressed because one or more lines are too long
5
sampledocs/filter-docx/word/webSettings.xml
Normal file
5
sampledocs/filter-docx/word/webSettings.xml
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ns0:webSettings xmlns:ns0="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
|
||||
<ns0:allowPNG />
|
||||
<ns0:doNotSaveAsSingleFile />
|
||||
</ns0:webSettings>
|
11
sampledocs/odt/META-INF/manifest.xml
Normal file
11
sampledocs/odt/META-INF/manifest.xml
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<manifest:manifest xmlns:manifest="urn:oasis:names:tc:opendocument:xmlns:manifest:1.0" manifest:version="1.3" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0">
|
||||
<manifest:file-entry manifest:full-path="/" manifest:version="1.3" manifest:media-type="application/vnd.oasis.opendocument.text"/>
|
||||
<manifest:file-entry manifest:full-path="Configurations2/" manifest:media-type="application/vnd.sun.xml.ui.configuration"/>
|
||||
<manifest:file-entry manifest:full-path="manifest.rdf" manifest:media-type="application/rdf+xml"/>
|
||||
<manifest:file-entry manifest:full-path="meta.xml" manifest:media-type="text/xml"/>
|
||||
<manifest:file-entry manifest:full-path="settings.xml" manifest:media-type="text/xml"/>
|
||||
<manifest:file-entry manifest:full-path="Thumbnails/thumbnail.png" manifest:media-type="image/png"/>
|
||||
<manifest:file-entry manifest:full-path="styles.xml" manifest:media-type="text/xml"/>
|
||||
<manifest:file-entry manifest:full-path="content.xml" manifest:media-type="text/xml"/>
|
||||
</manifest:manifest>
|
BIN
sampledocs/odt/Thumbnails/thumbnail.png
Normal file
BIN
sampledocs/odt/Thumbnails/thumbnail.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 570 B |
2
sampledocs/odt/content.xml
Normal file
2
sampledocs/odt/content.xml
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<office:document-content xmlns:officeooo="http://openoffice.org/2009/office" xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:xforms="http://www.w3.org/2002/xforms" office:version="1.3"><office:scripts/><office:font-face-decls><style:font-face style:name="Linux Libertine O" svg:font-family="'Linux Libertine O'"/><style:font-face style:name="DejaVu Sans" svg:font-family="'DejaVu Sans'" style:font-family-generic="system" style:font-pitch="variable"/></office:font-face-decls><office:automatic-styles><style:style style:name="P1" style:family="paragraph" style:parent-style-name="Footnote"><style:text-properties officeooo:rsid="0005f489" officeooo:paragraph-rsid="0005f489"/></style:style><style:style style:name="P2" style:family="paragraph" style:parent-style-name="Standard"><style:text-properties officeooo:rsid="0005f489" officeooo:paragraph-rsid="0005f489"/></style:style><style:style style:name="T1" style:family="text"><style:text-properties officeooo:rsid="0006f398"/></style:style></office:automatic-styles><office:body><office:text><text:sequence-decls><text:sequence-decl text:display-outline-level="0" text:name="Illustration"/><text:sequence-decl text:display-outline-level="0" text:name="Table"/><text:sequence-decl text:display-outline-level="0" text:name="Text"/><text:sequence-decl text:display-outline-level="0" text:name="Drawing"/><text:sequence-decl text:display-outline-level="0" text:name="Figure"/></text:sequence-decls><text:p text:style-name="Standard"><text:note text:id="ftn1" text:note-class="footnote"><text:note-citation>1</text:note-citation><text:note-body><text:p text:style-name="P1">La <text:bookmark-start text:name="lemarquepage"/>note<text:bookmark-end text:name="lemarquepage"/> ici</text:p></text:note-body></text:note></text:p><text:p text:style-name="P2">Référence à la note : <text:note-ref text:note-class="footnote" text:reference-format="text" text:ref-name="ftn1">300</text:note-ref><text:s/><text:span text:style-name="T1">p. </text:span><text:span text:style-name="T1"><text:note-ref text:note-class="footnote" text:reference-format="page" text:ref-name="ftn1">300</text:note-ref></text:span></text:p><text:p text:style-name="P2">Le marque-page est p. <text:bookmark-ref text:reference-format="page" text:ref-name="lemarquepage">300</text:bookmark-ref>.</text:p></office:text></office:body></office:document-content>
|
18
sampledocs/odt/manifest.rdf
Normal file
18
sampledocs/odt/manifest.rdf
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<rdf:Description rdf:about="styles.xml">
|
||||
<rdf:type rdf:resource="http://docs.oasis-open.org/ns/office/1.2/meta/odf#StylesFile"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="">
|
||||
<ns0:hasPart xmlns:ns0="http://docs.oasis-open.org/ns/office/1.2/meta/pkg#" rdf:resource="styles.xml"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="content.xml">
|
||||
<rdf:type rdf:resource="http://docs.oasis-open.org/ns/office/1.2/meta/odf#ContentFile"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="">
|
||||
<ns0:hasPart xmlns:ns0="http://docs.oasis-open.org/ns/office/1.2/meta/pkg#" rdf:resource="content.xml"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="">
|
||||
<rdf:type rdf:resource="http://docs.oasis-open.org/ns/office/1.2/meta/pkg#Document"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
2
sampledocs/odt/meta.xml
Normal file
2
sampledocs/odt/meta.xml
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<office:document-meta xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ooo="http://openoffice.org/2004/office" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" office:version="1.3"><office:meta><meta:initial-creator>Bastien Dumont</meta:initial-creator><meta:creation-date>2021-05-22T11:38:49.936388648</meta:creation-date><dc:date>2021-05-22T23:19:47.946633474</dc:date><dc:creator>Bastien Dumont</dc:creator><meta:editing-duration>PT3M32S</meta:editing-duration><meta:editing-cycles>2</meta:editing-cycles><meta:generator>LibreOffice/7.1.3.2$Linux_X86_64 LibreOffice_project/10$Build-2</meta:generator><meta:document-statistic meta:table-count="0" meta:image-count="0" meta:object-count="0" meta:page-count="1" meta:paragraph-count="4" meta:word-count="17" meta:character-count="64" meta:non-whitespace-character-count="51"/></office:meta></office:document-meta>
|
1
sampledocs/odt/mimetype
Normal file
1
sampledocs/odt/mimetype
Normal file
|
@ -0,0 +1 @@
|
|||
application/vnd.oasis.opendocument.text
|
2
sampledocs/odt/settings.xml
Normal file
2
sampledocs/odt/settings.xml
Normal file
File diff suppressed because one or more lines are too long
2
sampledocs/odt/styles.xml
Normal file
2
sampledocs/odt/styles.xml
Normal file
File diff suppressed because one or more lines are too long
BIN
sampledocs/odt/testref.odt
Normal file
BIN
sampledocs/odt/testref.odt
Normal file
Binary file not shown.
1
sampledocs/pandoc-docx/[Content_Types].xml
Normal file
1
sampledocs/pandoc-docx/[Content_Types].xml
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"><Default Extension="xml" ContentType="application/xml" /><Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml" /><Override PartName="/word/webSettings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml" /><Override PartName="/word/numbering.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml" /><Override PartName="/word/settings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml" /><Override PartName="/word/theme/theme1.xml" ContentType="application/vnd.openxmlformats-officedocument.theme+xml" /><Override PartName="/word/fontTable.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml" /><Override PartName="/docProps/app.xml" ContentType="application/vnd.openxmlformats-officedocument.extended-properties+xml" /><Override PartName="/docProps/core.xml" ContentType="application/vnd.openxmlformats-package.core-properties+xml" /><Override PartName="/docProps/custom.xml" ContentType="application/vnd.openxmlformats-officedocument.custom-properties+xml" /><Override PartName="/word/styles.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml" /><Override PartName="/word/document.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml" /><Override PartName="/word/comments.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml" /><Override PartName="/word/footnotes.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml" /></Types>
|
1
sampledocs/pandoc-docx/_rels/.rels
Normal file
1
sampledocs/pandoc-docx/_rels/.rels
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="word/document.xml" /><Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml" /><Relationship Id="rId3" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml" /><Relationship Id="rId5" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties" Target="docProps/custom.xml" /></Relationships>
|
18
sampledocs/pandoc-docx/docProps/app.xml
Normal file
18
sampledocs/pandoc-docx/docProps/app.xml
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
|
||||
<Words>83</Words>
|
||||
<SharedDoc>false</SharedDoc>
|
||||
<HyperlinksChanged>false</HyperlinksChanged>
|
||||
<Lines>12</Lines>
|
||||
<AppVersion>12.0000</AppVersion>
|
||||
<LinksUpToDate>false</LinksUpToDate>
|
||||
<Application>Microsoft Word 12.0.0</Application>
|
||||
<CharactersWithSpaces>583</CharactersWithSpaces>
|
||||
<Template>Normal.dotm</Template>
|
||||
<DocSecurity>0</DocSecurity>
|
||||
<TotalTime>6</TotalTime>
|
||||
<ScaleCrop>false</ScaleCrop>
|
||||
<Characters>475</Characters>
|
||||
<Paragraphs>8</Paragraphs>
|
||||
<Pages>1</Pages>
|
||||
</Properties>
|
1
sampledocs/pandoc-docx/docProps/core.xml
Normal file
1
sampledocs/pandoc-docx/docProps/core.xml
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><dc:title></dc:title><dc:creator></dc:creator><cp:keywords></cp:keywords><dcterms:created xsi:type="dcterms:W3CDTF">2021-05-22T21:17:30Z</dcterms:created><dcterms:modified xsi:type="dcterms:W3CDTF">2021-05-22T21:17:30Z</dcterms:modified></cp:coreProperties>
|
1
sampledocs/pandoc-docx/docProps/custom.xml
Normal file
1
sampledocs/pandoc-docx/docProps/custom.xml
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/custom-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes"><property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="2" name="csl"><vt:lpwstr>/home/bdumont/Documents/Doctorat/Redaction/Metadonnees/FEUILLE-STYLE_These.csl</vt:lpwstr></property></Properties>
|
BIN
sampledocs/pandoc-docx/test.docx
Normal file
BIN
sampledocs/pandoc-docx/test.docx
Normal file
Binary file not shown.
1
sampledocs/pandoc-docx/word/_rels/document.xml.rels
Normal file
1
sampledocs/pandoc-docx/word/_rels/document.xml.rels
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering" Id="rId1" Target="numbering.xml" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Id="rId2" Target="styles.xml" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" Id="rId3" Target="settings.xml" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings" Id="rId4" Target="webSettings.xml" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Id="rId5" Target="fontTable.xml" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Id="rId6" Target="theme/theme1.xml" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes" Id="rId7" Target="footnotes.xml" /><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments" Id="rId8" Target="comments.xml" /></Relationships>
|
1
sampledocs/pandoc-docx/word/_rels/footnotes.xml.rels
Normal file
1
sampledocs/pandoc-docx/word/_rels/footnotes.xml.rels
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships" />
|
1
sampledocs/pandoc-docx/word/comments.xml
Normal file
1
sampledocs/pandoc-docx/word/comments.xml
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><w:comments xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" />
|
1
sampledocs/pandoc-docx/word/document.xml
Normal file
1
sampledocs/pandoc-docx/word/document.xml
Normal file
File diff suppressed because one or more lines are too long
52
sampledocs/pandoc-docx/word/fontTable.xml
Normal file
52
sampledocs/pandoc-docx/word/fontTable.xml
Normal file
|
@ -0,0 +1,52 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<w:fonts xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
|
||||
	<w:font w:name="Symbol">
|
||||
		<w:panose1 w:val="02000500000000000000" />
|
||||
		<w:charset w:val="02" />
|
||||
		<w:family w:val="auto" />
|
||||
		<w:pitch w:val="variable" />
|
||||
		<w:sig w:usb0="00000000" w:usb1="00000000" w:usb2="00010000" w:usb3="00000000" w:csb0="80000000" w:csb1="00000000" />
|
||||
	</w:font>
|
||||
	<w:font w:name="Times New Roman">
|
||||
		<w:panose1 w:val="02020603050405020304" />
|
||||
		<w:charset w:val="00" />
|
||||
		<w:family w:val="auto" />
|
||||
		<w:pitch w:val="variable" />
|
||||
		<w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="00000001" w:csb1="00000000" />
|
||||
	</w:font>
|
||||
	<w:font w:name="Courier New">
|
||||
		<w:panose1 w:val="02070309020205020404" />
|
||||
		<w:charset w:val="00" />
|
||||
		<w:family w:val="auto" />
|
||||
		<w:pitch w:val="variable" />
|
||||
		<w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="00000001" w:csb1="00000000" />
|
||||
	</w:font>
|
||||
	<w:font w:name="Wingdings">
|
||||
		<w:panose1 w:val="05020102010804080708" />
|
||||
		<w:charset w:val="02" />
|
||||
		<w:family w:val="auto" />
|
||||
		<w:pitch w:val="variable" />
|
||||
		<w:sig w:usb0="00000000" w:usb1="00000000" w:usb2="00010000" w:usb3="00000000" w:csb0="80000000" w:csb1="00000000" />
|
||||
	</w:font>
|
||||
	<w:font w:name="Cambria">
|
||||
		<w:panose1 w:val="02040503050406030204" />
|
||||
		<w:charset w:val="00" />
|
||||
		<w:family w:val="auto" />
|
||||
		<w:pitch w:val="variable" />
|
||||
		<w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="00000001" w:csb1="00000000" />
|
||||
	</w:font>
|
||||
	<w:font w:name="Calibri">
|
||||
		<w:panose1 w:val="020F0502020204030204" />
|
||||
		<w:charset w:val="00" />
|
||||
		<w:family w:val="auto" />
|
||||
		<w:pitch w:val="variable" />
|
||||
		<w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="00000001" w:csb1="00000000" />
|
||||
	</w:font>
|
||||
	<w:font w:name="Arial">
|
||||
		<w:panose1 w:val="020B0604020202020204" />
|
||||
		<w:charset w:val="00" />
|
||||
		<w:family w:val="auto" />
|
||||
		<w:pitch w:val="variable" />
|
||||
		<w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="00000001" w:csb1="00000000" />
|
||||
	</w:font>
|
||||
</w:fonts>
|
101
sampledocs/pandoc-docx/word/footnotes.xml
Normal file
101
sampledocs/pandoc-docx/word/footnotes.xml
Normal file
|
@ -0,0 +1,101 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><w:footnotes xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"><w:footnote w:type="continuationSeparator" w:id="0"><w:p><w:r><w:continuationSeparator /></w:r></w:p></w:footnote><w:footnote w:type="separator" w:id="-1"><w:p><w:r><w:separator /></w:r></w:p></w:footnote><w:footnote w:id="20"><w:p><w:pPr><w:pStyle w:val="FootnoteText" /></w:pPr><w:r>
|
||||
<w:rPr>
|
||||
<w:rStyle w:val="FootnoteReference" />
|
||||
</w:rPr>
|
||||
<w:footnoteRef />
|
||||
</w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">La note 1.</w:t></w:r></w:p></w:footnote><w:footnote w:id="21"><w:p><w:pPr><w:pStyle w:val="FootnoteText" /></w:pPr><w:r>
|
||||
<w:rPr>
|
||||
<w:rStyle w:val="FootnoteReference" />
|
||||
</w:rPr>
|
||||
<w:footnoteRef />
|
||||
</w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">La note 2.</w:t></w:r></w:p></w:footnote><w:footnote w:id="22"><w:p><w:pPr><w:pStyle w:val="FootnoteText" /></w:pPr><w:r>
|
||||
<w:rPr>
|
||||
<w:rStyle w:val="FootnoteReference" />
|
||||
</w:rPr>
|
||||
<w:footnoteRef />
|
||||
</w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:rPr><w:bCs /><w:b /></w:rPr><w:t xml:space="preserve">citation?</w:t></w:r></w:p></w:footnote><w:footnote w:id="23"><w:p><w:pPr><w:pStyle w:val="FootnoteText" /></w:pPr><w:r>
|
||||
<w:rPr>
|
||||
<w:rStyle w:val="FootnoteReference" />
|
||||
</w:rPr>
|
||||
<w:footnoteRef />
|
||||
</w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">La note 4.</w:t></w:r></w:p></w:footnote><w:footnote w:id="24"><w:p><w:pPr><w:pStyle w:val="FootnoteText" /></w:pPr><w:r>
|
||||
<w:rPr>
|
||||
<w:rStyle w:val="FootnoteReference" />
|
||||
</w:rPr>
|
||||
<w:footnoteRef />
|
||||
</w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">La note 4.</w:t></w:r></w:p></w:footnote><w:footnote w:id="25"><w:p><w:pPr><w:pStyle w:val="FootnoteText" /></w:pPr><w:r>
|
||||
<w:rPr>
|
||||
<w:rStyle w:val="FootnoteReference" />
|
||||
</w:rPr>
|
||||
<w:footnoteRef />
|
||||
</w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">La note 4.</w:t></w:r></w:p></w:footnote><w:footnote w:id="26"><w:p><w:pPr><w:pStyle w:val="FootnoteText" /></w:pPr><w:r>
|
||||
<w:rPr>
|
||||
<w:rStyle w:val="FootnoteReference" />
|
||||
</w:rPr>
|
||||
<w:footnoteRef />
|
||||
</w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">La note 4.</w:t></w:r></w:p></w:footnote><w:footnote w:id="27"><w:p><w:pPr><w:pStyle w:val="FootnoteText" /></w:pPr><w:r>
|
||||
<w:rPr>
|
||||
<w:rStyle w:val="FootnoteReference" />
|
||||
</w:rPr>
|
||||
<w:footnoteRef />
|
||||
</w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">La note 4.</w:t></w:r></w:p></w:footnote><w:footnote w:id="28"><w:p><w:pPr><w:pStyle w:val="FootnoteText" /></w:pPr><w:r>
|
||||
<w:rPr>
|
||||
<w:rStyle w:val="FootnoteReference" />
|
||||
</w:rPr>
|
||||
<w:footnoteRef />
|
||||
</w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">La note 4.</w:t></w:r></w:p></w:footnote><w:footnote w:id="29"><w:p><w:pPr><w:pStyle w:val="FootnoteText" /></w:pPr><w:r>
|
||||
<w:rPr>
|
||||
<w:rStyle w:val="FootnoteReference" />
|
||||
</w:rPr>
|
||||
<w:footnoteRef />
|
||||
</w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">La note 4.</w:t></w:r></w:p></w:footnote><w:footnote w:id="30"><w:p><w:pPr><w:pStyle w:val="FootnoteText" /></w:pPr><w:r>
|
||||
<w:rPr>
|
||||
<w:rStyle w:val="FootnoteReference" />
|
||||
</w:rPr>
|
||||
<w:footnoteRef />
|
||||
</w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">La note 4.</w:t></w:r></w:p></w:footnote><w:footnote w:id="31"><w:p><w:pPr><w:pStyle w:val="FootnoteText" /></w:pPr><w:r>
|
||||
<w:rPr>
|
||||
<w:rStyle w:val="FootnoteReference" />
|
||||
</w:rPr>
|
||||
<w:footnoteRef />
|
||||
</w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">La note 4.</w:t></w:r></w:p></w:footnote><w:footnote w:id="32"><w:p><w:pPr><w:pStyle w:val="FootnoteText" /></w:pPr><w:r>
|
||||
<w:rPr>
|
||||
<w:rStyle w:val="FootnoteReference" />
|
||||
</w:rPr>
|
||||
<w:footnoteRef />
|
||||
</w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">La note 4.</w:t></w:r></w:p></w:footnote><w:footnote w:id="33"><w:p><w:pPr><w:pStyle w:val="FootnoteText" /></w:pPr><w:r>
|
||||
<w:rPr>
|
||||
<w:rStyle w:val="FootnoteReference" />
|
||||
</w:rPr>
|
||||
<w:footnoteRef />
|
||||
</w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">La note 4.</w:t></w:r></w:p></w:footnote><w:footnote w:id="34"><w:p><w:pPr><w:pStyle w:val="FootnoteText" /></w:pPr><w:r>
|
||||
<w:rPr>
|
||||
<w:rStyle w:val="FootnoteReference" />
|
||||
</w:rPr>
|
||||
<w:footnoteRef />
|
||||
</w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">La note 4.</w:t></w:r></w:p></w:footnote><w:footnote w:id="35"><w:p><w:pPr><w:pStyle w:val="FootnoteText" /></w:pPr><w:r>
|
||||
<w:rPr>
|
||||
<w:rStyle w:val="FootnoteReference" />
|
||||
</w:rPr>
|
||||
<w:footnoteRef />
|
||||
</w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">La note 4.</w:t></w:r></w:p></w:footnote><w:footnote w:id="36"><w:p><w:pPr><w:pStyle w:val="FootnoteText" /></w:pPr><w:r>
|
||||
<w:rPr>
|
||||
<w:rStyle w:val="FootnoteReference" />
|
||||
</w:rPr>
|
||||
<w:footnoteRef />
|
||||
</w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">La note 4.</w:t></w:r></w:p></w:footnote><w:footnote w:id="37"><w:p><w:pPr><w:pStyle w:val="FootnoteText" /></w:pPr><w:r>
|
||||
<w:rPr>
|
||||
<w:rStyle w:val="FootnoteReference" />
|
||||
</w:rPr>
|
||||
<w:footnoteRef />
|
||||
</w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">La note 4.</w:t></w:r></w:p></w:footnote><w:footnote w:id="38"><w:p><w:pPr><w:pStyle w:val="FootnoteText" /></w:pPr><w:r>
|
||||
<w:rPr>
|
||||
<w:rStyle w:val="FootnoteReference" />
|
||||
</w:rPr>
|
||||
<w:footnoteRef />
|
||||
</w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">La note 4.</w:t></w:r></w:p></w:footnote><w:footnote w:id="39"><w:p><w:pPr><w:pStyle w:val="FootnoteText" /></w:pPr><w:r>
|
||||
<w:rPr>
|
||||
<w:rStyle w:val="FootnoteReference" />
|
||||
</w:rPr>
|
||||
<w:footnoteRef />
|
||||
</w:r><w:r><w:t xml:space="preserve"> </w:t></w:r><w:r><w:t xml:space="preserve">La note 4.</w:t></w:r></w:p></w:footnote></w:footnotes>
|
1
sampledocs/pandoc-docx/word/numbering.xml
Normal file
1
sampledocs/pandoc-docx/word/numbering.xml
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><w:numbering xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"><w:abstractNum w:abstractNumId="990"><w:nsid w:val="A990" /><w:multiLevelType w:val="multilevel" /><w:lvl w:ilvl="0"><w:numFmt w:val="bullet" /><w:lvlText w:val=" " /><w:lvlJc w:val="left" /><w:pPr><w:ind w:left="720" w:hanging="480" /></w:pPr></w:lvl><w:lvl w:ilvl="1"><w:numFmt w:val="bullet" /><w:lvlText w:val=" " /><w:lvlJc w:val="left" /><w:pPr><w:ind w:left="1440" w:hanging="480" /></w:pPr></w:lvl><w:lvl w:ilvl="2"><w:numFmt w:val="bullet" /><w:lvlText w:val=" " /><w:lvlJc w:val="left" /><w:pPr><w:ind w:left="2160" w:hanging="480" /></w:pPr></w:lvl><w:lvl w:ilvl="3"><w:numFmt w:val="bullet" /><w:lvlText w:val=" " /><w:lvlJc w:val="left" /><w:pPr><w:ind w:left="2880" w:hanging="480" /></w:pPr></w:lvl><w:lvl w:ilvl="4"><w:numFmt w:val="bullet" /><w:lvlText w:val=" " /><w:lvlJc w:val="left" /><w:pPr><w:ind w:left="3600" w:hanging="480" /></w:pPr></w:lvl><w:lvl w:ilvl="5"><w:numFmt w:val="bullet" /><w:lvlText w:val=" " /><w:lvlJc w:val="left" /><w:pPr><w:ind w:left="4320" w:hanging="480" /></w:pPr></w:lvl><w:lvl w:ilvl="6"><w:numFmt w:val="bullet" /><w:lvlText w:val=" " /><w:lvlJc w:val="left" /><w:pPr><w:ind w:left="5040" w:hanging="480" /></w:pPr></w:lvl><w:lvl w:ilvl="7"><w:numFmt w:val="bullet" /><w:lvlText w:val=" " /><w:lvlJc w:val="left" /><w:pPr><w:ind w:left="5760" w:hanging="480" /></w:pPr></w:lvl><w:lvl w:ilvl="8"><w:numFmt w:val="bullet" /><w:lvlText w:val=" " /><w:lvlJc w:val="left" /><w:pPr><w:ind w:left="6480" w:hanging="480" /></w:pPr></w:lvl></w:abstractNum><w:num w:numId="1000"><w:abstractNumId w:val="990" /></w:num></w:numbering>
|
46
sampledocs/pandoc-docx/word/settings.xml
Normal file
46
sampledocs/pandoc-docx/word/settings.xml
Normal file
|
@ -0,0 +1,46 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><w:settings xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word">
|
||||
<w:zoom w:percent="90" />
|
||||
<w:embedSystemFonts />
|
||||
<w:proofState w:grammar="clean" w:spelling="clean" />
|
||||
<w:stylePaneFormatFilter w:val="0004" />
|
||||
<w:footnotePr>
|
||||
<w:footnote w:id="-1" />
|
||||
<w:footnote w:id="0" />
|
||||
</w:footnotePr>
|
||||
<w:doNotTrackMoves />
|
||||
<w:defaultTabStop w:val="720" />
|
||||
<w:drawingGridHorizontalSpacing w:val="360" />
|
||||
<w:drawingGridVerticalSpacing w:val="360" />
|
||||
<w:displayHorizontalDrawingGridEvery w:val="0" />
|
||||
<w:displayVerticalDrawingGridEvery w:val="0" />
|
||||
<w:characterSpacingControl w:val="doNotCompress" />
|
||||
<w:savePreviewPicture />
|
||||
<w:rsids>
|
||||
<w:rsidRoot w:val="00590D07" />
|
||||
<w:rsid w:val="00011C8B" />
|
||||
<w:rsid w:val="004E29B3" />
|
||||
<w:rsid w:val="00590D07" />
|
||||
<w:rsid w:val="00784D58" />
|
||||
<w:rsid w:val="008D6863" />
|
||||
<w:rsid w:val="00B86B75" />
|
||||
<w:rsid w:val="00BC48D5" />
|
||||
<w:rsid w:val="00C36279" />
|
||||
<w:rsid w:val="00E315A3" />
|
||||
</w:rsids>
|
||||
<m:mathPr>
|
||||
<m:mathFont m:val="Lucida Grande" />
|
||||
<m:brkBin m:val="before" />
|
||||
<m:brkBinSub m:val="--" />
|
||||
<m:smallFrac m:val="false" />
|
||||
<m:dispDef m:val="false" />
|
||||
<m:lMargin m:val="0" />
|
||||
<m:rMargin m:val="0" />
|
||||
<m:wrapRight />
|
||||
<m:intLim m:val="subSup" />
|
||||
<m:naryLim m:val="subSup" />
|
||||
</m:mathPr>
|
||||
<w:themeFontLang w:val="en-US" />
|
||||
<w:clrSchemeMapping w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:bg1="light1" w:bg2="light2" w:followedHyperlink="followedHyperlink" w:hyperlink="hyperlink" w:t1="dark1" w:t2="dark2" />
|
||||
<w:decimalSymbol w:val="." />
|
||||
<w:listSeparator w:val="," />
|
||||
<w:proofState w:grammar="clean" w:spelling="clean" /></w:settings>
|
467
sampledocs/pandoc-docx/word/styles.xml
Normal file
467
sampledocs/pandoc-docx/word/styles.xml
Normal file
File diff suppressed because one or more lines are too long
2
sampledocs/pandoc-docx/word/theme/theme1.xml
Normal file
2
sampledocs/pandoc-docx/word/theme/theme1.xml
Normal file
File diff suppressed because one or more lines are too long
5
sampledocs/pandoc-docx/word/webSettings.xml
Normal file
5
sampledocs/pandoc-docx/word/webSettings.xml
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ns0:webSettings xmlns:ns0="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
|
||||
<ns0:allowPNG />
|
||||
<ns0:doNotSaveAsSingleFile />
|
||||
</ns0:webSettings>
|
BIN
sampledocs/testref.odt
Normal file
BIN
sampledocs/testref.odt
Normal file
Binary file not shown.
16
test.md
Normal file
16
test.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
tcrf-pagenote-separator: '\ ('
|
||||
tcrf-pagenote-at-end: ')'
|
||||
---
|
||||
|
||||
Émile Gaboriau published [_L'Affaire Lerouge_ in
|
||||
1866]{#publication}.[^1]
|
||||
|
||||
[^1]: It is a very [fine piece of literature]{#my-evaluation}.
|
||||
|
||||
[It was very popular.]{#reception}
|
||||
|
||||
See [publication]{.ref} for the publication date. I expressed
|
||||
my thoughts about it [my-evaluation]{.ref type=pagenote}.
|
||||
|
||||
Page range: [publication>reception]{.ref}
|
458
text-crossrefs.lua
Normal file
458
text-crossrefs.lua
Normal file
|
@ -0,0 +1,458 @@
|
|||
-- TODO : permettre la citation de références multiples avec un seul préfixe
|
||||
-- [ref-one, ref-two>ref-four, ref-three]{.ref} → pp. 1, 3-6 et 12
|
||||
-- Compléter README et test une fois que ce sera fait.
|
||||
|
||||
-- Begin of initialization
|
||||
|
||||
local IDENTIFIER_PATTERN = '[%w_.:-]+'
|
||||
local RAW_ATTRIBUTE
|
||||
local IS_LABEL_SET_BY_PANDOC
|
||||
local LABEL_TEMPLATE
|
||||
local NOTELABEL_TEMPLATE
|
||||
|
||||
local function define_raw_attribute()
|
||||
if FORMAT == 'native' then
|
||||
RAW_ATTRIBUTE = pandoc.system.environment().TESTED_FORMAT
|
||||
elseif FORMAT == 'docx' then
|
||||
RAW_ATTRIBUTE = 'openxml'
|
||||
elseif FORMAT == 'odt' or FORMAT == 'opendocument' then
|
||||
RAW_ATTRIBUTE = 'opendocument'
|
||||
elseif FORMAT == 'context' or FORMAT == 'latex' then
|
||||
RAW_ATTRIBUTE = FORMAT
|
||||
else
|
||||
error(FORMAT ..
|
||||
' output not supported by text-crossrefs.lua.')
|
||||
end
|
||||
end
|
||||
|
||||
local function define_label_template()
|
||||
if RAW_ATTRIBUTE == 'opendocument' or RAW_ATTRIBUTE == 'openxml' then
|
||||
IS_LABEL_SET_BY_PANDOC = true
|
||||
elseif RAW_ATTRIBUTE == 'context' then
|
||||
if PANDOC_VERSION < pandoc.types.Version('2.14') then
|
||||
LABEL_TEMPLATE = '\\pagereference[{{label}}]'
|
||||
else
|
||||
IS_LABEL_SET_BY_PANDOC = true
|
||||
end
|
||||
elseif RAW_ATTRIBUTE == 'latex' then
|
||||
LABEL_TEMPLATE = '\\label{{{label}}}'
|
||||
end
|
||||
end
|
||||
|
||||
define_raw_attribute()
|
||||
define_label_template()
|
||||
|
||||
-- End of initialization
|
||||
|
||||
-- Configuration
|
||||
|
||||
local config = {
|
||||
page_prefix = 'p. ',
|
||||
pages_prefix = 'p. ',
|
||||
note_prefix = 'n. ',
|
||||
pagenote_order = 'pagefirst',
|
||||
pagenote_separator = ', ',
|
||||
pagenote_at_end = '',
|
||||
references_range_separator = '>',
|
||||
range_separator = '-',
|
||||
only_explicit_labels = 'false',
|
||||
default_info_type = 'page',
|
||||
filelabel_ref_separator = '::'
|
||||
}
|
||||
|
||||
local function format_config_to_openxml()
|
||||
to_format = { 'page_prefix',
|
||||
'pages_prefix',
|
||||
'note_prefix',
|
||||
'pagenote_separator',
|
||||
'pagenote_at_end',
|
||||
'range_separator' }
|
||||
for i = 1, #to_format do
|
||||
config[to_format[i]] = '<w:r><w:t xml:space="preserve">' ..
|
||||
config[to_format[i]] .. '</w:t></w:r>'
|
||||
end
|
||||
end
|
||||
|
||||
local function set_configuration_item_from_metadata(item, metamap)
|
||||
metakey = 'tcrf-' .. string.gsub(item, '_', '-')
|
||||
if metamap[metakey] then
|
||||
-- The metadata values are Str in MetaInlines.
|
||||
config[item] = metamap[metakey][1].c
|
||||
end
|
||||
end
|
||||
|
||||
local function configure(metadata)
|
||||
for item, _ in pairs(config) do
|
||||
set_configuration_item_from_metadata(item, metadata)
|
||||
end
|
||||
if RAW_ATTRIBUTE == 'openxml' then
|
||||
format_config_to_openxml()
|
||||
end
|
||||
end
|
||||
|
||||
-- End of configuration
|
||||
|
||||
-- Extensions for the output document's format
|
||||
|
||||
local function define_tex_macros(document)
|
||||
if RAW_ATTRIBUTE == 'context' then
|
||||
local footnote_redefinition = '\\let\\oldfootnote\\footnote\n' ..
|
||||
'\\define[2]\\footnote{\\oldfootnote[#2]{#1}%\n' ..
|
||||
'\\expandafter\\edef\\csname #2pagenumber\\endcsname{\\userpage}}\n'
|
||||
local predefined_strings =
|
||||
'\\define\\tcrfpage{' .. config.page_prefix .. '}\n' ..
|
||||
'\\define\\tcrfpages{' .. config.pages_prefix .. '}\n' ..
|
||||
'\\define\\tcrfrangesep{' .. config.range_separator .. '}\n'
|
||||
local range_ref = '\\ifdefined\\tcrfpagerangeref\\else\n' ..
|
||||
'\\define[2]\\tcrfpagerangeref{' ..
|
||||
'\\if' ..
|
||||
'\\csname #1pagenumber\\endcsname' ..
|
||||
'\\csname #2pagenumber\\endcsname\n' ..
|
||||
'\\tcrfpage\\at[#1]\n' ..
|
||||
'\\else\n' ..
|
||||
'\\tcrfpages\\at[#1]\\tcrfrangesep\\at[#2]\\fi}\n' ..
|
||||
'\\fi\n'
|
||||
local macros_block = pandoc.RawBlock('context',
|
||||
footnote_redefinition ..
|
||||
predefined_strings ..
|
||||
range_ref)
|
||||
table.insert(document.blocks, 1, macros_block)
|
||||
elseif RAW_ATTRIBUTE == 'latex' then
|
||||
local predefined_strings =
|
||||
'\\newcommand*{\\tcrfpage}{' .. config.page_prefix .. '}\n' ..
|
||||
'\\newcommand*{\\tcrfpages}{' .. config.pages_prefix .. '}\n' ..
|
||||
'\\newcommand*{\\tcrfrangesep}{' .. config.range_separator .. '}\n'
|
||||
local label_redefinition = '\\let\\oldlabel\\label\n' ..
|
||||
'\\renewcommand*{\\label}[1]{\\oldlabel{#1}%\n' ..
|
||||
'\\expandafter\\xdef\\csname #1pagenumber\\endcsname{\\thepage}}\n'
|
||||
local range_ref = '\\ifdefined\\tcrfpagerangeref\\else\n' ..
|
||||
'\\newcommand*{\\tcrfpagerangeref}[2]{%\n' ..
|
||||
'\\if' ..
|
||||
'\\csname #1pagenumber\\endcsname' ..
|
||||
'\\csname #2pagenumber\\endcsname\n' ..
|
||||
'\\tcrfpage\\pageref{#1}\n' ..
|
||||
'\\else\n' ..
|
||||
'\\tcrfpages\\pageref{#1}\\tcrfrangesep\\pageref{#2}\\fi}\n' ..
|
||||
'\\fi\n'
|
||||
local macros_block = pandoc.RawBlock('latex',
|
||||
predefined_strings ..
|
||||
label_redefinition ..
|
||||
range_ref)
|
||||
table.insert(document.blocks, 1, macros_block)
|
||||
end
|
||||
return document
|
||||
end
|
||||
|
||||
-- End of the extensions for the output document's format
|
||||
|
||||
-- Identifiers
|
||||
|
||||
local spans_to_note_labels = {}
|
||||
local current_odt_note_index = 0
|
||||
local is_first_span_in_note = true
|
||||
local current_note_label
|
||||
|
||||
local function map_span_to_label(span)
|
||||
if RAW_ATTRIBUTE == 'opendocument' then
|
||||
spans_to_note_labels[span.identifier] = 'ftn' .. current_odt_note_index
|
||||
elseif RAW_ATTRIBUTE == 'openxml' or RAW_ATTRIBUTE == 'context' then
|
||||
if is_first_span_in_note then
|
||||
current_note_label = span.identifier
|
||||
is_first_span_in_note = false
|
||||
end
|
||||
spans_to_note_labels[span.identifier] = current_note_label
|
||||
end
|
||||
end
|
||||
|
||||
local function map_spans_to_labels(container)
|
||||
for i = 1, #container.content do
|
||||
-- The tests must be separate in order to support spans inside spans.
|
||||
if container.content[i].t == 'Span'
|
||||
and container.content[i].identifier ~= ''
|
||||
then
|
||||
map_span_to_label(container.content[i])
|
||||
end
|
||||
if container.content[i].content then
|
||||
map_spans_to_labels(container.content[i])
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local function map_spans_to_notelabels(note)
|
||||
if RAW_ATTRIBUTE == 'context'
|
||||
or RAW_ATTRIBUTE == 'opendocument'
|
||||
or RAW_ATTRIBUTE == 'openxml' then
|
||||
is_first_span_in_note = true
|
||||
map_spans_to_labels(note)
|
||||
current_odt_note_index = current_odt_note_index + 1
|
||||
end
|
||||
end
|
||||
|
||||
local function make_label(label)
|
||||
if IS_LABEL_SET_BY_PANDOC then
|
||||
return pandoc.Str('')
|
||||
else
|
||||
label_rawcode = string.gsub(LABEL_TEMPLATE, '{{label}}', label)
|
||||
return pandoc.RawInline(RAW_ATTRIBUTE, label_rawcode)
|
||||
end
|
||||
end
|
||||
|
||||
local function labelize_span(span)
|
||||
if span.identifier ~= '' then
|
||||
local label = span.identifier
|
||||
local label_begin = make_label(label, 'begin')
|
||||
return { label_begin, span }
|
||||
end
|
||||
end
|
||||
|
||||
local function has_class(elem, class)
|
||||
if elem.classes then
|
||||
for i = 1, #elem.classes do
|
||||
if elem.classes[i] == class then
|
||||
return true
|
||||
end
|
||||
end
|
||||
return false
|
||||
else
|
||||
error('function has_class used on an element of type ' ..
|
||||
elem.t .. ' that cannot have classes.')
|
||||
end
|
||||
end
|
||||
|
||||
local current_note_labels = {}
|
||||
|
||||
local collect_note_labels = {
|
||||
Span = function(span)
|
||||
if span.identifier ~= '' and
|
||||
(config.only_explicit_labels == 'false' or has_class(span, 'label'))
|
||||
then
|
||||
table.insert(current_note_labels, span.identifier)
|
||||
end
|
||||
end
|
||||
}
|
||||
|
||||
local function make_notelabel(pos)
|
||||
local raw_code = ''
|
||||
if pos == 'begin' then
|
||||
if RAW_ATTRIBUTE == 'openxml' then
|
||||
raw_code = string.gsub(
|
||||
'<w:bookmarkStart w:id="{{label}}_Note" w:name="{{label}}_Note"/>',
|
||||
'{{label}}', current_note_labels[#current_note_labels])
|
||||
end
|
||||
elseif pos == 'end' then
|
||||
if RAW_ATTRIBUTE == 'context' then
|
||||
local label = current_note_labels[1] .. '_note'
|
||||
raw_code = '{' .. label .. '}'
|
||||
elseif RAW_ATTRIBUTE == 'openxml' then
|
||||
raw_code = string.gsub('<w:bookmarkEnd w:id="{{label}}_Note"/>',
|
||||
'{{label}}', current_note_labels[1])
|
||||
end
|
||||
end
|
||||
return pandoc.RawInline(RAW_ATTRIBUTE, raw_code)
|
||||
end
|
||||
|
||||
local function labelize_note(note)
|
||||
local label_begin = make_notelabel('begin')
|
||||
local label_end = make_notelabel('end')
|
||||
return { label_begin, note, label_end }
|
||||
end
|
||||
|
||||
function set_notelabels(note)
|
||||
current_note_labels = {}
|
||||
pandoc.walk_inline(note, collect_note_labels)
|
||||
if #current_note_labels > 0 then
|
||||
return labelize_note(note)
|
||||
end
|
||||
end
|
||||
|
||||
-- End of identifiers-related code
|
||||
|
||||
-- References
|
||||
|
||||
local function is_reference_valid(ref)
|
||||
if string.find(ref, '^[' .. IDENTIFIER_PATTERN .. ']') then
|
||||
error('text-crossrefs.lua: Invalid character in reference: ' .. ref ..
|
||||
'\nIdentifier and reference names can only contain' ..
|
||||
' alphanumerical characters, periods, underscores and hyphens.\n')
|
||||
else
|
||||
return true
|
||||
end
|
||||
end
|
||||
|
||||
local function is_ref_external(rawref)
|
||||
if string.find(rawref, config.filelabel_ref_separator, 1, true) then
|
||||
return true
|
||||
else
|
||||
return false
|
||||
end
|
||||
end
|
||||
|
||||
local function is_ref_range(rawref)
|
||||
if string.find(rawref, config.references_range_separator, 1, true) then
|
||||
return true
|
||||
else
|
||||
return false
|
||||
end
|
||||
end
|
||||
|
||||
function get_first_reference_end_index(range_separator_index)
|
||||
if range_separator_index then
|
||||
return range_separator_index - 1
|
||||
end
|
||||
end
|
||||
|
||||
local function get_first_reference(rawref)
|
||||
local _, file_ref_separator_index =
|
||||
string.find(rawref, config.filelabel_ref_separator, 1, true)
|
||||
local range_separator_index, _ =
|
||||
string.find(rawref, config.references_range_separator, 1, true)
|
||||
local ref = string.sub(rawref,
|
||||
(file_ref_separator_index or 0) + 1,
|
||||
get_first_reference_end_index(range_separator_index))
|
||||
if is_reference_valid(ref) then return ref end
|
||||
end
|
||||
|
||||
local function get_second_reference(rawref)
|
||||
local second_ref_begin_index
|
||||
local _, file_ref_separator_index =
|
||||
string.find(rawref, config.filelabel_ref_separator, 1, true)
|
||||
if file_ref_separator_index then
|
||||
_, file_ref_separator_index =
|
||||
string.find(rawref,
|
||||
config.filelabel_ref_separator,
|
||||
config.file_ref_separator_index + 1,
|
||||
true)
|
||||
second_ref_begin_index = file_ref_separator_index + 1
|
||||
else
|
||||
local _, range_separator_index, _ =
|
||||
string.find(rawref, config.references_range_separator, 1, true)
|
||||
second_ref_begin_index = range_separator_index + 1
|
||||
end
|
||||
local ref = string.sub(rawref, second_ref_begin_index)
|
||||
if is_reference_valid(ref) then return ref end
|
||||
end
|
||||
|
||||
local function analyze_reference_span(reference_span)
|
||||
if #reference_span.content == 1 and reference_span.content[1].t == 'Str' then
|
||||
raw_reference = reference_span.content[1].c
|
||||
analyzed_reference = {}
|
||||
analyzed_reference.is_external = is_ref_external(raw_reference)
|
||||
analyzed_reference.is_range = is_ref_range(raw_reference)
|
||||
if analyzed_reference.is_external then
|
||||
analyzed_reference.filelabel = get_extfilelabel(raw_reference)
|
||||
end
|
||||
analyzed_reference.first = get_first_reference(raw_reference)
|
||||
if analyzed_reference.is_range then
|
||||
analyzed_reference.second = get_second_reference(raw_reference)
|
||||
end
|
||||
return analyzed_reference
|
||||
else
|
||||
error('The content of a span with class ref must be a plain string.')
|
||||
end
|
||||
end
|
||||
|
||||
local function insert_page_target_in_xml(target)
|
||||
if RAW_ATTRIBUTE == 'opendocument' then
|
||||
return '<text:bookmark-ref ' ..
|
||||
' text:reference-format="page" text:ref-name="' ..
|
||||
target .. '">000</text:bookmark-ref>'
|
||||
elseif RAW_ATTRIBUTE == 'openxml' then
|
||||
return '<w:r><w:fldChar w:fldCharType="begin" w:dirty="true"/></w:r>' ..
|
||||
'<w:r><w:instrText xml:space="preserve"> PAGEREF ' ..
|
||||
target .. ' \\h </w:instrText></w:r>' ..
|
||||
'<w:r><w:fldChar w:fldCharType="separate"/></w:r>' ..
|
||||
'<w:r><w:t>000</w:t></w:r>' ..
|
||||
'<w:r><w:fldChar w:fldCharType="end"/></w:r>'
|
||||
end
|
||||
end
|
||||
|
||||
local function format_page_reference(target)
|
||||
if RAW_ATTRIBUTE == 'context' then
|
||||
return config.page_prefix .. '\\at[' .. target .. ']'
|
||||
elseif RAW_ATTRIBUTE == 'latex' then
|
||||
return config.page_prefix .. '\\pageref{' .. target .. '}'
|
||||
elseif RAW_ATTRIBUTE == 'opendocument' then
|
||||
return config.page_prefix .. insert_page_target_in_xml(target)
|
||||
elseif RAW_ATTRIBUTE == 'openxml' then
|
||||
return config.page_prefix .. insert_page_target_in_xml(target)
|
||||
end
|
||||
end
|
||||
|
||||
local function format_pagerange_reference(first, second)
|
||||
if RAW_ATTRIBUTE == 'context' or RAW_ATTRIBUTE == 'latex' then
|
||||
return '\\tcrfpagerangeref{' .. first .. '}{' .. second .. '}'
|
||||
elseif RAW_ATTRIBUTE == 'opendocument' or RAW_ATTRIBUTE == 'openxml' then
|
||||
return config.pages_prefix .. insert_page_target_in_xml(first) ..
|
||||
config.range_separator .. insert_page_target_in_xml(second)
|
||||
end
|
||||
end
|
||||
|
||||
local function format_note_reference(target)
|
||||
if RAW_ATTRIBUTE == 'context' then
|
||||
return config.note_prefix .. '\\in[' .. spans_to_note_labels[target] .. '_note' .. ']'
|
||||
elseif RAW_ATTRIBUTE == 'latex' then
|
||||
return config.note_prefix .. '\\ref{' .. target .. '}'
|
||||
elseif RAW_ATTRIBUTE == 'opendocument' then
|
||||
return config.note_prefix .. '<text:note-ref text:note-class="footnote"' ..
|
||||
' text:reference-format="text" text:ref-name="' ..
|
||||
spans_to_note_labels[target] .. '">000</text:note-ref>'
|
||||
elseif RAW_ATTRIBUTE == 'openxml' then
|
||||
return config.note_prefix ..
|
||||
'<w:r><w:fldChar w:fldCharType="begin" w:dirty="true"/></w:r>' ..
|
||||
'<w:r><w:instrText xml:space="preserve"> NOTEREF ' ..
|
||||
target .. '_Note' .. ' \\h </w:instrText></w:r>' ..
|
||||
'<w:r><w:fldChar w:fldCharType="separate"/></w:r>' ..
|
||||
'<w:r><w:t>000</w:t></w:r>' ..
|
||||
'<w:r><w:fldChar w:fldCharType="end"/></w:r>'
|
||||
end
|
||||
end
|
||||
|
||||
local function format_pagenote_reference(target)
|
||||
if config.pagenote_order == 'pagefirst' then
|
||||
return format_page_reference(target) .. config.pagenote_separator ..
|
||||
format_note_reference(target) .. config.pagenote_at_end
|
||||
elseif config.pagenote_order == 'notefirst' then
|
||||
return format_note_reference(target) .. config.pagenote_separator ..
|
||||
format_page_reference(target) .. config.pagenote_at_end
|
||||
else
|
||||
error('tcrf-pagenote-order must be set either to pagefirst or notefirst.')
|
||||
end
|
||||
end
|
||||
|
||||
local function format_reference(target, info_type)
|
||||
if info_type == 'page' and target.is_range then
|
||||
return format_pagerange_reference(target.first, target.second)
|
||||
elseif info_type == 'page' then
|
||||
return format_page_reference(target.first)
|
||||
elseif info_type == 'note' then
|
||||
return format_note_reference(target.first)
|
||||
elseif info_type == 'pagenote' then
|
||||
return format_pagenote_reference(target.first)
|
||||
else
|
||||
error('Invalid value for attribute type in span with class ref: ' ..
|
||||
info_type)
|
||||
end
|
||||
end
|
||||
|
||||
local function make_reference(span)
|
||||
if has_class(span, 'ref') then
|
||||
local target = analyze_reference_span(span)
|
||||
if not target.is_external then
|
||||
local info_type = span.attributes.type or config.default_info_type
|
||||
local formatted_reference = format_reference(target, info_type)
|
||||
span.content[1] = pandoc.RawInline(RAW_ATTRIBUTE, formatted_reference)
|
||||
return span
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- End of references-related code
|
||||
|
||||
return {
|
||||
{ Meta = configure },
|
||||
{ Pandoc = define_tex_macros },
|
||||
{ Note = set_notelabels },
|
||||
{ Note = map_spans_to_notelabels },
|
||||
{ Span = labelize_span },
|
||||
{ Span = make_reference }
|
||||
}
|
Loading…
Reference in New Issue
Block a user