I have a problem with the Apple URL.
@online Google works fine, but when I add the @online of Apple, it generates the error: \verb doesn't match its definition!!!
\documentclass[12pt]{report}
\usepackage{hyperref}
\usepackage[backend=bibtex,style=numeric,natbib=true,sorting=none ,maxbibnames=99]{biblatex}
\addbibresource{library.bib}
\begin{document}
User Interface \cite{Google}.
User Interface \cite{Apple}
\end{document}
Bib file:
@online{Google,
author = {Google},
title = {User Interface Guidelines from Google},
url = {https://developer.android.com/guide/topics/ui/overview.html},
year = {},
note={Accessed December 30, 2017}}
@online{Apple,
author = {Apple Inc},
title = {Apple iOS Human Interface Guidelines},
url = {https://developer.apple.com/ios/human-interface-guidelines/overview/design-principles/},
year = {},
note={Accessed December 30, 2017}}
bibtexinstead ofbiber. Do you have the same error when compiling you example? Do you have an updated version biblatex? – Marco Daniel Mar 31 '17 at 16:25