我正在写化学论文,使用 -package 对chemnum
我的化合物进行编号。由于现在它已经获得了相当多的化合物,我希望从 texstudio 获得建议,这些建议会标记我已经使用过的化合物,就像 - 或\ref
-\cite
命令的情况一样。
因为 texstudio 无法识别的命令chemnum
,所以我自己创建了一个chemnum_user.cwl
文件,.\AppData\Roaming\TeXstudio\completion\user
内容如下:
\initcmpd{tag}#n
\cmpd{tag}#n
\cmpd+{tag}#n
\replacecmpd{tag}#n
有没有一种方法,当我输入时,texstudio 会向我显示之前在某个命令中使用过的所有标签\cmpd{
?
最小工作示例:
\documentclass{scrreprt}
\usepackage{chemnum}
\begin{document}
This is the first time, I call the chemical 1: \cmpd{chemical1}.
If I call it a second time, I would like texstudio, to suggest "chemical1" as argument of \verb|\cmpd{}|
\end{document}