2

我有一个表格制作程序,可以为我创建表格。然而,一个问题是它写得不是很好。

例如,我希望它制作一个如下所示的表格:

\begin{tabular}{|l|lll|l|}
\cline{1-1} \cline{5-5}
id & x                      & y                      & y & sum \\ \cline{1-1} \cline{5-5} 
a  & 1                      & 2                      & 3 & 6   \\ \cline{1-1} \cline{5-5} 
b  & 1                      & 2                      & . & 3   \\ \hline
c  & \multicolumn{1}{l|}{.} & \multicolumn{1}{l|}{.} & . & .   \\ \hline
\end{tabular}

但是,有时它会在end{tabular}命令末尾添加反斜杠,即end{tabular}\\. 这会在某些环境中引发错误,例如threeparttablecenter

我已经在我自己的机器上编辑了这个程序的源代码,并通过电子邮件发送了一个没有回应的维护者。我有一个即将到来的项目,我需要在多台计算机上与多个同事共享此代码,我不能让每个人都找到更改包代码的确切命令。一般来说,这甚至还没有开始考虑具有可再现性的错误。

我意识到解决这个问题的好方法是让 Latex 将命令读取\end{tabular}\\end{tabular}. 但是当我尝试定义自己的命令时,我无法让语法正常工作。有人可以帮我创建这个定义吗?我不明白为什么\newcommand{\end{tabular}\\}{\end{tabular}}不起作用。

编辑:

我添加了一个 MWE。以下代码将无法使用 ShareLatex 进行编译。end{tabular}\\说“ ”后,空白行会弹出一个错误There is no line to end here。以(没有反斜杠)结尾的第二段代码end{tabular}编译得很好。

\documentclass[12pt]{article}
\usepackage[a4paper, margin = .5in]{geometry}
\usepackage{pdflscape}
\usepackage{threeparttable}
\begin{document} 




\begin{table}
\caption{My test table}
\begin{center}
\begin{threeparttable}
\small
\begin{tabular}{lll}
a    & b    & c    \\
2    & 3    & 4    \\
this & that & here
\end{tabular}\\

\begin{tablenotes}
\item 
\end{tablenotes}
\end{threeparttable}
\end{center}
\end{table}

\end{document} 

这是第二个代码块,即运行的代码块。

\documentclass[12pt]{article}
\usepackage[a4paper, margin = .5in]{geometry}
\usepackage{pdflscape}
\usepackage{threeparttable}
\begin{document} 




\begin{table}
\caption{My test table}
\begin{center}
\begin{threeparttable}
\small
\begin{tabular}{lll}
a    & b    & c    \\
2    & 3    & 4    \\
this & that & here
\end{tabular}

\begin{tablenotes}
\item 
\end{tablenotes}
\end{threeparttable}
\end{center}
\end{table}

\end{document}
4

2 回答 2

2

你不能通过重新定义来摆脱这个错误\tabular,其中\begin{tabular}and\end{tabular}只是一个扩展。那是因为错误\\只是偶尔发生。

您也不应该尝试通过重新定义来解决这个问题\\,因为这样的定义必须深入到 TeX 内部。

我认为你最好的选择是

  • 找人修复表格生成器中的这个错误并正式发布,
  • 为最新版本创建一个非官方补丁并将其分发给您的团队,或者
  • 尝试找到该错误的解决方法,例如在编译之前优化包含该表的源文件

您还可以使用一个小脚本对输出进行后处理,该脚本会删除\\表格后的任何尾随。

于 2017-12-16T05:56:09.790 回答
0

您可以使用 LuaLaTeX 并 (a) 设置一个函数,\end{tabular}\\将文本中的所有实例更改为\end{tabular}“即时”,并 (b) 将此函数分配给所谓的process_input_buffer回调,该回调在处理,在 (La)TeX 进行任何常规工作之前。

在此处输入图像描述

% !TEX TS-program = lualatex
\documentclass{article}

\usepackage{threeparttable}

\usepackage{luacode}
\begin{luacode}
function removetabularbs ( line )
    return string.gsub ( line, "\\end{tabular}\\\\", "\\end{tabular}" )
end
luatexbase.add_to_callback ( "process_input_buffer", removetabularbs, "removetabularbs" )
\end{luacode}

\begin{document} 

\begin{threeparttable}
  \begin{tabular}{ l l l }
    a    & b    & c    \\
    2    & 3    & 4    \\
    this & that & here
  \end{tabular}\\
  \begin{tablenotes}
    \item Something
  \end{tablenotes}
\end{threeparttable}

\end{document}

这样,您仍然可以处理源代码,而无需更改代码。

于 2018-01-02T22:06:23.760 回答