I have a similar question as: Remove "Tech. Rep." Output from SIAM bibtex style
In my document I reference different reports in APA style. However, in my reference list they include [tech.rep] which is not something that is normally used in APA style. How can I delete this?
\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\renewcommand{\baselinestretch}{1.5}
\usepackage{lipsum}
\usepackage[english]{babel}
\usepackage[backend=biber, maxcitenames=2, style=apa, sorting=anyt]{biblatex}
\DeclareNameAlias{sortname}{family-given}
\addbibresource{bibliography.bib}
\usepackage[autostyle, english = british]{csquotes}
\begin{document}
\lipsum[1]
\parencite{b20_taskforce_open_2017}
\printbibliography
\end{document}
and the following bib entry:
@techreport{b20_taskforce_open_2017,
title = {Open, dynamic and inclusive labor markets: {Harnessing} the potential of technological change and creating a global level playing field},
url = {https://www.uscib.org/uscib-content/uploads/2017/05/B20-Policy-Paper-EE_final.pdf},
urldate = {2020-06-07},
author = {{B20 Taskforce}},
year = {2017},
file = {B20-Policy-Paper-EE_final.pdf:C\:\\Users\\eszti\\Zotero\\storage\\XDQIBP4B\\B20-Policy-Paper-EE_final.pdf:application/pdf}
}
Which gives the following output in the reference list:


biblatex-apa,maxcitenames=2,is already the default and with an older version ofbiblatex-apaor withbiblatex-apa6maxcitenames=2famously didn't work as expected (https://tex.stackexchange.com/q/452032/35864). I also wouldn't setsorting=anyt,.biblatex-apacomes with its own (APA compliant) sorting scheme and in any caseanytmakes little sense with an author-year style since it would sort after the alphabetic labels that styles likealphabeticproduce. – moewe Jul 20 '20 at 15:22maxcitenames=2,andsorting=anyt, i.e. shorten\usepackage[backend=biber, maxcitenames=2, style=apa, sorting=anyt]{biblatex}to\usepackage[backend=biber, style=apa,]{biblatex}. (Generally, I'd say unless you know exactly what and option does and why you need it, chances are you don't actually want it and it should be dropped). – moewe Jul 20 '20 at 15:51