okay, change what you have as follows --
select paper.papername
, case when person.firstname='Jacque'
and person.lastname = 'Chirac'
then 'True' else 'False' end
from paper, person, subscription
where paper.paperid = subscription.paperid
and subscription.personid = person.personid
rudy