Printable View
How do you create a data table with x and y values in Latex? Thanks in advance (Bow)
Quote: Originally Posted by integral How do you create a data table with x and y values in Latex? Thanks in advance (Bow) Simple math mode table: produced with: \begin{array}{|c||c|c|}\hline \text{x value}&\text{y value}&\text{z value}\\ \hline\hline 1 &2.1&3.123\\ \hline 1.2& 1&3 \\ \hline \end{array} For more sophisticated approaches see here and here CB