Text bleeding out of page in knitr using latex -
i using following code snippet write text data frame table.
temp<-c("a white paper document describes given problem , proposes specific solution problem.", "originally used describe government policy, white papers common today in corporate settings.", "a typical white paper might list ways meet client's marketing needs, suggest use of product technical process, or identify ways streamline internal communication.") mytable<-as.data.frame(temp) mytable<-print.xtable(xtable(textdata,caption="some text data"),caption.placement="top",print.results="f", tabular.environment="tabularx", width="\\textwidth")
the table border limited page, text still bleeds out. how text come within table limits?
Comments
Post a Comment