将小数分离器设置在乳胶发票包中
该图显示为12500.00-我希望它显示为12,500.00。有什么想法吗?我还希望£签名在总专栏中显示为12,500.00英镑
\documentclass{letter}
\usepackage{graphicx}
\usepackage{invoice}
\renewcommand{\$}{\pounds}
\date{\today}
\begin{document}
\begin{letter}{ Banana}
\opening{\underline Sent }
\begin{invoice}{Sterling}{0}
\caption{Baby Limited}
\ProjectTitle{77 }%
\Fee{Full Quarter; 25 June - 29 September 2022} { 625} {20}
\end{invoice}
\end{letter}
\end{document}
The figure shows as 12500.00 - I want it to show as 12,500.00. Any ideas? I also want the £ sign to show before in total column as £12,500.00
\documentclass{letter}
\usepackage{graphicx}
\usepackage{invoice}
\renewcommand{\$}{\pounds}
\date{\today}
\begin{document}
\begin{letter}{ Banana}
\opening{\underline Sent }
\begin{invoice}{Sterling}{0}
\caption{Baby Limited}
\ProjectTitle{77 }%
\Fee{Full Quarter; 25 June - 29 September 2022} { 625} {20}
\end{invoice}
\end{letter}
\end{document}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
发票软件包内部使用
siunitx
软件包。这意味着您可以指定这样的组分隔符:The invoice package internally used the
siunitx
package. This means you can specify a group separator like this:l建议使用
逗号
作为软件包选项:对我有用。
Chapter 8.2 of the user manual suggests using
comma
as a package option:That worked for me.