How to place xtable object to the left side of page
问题 Question: How to place xtable object to the left side of page or how to disable centering globally. I'm struggling to figure out how to place xtable object on the left side. I have got a *.Rmd file and all this goes to the relevant r chunk. require(xtable) df <- data.frame(x=seq(1,10,1),y=rnorm(10)) Xtab <- xtable(df, digits=0, caption="\\textbf{MINIMAL/IDEAL}", floating=FALSE, latex.environments = c("left")) print(Xtab, size = "small", include.colnames=FALSE) I have included the following