<<list-links filter:"[tag[particular_tag]]">>
Regards
Tony
<$list filter="[tag[$intag$]]"><$list filter="[is[current]get[tags]prefix[$intag$]suffix[$intag$]]" variable=null>\define showonlytagged(intag)
<$list filter="[tag[$intag$]]">
<$list filter="[is[current]get[tags]prefix[$intag$]suffix[$intag$]]" variable=null>
{{!!title}} Tagged "$intag$" only<br>
</$list>
\end<<showonlytagged "one">>
You can do this leveraging filter Runs to apply some Boolean logic. Or maybe illogic.
For simplicity, I'm using "TagA" as the name of the tag.
Find:all tiddlers tagged with TagA
From those, subtract the following group
find all tiddlers with TagA
find all tags in those tiddlers, removing TagA
find all tiddlers tagged by those tiddlers
subtract this group
Here's what I have, tested very briefly on TiddlyWiki.com:
<<list-links "[tag[TagA]] -[tag[TagA]tags[]!title[TagA]tagging[]]">>
Change TagA to you tag name of course. Hopefully I haven't made any logic errors, but it's easy to overlook something, so test around a bit.
Good luck!
-- Mark