记录一些跟Latex使用相关的东西
Excel表格导入Latex
配置Excel
-
下载Excel2Latex
链接:CTAN Comprehensive TEX Archive Network
-
配置Excel2Latex
打开Excel后,进入“文件”→“选项”→“信任中心”→“信任中心设置”→“宏设置”,查看宏设置中是否选择了“启用了所有宏”,如下图所示:
而后进入“加载项”→“管理”,选择“Excel加载项”,点击“转到”→“浏览”,把下载好的Excel2Latex导入:
-
检验是否配置好
在Excel的“加载项”里查看是否有这两个图标:
若有,则表示配置好了。
使用实例
- 选中表格内容后点击:Excel2Latex: Convert Table to LateX
- 若勾选Booktabs package,则Latex里需要添加代码:
\usepackage{booktabs}
,若不勾选,则需要添加代码\usepackage{bigstrut,multirow,rotating}
- 结果
完整代码
\documentclass[UTF8]{ctexart}
\usepackage{booktabs}
\begin{document}
% Table generated by Excel2LaTeX from sheet 'test'
\begin{table}[htbp]
\centering
\caption{test}
\begin{tabular}{rrr}
1 & 1 & 1 \\
2 & 2 & 2 \\
3 & 3 & 3 \\
4 & 4 & 4 \\
5 & 5 & 5 \\
6 & 6 & 6 \\
7 & 7 & 7 \\
8 & 8 & 8 \\
9 & 9 & 9 \\
\end{tabular}%
\label{tab:addlabel}%
\end{table}%
\end{document}