
答案1
由於您似乎想要建立一個未編號的附錄部分,因此正常的\label
交叉\ref
引用機制無法完成這項工作。相反,我建議您加載該hyperref
包(您可能已經這樣做了)並使用該包的\hypertarget
-\hyperlink
機制,如下面的程式碼所示。
\documentclass[preprint,review,12pt]{elsarticle}
\usepackage[colorlinks]{hyperref}
\begin{document}
As will be shown in the \hyperlink{app}{appendix}, \dots
\appendix
\hypertarget{app}{\section*{Appendix. Mass matrix and gyroscopic matrix}}
Blabla \dots
\end{document}