Gitiles
Code Review
Sign In
korap.ids-mannheim.de
/
IDS-Mannheim
/
kableExtra
/
b80888d73adec3d28c6df815a4042238c63a05e3
/
.
/
R
/
auto_set_format.R
blob: fbf657e04ad37b336681a783bc2092fa82f8714d [
file
] [
log
] [
blame
]
Hao Zhu
f315512
2018-04-11 12:55:51 -0400
[
diff
] [
blame
]
1
auto_set_format
<-
function
()
{
2
if
(
knitr
::
is_latex_output
())
{
3
options
(
knitr.table.format
=
"latex"
)
4
}
else
{
5
options
(
knitr.table.format
=
"html"
)
6
}
7
}