包裹numerica-tables
帮助创建由数学函数值组成的多列表,该包将值按行排列,就像这个简单的例子一样
\documentclass{article}
\usepackage{numerica}
\usepackage{numerica-tables}
\begin{document}
\tabulate[rvar=x,rstep=0.2,rstop=1]
{ \sin x }[x=0]
\end{document}
我查看了包手册,找不到任何按列排列值的表格示例,有什么帮助可以帮助使用此包创建像图像中的函数值表吗?
答案1
这是一个合理的要求,目前该numerica-tables
软件包还不能轻易满足,但可以通过一种迂回的方式得到您想要的结果:
\constants{ x=0 }
\tabulate[rdata={\sin x},rverb=1,rhead=x,
cvar=y,cstep=0.2,cstop=1,chround=1]
{ \sin y }[y=0.2]