将文本放在项目符号右侧的不同行中

将文本放在项目符号右侧的不同行中

正如标题所说,我想将一块文本整齐地放在项目符号(或圆圈)的右侧。

例如,这是我的一些代码:

\noindent $\bullet$ We will explore the following properties of $ASM_n$:

$\circ$ The number of facets.

$\circ$ Its vertices.

$\circ$ Projection to the permutohedron (no proof).

\noindent $\bullet$ Tool: flow grids

$\circ$ Consider a $(n+2) \times (n+2)$ grid with $2$-dimensional Cartesian coordinates (with $(0,0)$ shifted to top left).

$\circ$ Take the $4n$ "boundary vertices" and $n^2$ internal vertices.

$\circ$ Define the $\emph{complete flow grid } C_n$ as the directed graph on these vertices, with edge set:
$$\{ ((i,j),(i,j \pm 1)),((i,j),(i \pm 1,j)) \ | \ i,j \in [n] \}$$

这给了我:

在此处输入图片描述

我如何让“(with (0,0)…)”保持在上一行圆圈的右侧?

答案1

enumitem是一个很好的工具。

\documentclass[]{article}

\usepackage{enumitem}

\newcommand\blabla{Bla, bla, bla, bla, bla, bla, bla, bla, bla, bla, 
bla, bla, bla, bla, bla, bla, bla, bla, bla, bla, bla, bla, bla, bla,
bla, bla, bla, bla, bla, bla, bla, bla, bla, bla, bla, bla, bla, bla, 
bla, bla, bla, bla, bla, bla, bla, bla, bla, bla, bla, bla, bla}

\begin{document}

\begin{itemize}[label=\textbullet]
    \item \blabla{}
    
    \begin{itemize}[label=$\circ$]
        \item \blabla{}
    \end{itemize}
\end{itemize}

\end{document}

得出的结果为:

在此处输入图片描述

相关内容