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(선형 탄성 파괴 역학) 접근 방식. 표준, 국제 표준화 기구, 제네바, CH.

도움이 되길 바랍니다.

답변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"
}

관련 정보