docs: references section added

This commit is contained in:
Mateusz Pusz
2020-09-08 20:04:29 +02:00
parent 9734fb02e2
commit 1f54edda33
5 changed files with 13 additions and 17 deletions

View File

@@ -208,8 +208,3 @@ In order to obtain the base/coherent unit of any dimension type a
static_assert(is_same_v<dimension_unit<si::dim_length>, si::metre>); static_assert(is_same_v<dimension_unit<si::dim_length>, si::metre>);
static_assert(is_same_v<dimension_unit<si::dim_speed>, si::metre_per_second>); static_assert(is_same_v<dimension_unit<si::dim_speed>, si::metre_per_second>);
.. rubric:: Citations:
.. [P0847] `"Deducing this" <https://wg21.link/P0847>`_, Programming Language C++ proposal

View File

@@ -393,8 +393,3 @@ type here instead.
To learn more about unknown units please refer to To learn more about unknown units please refer to
:ref:`Working with Unknown Units and Dimensions` chapter. :ref:`Working with Unknown Units and Dimensions` chapter.
.. rubric:: Citations:
.. [P0847] `"Deducing this" <https://wg21.link/P0847>`_, Programming Language C++ proposal

View File

@@ -205,10 +205,9 @@ Other definitions
.. rubric:: Footnotes: .. rubric:: Footnotes:
.. [1] **ISO 80000-1:2009(E) "Quantities and units — Part 1: General"** gives general information .. [1] [ISO-80000]_ gives general information and definitions concerning quantities, systems of quantities,
and definitions concerning quantities, systems of quantities, units, quantity and unit symbols, units, quantity and unit symbols, and coherent unit systems, especially the International System
and coherent unit systems, especially the International System of Quantities, ISQ, and the of Quantities, ISQ, and the International System of Units, SI. The principles laid down in
International System of Units, SI. The principles laid down in ISO 80000-1:2009 are intended ISO 80000-1:2009 are intended for general use within the various fields of science and technology
for general use within the various fields of science and technology and as an introduction to and as an introduction to other parts of the Quantities and units series. Ordinal quantities and
other parts of the Quantities and units series. Ordinal quantities and nominal properties are nominal properties are outside the scope of ISO 80000-1:2009.
outside the scope of ISO 80000-1:2009.

View File

@@ -53,3 +53,4 @@ with a permissive `MIT license <https://github.com/mpusz/units/blob/master/LICEN
glossary glossary
genindex genindex
CHANGELOG CHANGELOG
references

6
docs/references.rst Normal file
View File

@@ -0,0 +1,6 @@
References
==========
.. [ISO-80000] `ISO 80000-1:2009(E) "Quantities and units — Part 1: General" <https://www.iso.org/standard/30669.html>`_, International Organization for Standardization.
.. [P0847] `"Deducing this" <https://wg21.link/P0847>`_, Programming Language C++ proposal.