Quantcast
Channel: Codemiles.com Programming Forums - Forum » Latex Tutorials
Viewing all articles
Browse latest Browse all 3

Latex Tutorials | Using table in latex

$
0
0
Add tables using latex is done using table tags, is very easy , following is a simple example for adding a table:


Code: 
\begin{table}
\centering

\begin{tabular}{lcccc}
\hline
\textbf{Type} & \textbf{Prop1} & \textbf{Prop2} & \textbf{Prop3} \\
\hline
\textbf{class1} & X &  Y & Z \\
\textbf{class2} & X &  Y & Z    \\
\textbf{class3} & X &  Y &  Z    \\
\hline
\end{tabular}
\caption{Add your table caption here }
\label{tab:LabelRef}
\end{table}

       

...

Statistics : Posted by msi_333 • on Tue Jul 31, 2012 12:01 pm • Replies 0 • Views 4124

Viewing all articles
Browse latest Browse all 3

Trending Articles