How to cite ISO or British Standards in LaTeX/BibTeX
I've found a really useful example here.
Here's the code:
@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}
}
And it outputs something like this:
ISO 13586:2000(E) (2000). Plastics – Determination of fracture toughness – Linear elastic fracture mechanics (LEFM) approach. Standard, International Organization for Standardization, Geneva, CH.
Hope it helps.
After a lot of investigation I'm using this schema:
@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}
}
You can compare details with the official info: https://www.iso.org/standard/62711.html
I have another example using RIS format too.
Hope it helps