Apologies for the slightly strange title, I struggled to come up with something else.
I have defined my own quote environment with brackets around the quote. In order to do that I use tikz and the quote content is put in a node. If I now use a \footnote in this node it is but directly under the quote. I'd rather have the footnote at the end of the page, so how can I "break out" of the local group the tikz node seems to create?
\documentclass[parskip=half]{scrartcl}
\usepackage{tikz}
\usetikzlibrary{calc}
\usepackage{environ,xcolor}
\usepackage{lipsum}
\NewEnviron{bquote}{%
\noindent%
\par%
\addmargin{30pt}
\begin{tikzpicture}%
\node[text width=0.97\linewidth](q){\BODY};%
\draw[ultra thick,line width=7pt,overlay,gray!30] (q.north west) -- ($(q.north
west) - (15pt,0)$) -- ($(q.south west) - (15pt,0)$) -- (q.south west);%
\draw[ultra thick, line width=7pt,overlay,gray!30] (q.north east) -- ($(q.north
east) + (15pt,0)$) -- ($(q.south east) + (15pt,0)$) -- (q.south east);%
\end{tikzpicture}%
\footnote{Outside the group}%just a test
\par%
}%
\begin{document}
\lipsum[1]
\begin{bquote}
\lipsum[3]\footnote{Inside the node and sadly local}
\end{bquote}
\lipsum[1]
\end{document}


minipageandtabular. See the TeX FAQ entry for it: http://www.tex.ac.uk/cgi-bin/texfaq2html?label=footintab – Martin Scharrer Jul 06 '11 at 16:49environ; which is a great package) as shown e.g. in How to make a textbox with this TikZ code ? and How to resize a line with the text height with TikZ? (also a quote). This is just a general node and won't help you with the footnotes. It would allow verbatim etc. content. – Martin Scharrer Jul 06 '11 at 16:51#1here, but it works fine with small changes. See my answer. – Martin Scharrer Jul 06 '11 at 17:03\par\noindentnot\noindent\par. And you can use([shift={(-15pt,0)}]q.south west)instead of($(q.south west) - (15pt,0)$). Then you don't even need thecalclibrary. – Martin Scharrer Jul 06 '11 at 17:05current bounding boxnode which can be used to access the (current) whole size of thetikzpicture. – Martin Scharrer Jul 06 '11 at 17:14pgfmanual(v2.10) Section 13 "Specifying Coordinates", p.123: "The general syntax is([<options>]<coordinate specification>)." But it takes a little to figure that<options>can be used forshifts! – Martin Scharrer Jul 06 '11 at 17:26