我是一个绝对的RMarkdown和Latex的初学者。所以,这是我第一次尝试写论文。我从我的大学得到了一个我使用的模板,但是我有一个关于引用的问题。我想使用apa风格,这在书目中工作得很好。然而,引文在日期周围有括号,看起来像这样:
(Behrendt等人。(2016),S.1)
如何去掉日期周围的括号?提前感谢!
我的YAML-Header看起来像这样:
---
geometry: "a4paper,top=2cm,bottom=2cm,left=3.5cm,right=2cm"
fontsize: 12pt
linestretch: 1.5
automark: yes
indent: true
toc: false
classoption:
- DIV=calc
- headsepline=true
KOMAoptions:
- headings=standardclasses
- DIV=last
table_caption: true
figure_caption: true
includes:
in_header: figure_placement.tex
link-citations: yes
knit: "bookdown::render_book"
output:
bookdown::pdf_book:
includes:
in_header: tex/praeambel.tex
keep_tex: yes
latex_engine: pdflatex
citation_package: biblatex
bibliography: bib/literatur.bib
biblio-style: apa
---我的.bib条目如下所示:
@techreport{behrendtStrategieanalytischeBetrachtungFuer2016,
address = {Berlin},
type = {Inputpapier},
title = {Strategieanalytische {Betrachtung} für eine {Green} {Economy}},
language = {de},
institution = {izt - Institut für Zukunftsstudien und Technologiebewertung},
author = {Behrendt, Siegfried and Göll, Edgar and Korte, Friederike},
year = {2016},
pages = {37}
}编辑:解决方案是使用方括号[]而不是圆括号()
发布于 2020-12-29 22:13:13
我太关注我的头球了。问题在于我在引用中使用的括号。我使用()代替。这就是问题所在。
https://stackoverflow.com/questions/65493263
复制相似问题