\documentclass{article}
\usepackage{amsmath,array,booktabs,multirow}
\begin{document}
\begin{table}[!htb]
\centering
%\begin{tabular}{ l l }
\begin{tabular}{ >{\verb=}l<{=} l }
% Chap2.nb & notebook \\
PI_all_data_BBB_M15X.pdf & Results for \verb=BBB= model with profile plots \\
PI_all_data_BetaBin_M15X.pdf & Results for \verb=BetaBin= model with profile plots \\
PI_all_data_BinLNB_M15X.pdf & Results for \verb=BinLNB= model with profile plots \\
PI_all_data_Bin_M15X.pdf & Results for \verb=Bin= model with profile plots \\
PI_all_data_LogGamma_M15X.pdf& Results for \verb=LogGamma= model with profile plots \\
PI_all_data_TwoBin_M15X.pdf & Results for \verb=TwoBin= model with profile plots \\
\end{tabular}
\end{table}
\end{document}
I want the first column to be verbatim for every row. Currerntly, the result is very weird, it seems that it goes into the 2nd column as well.
How would I change it?
Thanks


=12do? – Chen Stats Yu Oct 19 '14 at 20:16\catcode`_=12is the secret trick that makes the underscore printable, don't tell anybody.;-)It will do it only for the cells in that column. – egreg Oct 19 '14 at 20:17