Latex Income Statement

Overview


Sample Income Statement


Latex Table





\begin{center}
\begin{tabular}{ c c }
 item1 & item2  \\ 
 item3 & item4  \\   
\end{tabular}
\end{center}
					


NOte that the { c c } indicates the alignment of the text in each column. c indicates center. For tables where you wish to specify the column widht, you need to use p and a width (see below)


\begin{center}
\begin{tabular}{ p{10cm}p{5cm}  }
 Revenue & 100  \\ 
 Costs of Goods Sold & 30  \\   
 \hline \\
 Gross Profit & 70 
\end{tabular}
\end{center}
					


Contents