
我正在使用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}