From 8cb50793389bcf7e586350d385ac9849e9494267 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 22 May 2013 13:26:52 +0530 Subject: [PATCH] Add examples of useful virtual libraries --- manual/virtual_libraries.rst | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/manual/virtual_libraries.rst b/manual/virtual_libraries.rst index eb1906355c..f695bb0e45 100644 --- a/manual/virtual_libraries.rst +++ b/manual/virtual_libraries.rst @@ -57,6 +57,26 @@ library. The virtual library will then be created based on the search you just typed in. Searches are very powerful, for examples of the kinds of things you can do with them, see :ref:`search_interface`. +Examples of useful Virtual Libraries +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + + * Books added to |app| in the last day:: + date:>1daysago + * Books added to |app| in the last month:: + date:>30daysago + * Books with a rating of 5 stars:: + rating:5 + * Books with a rating of at least 4 stars:: + rating:>=4 + * Books with no rating:: + rating:false + * Periodicals downloaded by the Fetch News function in |app|:: + tags:=News and author:=calibre + * Books with no tags:: + tags:false + * Books with no covers:: + cover:false + Working with Virtual Libraries -------------------------------------