include latex table in rmarkdown
up vote
2
down vote
favorite
I try to include latex code (a table) into my Rmarkdown document. I need to use latex instead of other options because the table has to be in a certain format.
The problem I encounter is the following error:
! LaTeX Error: Environment threeparttable undefined.
Error: Failed to compile confounder_table.tex. See
confounder_table.log for more info. Execution halted
This is the table I include in the .Rmd document. I want to render it to pdf and/or docx and I use knitr for that (all in Rstudio). After working on that for 2 hours I hope that you can give me a hint how to solve this. It works for docx and html but not for the pdf format.
This is table code:
begin{table}[tbp]
begin{center}
begin{threeparttable}
caption{Descriptive statistics included in the present study.}
begin{tabular}{ll}
toprule
cyl & multicolumn{1}{c}{Some columnname}\
midrule
4.00 & 26.66 ± 4.51\
6.00 & 19.74 ± 1.45\
8.00 & 15.1 ± 2.56\
bottomrule
addlinespace
end{tabular}
begin{tablenotes}[para]
textit{Note.} There were no signnificant differences in the means between the groups.
end{tablenotes}
end{threeparttable}
end{center}
end{table}
markdown threeparttable
add a comment |
up vote
2
down vote
favorite
I try to include latex code (a table) into my Rmarkdown document. I need to use latex instead of other options because the table has to be in a certain format.
The problem I encounter is the following error:
! LaTeX Error: Environment threeparttable undefined.
Error: Failed to compile confounder_table.tex. See
confounder_table.log for more info. Execution halted
This is the table I include in the .Rmd document. I want to render it to pdf and/or docx and I use knitr for that (all in Rstudio). After working on that for 2 hours I hope that you can give me a hint how to solve this. It works for docx and html but not for the pdf format.
This is table code:
begin{table}[tbp]
begin{center}
begin{threeparttable}
caption{Descriptive statistics included in the present study.}
begin{tabular}{ll}
toprule
cyl & multicolumn{1}{c}{Some columnname}\
midrule
4.00 & 26.66 ± 4.51\
6.00 & 19.74 ± 1.45\
8.00 & 15.1 ± 2.56\
bottomrule
addlinespace
end{tabular}
begin{tablenotes}[para]
textit{Note.} There were no signnificant differences in the means between the groups.
end{tablenotes}
end{threeparttable}
end{center}
end{table}
markdown threeparttable
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I try to include latex code (a table) into my Rmarkdown document. I need to use latex instead of other options because the table has to be in a certain format.
The problem I encounter is the following error:
! LaTeX Error: Environment threeparttable undefined.
Error: Failed to compile confounder_table.tex. See
confounder_table.log for more info. Execution halted
This is the table I include in the .Rmd document. I want to render it to pdf and/or docx and I use knitr for that (all in Rstudio). After working on that for 2 hours I hope that you can give me a hint how to solve this. It works for docx and html but not for the pdf format.
This is table code:
begin{table}[tbp]
begin{center}
begin{threeparttable}
caption{Descriptive statistics included in the present study.}
begin{tabular}{ll}
toprule
cyl & multicolumn{1}{c}{Some columnname}\
midrule
4.00 & 26.66 ± 4.51\
6.00 & 19.74 ± 1.45\
8.00 & 15.1 ± 2.56\
bottomrule
addlinespace
end{tabular}
begin{tablenotes}[para]
textit{Note.} There were no signnificant differences in the means between the groups.
end{tablenotes}
end{threeparttable}
end{center}
end{table}
markdown threeparttable
I try to include latex code (a table) into my Rmarkdown document. I need to use latex instead of other options because the table has to be in a certain format.
The problem I encounter is the following error:
! LaTeX Error: Environment threeparttable undefined.
Error: Failed to compile confounder_table.tex. See
confounder_table.log for more info. Execution halted
This is the table I include in the .Rmd document. I want to render it to pdf and/or docx and I use knitr for that (all in Rstudio). After working on that for 2 hours I hope that you can give me a hint how to solve this. It works for docx and html but not for the pdf format.
This is table code:
begin{table}[tbp]
begin{center}
begin{threeparttable}
caption{Descriptive statistics included in the present study.}
begin{tabular}{ll}
toprule
cyl & multicolumn{1}{c}{Some columnname}\
midrule
4.00 & 26.66 ± 4.51\
6.00 & 19.74 ± 1.45\
8.00 & 15.1 ± 2.56\
bottomrule
addlinespace
end{tabular}
begin{tablenotes}[para]
textit{Note.} There were no signnificant differences in the means between the groups.
end{tablenotes}
end{threeparttable}
end{center}
end{table}
markdown threeparttable
markdown threeparttable
asked May 5 at 9:39
Jaynes01
313
313
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
I found the solution: I had to load a specific library for that with:
library(kableExtra)
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
I found the solution: I had to load a specific library for that with:
library(kableExtra)
add a comment |
up vote
2
down vote
I found the solution: I had to load a specific library for that with:
library(kableExtra)
add a comment |
up vote
2
down vote
up vote
2
down vote
I found the solution: I had to load a specific library for that with:
library(kableExtra)
I found the solution: I had to load a specific library for that with:
library(kableExtra)
answered May 5 at 9:42
Jaynes01
313
313
add a comment |
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f430148%2finclude-latex-table-in-rmarkdown%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown