My goal is to achieve this Google Scholar style:

- Entries are ordered as type->title->author->year->publisher->URL
- Types are all caps (better: small caps), and in square brackets before titles
- Titles of any type are large and in boldface
- Only authors, years, publishers and URL are in the second line
Problems
- How to show the type entry (book, article, artwork, unpublished)
- How to swap entries?
- How to make the author entry not showing
family=X, given=Y?
MWE
\documentclass{report}
\usepackage[url=false]{biblatex}
\addbibresource{test.bib}
\DeclareFieldFormat
[book,article,artwork,unpublished,website]
{title}{{\textbf{#1}}\newline}
\DeclareNameFormat
[book,article,artwork,unpublished,website]
{author}{{\small{#1}}}
\renewbibmacro{title+author}{%
\printfield{title}%
\setunit{\addcomma\space}%
\printnames{author}%
\setunit*{\addcomma\space}%
}
\begin{document}
\nocite{*}
\printbibliography
\end{document}

FYI: How to make bibliography tailored for non-academic readers?

@incollections displayed, how@articles?) But at the moment your question comes down to: Please code the entire style for me. It is not unheard of that questions like these are answered on this site. But they are not particularly well suited to the Q&A format where ideally you would focus on one particular issue. – moewe Dec 16 '17 at 09:02