![安全に組み合わせることができる引用のリストを生成する](https://rvso.com/image/335466/%E5%AE%89%E5%85%A8%E3%81%AB%E7%B5%84%E3%81%BF%E5%90%88%E3%82%8F%E3%81%9B%E3%82%8B%E3%81%93%E3%81%A8%E3%81%8C%E3%81%A7%E3%81%8D%E3%82%8B%E5%BC%95%E7%94%A8%E3%81%AE%E3%83%AA%E3%82%B9%E3%83%88%E3%82%92%E7%94%9F%E6%88%90%E3%81%99%E3%82%8B.png)
それで、私は本当に醜い引用の上付き文字をいくつか持っています。最悪なのは「11,20,80,81,83,85,90,91」ですが、achemso
マニュアルを読んでいて、引用グループを使用できることに気付きました。これは、これらのいくつかを整理するのに役立ちます。ただし、私はドキュメントの後半で引用を参照することがよくあります。グループ化しても安全な引用のリストを取得する方法はありますか? (たとえば、1 回だけ引用されているものや、常に一緒に引用されているものなど)
安全にグループ化できる引用を知らずに引用を追加しようとするとどうなるかの例を次に示します。
\documentclass{achemso}
\usepackage{mciteplus}
\begin{filecontents}{\jobname.bib}
@misc{Thuery2015,
author = "P. Thu\'{e}ry",
year = "2015",
howpublished = "CCDC 1063730: Experimental Crystal Structure Determination",
DOI = "10.5517/cc14pwwl"
}
@article{Kerr2011,
author = {Kerr, Andrew T. and Cahill, Christopher L.},
journal = {Cryst. Growth Des.},
number = {12},
pages = {5634--5641},
volume = {11},
year = {2011}
}
@article{Thuery2007,
author = {Thu{\'{e}}ry, Pierre},
journal = {Acta Crystallogr. Sect.~C~Cryst. Struct. Commun.},
month = {feb},
number = {2},
pages = {m54--m56},
volume = {63},
year = {2007}
}
@misc{Ephritikhine2013a,
author = "G. Siffredi and J. C. Berthet and P. Thu\'{e}ry and M. Ephritikhine",
year = "2013",
howpublished = "CCDC 958352: Experimental Crystal Structure Determination",
DOI = "10.5517/cc1157l1"
}
\end{filecontents}
\begin{document}
Multiple citations to be combined into a list\cite{Kerr2011} can be given as a single citation.\cite{Thuery2015,*Kerr2011}
This\cite{Thuery2015} uses the \textsf{mciteplus} package\cite{Thuery2015,*Ephritikhine2013a,*Kerr2011,*Thuery2007}.
Citations other than the first of the list should be indicated with a star.
Individual references can be referred to using \texttt{\textbackslash mciteSubRef}:
``ref.~\mciteSubRef{Ephritikhine2013a}''.\mciteSubRef{Ephritikhine2013a}
\end{document}