如何在 LaTeX/BibTeX 中引用 ISO 或英國標準

如何在 LaTeX/BibTeX 中引用 ISO 或英國標準

我試著引用這個英國標準在我的論文中,但是使用通常的方法@keys似乎並不能真正幫助弄清楚,是否有更實用的方法來做到這一點,因為它並不真正屬於任何典型的類別?

@article{BSEN6232
,   author  = {British-Standard-Institution}
,   title   = {Part 2: Determination of density and porosity}
,   journal = {Advanced technical ceramics. Monolithic ceramics. Gerneral and textural properties.}
,   year    = {1993}
,   pages   = {1--16}
,   isbn    = {0580217728}
,   publisher   = {BSI}
,   institution = {British-Standard-Institution}
}

答案1

我發現了一個非常有用的例子這裡

這是代碼:

@techreport{ISO13586,
type = {Standard},
key = {ISO 13586:2000(E)},
month = mar,
year = {2000},
title = {{Plastics -- Determination of fracture toughness -- Linear elastic fracture mechanics ({LEFM}) approach}},
volume = {2000},
address = {Geneva, CH},
institution = {International Organization for Standardization}
}

它輸出如下:

ISO 13586:2000(E) (2000)。塑膠 – 斷裂韌性的測定 – 線彈性斷裂力學 (LEFM) 方法。標準,國際標準化組織,瑞士日內瓦。

希望能幫助你。

答案2

經過大量調查後,我正在使用這個架構:

@techreport{iso_central_secretary_systems_2016,
address = {Geneva, CH},
type = {Standard},
title = {Systems and software engineering -- {Lifecycle} profiles for {Very} {Small} {Entities} ({VSEs}) -- {Part} 1: {Overview}},
shorttitle = {{ISO}/{IEC} {TR} 29110-1:2016},
url = {https://www.iso.org/standard/62711.html},
language = {en},
number = {ISO/IEC TR 29110-1:2016},
institution = {International Organization for Standardization},
author = {{ISO Central Secretary}},
year = {2016}
}

您可以將詳細資訊與官方資訊進行比較:https://www.iso.org/standard/62711.html

我還有一個使用 RIS 格式的範例也。

希望能幫助你

答案3

這個問題很老了,但我目前面臨著完全相同的問題。我嘗試了所描述的解決方案,但它們對我不起作用。我不是專家,但我建議如下:

@book{ISO.7637-1,
    author      = {International Organization for Standardization},
    year        = {2015},
    title       = {Road vehicles - Electrical disturbances from conduction and coupling: Part 1: Definitions and general considerations},
    address     = {Vernier, Geneva, Switzerland},
    edition     = {{ISO 7637-1:2015(E)}},
    publisher   = {International Organization for Standardization},
    url         = {https://www.iso.org/standard/63098.html},
}

我的輸出:

隨書引用ISO

答案4

英國標準,我找到了參考指南哈佛或者亞太地區協會風格,但這些可能只適用於英國論文。

儘管如此,根據指南,該@book類別是最合適的:

@Book{BSEN2011,
  author    = {British Standard Institution},
  title     = {BS EN 197--1:2011: Cement. Composition, specifications and conformity criteria for common cements},
  year      = {2011},
  publisher = {BSI Standards Limited},
  address   = {London},
  url       = {https://bsol-bsigroup-com.proxy.lib.strath.ac.uk/PdfViewer/Viewer?pid=000000000030391002},
  note      = "Accessed: 30/03/2021"
}

相關內容