I would like to italicize all of the names in the second column of a table, but presently the only way I have found to do this is to use \textit{} in each cell, i.e.:
\begin{table}
\begin{tabular}{lll}
PFT & Scientific Name & Common Name\\
PFT1 & & \\
& \textit{Elymus repens} & quackgrass\\
& \textit{Koeleria macrantha} & prairie Junegrass\\
& \textit{Elymus canadensis} & Canada wildrye\\
%....
\end{tabular}
\label{tab:foo}
\caption{test caption}
Is there an easier / more elegant way to do this?