Merge branch 'reb-refactoring'

Intégration d'une correction pour REB
This commit is contained in:
Bastien Dumont 2021-04-17 19:19:01 +02:00
commit 1122863c65
4 changed files with 15 additions and 4 deletions

View File

@ -182,11 +182,15 @@
</macro>
<macro name="sourceDivisionLocator">
<choose>
<if variable="annote">
<choose>
<if locator="section issue" match="any">
<text variable="locator"/>
</if>
</choose>
</if>
</choose>
</macro>
<macro name="publicationAuthors">
@ -711,6 +715,7 @@
<group delimiter=", ">
<text term="ibid" text-case="capitalize-first" font-style="italic"/>
<text macro="volumeLocator"/>
<text macro="sourceDivisionLocator"/>
<text macro="thisCitationLocator"/>
</group>
</macro>

View File

@ -325,7 +325,8 @@
<p>Plusieurs l. <span class="citation" data-cites="LivreTraduit"><a href="#fn154" class="footnote-ref" id="fnref154" role="doc-noteref"><sup>154</sup></a></span></p>
<p>Plusieurs l. dans la même page que le précédent<span class="citation" data-cites="LivreTraduit"><a href="#fn155" class="footnote-ref" id="fnref155" role="doc-noteref"><sup>155</sup></a></span></p>
<p>Une source dont on indique la section où se trouve la citation<span class="citation" data-cites="SourceLivreSimple"><a href="#fn156" class="footnote-ref" id="fnref156" role="doc-noteref"><sup>156</sup></a></span></p>
<p>Citation multiple<span class="citation" data-cites="LivreTraduit LivreAvecCollection"><a href="#fn157" class="footnote-ref" id="fnref157" role="doc-noteref"><sup>157</sup></a></span></p>
<p>Même chose en <em>ibidem</em><span class="citation" data-cites="SourceLivreSimple"><a href="#fn157" class="footnote-ref" id="fnref157" role="doc-noteref"><sup>157</sup></a></span></p>
<p>Citation multiple<span class="citation" data-cites="LivreTraduit LivreAvecCollection"><a href="#fn158" class="footnote-ref" id="fnref158" role="doc-noteref"><sup>158</sup></a></span></p>
<div id="refs" class="references csl-bib-body" data-entry-spacing="2" role="doc-bibliography">
<div id="ref-SiteWebProjet" class="csl-entry" role="doc-biblioentry">
@ -667,7 +668,8 @@ N. de la <span class="smallcaps">Particule</span>, N. de l<span class="smal
<li id="fn154" role="doc-endnote"><p><em>Ibidem</em>, p. <span class="smallcaps">4</span><sup>3-5</sup>.<a href="#fnref154" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn155" role="doc-endnote"><p><em>Ibidem</em>, p. <span class="smallcaps">4</span><sup>9-10</sup>.<a href="#fnref155" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn156" role="doc-endnote"><p><span class="smallcaps">Nom Auteurdelasource</span>, <em>Titre abrégé</em>, VI, 5, 3, cité n. 13, p. 56.<a href="#fnref156" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn157" role="doc-endnote"><p>N. <span class="smallcaps">Auteur</span>, <em>Titre abrégé</em>, cité n. 1N. <span class="smallcaps">Auteur</span>, <em>Titre abrégé</em>, cité n. 2.<a href="#fnref157" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn157" role="doc-endnote"><p><em>Ibidem</em>, VI, 5, 3, p. 56.<a href="#fnref157" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn158" role="doc-endnote"><p>N. <span class="smallcaps">Auteur</span>, <em>Titre abrégé</em>, cité n. 1N. <span class="smallcaps">Auteur</span>, <em>Titre abrégé</em>, cité n. 2.<a href="#fnref158" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
</ol>
</section>
</body>

View File

@ -315,4 +315,6 @@ Plusieurs l.  dans la même page que le précédent[@LivreTraduit, {p. 4}, l. 
Une source dont on indique la section où se trouve la citation[@SourceLivreSimple, {section VI, 5, 3}, p. 56]
Même chose en _ibidem_[@SourceLivreSimple, {section VI, 5, 3}, p. 56]
Citation multiple[@LivreTraduit; @LivreAvecCollection]

View File

@ -52,6 +52,8 @@ printLocators() {
echo "Plusieurs $locator dans la même page que le précédent[$ref, {p. 4}, ${locator}9-10]" >> "$OUTPUT_FILE"
echo "" >> "$OUTPUT_FILE"
echo "Une source dont on indique la section où se trouve la citation[@SourceLivreSimple, {section VI, 5, 3}, p. 56]" >> "$OUTPUT_FILE"
echo "" >> "$OUTPUT_FILE"
echo "Même chose en _ibidem_[@SourceLivreSimple, {section VI, 5, 3}, p. 56]" >> "$OUTPUT_FILE"
done
}