右侧部分有缺口,也有超链接

右侧部分有缺口,也有超链接

在 LuaLaTeX 中,我把右标题内容弄乱了,这些内容是超链接。每行末尾的空白也覆盖了超链接。建议只将链接设置为文本。请参考上图

在此处输入图片描述

以下 tex 代码:

\documentclass{article}

\usepackage{hyperref}

\makeatletter

\def\@maketitle{
  \newpage
  \null
  \vskip 2em
 \begin{raggedright}
  \let \footnote \thanks
    {\LARGE \href{www.google.com}{\@title} \par}
  \end{raggedright}
}

\makeatother

\begin{document}

\title{This is the sample title ragged right and also applied 
hyperlink, the lualatex output pdf each line right side blank 
also covered hyper link box. The pdf hand tool show link on each line 
end blank space also. This is not happen xelatex/pdflatex engine}
\author{}
\date{}

\maketitle

\end{document}

相关内容