两个不同段落的行距不同

两个不同段落的行距不同

我有两个段落;一个是西班牙语,另一个是英语。问题是英语段落的行距比另一个段落大(我希望两个段落的行距都和西班牙语的一样):

在此处输入图片描述

以下是 MWE:

\documentclass[a5paper, 11pt]{memoir}
\usepackage[utf8]{inputenc}
\usepackage[spanish,es-tabla]{babel}
\usepackage{hyperref}
\hypersetup{
    colorlinks=true,
    linkcolor=black,
    filecolor=magenta,      
    urlcolor=blue,
  }

\begin{document}

{\footnotesize \setlength{\parindent}{0pt} Copyleft: Esta obra es
  libre; puede redistribuirla o modificarla de acuerdo con los
  términos de la Licencia Arte Libre
  \url{https://artlibre.org/licence/lal/en/}.

  Copyleft: This is a free work; you can copy, distribute, and modify
  it under the terms of the Free Art License
  \url{https://artlibre.org/licence/lal/en/}.  }

\end{document}

答案1

\par在关闭与 关联的组之前,您需要使用 来结束该段落\footnotesize

相关问题: 暂时增加行距

以下代码将产生预期的输出:

\documentclass[a5paper,11pt]{memoir}
\usepackage[utf8]{inputenc}
\usepackage[spanish,es-tabla]{babel}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=black,
filecolor=magenta,
urlcolor=blue,
}

\begin{document}

{\footnotesize\setlength{\parindent}{0pt}
  Copyleft: Esta obra es libre; puede redistribuirla o modificarla de
  acuerdo con los términos de la Licencia Arte Libre
  \url{https://artlibre.org/licence/lal/en/}.

  Copyleft: This is a free work; you can copy, distribute, and modify
  it under the terms of the Free Art License
  \url{https://artlibre.org/licence/lal/en/}.\par}

\end{document}

输出

相关内容