-
-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question about sort_OmittedBibRefMixedNumericStyle #28
Comments
I agree that looks wrong, and that the 2 div shouldn't be there (right?). Only thing I can think of that would explain is if we're missing some spec language that would allow unprinted references? Can @adam3smith or @fbennett confirm? |
I think John's question isn't why the I agree that logically this seems wrong. That said, I don't think the behavior for citations without a printed form is currently defined in the specs (right?) and I'm guessing Frank added the citation number for easier identification of the problematic item. I think to proceed we'd first want to specify the no-printed-form behavior (which exists to avoid terrible messes, such as items with invisible citations, bibliographies skipping citations numbers, etc.) and then decide if there should or shouldn't be a special rule for including citation numbers either way or not. |
So we need language in the spec, ideally for 1.1, that addresses two cases:
... and then to update this and any related test(s) accordingly? Right? |
Related issue: citation-style-language/documentation#74 I think we would need to handle three cases:
|
I guess the idea must be that in a numeric style, it would be confusing to omit an item altogether, since then the numbers would not be consecutive (EDIT: and there might be citations that refer to this number). So this is handled by a special case, even though it goes against the strict letter of the spec. |
But in my opinion a better solution would just be to write the style differently: <group delimiter=". ">
<text variable="citation-number"/>
<choose>
<if match="none" type="personal_communication">
<group delimiter=", ">
<text macro="author" />
<text variable="title"/>
</group>
</if>
</choose>
</group> |
@jgm See my comments here: citation-style-language/documentation#92 |
I agree. Issues about processing noref citations aside, this test seems to be written wrong. |
Something I don't understand here.
The layout is
I would assume that this means that items with type
personal_communication
produce no output. But oddly, the expected RESULT includes the citation number:See the
2.
in the second entry. Why?(Edit: the second entry has type
personal_communication
.)The text was updated successfully, but these errors were encountered: