此来源:
\starttext
\startlinenumbering
\starttyping
int x;
int y;
\stoptyping
\stoplinenumbering
\stoptext
渲染如下:
1 int x;
2 int y;
我怎样才能给空行编号?
答案1
不确定为什么linenumbering
并且typing
不能很好地协同工作,但如果您只是希望对显示样式的逐字进行编号,您可以设置环境typing
来自己执行此操作:
\setuptyping[numbering=line]
\starttext
\starttyping
int x;
int y;
\stoptyping
\stoptext
产生以下内容。
1 int x;
2
3 int y;