Skip to content
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

Feature request: revise_resubmit in pubstate #1363

Open
sjkiss opened this issue Jun 28, 2024 · 1 comment
Open

Feature request: revise_resubmit in pubstate #1363

sjkiss opened this issue Jun 28, 2024 · 1 comment
Labels
enhancement localisation concerns lbx files or localisation in general

Comments

@sjkiss
Copy link

sjkiss commented Jun 28, 2024

The pubstate field currently does not have a "Revise and Resubmit" option, but this is a common term and status in scientific publishing. My current application for full professor asks for this distinction. An added option "Revise and resubmit" would be useful.

@moewew
Copy link
Collaborator

moewew commented Jul 8, 2024

By default the pubstate field prints the named bibstring (if it exists) or prints the field contents directly, so you could obtained revisedresubmit as follows

\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[backend=biber, style=numeric]{biblatex}

\NewBibliographyString{revise_resubmit}
\DefineBibliographyStrings{english}{
  revise_resubmit = {revise and resubmit},
}

\begin{filecontents}[overwrite]{\jobname.bib}
@article{elk,
  author    = {Anne Elk},
  title     = {A Theory on Brontosauruses},
  journal   = {Journal of Monthy},
  pubstate  = {revise_resubmit},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}

\begin{document}
Lorem \autocite{sigfridsson,elk}

\printbibliography
\end{document}

I don't want to include this bibstring as default, because I feel it does not refer to the state of a published work and core biblatex is generally about works you would put into a research bibliography. But specifically for CVs etc. biblatex-publist its a great package. It just recently got .lbx files, so maybe Jürgen is interested in adding bibstrings for review results.

@moewew moewew added enhancement localisation concerns lbx files or localisation in general labels Jul 8, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement localisation concerns lbx files or localisation in general
Projects
None yet
Development

No branches or pull requests

2 participants