
estoy usando elInteract
plantilla de estilo látex de las revistas Taylor y Francis.disponible aquí. La revista para la que estoy preparando un documento tiene un resumen de dos partes, en el que la segunda sección puede ser una lista con viñetas.
Pero cuando intento usarlo \itemize
dentro del abstract
entorno, el margen derecho de la lista no se alinea con el resto del resumen. ¿Cómo puedo arreglar esto?
Aquí hay un ejemplo mínimo:
\documentclass[british]{interact}
\usepackage{lipsum}
\begin{document}
\articletype{RESEARCH ARTICLE}
\title{Article with bullet list inside abstract}
\author{\name{A.N. Other\textsuperscript{a}\thanks{Contact: A.N. Other. Email: [email protected]}}
\affil{\textsuperscript{a} Some University, Somewhere, XX 12345, USA}}
\maketitle
\begin{abstract}
\lipsum[1].\\
\noindent\textbf{Policy Insights}
\begin{itemize}
\item This line is way too long. It should align with the rest of the abstract. But it goes much too far too the right.
\item It would be nice too if the bullets were left-aligned with the abstract.
\end{itemize}
\end{abstract}
\begin{keywords}
Keywords: Latex; Itemize; Lipsum
\end{keywords}
\section{Introduction}
\end{document}
Respuesta1
Puede hacerlo con enumitem
, configurando leftmargin
y rightmargin
para la lista en 1pc
y 5pc
respectivamente, como está escrito en l.36 del código del archivo .cls:
\documentclass[british]{interact}
\usepackage{lipsum}
\usepackage{enumitem}
\usepackage{showframe}
\renewcommand\ShowFrameLinethickness{0.3pt}
\begin{document}
\articletype{RESEARCH ARTICLE}
\title{Article with bullet list inside abstract}
\author{\name{A.N. Other\textsuperscript{a}\thanks{Contact: A.N. Other. Email: [email protected]}}
\affil{\textsuperscript{a} Some University, Somewhere, XX 12345, USA}}
\maketitle
\begin{abstract}
\lipsum[1].\\
\noindent\textbf{Policy Insights}
\begin{itemize}[wide, leftmargin = 1pc, rightmargin = 5pc]
\item \lipsum[1].
\item \lipsum[1].
\end{itemize}
\lipsum[2-10]
\end{abstract}
\end {document}