引用网址时多了一个逗号

引用网址时多了一个逗号

我使用以下代码引用 URL,

 @manual{real_attacks,
    title={A Brief History of Car Hacking 2010 to the Present},
    note={[Online]. Available: \url{https://smart.gi-de.com/2017/08/brief-history-car-hacking-2010-present/}},
    year={2017}
}

但是我得到的是一个多余的逗号而不是一个点! 在此处输入图片描述

而且标题是斜体,但不应该这样。

\documentclass[10pt, twocolumn, twoside, journal]{IEEEtran}
    \usepackage{amsmath, amsfonts, amssymb, color, enumerate, amsthm, graphicx}
    \usepackage{tikz, subcaption, cite}
    \usepackage{color, xcolor, soul, bm}
    \PassOptionsToPackage{hyphens}{url}\usepackage{hyperref}
    \newtheorem{lemma}{Lemma}
    \begin{document}
        \begin{lemma}[\cite{Mieghem11}]\label{lem: max singular}
            This is my lemma ...
        \end{lemma}
    \bibliographystyle{IEEEtran}
    \bibliography{IEEEabrv,refs}
    \end{document}

相关内容