I am using an unofficial LaTeX template (officially there is only Word :() with biber, biblatex and alphabetic style. However, alphabetic is not completely correct. As an example, the font should be identical throughout the reference and not italic for some parts. Therefore I would like to make some adaptions and would like to check the configuration of the alphabetic style as some of my changes are not working. Could someone give me a hint where I can locate the definition?
To give you some ideas what I am talking about:
Example 1:
\DeclareFieldFormat[misc]{title}{#1} works (title normal, not italic; also works for booktitle of inproceedings),
\DeclareFieldFormat[techreport]{title}{#1} does not work (titel still italic; same for journal of article).
Example 2:
\ifentrytype{book}{
\clearfield{url}
\clearfield{urldate}
}{}
\ifentrytype{article}{
\clearfield{url}
\clearfield{urldate}
}{}
}
removes the url both from articles and books (when citation data is taken from a website), but there is still an output for when it was accessed.
\DeclareFieldFormat*{title}{#1}and\DeclareFieldFormat*{citetitle}{#1}fixed all entries in the bibliography. And adding your last suggestion fixed the URL issue. – user10636601 Jul 03 '22 at 20:56