The amsrefs package allows customizing the bibliography style (Section 4 in their guide), but recommending doing it by "writing a LaTeX package which loads the amsrefs package with...". I would only want to put book names in bold fonts; writing a new package sounds like an overkill. Is there any straight-forward way of achieving this?
(I am using amsrefs with bibtex).
Minimal Working Example
\documentclass{article}
\usepackage[nobysame]{amsrefs}
\begin{filecontents}{mwebib.bib}
@article{A,
AUTHOR = {Euler, Leonhard},
TITLE = {Solutio problematis ad geometriam situs pertinentis},
}
@book{B,
AUTHOR = {Euler, Leonhard},
TITLE = {Elements of Algebra},
}
\end{filecontents}
\begin{document}
Article \cite{A} and book \cite{B}.
\bibliography{mwebib}
\end{document}
I want the name Elements of Algebra to appear in bold, without changing anything in the .bib file; just by altering the style of amsrefs to consider books differently.

\textbf{...}in the title part of the bib entry... – Bach Mar 28 '16 at 06:57