我只是想在 LuaLaTex 中创建一个简单的表格来总结一个实验。我需要使用它 (LuaLaTex) 以 Times New Roman 字体排版我的文档。
我正在使用搭载 OSX El Capitan 的 Macbook Pro。我已为我的操作系统安装了最新版本的 LaTex。
任何帮助都将不胜感激!
答案1
您没有提供太多有关要创建的表格的详细信息。在下面的示例中,table
设置了一个环境来容纳一个\caption
(以及一个\label
,以便表格可以在文档的其他地方交叉引用)以及一个两列tabular
环境。宏\toprule
、\midrule
和\bottomrule
—— 均由该包提供booktabs
—— 用于绘制间距合适的水平线。
有关如何在 LaTeX 中创建表格的更多入门级信息,我建议您阅读LaTeX2e 的简短介绍。 这booktabs 软件包用户指南提供了有关如何创建专业外观表格的出色信息。
% !TEX TS-program = lualatex
\documentclass{article}
\usepackage{fontspec}
\setmainfont{Times Roman} % Times Roman text font
\usepackage{booktabs,caption}
\begin{document}
\begin{table}
\caption{A two-column table}
\label{tab:twocol}
\centering
\begin{tabular}{cc}
\toprule
Head1 & Head2 \\
\midrule
a & b \\
c & d \\
e & f \\
g & h \\
i & j \\
k & l \\
m & n \\
o & p \\
q & r \\
s & t \\
\bottomrule
\end{tabular}
\end{table}
\end{document}