I would like to split bibliography list into a list with @misc tags, where all url's references are and all other tags for offline reference list. How is it possible to do it? I have snippet of a template that should make it possible:
\ifdefined\bibheadingonline
\defbibheading{online}{\section*{\bibheadingonline}}
\else
\defbibheading{online}{\section*{Online References}}
\fi
\ifdefined\bibheadingoffline
\defbibheading{offline}{\section*{\bibheadingoffline}}
\else
\defbibheading{offline}{\section*{Printed References}}
\fi
\defbibfilter{online}{%
\( \type{online} \)}
\defbibfilter{offline}{%
\( \not \type{online} \)}
but it doesn't work for me. I am new in Latex so I am using a template which was defined not by myself.. I will be glad for any help. If needed, I can upload a part of my thesis for test purposes on a server. Btw. I am using MikeTex 2.9 with TeXnicCenter 2.0 Alpha 3

biblatexpackage, and it may well be that your template doesn't usebiblatex. You need to provide more information about the template you use. Note that you should try to add a minimal working example (MWE), not a part of your thesis. – lockstep Jan 27 '12 at 21:26biblatexfor your thesis, the answer to your question is very easy - splitting bibliographies by type is one of the package's standard features. – lockstep Jan 27 '12 at 21:31