尝试编译以下文件会出现以下错误:
! Misplaced \noalign.
\pagebreak ->\noalign
{\ifnum `}=0\fi \@testopt {\LT@no@pgbk -}4
l.47 \end{letter}
我不明白为什么。对 csv 文件进行微小更改xx.csv
可以消除此错误。例如,更改mm
为m
。或者,更改mm
为11
。
2014.02.26,26,2014.11.12.tm
或者,在字符串末尾添加逗号
\PrintDocTableParekh[2014.02.26,26,2014.11.12.tm]{newbDB}{Documents}
因此将其更改为2014.02.26,26,2014.11.12.tm,
也会使错误消失。
\documentclass[12pt]{letter}
\usepackage{longtable}
\usepackage[verbose]{datatool}
\usepackage{array}
\usepackage{url}
\newcounter{tabenum}\setcounter{tabenum}{0}
\newcommand{\colhead}[1]{\multicolumn{1}{>{\bfseries}l}{#1}}
\newcommand{\nextnuml}[1]{\refstepcounter{tabenum}\thetabenum.\label{#1}}
\newcommand*{\checkmissing}[1]{\DTLifnull{#1}{}{#1}}
\signature{Someone}
\newcommand{\PrintDocTableParekh}[3][]{%
% #1 = list of rowIDs
% #2 = database to search
% #3 =caption
\begin{longtable}{r l p{1.5in} c c p{2.5in}}
\caption{#3}\\
& \colhead{Date} & \colhead{Filename} & \colhead{From} & \colhead{To} & \colhead{Subject}\\\hline\endhead
\DTLforeach
[\ifblank{#1}{\boolean{true}}{\DTLisSubString{#1}{\RowID}}]
{#2}{%
\RowID=RowID,%
\Date=Date,%
\Filename=Filename,%
\From=From,%
\To=To,%
\Subject=Subject%
}{%
\nextnuml{\RowID} & \Date & {\bfseries\expandafter\url\expandafter{\Filename} } & \checkmissing{\From} & \checkmissing{\To} & \Subject \\
}%
\end{longtable}
}%
\begin{filecontents*}{xx.csv}
2014.02.26, 26 Feb 2014 , something.txt , , , ,subject
2014.11.12.tm, 12 Nov 2014 , something.txt , XXX , YY , , subject
mm, date, ,,,, subject
\end{filecontents*}
\begin{document}
\begin{letter}{}
\opening{xx,}
\closing{Yours Sincerely,}
\DTLloaddb[noheader,keys={RowID,Date,Filename,From,To,Email,Subject}]{newbDB}{xx.csv}
\PrintDocTableParekh[2014.02.26,26,2014.11.12.tm]{newbDB}{Documents}
\end{letter}
\end{document}
答案1
\DTLifSubString
在 中使用 when似乎存在问题\DTLforeach
。(这包括在条件参数中使用。)和 的\DTLisSubString
使用会引起混淆,因此这里有一个精简版本:letter
longtable
\documentclass{article}
\usepackage{datatool}
\begin{filecontents*}{xx.csv}
2014.02.26
2014.11.12.tm
mm
\end{filecontents*}
\newcommand*{\ifcontainsrowid}[2]{%
\ifblank{#1}{#2}%
{%
\DTLifSubString{#1}{\RowID}{#2}{}%
}%
}
\begin{document}
\DTLloaddb[noheader,keys={RowID}]{newbDB}{xx.csv}
\DTLforeach*{newbDB}{\RowID=RowID}%
{%
\ifcontainsrowid{2014.02.26,26,2014.11.12.tm}%
{%
\RowID
}
}%
\end{document}
这会导致不同的错误消息:
Runaway argument?
\expandafter \dtl@ifsingle \expandafter {\dtl@first }{\expandafter \@dtl@testif
substring \ETC.
! Paragraph ended before \dtl@getfirst was complete.
<to be read again>
\par
但它源于同一个问题。我还没有弄清楚是什么原因造成的,但我已经离开了一个星期,需要赶上进度,所以我还没有太多机会去调查。您可以使用不同的命令来解决这个问题,例如\IfSubStr
从xstring
包中使用:
\documentclass{article}
\usepackage{datatool}
\usepackage{xstring}
\begin{filecontents*}{xx.csv}
2014.02.26
2014.11.12.tm
mm
\end{filecontents*}
\newcommand*{\ifcontainsrowid}[2]{%
\ifblank{#1}{#2}%
{%
%\DTLifSubString{#1}{\RowID}{#2}{}%
\IfSubStr{#1}{\RowID}{#2}{}%
}%
}
\begin{document}
\DTLloaddb[noheader,keys={RowID}]{newbDB}{xx.csv}
\DTLforeach*{newbDB}{\RowID=RowID}%
{%
\ifcontainsrowid{2014.02.26,26,2014.11.12.tm}%
{%
\RowID
}
}%
\end{document}
更新:此错误已在 v2.23 中修复。