\documentclass[a4paper,fleqn]{cas-sc}
\begin{document}
\begin{thebibliography}{1}
\bibitem{DLC_DR}
Stenner, Karen, Elisha R. Frederiks, Elizabeth V. Hobman, and Stephanie Cook. "Willingness to participate in direct load control: The role of consumer distrust." Applied energy 189 (2017): 76-88.
\bibitem{Price_DR}
Takano, Hirotaka, Asuka Kudo, Hisao Taoka, and Atsumi Ohara. "A basic study on incentive pricing for demand response programs based on social welfare maximization." Journal of International Council on Electrical Engineering 8, no. 1 (2018): 136-144.
\end{thebibliography}
\end{document}
答案1
您需要加载具有合适选项的引文管理包,例如,
\usepackage[numbers]{natbib}
完整的 MWE:
请注意,我会在标题周围使用智能引号而不是愚蠢的 ( "
)。我还会使用短划线而不是简单的破折号来表示数字范围(请参阅下面的页面范围)。
\documentclass[a4paper,fleqn]{cas-sc}
\usepackage[numbers]{natbib} % <-- new
\begin{document}
\noindent
\cite{DLC_DR,Price_DR}
\begin{thebibliography}{1}
\bibitem{DLC_DR}
Stenner, Karen, Elisha R. Frederiks, Elizabeth V. Hobman, and
Stephanie Cook. ``Willingness to participate in direct load control:
The role of consumer distrust.'' Applied Energy 189 (2017): 76--88.
\bibitem{Price_DR}
Takano, Hirotaka, Asuka Kudo, Hisao Taoka, and Atsumi Ohara. ``A basic
study on incentive pricing for demand response programs based on social
welfare maximization.'' Journal of International Council on Electrical
Engineering 8, no.~1 (2018): 136--144.
\end{thebibliography}
\end{document}