What more do I need to add so that the following source file, with the indicated customized .bbx file will print a horizontal line to replace the author name for subsequent bibliography entries having the same author?
\documentclass[12pt]{memoir}
\usepackage[bibstyle=mybooknumeric,citestyle=numeric,backend=bibtex,,dashed=true]{biblatex}
\begin{filecontents}{euler.bib}
@article{EulerE1776,
Author = {Euler, Leonhard},Title = {All about E},
Journal = {Math.\ Psychol.},
Year = {1776},Volume = {4},number={1},
pages={1--2718}
}
@article{EulerE1748,
Author = {Euler, Leonhard},Title = {My formula},
Journal = {Math.\ Formulas},
Year = {1748},Volume = {4},
pages={233--234}
}
\end{filecontents}
\addbibresource{euler.bib}
\begin{document}
\nocite{*}
\printbibliography
\end{document}
My customized style file:
\ProvidesFile{mybooknumeric.bbx}
\RequireBibliographyStyle{standard}
\RequireBibliographyStyle{numeric}
%
\DeclareBibliographyOption[boolean]{dashed}[true]{%
\ifstrequal{#1}{true}
{\ExecuteBibliographyOptions{pagetracker}%
\renewbibmacro*{bbx:savehash}{\savefield{fullhash}{\bbx@lasthash}}}
{\renewbibmacro*{bbx:savehash}{}}}
%
\newbibmacro*{bbx:savehash}{%
\savefield{fullhash}{\bbx@lasthash}}
Here's the output I'm getting now:


\bibnamedash. – jon Oct 26 '16 at 02:56\bibnamedash? And how should that macro be redefined so as to use an underscore (rather than\textemdashor\textendash)? Why isn't thedashed=truebeing honored: what's wrong with my.bbxthere? – murray Oct 26 '16 at 03:12