Hi everyone! I'm trying to output a Word document using APA bibliography style. When I compile my document in order to output a PDF, there is no problem at all: citations are listed correctly in the references section. It's the same with HTML output. On the other hand, when I compile my document using Word output, my references are not listed correctly. How could I fix that issue?
This is a reference bib I use:
@Book{Assoun1981,
author = {Assoun, Paul-Laurent},
title = {Introduction à l'épistémologie freudienne},
publisher = {Éditions Payot},
address = {Paris},
year = {1981}, }
And this is my MWE:
---
title: "A title"
output:
word_document:
toc: yes
toc_depth: 4
pdf_document:
latex_engine: xelatex
toc: yes
toc_depth: 4
number_sections: yes
html_document:
toc: yes
toc_depth: '4'
df_print: paged
date: "8 juillet 2022"
csl: apa7-fr-couture.csl
bibliography: lectures.bib
fontsize: 12pt
geometry: left=4cm,right=4cm,top=4cm,bottom=4cm
linestretch: 1.5
toc-title: Plan
links-as-notes: yes
link-citations: yes
header-includes:
- \usepackage{fontspec}
- \setmainfont[Numbers=OldStyle,Mapping=tex-text]{Janson Text LT Std}
- \usepackage{fancyhdr}
- \pagestyle{headings}
- \fancyfoot[LE,RO]{\thepage}
- \usepackage [french]{babel}
- \usepackage[numberedbib,nosectionbib]{apacite}
---
# Introduction
[@Assoun1981]
# References