Using LaTeX, how does one typeset the D- and L- prefixes, which refer to dextrorotatory and levorotatory isomers. I have tried \footnotesize~D\normalsize and it looks okay, but didn't know if there was a better or more correct approach.
Asked
Active
Viewed 2,984 times
6
Joseph Wright
- 259,911
- 34
- 706
- 1,036
user001
- 7,964
2 Answers
9
You can do for example \textsc{d}-Glucose, which requests small caps. This only looks good if the font family you're using actually provides small caps.
Michael Palmer
- 3,665
5
It would probably overkill to load the package just for this purpose but the chemmacros package provides a lot of IUPAC naming commands. Amongst these are \D and \L for the FISCHER stereo descriptors. With default settings they are only valid inside the \iupac{} command in order not to overwrite the usual definition of \L.
\documentclass{article}
\usepackage{chemmacros}
\begin{document}
\iupac{\D-Glucose}
\iupac{\L-Alanine}
\end{document}

cgnieder
- 66,645
\textsc{D}and it didn't work -- now I see why. – user001 Jan 10 '12 at 20:40