我正在使用 pdflatex,遇到了一些问题:我的环境中的垂直线tabular
都散开了。
\documentclass{article}
\begin{document}
\begin{tabular}{| l | c | l |}
\hline
Abbreviation & Description & Relation\\
2 & einstein & $E = m*c^2$
\\\hline\\
3 & pythagoras & $c^2=\sqrt{a^2+b^2}$\\
\hline
\end{tabular}
\end{document}
这可能与细胞内的公式有关。任何帮助都将不胜感激。
答案1
您需要两个“与”符号来在空行中创建列。
\documentclass{article}
\begin{document}
\begin{table}
\centering
\begin{tabular}{| l | c | l |}
\hline
Abbreviation & Description & Relation\\
2 & einstein & $E = m*c^2$ \\\hline && \\
3 & pythagoras & $c^2=\sqrt{a^2+b^2}$\\
\hline
\end{tabular}
\end{table}
\end{document}
答案2
我提供了一个快速修复方法。请参阅下面的 MWE:
\documentclass{article}
\usepackage{booktabs}
\begin{document}
{%
\renewcommand{\arraystretch}{1.3}
\begin{tabular}{| l | c | l |}
\hline
Abbreviation & Description & Relation\\\hline
2 & einstein & $E = m*c^2$
\\\hline
3 & pythagoras & $c^2=\sqrt{a^2+b^2}$\\
\hline
\end{tabular}
}
\vspace*{1cm}
{%
\renewcommand{\arraystretch}{1.3}
\begin{tabular}{ l c l }
\toprule
Abbreviation & Description & Relation\\
\midrule
2 & einstein & $E = m*c^2$
\\
3 & pythagoras & $c^2=\sqrt{a^2+b^2}$\\
\bottomrule
\end{tabular}
}
\end{document}