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}
}

詳細を公式情報と比較することができます:出典:ISO 62711

もうひとつある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"
}

関連情報