-
Notifications
You must be signed in to change notification settings - Fork 292
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
Handling retractions #987
Handling retractions #987
Conversation
Me gusta. Will we still serve BibTeX (and MODS, etc.) for retracted papers? |
Hmm, good thought. The ACM policy doesn't have anything to say about this directly. At the very least, perhaps we should add "[RETRACTED]" to the title. But since the purpose is to effectively remove the paper from the body of scientific literature, it seems fitting to me to remove citation formats, too. |
My thinking was similar. The one argument against is if someone wants to cite X article as retracted, e.g. in some meta-analysis of retracted papers. |
In that situation, they'd just have to refer to it by title, or URL. They'd need a custom bib format anyway, since it is no longer part of its original proceedings. |
Looks good, the only thing that is bothering me a bit is that the retraction notice is linked as "PDF (v2)" and not as "Retraction notice". The second text is a bit to long OTOH, so I am okay with "PDF (v2)". Maybe also change "can be found [here]" to "can be found [in this retraction notice]" because otherwise people could assume that "here" just links to a page about retractions in general. |
I feel that this whole issue is something that should be run by the ACL Exec. |
This is a good idea. I will write up a policy and incorporate our plans here for Exec approval. @akoehn, on the technical side, it is tricky to change the name of just the last revision in the template. An alternative:
|
Is it desired that the retracted paper itself is still accessible? In your approach it would be (as "v1"), no? That is not currently the case with existing (yet unlinked) retractions on the server. |
Under the ACM policy, which I think makes sense, the original retracted paper remains accessible. I think handling the back-catalog of (suspected or confirmed) retractions is a separate issue. I don't know that we'd go through the effort of bringing them into line with the new policy we adopt. |
This has come up again with EMNLP. I am making this one of my agenda items for the next ACL meeting, but in the meantime, this needs to be dealt with, and I don't think we're doing any permanent harm while we wait for a formal policy. Everything here can be altered. After consulting the arXiv withdrawal policy, I propose to do the following:
|
Build successful. You can preview it here: https://preview.aclanthology.org/retractions |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This LGTM now, but I noticed that on the preview branch, only the 2020.acl-main.563v2.pdf
carried the watermark, while 2020.acl-main.563.pdf
(without versioning) was still identical to the v1. Not sure if this is something you may need to handle explicitly in your retraction script @mjpost.
Direct link to retracted paper on the branch preview for convenience. |
A bit late, but this looks very good indeed. @mjpost as you probably want to update the retraction script anyway: currently it assumes that there is only one version and will create a "v2" even when a v2 is already there. This will probably be a very rare occurrence, but this also means the person using that script will probably not have this peculiarity in mind. |
Thanks! I'm on vacation but will update the script when I return and then merge this. |
This has been approved by the ACL Exec. I plan to update the documentation today and would then like to merge in short order, if anyone has time to review. |
* add_revision is now better factored, and is used by retract_paper * also added some utility scripts for getting the XML file or PDF directory for an Anthology ID
@akoehn my latest push addresses your concerns (the revision piece is now automatically handled). |
Following up on the discussion here, this PR implements retractions. It:
<retracted/>
tag to mark the paper statusComments welcome!