【发布时间】:2014-09-09 14:59:43
【问题描述】:
假设我有文件table.tex
\begin{tabular}{|c|c|}
\hline
1 & 2 \\ \hline
3 & 4 \\ \hline
\end{tabular}
这基本上是一个带有一些数字的 2 x 2 表格。
我可以像这样编译它,并在表格的任何一侧看到边框
\documentclass{article}
\begin{document}
\input{table.tex}
\end{document}
现在我有以下 gnuplot 脚本(用 4.6.2 和 4.6.5 测试)
set terminal epslatex standalone solid
set output "out.tex"
set label '\input{table.tex}' at 1,1
plot x
然后我得到以下信息
也就是说,我的边界消失了。我该如何解决?
【问题讨论】:
-
接近投票者:这是
gnuplot问题,而不是latex问题。因此,在我看来,这里比在 tex.SE 上更合适。