Hi vaarky,
<DPL>
category=cat_1
...
category=cat_n
order=ascending
ordermethod=title
</DPL>
is the basic construct to get a listing of articles in cat_1,...,cat_n. In other words, the boolean "and" is accomplished by citing multiple instances of "category=". But if there are still more than some fixed number (the upper limit is currently 500), then only the 500 articles will be displayed. To get, say, 200 articles displayed, starting with the 601st article add lines:
count=200
offset=600
You will need this for the the cats "Renaissance music" & "Works in Latin", since there are currently about 1700 such works (and even Palestrina has a little over 200 works in Latin, but at least this is less than the 500 upper limit). Hence, the code for Ren & Latin, 601 through 800 looks like (with the optional line columns set to 2 to produce two-column output):
<DPL>
category=Renaissance music
category=Works in Latin
ordermethod=title
order=ascending
offset=600
count=200
columns=2
</DPL>
When viewing these, it's probably best to enter the info and then simply preview (rather than save) your sandbox (or other page).
I've just made a
Template:MultiCatList to automate these ideas (it will be extended later). The code:
{{MultiCatList|Renaissance music|Works in Latin|col=2|skip=1200|number=400}}
lists all works common to Ren & Latin, in two columns, skipping the first 1200, and displaying (up to) 400 results. The col, skip, number paramters are optional and default to 1, 0, 500* respectively.
Note: the
number parameter now defaults to
500 instead of the previous 200.
So...
{{MultiCatList|Renaissance music|Works in Latin|SATB}}
lists the first 500 Ren, Latin, SATB works in a single column.
{{MultCatList|William Byrd|Works in Latin|skip=100|number=50}} lists the Byrd Latin works from 101 through 150.
As an added feature, the total number of pages is listed at the beginning (helps in knowing how much you might wish to peruse!).
It's not quite possible to implement something like category listings - which allow looking at the next (or previous) 200 items, or (with Template:CatAZ) clicking on a letter of the alphabet and obtaining a listing that starts there. However, it is possible to obtain listings of pages whose titles start with any letter (or combination of letters) - more later.
I hope this is of use to you.
Chuck
Edit: I've changed the default for "number" to 500 (from 200) and implemented a "match" parameter that can be used to list pages whose titles start with any letter (or match any combination of letters) - see my latest post below.