为什么第二列中的“描述”在以下代码中是斜体?
\begin{table}%[h]
\caption{The logical notations of BAN-logic }
\label{tab:1}
\begin{tabular}{>{\centering}m{1.6cm}| >{\left} m{6cm}}\hline\noalign{\smallskip}
Notation & Description \\ \hline \hline
\hline
\noalign{\smallskip}\hline
\end{tabular}
\end{table}
答案1
也许我们可以用一些额外的软件包稍微改进一下您的表格,当然,没有什么特别的。您可以通过texdoc packagename
在命令行中输入来获得每个软件包的手册(可能)。
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{array}
\usepackage{booktabs, ragged2e}
\begin{document}
\begin{table}%[h]
\caption{The logical notations of BAN-logic }
\label{tab:1}
\begin{tabular}{>{\Centering}m{1.6cm} | >{\RaggedLeft} m{6cm}}\\\toprule
Notation & Description \\\midrule
Content 1 & Content 2\\\bottomrule
\end{tabular}
\end{table}
\end{document}
结果: