枚举项目名称突破边距

枚举项目名称突破边距

我在文档中使用 LNCS 样式。当我处理enumerate项目名称时,名称似乎超出了边距:

图像

目前我使用的Geometry边缘:

\usepackage[top=1in,left=1in,right=1in,bottom=1in]{geometry}

枚举如下:

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

\begin{enumerate}
\item[\underline{Substructure 1}:]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
\item[\underline{Substructure 2}:]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
\end{enumerate}

知道如何修复它吗?

谢谢!

答案1

一个解决方案是使用enumitem包,使用[align=left]参数。

\documentclass{article}
\usepackage[margin=1in]{geometry}
\usepackage{enumitem}
\usepackage{lipsum}

\begin{document}

\lipsum[1]

\begin{enumerate}[align=left]
\item[Long Test 1:] \lipsum[1]
\item[Long Test 2:] \lipsum[1]
\end{enumerate}

\end{document}

答案2

使用enumitem具有适当的leftmargin

在此处输入图片描述

\documentclass{llncs}

\usepackage{enumitem}

\begin{document}

Lorem Ipsum is simply dummy text of the printing and typesetting industry. 
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, 
when an unknown printer took a galley of type and scrambled it to make a type 
specimen book. It has survived not only five centuries, but also the leap 
into electronic typesetting, remaining essentially unchanged. It was popularised 
in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, 
and more recently with desktop publishing software like Aldus PageMaker including 
versions of Lorem Ipsum.

\begin{enumerate}[leftmargin=7.5em]
  \item[\underline{Substructure 1}:]
  Lorem Ipsum is simply dummy text of the printing and typesetting industry. 
  Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, 
  when an unknown printer took a galley of type and scrambled it to make a type 
  specimen book. It has survived not only five centuries, but also the leap 
  into electronic typesetting, remaining essentially unchanged. It was popularised 
  in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, 
  and more recently with desktop publishing software like Aldus PageMaker including 
  versions of Lorem Ipsum.

  \item[\underline{Substructure 2}:]
  Lorem Ipsum is simply dummy text of the printing and typesetting industry. 
  Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, 
  when an unknown printer took a galley of type and scrambled it to make a type 
  specimen book. It has survived not only five centuries, but also the leap 
  into electronic typesetting, remaining essentially unchanged. It was popularised 
  in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, 
  and more recently with desktop publishing software like Aldus PageMaker including 
  versions of Lorem Ipsum.
\end{enumerate}

\end{document}

相关内容