I want to show initials for authors and editors for in-text citations and full names for bibliography. Similar question and solution for authors only is here. Now I want the same functionality for editors.
MWE:
\documentclass{article}
\usepackage[style=verbose-trad1]{biblatex}
\ExecuteBibliographyOptions[book]{useeditor=false}
\renewbibmacro*{cite:full}{%
\usebibmacro{cite:full:citepages}%
\printtext[bibhypertarget]{%
\usedriver
{\DeclareNameAlias{sortname}{default}}
{\thefield{entrytype}}}%
\usebibmacro{shorthandintro}}
\DeclareNameFormat{labelname-revinit}{%
\ifnum\value{uniquename}<2%
\ifuseprefix
{\usebibmacro{name:family-given}
{\namepartgiveni}
{\namepartfamily}
{\namepartprefix}
{\namepartsuffixi}}
{\usebibmacro{name:family-given}
{\namepartgiveni}
{\namepartfamily}
{\namepartprefixi}
{\namepartsuffixi}}
\else
{\usebibmacro{name:family-given}
{\namepartfamily}
{\namepartgiven}
{\namepartprefix}
{\namepartsuffix}}%
\fi
\usebibmacro{name:andothers}}
\DeclareNameAlias{default}{labelname-revinit}
\begin{filecontents}{\jobname.bib}
@book{authoronly,
author = {Aniston, John},
title = {Make my day},
location = {London},
date = {1953},
pagetotal = {100},
}
@book{authorandeditor,
author = {Clinton, Matthew},
editor = {Smakowski, Andrew AND Bronson, William},
title = {Good things},
location = {Torronto},
date = {2014},
pagetotal = {200},
}
@book{editoronly,
editor = {Lejba, Mose},
title = {Big brother},
location = {Boston},
date = {2020},
pagetotal = {300},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
Lorem \autocite{authoronly}
ipsum \autocite{authorandeditor}
dolor\autocite{editoronly}
\printbibliography
\end{document}
As a result now I have good order of given/family name everywhere. I have good style for authors. But I want editors appearing in \printbibliography to be also written with fullnames (but in reverse order than authors).
Result:

Full editors names should be used in underlined places.

\renewcommand*{\revsdnamepunct}{}– andc Oct 06 '21 at 04:19