mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-12-26 14:23:42 +01:00
Using tex shortcode from https://latkin.org/blog/2016/08/07/better-tex-math-typesetting-in-hugo
This commit is contained in:
parent
f4404732b9
commit
c08b57cbaa
@ -4,7 +4,7 @@ date: 2020-09-10 15:00
|
|||||||
draft: false
|
draft: false
|
||||||
---
|
---
|
||||||
|
|
||||||
The QUEST database provides theoretical best estimates (TBEs) for more than 470 highly-accurate excitation energies of various natures (valence, Rydberg, $n \ra \pis$, $\pi \ra \pis$, singlet, doublet, triplet, and double excitations) for molecules ranging from diatomics to molecules as large as naphthalene.
|
The QUEST database provides theoretical best estimates (TBEs) for more than 470 highly-accurate excitation energies of various natures (valence, Rydberg, {{< tex "n \ra \pis" >}}, {{< tex "\pi \ra \pis" >}}, singlet, doublet, triplet, and double excitations) for molecules ranging from diatomics to molecules as large as naphthalene.
|
||||||
The molecules included in the QUEST dataset have been systematically optimized at the CC3/aug-cc-pVTZ level of theory, except for a very few cases.
|
The molecules included in the QUEST dataset have been systematically optimized at the CC3/aug-cc-pVTZ level of theory, except for a very few cases.
|
||||||
The QUEST dataset of vertical excitations is composed by 5 subsets:
|
The QUEST dataset of vertical excitations is composed by 5 subsets:
|
||||||
|
|
||||||
|
16
layouts/shortcodes/tex.html
Normal file
16
layouts/shortcodes/tex.html
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<span class="jsonly">
|
||||||
|
{{ if .IsNamedParams }} <!-- display mode, wrap eqn with $$ $$-->
|
||||||
|
$${{ .Get "display" }}$$
|
||||||
|
{{ else }} <!-- inline mode, wrap eqn with \( \)-->
|
||||||
|
\({{ .Get 0 }}\)
|
||||||
|
{{ end }}
|
||||||
|
</span>
|
||||||
|
<noscript>
|
||||||
|
{{ if .IsNamedParams }} <!-- display mode -->
|
||||||
|
<div style="text-align:center;">
|
||||||
|
<img src="https://latex.codecogs.com/gif.latex?{{ .Get "display" }}" title="{{ .Get "display" }}" />
|
||||||
|
</div>
|
||||||
|
{{ else }} <!-- inline mode -->
|
||||||
|
<img style="display:inline;vertical-align:middle;" src="https://latex.codecogs.com/gif.latex?\inline&space;{{ .Get 0 }}" title="{{ .Get 0 }}" />
|
||||||
|
{{ end }}
|
||||||
|
</noscript>
|
Loading…
Reference in New Issue
Block a user