Closed flipz357 closed 1 year ago
Numerals consisting digits and optionally a decimal point are recognized by the AMR Editor, which is convenient for entering quantities and values. But note that negative numbers, for example, need to be quoted. Consider the dictionary example:
(have-degree-91 :li 7 :li "-1" :ARG1 algorithm :ARG2 fast :ARG3 more)
So I would say in a normalized form they should all be quoted, i.e.
(have-degree-91 :li "7" :li "-1" :ARG1 algorithm :ARG2 fast :ARG3 more)
but in any case I don't know that Penman readers treat numeric constants any differently from string constants.
Thanks a lot! I think quoting negative numbers also makes sense as a means of escaping the special "-" sign (e.g., in run-01, where - indicates "now comes the sense").
but in any case I don't know that Penman readers treat numeric constants any differently from string constants.
Yes, I think it treats them the same. I just wondered, whether in AMR, the quotes carry some "meaning", in the sense that "" is like a predicate P(value) := "value" and I just don't know what P really means. But I suppose that's not really the case, or is it?
Closing this since I don't know myself anymore what that issue was about
I am sorry if this has been discussed before, but I could not find something.
Background: I notice some little inconsistencies w.r.t. quotation mark usage. For instance, in LDC17, once "Route 288, the circumferential highway...." is projected onto
i.e., op2 288.
And in a slightly different context ("288, for those of us that actually use it..."):
i.e., op1 "288".
Here are my questions/thoughts: