[Tex/LaTex] Pandoc citations in the footnote

citingfootnotesmarkdownpandocpandoc-citeproc

I am using Pandoc for writing texts with Latex or Markdown and converting them to Word (because of no reason everyone else still wants this word-shit).
Now I have to convert my citations into footnote style.
I have found the filter mode notes-after-punctuation but don't know how I should implement this into my call, e.g. from Rmd to doc:

pandoc -f markdown -t docx --reference-doc=JJL.dotx --resource-path=.:figures --filter pandoc-crossref --filter pandoc-citeproc --bibliography=sample.bib -o output.docx doc.Rmd

Manipulation the output of the citations via Latex didn't work with the following:

\usepackage[style=footnote-dw, 
natbib=true, 
backref=true, 
edsuper=true, 
nopublisher=false, 
urldate=long, 
backend=biber]{biblatex}

Best Answer

As @DG' writes one can load a citation style from a csl-file from the Zotero Style Repository. The code would be like:

pandoc -f latex -t docx --bibliography=sample.bib --csl journal-of-linguistics.csl  -o output.docx text.tex 
Related Question