LyX:使用 natbib 和 url 包时,Url 未显示在参考资料中

LyX:使用 natbib 和 url 包时,Url 未显示在参考资料中

我知道有很多人发帖询问这个话题,我的问题可能是重复的(我是 LyX 的新手,所以提前致歉)。但是,我在发帖之前进行了搜索,但找不到与我的问题相符的问题。

我使用的是支持 URL 的 unsrt natbib 样式(我已检查 .bst),并且我的 bib 文件中的条目有 URL。但是,该 URL 未显示在我的 pdf 中。

附加信息,我正在使用西方编码通过 Zotero 生成 bib 文件。

Bib 文件条目示例:

@misc{noauthor_interconnect_nodate,
        titlenter code heree = {{INTERCONNECT} {Circuit} {Solver} {\textbar} {Lumerical} {Inc}},
        url = {https://www.lumerical.com/support/whitepaper/interconnect_circuit_solver.html},
        urldate = {2018-03-05},
}

我的 LaTeX 序言是:

%{{ Don't change! times font for proper scaling
\usepackage{mathptmx}
\usepackage[scaled=.90]{helvet}
\usepackage{courier}
%}} times font for proper scaling

\usepackage[numbers,square]{natbib} %see http://merkel.zoneo.net/Latex/natbib.php for usage!
\usepackage{url}
\usepackage{xtab, tabularx} %for multipage tables
\usepackage[Sonny]{fncychap} %for the chapter headings
\usepackage{makeidx}
\usepackage{float}

%{{ set double-space
\usepackage{setspace}
\doublespacing
%}} set double-space

%set margins
\usepackage[top=1in, bottom=1in, left=1.25in, right=1.25in]{geometry}

% Define your own commands and environment definitions, for example:
\newcommand{\program}[1]{\textbf{#1}} % program names in bold text
\newcommand{\exten}[1]{\texttt{#1}} % file extensions in bold text (use caps)
\newcommand{\cmmd}[1]{\textbackslash\texttt{#1}} % command name in tt font
\newcommand{\enviro}[1]{\texttt{#1}} % environment name in tt font  
\newenvironment{definition}[1]{\begin{quote}\emph{#1}:}{\end{quote}}
  % Provides indented formal definition and emphasizes the word.
  % e.g. \begin{definition}{Reliability} ... \end{definition}

% Put the document title and page numbers in the header
\pagestyle{headings}
\pagenumbering{roman}

%Place floats within section
\usepackage[section]{placeins}

% To be able to capitalize cross reference
\usepackage{cleveref}

相关内容