Sebastian Walz 860d31cee1
Tohu vaBohu
2023-04-21 00:22:52 +02:00

42 lines
882 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ chemistry, ... }:
let
inherit(chemistry) compound;
in
{
dibenzylideneacetone = {
section = "Substances";
text = {
deu = {
tex = "${compound.format "Di|benzyliden||aceton"}";
};
};
description = {
deu = ''
\ch{<phenyl>(CH)2CO(CH)2<phenyl>},
Ligang der Organo\-metall\-chemie
'';
};
data = {
kind = "Chemical";
short = "'dba'";
};
};
dppf = {
section = "Substances";
text = {
deu = {
tex = "${compound.format "1,1-Bis(di:phenyl|phosphino)|ferrocen"}";
};
};
description = {
deu = ''
\ch{<ferrocenyl>(P<phenyl>2)2},
substituiertes ${compound.format "Ferrocen"}, ${compound.format "Di|phosphan"}, Ligang der Organo\-metall\-chemie
'';
};
data = {
kind = "Chemical";
short = "'dppf'";
};
};
}