将列表插入到 epigraph 环境中

将列表插入到 epigraph 环境中

我想列出以下内容:

\epigraph{There are only four systems that bridge all linguistic barriers:\\

--The complete set of mathematical symbols,\\

--The International System of Units,\\

--The symbols for chemical elements,\\

--The way of writing notes for music.
}

答案1

\leavevmode如果在环境结束后添加,它就会起作用\itemize

\documentclass{article}

\usepackage{epigraph}
\usepackage{lipsum}

\begin{document}

\epigraph{There are only four systems that bridge all linguistic barriers:
%
\begin{itemize}
\item The complete set of mathematical symbols,
\item The International System of Units,
\item The symbols for chemical elements,
\item The way of writing notes for music.
\end{itemize}
%
\leavevmode}{}

\lipsum[1]

\end{document}

在此处输入图片描述

相关内容