diff --git a/Utilitaires/generer-md-pour-citeproc.sh b/Utilitaires/generer-md-pour-citeproc.sh index 8f368e5..29edc60 100755 --- a/Utilitaires/generer-md-pour-citeproc.sh +++ b/Utilitaires/generer-md-pour-citeproc.sh @@ -19,7 +19,7 @@ printReferences() { while read -r ref ; do iCit=$(($iCit+1)) echo "" >> "$OUTPUT_FILE" - echo "$inlineBaseText $iCit[$ref]" >> "$OUTPUT_FILE" + echo "$inlineBaseText $iCit (\\$ref)[$ref]" >> "$OUTPUT_FILE" done <<< "$refList" } @@ -36,7 +36,10 @@ printLocators() { echo "Un $locator[$ref, {p. 3}, ${locator}3]" >> "$OUTPUT_FILE" echo "" >> "$OUTPUT_FILE" echo "Plusieurs $locator[$ref, {p. 4}, ${locator}3-5]" >> "$OUTPUT_FILE" + echo "" >> "$OUTPUT_FILE" 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" done }