登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
本帖最后由 dragonphy 于 2021-3-14 21:18 编辑
整理LaTeX label/ref 技巧 在文章中建立各種 ”超連結”指向圖、表、公式或其他段落等等,方便讀者跳去查看相關內容 (但無法像網頁般可以返回)。 Let’s get started! 引用宏包: \usepackage[breaklinks,colorlinks]{hyperref} %基礎必要的宏包,其中breaklinks是允許超連結的字換行 \hypersetup{ linkcolor=blue, % color of internal links citecolor=blue, % color of links to bibliography filecolor=blue, % color of file links urlcolor=blue % color of external links } \usepackage{xr-hyper} %引用外部文件時 \externaldocument[supp-]{../work/XXX}%外部文件的檔案位置 (注意勿寫成XXX.tex) \makeatletter \newcommand\sfcodefork{% \ifnum\the\spacefactor=1000\expandafter\@firstoftwo\else\expandafter\@secondoftwo\fi }% \renewcommand\figureautorefname{\sfcodefork{Fig.\texorpdfstring{\null}{}}{Figure}} %期刊規定的表達 \renewcommand\sectionautorefname{\sfcodefork{Sect.\texorpdfstring{\null}{}}{section}} \renewcommand\subsectionautorefname{\sfcodefork{Sect.\texorpdfstring{\null}{}}{subsection}} \makeatother 用法:
預先做標籤 | | | \section{Data and Methods}\label{sec:2} | as presented in Sect. \ref{sec:2}. | | | as presented in \autoref{sec:2}. | | \section*{Appendix 1: xxx}\label{ App:1} | \hyperref[App:1]{Appendix 1} | | | | | | \hyperref[sec:2]{Sects. 2}, \ref{sec:3.1} and \ref{sec:3.3} | | | | | 把文獻放入Jabref 的BibTeX中,正確使用 \usepackage{natbib}一番操作 [註]: 引用參考文獻涉及BibTeX等等暫不討論。 | | Stull (1988) 在Reference中: Stull RB (1988) An Introduction to Boundary Layer Meteorology. 978 Springer Netherlands, DOI 10.1007/978-94-009-3027-8 |
|