我同时使用了acronym
和hyperref
包。如果我只使用其中一个,则没有任何问题,但如果我同时使用两者,则自动换行功能不起作用。我想要自动换行,有人可以帮我吗?
以下是代码:
\documentclass{article}
\usepackage{acronym}
\usepackage{hyperref}
\begin{document}
%---------------------
\section{Abbreviation}
\begin{acronym}
\acro{t1}[TEST1]{This Is Test 1}
\acro{t2}[TEST2]{ThisIsTestThisIsTestThisIsTestThisIsTestThisIsTestThisIsTestThisIsTest}
\end{acronym}
%---------------------
\section{Text}
this is am example \ac{t1} this is am example this is am example this is am example this is am example this is am example this is am example this is am exampleam exampleam example \ac{t2} this is am example this is am example this is am example
\end{document}