将列添加到发票2

将列添加到发票2

我有一张这样的发票:

\documentclass[a4paper,11pt]{article}
\usepackage{invoice2}

\begin{document}
\begin{invoice}
\invoiceitem{5}{Googling}{23}
\invoiceitem{1}{Reclining}{23}
\end{invoice}
\end{document}

我想在其中添加一个日期列。这个invoice2包可以实现吗?有没有其他包在列方面更可定制,并提供项目汇总功能?

答案1

这样的解决方法可以接受吗?

\documentclass[a4paper,11pt]{article}
\usepackage{invoice2}
\usepackage{graphicx}
\begin{document}
    \begin{tabular}{c@{}c}
        \begin{tabular}{c}
            \toprule
            \textbf{\scriptsize Date}\\
            \midrule
            25.09.2017\\
            26.09.2017\\
            \midrule
            \\
            \bottomrule
        \end{tabular} &
        \parbox{210pt}{%
            \begin{invoice}
                \invoiceitem{5}{Googling}{23}
                \invoiceitem{1}{Reclining}{23}
            \end{invoice}
        }
    \end{tabular}
\end{document}

在此处输入图片描述

相关内容