我正在尝试apa_table()
在 RStudio 中使用、Papaja 和 RMarkdown 创建一个表。每当我包含longtable
在apa_table
函数中时,我都会收到错误消息:
! LaTeX Error: Environment ThreePartTable undefined.
奇怪的是,产生的错误日志包括:
(/home/tim/.TinyTeX/texmf-dist/tex/latex/threeparttable/threeparttable.sty
Package: threeparttable 2003/06/13 v 3.0
和
Package caption Info: threeparttable package is loaded.
请注意错误和加载的包之间的大小写不同,这让我想知道这是否是问题所在。
请注意,这与之前的问题中报告的错误相同:!LaTeX 错误:环境 threeparttable undefined。但是,那里提供的解决方案对我不起作用。
我不确定这是否可以在我的特定设置之外重现,但这里有一些代码给我带来了问题。
kable()
请注意,如果我只是使用(也包括在下面),我没有同样的问题。
---
title : "The title"
shorttitle : "Title"
author:
- name : "First Author"
affiliation : "1"
corresponding : yes # Define only one corresponding author
address : "Postal address"
email : "my@email.com"
- name : "Ernst-August Doelle"
affiliation : "1,2"
affiliation:
- id : "1"
institution : "Wilhelm-Wundt-University"
- id : "2"
institution : "Konstanz Business School"
authornote: |
abstract: |
keywords : "keywords"
wordcount : "X"
floatsintext : no
figurelist : no
tablelist : no
footnotelist : no
linenumbers : yes
mask : no
draft : no
tables : yes
documentclass : "apa6"
classoption : "man"
output : papaja::apa6_pdf
---
```{r setup, include = FALSE}
library("papaja")
library("knitr")
library("kableExtra")
```
```{r, results="asis"}
kable(mtcars, longtable=TRUE)
```
```{r, results="asis"}
apa_table(mtcars, longtable=TRUE)
```
\begingroup
\setlength{\parindent}{-0.5in}
\setlength{\leftskip}{0.5in}
<div id = "refs"></div>
\endgroup
以下是输出sessionInfo()
以防万一:
R version 3.6.1 (2019-07-05)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: Linux Mint 19.2
Matrix products: default
BLAS: /usr/lib/x86_64-linux-gnu/blas/libblas.so.3.7.1
LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.7.1
locale:
[1] LC_CTYPE=en_AU.UTF-8 LC_NUMERIC=C LC_TIME=en_AU.UTF-8 LC_COLLATE=en_AU.UTF-8
[5] LC_MONETARY=en_AU.UTF-8 LC_MESSAGES=en_AU.UTF-8 LC_PAPER=en_AU.UTF-8 LC_NAME=C
[9] LC_ADDRESS=C LC_TELEPHONE=C LC_MEASUREMENT=en_AU.UTF-8 LC_IDENTIFICATION=C
attached base packages:
[1] stats graphics grDevices utils datasets methods base
loaded via a namespace (and not attached):
[1] Rcpp_1.0.3 digest_0.6.23 crayon_1.3.4 withr_2.1.2 assertthat_0.2.1 evaluate_0.14 rlang_0.4.2
[8] cli_1.1.0 rstudioapi_0.10 rmarkdown_1.18 tools_3.6.1 xfun_0.11 yaml_2.2.0 compiler_3.6.1
[15] sessioninfo_1.1.1 papaja_0.1.0.9842 htmltools_0.4.0 knitr_1.26