I am a beginner in Latex, using it tentatively for industrial documents. I have reached a point where the anticipated benefits from using it in a Corporate environment appear to me very significant. I am trying to write a paper explaining this to my company. I have made a quick comparison in the table of the MWE below. However, (in order to demonstrate a unique capability of LaTex) I would like to illustrate the point by a bar chart, possibly generated on the fly from the raw data I would embed in the Latex source. I have been trying to use \pgfplotstableread and \pgfplotstabletypeset to generate the table instead of the tabular option, but I could not succeed, probably due to the white spaces of the text.
- Could someone suggest a way to generate such a table outside of a tabular environment? Some reformatting of the text contents of the table is possible if there is no other way.
- Is there a way to generate a bar chart illustrating the point of file size without manually entering the coordinates?
As a side request, could someone perhap suggest a presentation format that would provide the maximum evidence of the point illustrated?
\documentclass[11pt]{article} \usepackage{graphicx} \usepackage{siunitx} \usepackage{pgfplotstable} \sisetup{table-figures-decimal = 3} \sisetup{table-number-alignment=center-decimal-marker} \begin{document} \centering \begin{table} \begin{tabular}{|l|S|S|} File type&{Word 2003}&{\LaTeX} \\ \hline Native file size (Mo)& 1.07&.112\\ Compressed native file size (Mo)&.268 & 0.022\\ Final PDF file size (Mo) &.302& .272\\ \end{tabular} \caption{Comparison of file size Word 2003 vs \LaTeX} \end{table} \end{document}

filecontentspackage. And for the presentation you can always usebeamerpackage. – percusse Mar 29 '12 at 20:37