Here is a minimal example.
library(huxtable)
model1 <- lm(mpg ~ cyl + disp, data = mtcars)
huxreg1<-huxreg("This is a tool long title \n for one row"= model1)
print_latex(huxreg1)
When looking at the html output, the line break works. However not when exported to Latex.
Any simple Solutions for this behaviour?
Thank you very much in advance.
Edit:
This line in the output contains the column name
you can replace the
\multicolumn{1}{c...
with\multicolumn{1}{p{4cm}...
which causes the column with the title to be 4cm wide (you can replace this by any other length. The fields with the variable names can be edited in the same fashion.Alternatively you can use the one of the answers presented at this related question.