obster-y / XJTU-thesis

西安交通大学学位论文模板(LaTeX)(适用硕士、博士学位)An official LaTeX template for Xi'an Jiaotong University degree thesis (Chinese and English)
LaTeX Project Public License v1.3c
231 stars 50 forks source link

参考文献引用网页的问题 #61

Closed kamiLight closed 2 years ago

kamiLight commented 2 years ago

下面是word给出的引用网页的例子 image

我参考网上找到的引用网页的代码,写了如下的代码

@misc{Coordinate_System,
  title = {Structure from Motion},
  howpublished = {\url{https://morioh.com/p/59924af480a7}},
  note = {Accessed: 2021-4-15},
  author = {Rusty Shanahan}
}

最终结果是如下样式的,和word差距较大,具体体现在一个是[EB/OL],一个是[Z],以及各部分的顺序不同,请问是什么缘故? image

感谢

sikouhjw commented 2 years ago
@online{Coordinate_System,
  title   = {Structure from Motion},
  url     = {https://morioh.com/p/59924af480a7},
  urldate = {2000-01-08},
  note    = {Accessed: 2021-4-15},
  author  = {Rusty Shanahan}
}

online 试试。

kamiLight commented 2 years ago
@online{Coordinate_System,
  title   = {Structure from Motion},
  url     = {https://morioh.com/p/59924af480a7},
  urldate = {2000-01-08},
  note    = {Accessed: 2021-4-15},
  author  = {Rusty Shanahan}
}

online 试试。

用了online之后 image 参考文献中时间信息没有显示 image

obster-y commented 2 years ago

同样的 bib 条目,我编译后能够显示 urldate 这一项

20220510_14201652163610_3435x434

出现这种情况的原因:

  1. 没有清除临时文件
  2. 没有使用 dev 分支

另外建议按照提问模板,给出相应的基础信息

kamiLight commented 2 years ago

清除临时文件后正常