We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Cases like A hasAcronym B can be encoded as
A hasAcronym B
<datafield tag="150" ind1=" " ind2=" "> <subfield code="a">Near earth objects</subfield> </datafield> <datafield tag="450" ind1=" " ind2=" "> <subfield code="a">NEOS</subfield> <subfield code="g">d</subfield> </datafield>
but what if the acronym is the heading? There's no $g code for that case, so currently we just have to use a normal see reference:
$g
<datafield tag="150" ind1=" " ind2=" "> <subfield code="a">NEOS</subfield> </datafield> <datafield tag="450" ind1=" " ind2=" "> <subfield code="a">Near earth objects</subfield> </datafield>
The text was updated successfully, but these errors were encountered:
Fix MARC21 export to work with the new data model
ad297be
Acronym handling is not perfect, see #8
No branches or pull requests
Cases like
A hasAcronym B
can be encoded asbut what if the acronym is the heading? There's no
$g
code for that case, so currently we just have to use a normal see reference:The text was updated successfully, but these errors were encountered: