首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >如何在胶乳中创建缩略语中的超链接

如何在胶乳中创建缩略语中的超链接
EN

Stack Overflow用户
提问于 2022-11-30 13:58:25
回答 1查看 19关注 0票数 1

我如何使我的缩略词如此,如果有人点击缩略语,然后被重定向到实际的列表,所有的缩略词列出?

代码语言:javascript
复制
\documentclass{scrbook}
\usepackage[acronym]{glossaries}
\makeglossaries

\input{acronyms}

\begin{document}
\mainmatter
\printglossary[type=\acronymtype]

\chapter{ch1}
\acrfull{WLAN} is used as a trial for my example and problem

\chapter{ch2}
\acrfull{LAN} is used as a trial for my example and problem
\arcshort{LAN}

\end{document}

使用acronyms.tex:

代码语言:javascript
复制
\newacronym{WLAN}{WLAN}{Wireless Local Area Network}
\newacronym{LAN}{LAN}{Local Area Network}
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2022-11-30 14:01:05

添加hyperref包将为您提供缩略语和缩略语列表之间的交叉引用:

代码语言:javascript
复制
\documentclass{scrbook}

\usepackage{hyperref}
\usepackage[acronym]{glossaries}
\makeglossaries

\newacronym{WLAN}{WLAN}{Wireless Local Area Network}
\newacronym{LAN}{LAN}{Local Area Network}

\begin{document}
\mainmatter
\printglossary[type=\acronymtype]

\chapter{ch1}
\acrfull{WLAN} is used as a trial for my example and problem

\chapter{ch2}
\acrfull{LAN} is used as a trial for my example and problem

\end{document}
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/74628991

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档