如何引用网页上的信息?

如何引用网页上的信息?

我有这个网页:链接网页 我想引用我曾尝试过这样的做法:

\RequirePackage{filecontents}
\begin{filecontents}{mybib.bib}
  @misc{Hariharan,
  title  = {What are Kernels in Machine Learning and SVM?},
  author = {Hariharan, B. (n.d.).},
  howpublished = "\url{https://www.quora.com/What-are-Kernels-in-Machine-
  Learning-and-SVM}",
  note   = {Accessed: 2017-04-15}
   }
  \end{filecontents}

 \documentclass{article}
\usepackage{apacite}
 \bibliographystyle{apacite}
 \usepackage[hyphens]{url}

 \begin{document}
 \cite{Hariharan}
 \bibliography{mybib}
 \end{document}

我应该得到类似的东西菲格 但我明白, Hariharan, B. n. (n.d.). What are kernels in machine learning and svm? https://www.quora.com/What-are-Kernels-in-Machine -Learning-and-SVM. (Accessed: 2016-09-17) 任何人都可以纠正我!

答案1

year由于答案是在 2013 年 12 月 21 日发布的,我认为通过显式、monthday字段提供此信息是个好主意。实际上,@misc条目类型忽略了字段monthday;尽管如此,我认为在书目条目中记录这些信息是个好主意。

此外,请删除 中的 (ND) author field。(您会注意到,我在这里不同意您发布的屏幕截图中显示的输出……)务必将首字母缩略词“SVM”括在花括号中,以防止 BibTeX 将其转换为小写。最后,我认为title字段应该表明 Hariharan 的帖子由回答针对问题,而不是针对问题本身。简而言之,我会将条目写为

@misc{hariharan:2013,
  author       = "Bharath Hariharan",
  title        = "Answer to `{What} are Kernels in Machine Learning and {SVM}?'",
  year         = "2013",
  month        = "December",
  day          = "21",
  url          = "https://www.quora.com/What-are-Kernels-in-Machine-Learning-and-SVM",
  urldate      = "2017-07-18",
}

当然,这种设置在一定程度上基于您使用apacite参考书目样式的知识。

相关内容