![Como recuar uma linha que transborda para uma segunda linha](https://rvso.com/image/348623/Como%20recuar%20uma%20linha%20que%20transborda%20para%20uma%20segunda%20linha.png)
Eu tenho um texto que quero recuar um pouco, a terceira linha continua transbordando para a segunda linha, o que é bom, mas perde o recuo. Eu tentei algumas das opções detalhadas aqui, mas todas tiveram o mesmo resultado. Não usei itemise porque as lacunas entre cada linha eram muito grandes e não consegui encontrar uma solução alternativa que reduzisse essa lacuna o suficiente.
\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}
Responder1
Como já mencionado nos comentários, através do enumitem
pacote você pode escrever seus itens como uma lista:
\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}
Responder2
Talvez você esteja procurando uma identificação suspensa:
\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}
(Observe que também removi todos os \\
no final das linhas)