如何縮排溢出到第二行的行

如何縮排溢出到第二行的行

我有一些文字想要稍微縮進,第三行不斷溢出到第二行,這很好,但失去了縮排。我已經嘗試了此處詳細介紹的一些選項,但所有選項都具有相同的結果。我沒有使用 itemise,因為每行之間的間隙太大,而且我找不到足夠減少此間隙的解決方法。

\documentclass[a4paper,10pt]{article}
\usepackage[parfill]{parskip}
\usepackage[a4paper, left=30mm, right=30mm, top=20mm, bottom=20mm]{geometry}

\title{Markets}

\newcommand{\forceindent}{\leavevmode{\parindent=1em\indent}}

\begin{document}

\forceindent $\diamond$ News: Breaking news\\
\forceindent $\diamond$ Non-exchange\\
\forceindent $\diamond$ Corporate fundamentals such as corporate actions (dividends, splits, earnings etc.), financials such as historical net income, debt; as well as non financial data, such as management.\\
\forceindent $\diamond$ Global economic.\\

\end{document}

答案1

正如評論中已經提到的,透過使用該enumitem包,您可以將您的項目寫為清單:

\documentclass[a4paper,10pt]{article}
\usepackage[parfill]{parskip}
\usepackage[a4paper, left=30mm, right=30mm, top=20mm, bottom=20mm]{geometry}
\usepackage{enumitem}
\title{Markets}

\begin{document}
    \begin{itemize}[label= $\diamond$, wide=1em, leftmargin=1em]
\item   News: Breaking news 
\item   Non-exchange 
\item   Corporate fundamentals such as corporate actions (dividends, splits, earnings etc.), financials such as historical net income, debt; as well as non financial data, such as management. 
\item   Global economic. 
    \end{itemize}
\end{document}

在此輸入影像描述

答案2

也許您正在尋找懸掛標識:

\documentclass[a4paper,10pt]{article}
%\usepackage[parfill]{parskip}
\usepackage[a4paper, left=30mm, right=30mm, top=20mm, bottom=20mm]{geometry}

\title{Markets}

\newcommand{\forceindent}{\par\leavevmode\hangindent=4em\hangafter=1\indent}

\begin{document}

Normal text 

\forceindent $\diamond$ News: Breaking news
\forceindent $\diamond$ Non-exchange
\forceindent $\diamond$ Corporate fundamentals such as corporate actions (dividends, splits, earnings etc.), financials such as historical net income, debt; as well as non financial data, such as management.
\forceindent $\diamond$ Global economic.

Normal text

\end{document}

在此輸入影像描述

(請注意,我還刪除了\\行末尾的所有內容)

相關內容