\documentclass{article}
\usepackage[ngerman]{babel}
\usepackage[version=4]{mhchem}
\usepackage{booktabs}
\usepackage{tabularx}
\newcommand*{\texttablehead}[1]{\textbf{#1}}
\newcommand*{\tablehead}[1]{\texttablehead{#1}}
\renewcommand{\arraystretch}{1.2}
\begin{document}
\section*{Reaktionspfeile mit dem Paket \texttt{mhchem}}
Ein nach rechts verschobenes chemisches Gleichgewicht einer chemischen Reaktion (\ce{A <=>> B})
wird mit dem Befehl \verb+\ce{A <=>> B}+ dargestellt.
\begin{table}[ht]
\sffamily
\caption{Befehl innerhalb \texttt{tabular}-Umgebung.}
\label{tab:tab_ReaktionsPfeil}
\begin{tabular}[\textwidth]{p{55mm}p{32mm}p{25mm}@{}}
\toprule
\tablehead{Reaktionsrichtung} & \tablehead{Ausgabe} & \tablehead{Befehl} \\
\toprule
Gleichgewicht & \ce{A <=> B} & \verb+\ce{A <=> B}+ \\
Gleichgewicht nach rechts & \ce{A <=>> B} & \verb+\ce{A <=>> B}+ \\
Gleichgewicht nach links & \ce{A <<=> B} & \verb+\ce{A <<=> B}+ \\
\bottomrule
\end{tabular}
\end{table}
\begin{table}[h]
\sffamily
\caption{Befehl innerhalb \texttt{tabularx}-Umgebung.}
\label{tab:tab_Reaktionspfeil}
\begin{tabularx}{\textwidth}{@{}p{55mm}p{32mm}p{25mm}@{}}
\toprule
\textbf{Reaktionsrichtung} & \textbf{Ausgabe} & \textbf{Befehl} \\
\toprule
Gleichgewicht & \ce{A <=> B} & \texttt{\detokenize{\ce{A <=> B}}} \\
Gleichgewicht nach rechts & \ce{A <=>> B} & \texttt{\string\ce\{A <=>> B\}} \\
Gleichgewicht nach links & \ce{A <<=> B} & \texttt{\string\ce\detokenize{{A <<=> B}}} \\
Siehe Abschnitt 3 "Differences between tabularx and tabular*" in der tabularx Dokumentation.