I need to refer to some case law in my thesis using APA style.
I'm using Biblatex with the following options:
\usepackage[backend=biber,style=apa,language=english]{biblatex}
I´m mostly following the examples available here.
However, when a case presents a citation like 576 U.S. ___, the three underscores don't appear correctly.
My .bib entry is like this:
@jurisdiction{Facebook_2021,
keywords = {cases},
title = {Facebook, Inc. v. Duguid},
citation = {592 U.S. \_\_\_},
url = {https://www.supremecourt.gov/docket/docketfiles/html/public/19-511.html},
date = {2021}
}
The problem is that when I compile the file, the citation appears spaces between the underscores, like this: 592 U.S. _ _ _.
If I leave only the first backlash and remove the others, the final result is only one underscore: 592 U.S. _ , and if I remove all backlashes, so none underscore appears: 592 U.S.. I also receive lots of errors:
Missing $ inserted. Test\footfullcite{Facebook_2021}
Missing { inserted. Test\footfullcite{Facebook_2021}
Missing { inserted. Test\footfullcite{Facebook_2021}
Missing } inserted. Test\footfullcite{Facebook_2021}
Missing } inserted. Test\footfullcite{Facebook_2021}
Missing $ inserted. Test\footfullcite{Facebook_2021}
Does anyone have any idea on how to fix it?
Thanks!!


\rule{3em}{.5pt}instead of the underscores which would be font independent. – Alan Munn Mar 11 '22 at 15:48