-
Notifications
You must be signed in to change notification settings - Fork 50
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
author+an:role doesnt't print chair #211
Comments
Which language are you using via |
Spanish. But the string is defined |
Can you put a MWE in here demonstrating the problem? |
|
Can you provide a full working file with all the latex and package options? |
I'll try. I'm working on overleaf, so I don't have manually loaded all the biblatex-apa files, just the ones I've modified. Besides, as far as I know I only made changes in legislation entrytype. But I'll pass you a compressed file, sure. |
We just need the smallest possible main tex file and bibliography to reproduce - the example in the ZIP relies several other packages and files which aren't present - we need to run the example and see the issue in the simplest document possible. |
I haven't had the time to look at the AFAICS the actual document language does not matter. The problems shows equally for \documentclass[american]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[backend=biber, style=apa]{biblatex}
\begin{filecontents}{\jobname.bib}
@inbook{Crisol2015,
author = {Crisol, Emilio and Amber, Diana
and Barrero, Beatriz and Higueras, María Lina
and Hinojosa, Eva F. and Morales, Amelia
and Olmo, Marta and Pedrosa, Beatriz
and Quirante, María Rosa and Romero, María Asunción},
author+an:role = {1=chair},
title = {Estrategias y métodos de enseñanza-aprendizaje},
editor = {Domingo, Jesús and Pérez, Miguel},
editortype = {chair},
address = {Madrid},
edition = {1},
publisher = {Ediciones Pirámide},
series = {Pedagogía y didáctica},
booktitle = {Aprendiendo a enseñar},
booksubtitle = {Manual Práctico de Didáctica},
year = {2015},
}
@inbook{Crisol2023,
author = {Crisol, Emilio and Amber, Diana
and Barrero, Beatriz and Higueras, María Lina
and Hinojosa, Eva F. and Morales, Amelia
and Olmo, Marta and Pedrosa, Beatriz
and Quirante, María Rosa and Romero, María Asunción},
author+an:role = {1=typechair},
title = {Estrategias y métodos de enseñanza-aprendizaje},
editor = {Domingo, Jesús and Pérez, Miguel},
editortype = {chair},
address = {Madrid},
edition = {2},
publisher = {Ediciones Pirámide},
series = {Pedagogía y didáctica},
booktitle = {Aprendiendo a enseñar},
booksubtitle = {Manual Práctico de Didáctica},
year = {2023},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}
\begin{document}
Lorem \autocite{sigfridsson,Crisol2015,Crisol2023}
\printbibliography
\end{document} I think the problem is that while the "chair" bibstring is called biblatex-apa/tex/latex/biblatex-apa/bbx/apa.bbx Lines 909 to 944 in 2262d29
biblatex-apa/tex/latex/biblatex-apa/lbx/american-apa.lbx Lines 7 to 8 in 2262d29
biblatex-apa/tex/latex/biblatex-apa/lbx/american-apa.lbx Lines 32 to 33 in 2262d29
biblatex-apa/bibtex/bib/biblatex-apa-test-references.bib Lines 1644 to 1650 in 2262d29
|
Fixed in VC - you just need the latest |
That change appears to have implications for usage of \documentclass[american]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[backend=biber, style=apa]{biblatex}
\begin{filecontents}{\jobname.bib}
@PRESENTATION{10.5:63,
AUTHOR = {De Boer, D. and LaFavour, T.},
EDITORA = {A. M. Schmidt and A. Kryvanos},
EDITORATYPE = {chair},
TITLE = {The Art and Significance of Successfully Identifying
Resilient Individuals},
SUBTITLE = {A Person-Focused Approach},
MAINTITLE = {Perspectives on Resilience: {Conceptualization},
Measurement, and Enhancement},
MAINTITLEADDON = {Symposium},
EVENTTITLE = {Western Psychological Association 98th Annual Convention},
VENUE = {Portland, OR, United States},
EVENTDATE = {2018-04-26/2018-04-29}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
Lorem \autocite{10.5:63}
\printbibliography
\end{document} no longer displays "(Chairs)". |
Should be fixed. |
TFM MAES.zip |
You can try with the relevant DEV |
I'm trying to make an inbook reference with several authors, in which the first one is a chair, but I can't print properly the role. When I put
author+an:role = {1=typechair},
the output is author1 (), author2... And if I put 1=chair it prints author1 (chair),... How could I fix that, besides putting "chair"?The text was updated successfully, but these errors were encountered: