-
DescriptionI have a problem rendering this (MWE) File to PDF using Would love if somebody could help me out what I am missing here SystemQuarto Version: 1.4.550 TinyTex Version (by Quarto): v2024.02 Console Output
MWE---
format: pdf
---
# TItle
```{=latex}
\begin{table}[!htbp] \centering
\caption{}
\label{}
\begin{tabular}{@{\extracolsep{5pt}}lccccc}
\\[-1.8ex]\hline
\hline \\[-1.8ex]
Statistic & \multicolumn{1}{c}{N} & \multicolumn{1}{c}{Mean} & \multicolumn{1}{c}{St. Dev.} & \multicolumn{1}{c}{Min} & \multicolumn{1}{c}{Max} \\
\hline \\[-1.8ex]
afd\_prozent & 400 & 0.113 & 0.058 & 0.029 & 0.321 \\
lohn\_prozent & 400 & 0.194 & 0.064 & 0.079 & 0.440 \\
linke\_prozent & 399 & 0.045 & 0.029 & 0.015 & 0.155 \\
ost & 400 & 0.190 & 0.393 & 0 & 1 \\
arbeitslosenquote & 400 & 0.052 & 0.022 & 0.019 & 0.148 \\
gdp & 400 & 40,329.500 & 16,743.150 & 17,553 & 158,749 \\
age & 400 & 45.277 & 2.008 & 40.700 & 51.000 \\
pop & 400 & 536.540 & 708.669 & 35.300 & 4,788.200 \\
\hline \\[-1.8ex]
\end{tabular}
\end{table}
```
Log Filelast few lines of the log file created in the process
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
That's likely because you're using a table floating environment |
Beta Was this translation helpful? Give feedback.
Unfortunately there's no great workaround just right now (I hope to to do it in the next few days). If you can get your code to not emit
\begin{table}
(ie, to start at the\begin{tabular}...
part, then you can wrap that in a div, like so: