moewew
moewew
Consider the following MWE ```latex \documentclass[british]{article} \usepackage[T1]{fontenc} \usepackage{babel} \usepackage{csquotes} \usepackage[backend=biber, style=ext-authoryear-comp]{biblatex} \DeclareInnerCiteDelims{parencite}{\bibopenparen}{\bibcloseparen} \DeclareOuterCiteDelims{parencite}{}{} \addbibresource{biblatex-examples.bib} \begin{document} Lorem \parencite{sigfridsson} ipsum \parencite{knuth:ct:a,knuth:ct:b} dolor \parencites{knuth:ct:a}{knuth:ct:b} Lorem \textcite{sigfridsson} ipsum \textcite{knuth:ct:a,knuth:ct:b} dolor \textcites{knuth:ct:a}{knuth:ct:b} \end{document} ``` >...
See https://golatex.de/viewtopic.php?p=115990#p115990. The `authoryear` styles define https://github.com/moewew/biblatex-ext/blob/9d79bafff65174186d3f99ad7282381f0b40bb3e/ext-authoryear.cbx#L26-L30 and use those formats https://github.com/moewew/biblatex-ext/blob/9d79bafff65174186d3f99ad7282381f0b40bb3e/ext-authoryear.cbx#L32-L38 Check that they are safe to redefine for users and document them if that is the case.
https://tex.stackexchange.com/q/481724/35864 made me aware of the following issue. Consider ```latex \documentclass{beamer} \usepackage[backend=biber]{biblatex} \addbibresource{biblatex-examples.bib} \begin{document} \begin{frame}{Publications} \nocite{sigfridsson} \printbibliography \end{frame} \end{document} ```  If one looks closely one can see that the...
See also https://tex.stackexchange.com/q/718991/35864 ```latex \documentclass[12pt]{article} \usepackage[backend=biber, style=authoryear-comp, sorting=nty]{biblatex} \usepackage{libertinus-otf} \DeclareSortTranslit{ \translit[russian]{*}{russian}{bgn/pcgn-standard}%{setnames} } \begin{filecontents*}{\jobname.bib} @book{2021_Flor_Trudy, address = {Сергиев Посад}, author = {Флоренский, П. А.}, langid = {russian}, publisher = {Таисии}, title...
Via https://tex.stackexchange.com/q/751681/35864 I don't have the APA manual to back this up with the rule number and couldn't find an official APA online source for this particular issue, but the...
## Brief outline of the enhancement As discussed in https://github.com/plk/biblatex/issues/1348 it would be neat to have a way to hook into `\ifthenelse` to add new test options. `biblatex` and `xifthen`...
See https://tex.stackexchange.com/q/730459/35864 ```latex \documentclass{article} \usepackage[backend=biber, style=authoryear]{biblatex} \addbibresource{biblatex-examples.bib} \begin{document} \parencite[][pp. 1f.;]{sigfridsson} \end{document} ```