
Estou usando o Interact
modelo de estilo látex dos diários Taylor e Francis -disponivel aqui. A revista para a qual estou preparando um documento tem um resumo em duas partes, em que a segunda seção pode ser uma lista com marcadores.
Mas quando tento usar \itemize
dentro do abstract
ambiente, a margem direita da lista não se alinha com o restante do resumo. Como posso consertar isso?
Aqui está um exemplo 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}
Responder1
Você pode fazer isso com enumitem
, configurando leftmargin
e rightmargin
para a lista para 1pc
e 5pc
respectivamente, conforme escrito l.36 do código do arquivo .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}