编织我的 R Markdown 文档 (papaja::apa6_pdf) 时,我的图形标题出现在图形图例中。这是生成我的图的代码:
{r RT_pilot, echo=FALSE, fig.cap="\\label{fig:RT_pilot}Median search time."}
ggplot(data=median_search_times,
aes(x=set_size, y=median_RT, group=response)) +
geom_line(aes(linetype = response))
我的 YAML 是
title : "my title"
shorttitle : "short title"
author:
- name : "me"
# affiliation : "1"
# corresponding : yes # Define only one corresponding author
# address : "Postal address"
# email : "my@email.com"
- name : "my supervisor"
authornote: |
abstract:
<!-- -->
keywords : "keywords"
wordcount : "X"
bibliography : ["r-references.bib"]
floatsintext : yes
figurelist : no
tablelist : no
footnotelist : no
linenumbers : yes
mask : no
draft : no
documentclass : "apa6"
classoption : "man"
output : papaja::apa6_pdf
在输出文件中,我的图例是:
“图 2. (#fig:RT_pilot) 两个搜索任务和两个响应的干扰集大小的中值搜索时间。仅正确响应。误差线代表中值的标准误差。”
如何使图形标签消失?