如何在rmarkdown上正确放置引文

时间:2020-01-26 20:38:31

标签: r rstudio r-markdown

此Rmd:

---
  title: Czech Bank Analisys
  author:
  - me
  - my_budy
  subtitle: xxx
  date: '`r format(Sys.Date(), "%d, %B  %Y")`'
  references:
  - id: ecmlpkdd
    title: ECML/PKDD Discovery Challenges 1999 - 2005
    URL: 'https://.../index.html'
    publisher: European ... Databases
    issued:
      year: 2005
  - id: miksovsky
    title: Financial Data Challenge.
    author: "Miksovsky,P. - Zelezny,F. - Stepankova,O. - Pechoucek,M"
    URL: 'https://.../Miksovsky.pdf'
    publisher: European ... Databases
    issued:
      year: 1999
  - id: weber
    title: Discovery of Interesting Rules and Subgroups in a Financial Database
    author: "Weber,I."
    URL: 'https://.../Weber.pdf'
    publisher: European ... Databases
    issued:
      year: 1999
  output: 
    pdf_document: default
    html_document:
      df_print: paged
    html_notebook: default
---

# That Title

Blah blah [see @ecmlpkdd].
Blah blah [see @miksovsky].
@weber Blah blah.

PDF呈现为:

Blah blah(参见“ ECML / PKDD发现挑战1999-2005” 2005)。 Blah blah(参见et al。1999)。 (1999)等等。

引用为:

“ 1999-2005年ECML / PKDD发现挑战”。 2005年。欧洲机器学习大会和欧洲数据库知识发现原理与实践会议。 https://sorry.vse.cz/~berka/challenge/PAST/index.html

  1. “在财务数据库中发现有趣的规则和子组。”欧洲机器学习大会和欧洲数据库知识发现原理与实践会议。https://sorry.vse.cz/~berka/challenge/pkdd1999/Weber.pdf

,等等。 1999年。“财务数据挑战”。欧洲机器学习大会和数据库知识发现原理与实践欧洲会议。 https://sorry.vse.cz/~berka/challenge/pkdd1999/Miksovsky.pdf


为什么我在提及和引用时得不到正确的作者姓名?

0 个答案:

没有答案