I have a problem with a references using BibTeX and IEEEbib. In my bibliography file (in the subfolder bib) there is this a reference with howpublished that produce this output:
@misc{allison2012simulation,
author = {Allison, James T.},
title = {Simulation and Animation of a Quarter--Car Automotive Suspension Model},
howpublished = {\url{http://www.mathworks.com/matlabcentral/fileexchange/35478/}},
year = {2012},
note = {[Online; accessed 25--March--2015]}
}

Note that in the figure that the URL is clickable, but wrong because truncated at the end of line. The second part of URL is not clickable.
This is the references results that I obtain. All is right, but the link in PDF is not http://www.mathworks.com/matlabcentral/fileexchange/35478/, but only http://www.mathworks.com/matlabcentral/ truncated to the end of line.
The essential document is:
% !TeX spellcheck = en_US
\documentclass[a4paper]{article}
\usepackage{amsmath,graphicx,cite}
\usepackage{epstopdf,epsfig,tikz,mathtools,caption,subcaption,amsfonts}
\usepackage{url}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\input{ushyphex}
\begin{document}
My citation~\cite{allison2012simulation}.
\bibliographystyle{bib/IEEEbib}
\bibliography{bib/suspension}
\end{document}
What is the way to fix it?
hyperreforurl. – Johannes_B Mar 26 '15 at 16:45I couldn't open style file IEEEbib.bst– Johannes_B Mar 26 '15 at 17:10\usepackage{url}but not hyperref. Without trying I think to recall that this can cause such problems!? – Manuel Weinkauf Mar 26 '15 at 17:12url. Buturlalone wouldn't make the url highlighted, right? – Johannes_B Mar 26 '15 at 17:14\usepackage[hidelinks]{hyperref}, and without\usepackage{url}I have solve the problem. – Giacomo Alessandroni Mar 26 '15 at 17:48\usepackage[hidelinks]{hyperref}and without\usepackage{url}. But the question is different: my link was truncated, not unclickable. – Giacomo Alessandroni Mar 28 '15 at 16:18