Latex 以类似于乳胶中的图形的方式处理报价块?

Latex 以类似于乳胶中的图形的方式处理报价块?,latex,Latex,我们一直在试图找出如何实现这一点,但只能在figure环境中使用wrapfig找到实现这一点的方法。我正在使用epigraph包生成报价样式(如屏幕截图所示)。当前行为在此屏幕截图中,由代码生成 \subsection{Methods} \lipsum[1-2] \epigraph{Models, of course, are never true, but fortunately it is only necessary that they be useful.}{\textcite{Bo

我们一直在试图找出如何实现这一点,但只能在figure环境中使用
wrapfig
找到实现这一点的方法。我正在使用
epigraph
包生成报价样式(如屏幕截图所示)。当前行为在此屏幕截图中,由代码生成

\subsection{Methods}

\lipsum[1-2]

\epigraph{Models, of course, are never true, but fortunately it is only necessary that they be useful.}{\textcite{Box1979-em}}
然而,下图是我希望它看起来如何,但不确定如何实现这一点


没有MWE,我不得不做一些调整;但这似乎奏效了


没有MWE,我不得不做一些调整;但这似乎奏效了

\documentclass[11pt,letterpaper]{article}
\usepackage{lipsum}
\usepackage{epigraph}
\usepackage{biblatex}
\usepackage{wrapfig}
\begin{document}
\setcounter{section}{2}
\subsection{Methods}

\begin{wrapfigure}{r}{0pt}%
  \begin{minipage}{0.43\linewidth} % manual adjustment required
    \epigraph{Models, of course, are never true, but fortunately it is only necessary that they be useful.}{Box (1979)}
  \end{minipage}
\end{wrapfigure}

\lipsum[1-2]
\end{document}