I am sorry, it was really not meant condescending. I agree that you have to get into that documentation a little to understand it.
So I try to translate the function description:
`void printAllTagsAs( string $option, [string $class = ''], [string $sort = 'abc'], [bool $counter = FALSE], [bool $links = TRUE], [int $maxfontsize = 2], [int $maxcount = 50], [int $mincount = 10], [int $limit = NULL] )`
means simply:
` printAllTagsAs("<option cloud or list>","<css class you want to use>","<sort order>", "<counter yes or no>","<tags as links yes or no>", "<maximum fontsize>", "<highest number a tag is used that should be shown>", "<lowest number a tag is used that should be shown>","<how many tags should be shown>", )`
As I guessed above you probably have only a few tags assigned, probably less than 10. That is the default value for tags to be shown. If you for example have only 5 times the tag "xy" it is not shown. You could try to adjust the values for maxcount and mincount. You can of course take a look at the function itself within zp-core/template-functions.php.