I would like to be able to add a tag to a block quote in a more or less identical manner as one would with a displayed question. Ideally, I would also be able to use \label and \eqref (or \ref) as if they quote were actually an equation.
You might say that I would like to combine the functionality of the below two examples. Is there a simple way to do this?
\documentclass{article}
\usepackage{csquotes}
\usepackage{lipsum}
\begin{document}
This is a displayed quote.
\begin{displayquote}
\lipsum[1]
\end{displayquote}
That was a displayed quote.
\end{document}
and
\documentclass{article}
\usepackage{amsmath}
\begin{document}
This is how I would like to label my block quote.
\begin{equation}
\tag{A}3x^2+1=5.
\end{equation}
\end{document}


\allowdisplaybreaks? – Astrinus Dec 11 '14 at 22:33\parbox(orminipageortabular), as this boxes the content so it is set as a unit. It would be weird to have it broken across the page boundary though, a paragraph I mean. Where would you put the tag? I guess one could set it a little differently and allow breaking in some form of list (that's LaTeX-speak for allowing breaks across the page boundary), but I'm not sure what is to be gained from it. – Werner Dec 11 '14 at 22:58