chemmacros: \iupac を使用した化合物名のスペース

chemmacros: \iupac を使用した化合物名のスペース

次の例では、意図したとおり「塩化物」の前にスペースがありません。ただし、酸化数「(III)」を削除すると、スペースがそこにあります。これはなぜですか。また、\iupac コマンド内にスペースを強制するにはどうすればよいでしょうか。ところで、その場合は「(III)」と入力するのが正しい方法でしょうか。

ここに画像の説明を入力してください ここに画像の説明を入力してください

\documentclass[12pt,a4paper]{scrartcl}
\usepackage[left=1.5cm,right=1.5cm,top=2cm,bottom=2cm,includeheadfoot]{geometry}
\usepackage[ngerman,british]{babel}

%FONTS
\usepackage{mathptmx}   %Etwas Times New Roman Aehnliches
\usepackage{helvet}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

%DIVERSES
\usepackage{graphicx}   %[draft]: Platzhalter für Bilder
\usepackage{amsmath, amssymb, array, color, epstopdf, lipsum, pdfpages, textgreek, url}

%CHEMIE UND PHYSIK
\usepackage{siunitx}
\sisetup{separate-uncertainty = true, range-units = brackets, per-mode=symbol}
\usepackage{chemmacros}
\chemsetup{modules={all},greek=default}

\begin{document}
\section{Aim of the Experiment}
The aim of this experiment is the enantiospecific synthesis of the complex \iupac{(R,R)\-N,N'-bis(3,5-di-tert-Butyl|salicydene)-1,2-cyclo|hexane|diamino|manganese(III) chloride}, \ch{[Mn(salen)Cl]} or \emph{Jacobsens Catalyst}.
\end{document}

答え1

理由は の定義が間違っているためです\chemmacros_allow_hyphens:。次のバージョンで修正します。一時的な修正は次のとおりです。

\documentclass{scrartcl}
\usepackage[british]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

\usepackage{chemmacros}
\chemsetup{modules={all},greek=textgreek}

\ExplSyntaxOn
\ChemCompatibilityTo{5.7}
\cs_set_protected:Npn \chemmacros_allow_hyphens:
  {
    \chemmacros_nobreak:
    \skip_horizontal:N \c_zero_skip
  }
\EndChemCompatibility
\ExplSyntaxOff

\begin{document}

\iupac{\cip{R,R}-\N,\N'-bis(3,5-di-\tert-Butyl|salicydene)-1,2-cyclo|hexane|%
  diamino|manganese(III) chloride}, \ch{[Mn(salen)Cl]} or \emph{Jacobsens
  Catalyst}.

\end{document}

ここに画像の説明を入力してください

ところで、IUPACのガイドラインに従うためには…であるべきです\cip{R,R}-\N,\N'-bis(3,5-di-\tert-。また、設定はgreek=default意味をなさないので、イタリック小文字のギリシャ文字!

答え2

おそらく、これによって(...)先読みがトリガーされ、行動時にスペースが無視されることになります。

使用している構文が IUPAC の規範に従って正しいかどうかはわかりませんが、とにかく制御スペースは機能します。

\documentclass[a4paper,12pt]{article}

\usepackage[left=1.5cm,right=1.5cm,top=2cm,bottom=2cm,includeheadfoot]{geometry}
\usepackage{newtxtext,newtxmath}

\usepackage{chemmacros}
\chemsetup{modules={all},greek=default}

\begin{document}

\section{Aim of the Experiment}
The aim of this experiment is the enantiospecific synthesis of the complex
\iupac{(R,R)\-N,N'-bis(3,5-di-tert-Butyl|salicydene)-1,2-cyclo|hexane|% <-- line break
diamino|manganese(III)\ chloride}, \ch{[Mn(salen)Cl]} or \emph{Jacobsens Catalyst}.

\end{document}

ここに画像の説明を入力してください

関連情報