When having a comparatively large number of footnotes that are each very short (URLs say), it sometimes looks weird to have them stack up to a high footnote tower, especially in a minipage or some similarly confined space.

\documentclass[a5paper]{article}
\usepackage[hidelinks=true]{hyperref}
\newcommand{\footurl}[1]{\footnote{\url{#1}}}
\begin{document}
\begin{minipage}{\textwidth}
As Linux Jabber clients there are for example Pidgin\footurl{http://www.pidgin.im/}, Kopete\footurl{http://kopete.kde.org/}, Gajim\footurl{http://gajim.org/} and Psi\footurl{http://psi-im.org/}.
\end{minipage}
\end{document}
Intuitively, I'd like to see these footnotes next to each other, like so:

Is there any package that does this for me? Or any other way?
If at all possible I'd like not to go all two-columned with all my footnotes.
Edit
Just for reference, I'll show the two closest solutions so far. The first is the eledmac solution I linked to myself which can be used locally when not changing the \footnote command. It's not compatible with It can be made to work with fnpct however.fnpct with the excellent extension capabilities of this package, so the following image uses \AdaptNoteNoMult{\footnoteA}.

The second is the solution suggested by jon which uses bigfoot and the para option. It is compatible with fnpct which I used in the following example but it inherits manyfoot's "feature" of escaping minipages so the length of the following example is still a huge understatement. It's also not properly aligned so it doesn't look satisfactory on its own.


footmiscpackage with theparaoption? – Mico Jun 14 '13 at 00:14\usepackage[para]{bigfoot}\DeclareNewFootnote[para]{default}, which will use paragraphed notes except whenbigfoot's underlying 'badness' algorithm decides that it would look to worse if the footnote in question is started on a new line. It is very impressive, but unfortunately it can't match manually placed mixed short and long footnotes you'll see in some academic publications. If only it could be extended to do (only) 1, 2, or 3 short notes per line. Way above my pay grade, though! – jon Jun 14 '13 at 05:07\usepackage[para]{footmisc}but it didn't make any difference. – Christian Jun 14 '13 at 06:43eledmacpackage? (see section 24.2) – d-cmst Jun 14 '13 at 07:11eledmacandbigfoot. I used the code I linked to for myeledmac"solution". If there is any way it can be modified to achieve the desired output, please let me know. – Christian Jun 14 '13 at 07:26eledmacdoes some weird sh...enanigans. It actually doubles every footnote but not even in an aabbcc fashion but abcabc. Crazy :) – Christian Jun 14 '13 at 08:57