破坏源文件中的 URL

破坏源文件中的 URL

我想打破命令的网址

\href{https://www.nature.com/nature-research/editorial-policies/reporting-standards#data}
            {policies}

在源文件中如下:

\href{https://
      www.nature.com/
      nature-
      research/
      editorial-
      policies/
      reporting-
      standards#
      data}
      {policies}

有什么办法可以做到这一点?

答案1

我希望我已经理解了你的问题。像这样吗?
在此处输入图片描述

\documentclass[a4paper]{article}
\usepackage{hyperref}
\begin{document}
\noindent
\sloppy
\url{https://
      www.nature.com/
      nature-
      research/
      editorial-
      policies/
      reporting-
      standards#
      datapolicies}
\end{document}

或这个?

\documentclass[a4paper]{article}
\usepackage{hyperref}
\begin{document}
\noindent
\sloppy
\url{https://
      www.nature.com/
      nature-
      research/
      editorial-
      policies/
      reporting-
      standards#
      data}

\noindent \url{policies}
\end{document}

在此处输入图片描述

相关内容