I am compiling with pandoc markdown with documentclass scrartcl over LaTeX to pdf. I have several articles in one file and would like to print the footnotes at the end of each article.

I tried pandoc-crossref, but apparently it is not supporting footnotes and needs in the anchor a leading keyword like `@fig:` or `@sec:` `@lst:`. But footnotes are not supported (please correct me).

I tried with `--reference-location=block|section|document` in my Makefile like follows:

```
all: save typeset open

.PHONY: all
save:
    w

typeset:
    pandoc                                                    \
      --from         markdown                                 \
      --to           latex                                        \
      --out             articles.pdf                               \
      --pdf-engine      pdflatex                                 \
      --bibliography articles.bib                             \
      -F pandoc-crossref                                     \
      --reference-location=section                             \
      --citeproc                                              \
      --csl          csl/din-1505-2-numeric-alphabetical.csl \
      --lua-filter   pandoc-gls.lua                              \
      articles.md

open:
    open articles.pdf
```

Probably wrong idea. Perhaps somebody could point me to the right direction

marek

--
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org.
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/aefe7d21-3dbd-4a08-acb7-0f8154d6712en%40googlegroups.com.