1

I'm learning RPG, well trying to anyway. And there's this practice chart on how printer spacing charts work. I'm having trouble understanding how these notations actually work. Can someone help explain this better?

Here's the chart for reference:

Data Chart

Here's what I understand:
A = 98100
B = 01254
C = 31,331
(and then I get confused with the 0's)
D = 00,01?
And now I'm totally lost.

Can anyone explain this to me?

4

1 回答 1

2

打印机间距图表上使用的符号纯粹是任意的。它是一张带有固定字符位置网格的纸,这对创建它的人来说意味着什么。我已经好几年没用了,我更喜欢在以 courier 字体打印的样本报告上写笔记。courier 字体的目的是为了得到一个固定宽度的字体来计数字符。不过,每个人的做法都不一样,而且这些代码不会直接转化为 RPG 中的编辑代码或编辑单词。对于数字,我总是写 a#或 a9来表示一个数字,并且我总是假设零抑制。如果我不想要零抑制,我会用 a0来表示一个数字。我怀疑在这种情况下,0表示对0. $-嵌入图案的标志可以表示浮动$-标志。,嵌入在 he 模式中将指示千位分隔符,而 a.将指示小数点的位置。DB可能表明CR使用 a 代替负号,但我希望 aCR而不是 a DB。我不知道通过编辑字或编辑代码打印正数符号的任何方法。可能可以使用自定义编辑代码,但我不知道。因此,鉴于此,图表可能应该是:

A = 98100
B = 01254
C = 31,331
D =     10  Zero suppression, thousands separators not printed if not needed
E =  1,000
F =         Zero suppressed, or maybe just displays 0
G = $   872  Fixed currency symbol with zero suppression
H =    $298  Floating Currency symbol implies zero suppression
I =      $0
J =  -7,254  Floating negative sign
K =    -451
L =    923CR
M = 91,486  No sign in the pattern
N =         See F
于 2014-09-05T02:29:39.657 回答