列指定子を使用してテーブル内に逐語的に挿入する

列指定子を使用してテーブル内に逐語的に挿入する

2 つの列を持つテーブルを描画します。最初の列にはいくつかのLaTeXコマンドが含まれ、2 番目の列にはプレビューが含まれます。各行にコマンドを挿入する代わりに\verb++、列指定子を活用します<>。ただし、これによりコンパイル エラーが発生します。次の MWE を検討してください。

\documentclass{article}
\usepackage{booktabs}

\begin{document}
 \begin{table}
  \centering
  \begin{tabular}{ll}
  %\begin{tabular}{>{\verb+}l<{+}l} <--- what I want to use
   \verb+\LaTeX+    & \LaTeX
  \end{tabular}
 \end{table}
\end{document}

答え1

https://tex.stackexchange.com/a/207977/197451

collectcellとdetokeniseを使った最初の方法

ここに画像の説明を入力してください

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{array,collcell}
\newcommand{\myverb}[1]{\ttfamily\detokenize{#1}}

\begin{document}

\begin{tabular}{ >{\collectcell\myverb}l<{\endcollectcell} l }
  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{document}

shortvrb パッケージを使用した 2 番目の方法

ここに画像の説明を入力してください

\documentclass{article}
\usepackage{shortvrb}

\MakeShortVerb{\|}

\begin{document}

\begin{tabular}{l l}
|some % text here| & some text here \\
|some $ text here| & some text here \\
|some { text here| & some text here \\
\end{tabular}

\end{document}

https://tex.stackexchange.com/a/297214/197451

関連情報