초록 내부 항목별 목록의 여백

초록 내부 항목별 목록의 여백

저는 InteractTaylor와 Francis 저널의 라텍스 스타일 템플릿을 사용하고 있습니다.여기에서 사용 가능. 제가 문서를 준비 중인 저널에는 두 부분으로 구성된 초록이 있으며, 두 번째 섹션은 글머리 기호 목록이 될 수 있습니다.

\itemize하지만 환경 내부에서 사용하려고 하면 abstract목록의 오른쪽 여백이 나머지 초록과 일치하지 않습니다. 이 문제를 어떻게 해결할 수 있나요?

다음은 최소한의 예입니다.

\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}

여기에 이미지 설명을 입력하세요

답변1

.cls 파일 코드의 l.36에 작성된 대로 enumitem, 설정 leftmarginrightmargin목록을 각각 으로 1pc수행 할 수 있습니다 .5pc

\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} 

여기에 이미지 설명을 입력하세요

관련 정보