Chierchia, Gennaro
[dummy-text]
google.charts.load('current', packages: ['corechart']);
google.charts.setOnLoadCallback(drawChart);
function drawChart()
var options =
height: 200,
legend: position: 'top', maxLines: 3 ,
bar: groupWidth: '75%' ,
isStacked: true,
colors: ['#FF7600', '#409a3c', '#2178b5'],
vAxis:
baselineColor: '#fff',
gridlineColor: '#fff',
textPosition: 'none'
;
var data = google.visualization.arrayToDataTable([
['', 'By', 'Posthumously by', 'About',
role: 'annotation' ],
['1950-1951', 0, 0, 0, ''],
['1951-1952', 0, 0, 0, ''],
['1952-1953', 0, 0, 0, ''],
['1953-1954', 0, 0, 0, ''],
['1954-1955', 0, 0, 0, ''],
['1955-1956', 0, 0, 0, ''],
['1956-1957', 0, 0, 0, ''],
['1957-1958', 0, 0, 0, ''],
['1958-1959', 0, 0, 0, ''],
['1959-1960', 10, 0, 0, ''],
['1960-1961', 0, 0, 0, ''],
['1961-1962', 0, 0, 0, ''],
['1962-1963', 0, 0, 0, ''],
['1963-1964', 0, 0, 0, ''],
['1964-1965', 0, 0, 0, ''],
['1965-1966', 0, 0, 0, ''],
['1966-1967', 0, 0, 0, ''],
['1967-1968', 0, 0, 0, ''],
['1968-1969', 0, 0, 0, ''],
['1969-1970', 0, 0, 0, ''],
['1970-1971', 0, 0, 0, ''],
['1971-1972', 0, 0, 0, ''],
['1972-1973', 0, 0, 0, ''],
['1973-1974', 0, 0, 0, ''],
['1974-1975', 0, 0, 0, ''],
['1975-1976', 0, 0, 0, ''],
['1976-1977', 0, 0, 0, ''],
['1977-1978', 0, 0, 0, ''],
['1978-1979', 0, 0, 0, ''],
['1979-1980', 0, 0, 0, ''],
['1980-1981', 0, 0, 0, ''],
['1981-1982', 0, 0, 0, ''],
['1982-1983', 5, 0, 0, ''],
['1983-1984', 0, 0, 0, ''],
['1984-1985', 30, 0, 0, ''],
['1985-1986', 0, 0, 0, ''],
['1986-1987', 10, 0, 0, ''],
['1987-1988', 15, 0, 0, ''],
['1988-1989', 25, 0, 0, ''],
['1989-1990', 35, 0, 0, ''],
['1990-1991', 30, 0, 0, ''],
['1991-1992', 20, 0, 0, ''],
['1992-1993', 20, 0, 0, ''],
['1993-1994', 25, 0, 0, ''],
['1994-1995', 10, 0, 0, ''],
['1995-1996', 30, 0, 0, ''],
['1996-1997', 20, 0, 0, ''],
['1997-1998', 25, 0, 0, ''],
['1998-1999', 5, 0, 0, ''],
['1999-2000', 10, 0, 0, ''],
['2000-2001', 25, 0, 0, ''],
['2001-2002', 25, 0, 0, ''],
['2002-2003', 0, 0, 0, ''],
['2003-2004', 5, 0, 0, ''],
['2004-2005', 10, 0, 0, ''],
['2005-2006', 10, 0, 0, ''],
['2006-2007', 10, 0, 0, ''],
['2007-2008', 20, 0, 0, ''],
['2008-2009', 0, 0, 0, ''],
['2009-2010', 15, 0, 0, ''],
['2010-2011', 25, 0, 0, ''],
['2011-2012', 0, 0, 0, ''],
['2012-2013', 5, 0, 0, ''],
['2013-2014', 30, 0, 0, ''],
['2014-2015', 0, 0, 0, ''],
['2015-2016', 0, 0, 0, ''],
['2016-2017', 15, 0, 0, ''],
['2017-2018', 15, 0, 0, ''],
['2018-2019', 5, 0, 0, ''],
['2019-2020', 0, 0, 0, ''],
['2020-2021', 0, 0, 0, ''],
]);
var chart = new google.visualization.ColumnChart(document.getElementById('chart_div'));
chart.draw(data, options);
;
function bringBack(sourceKey, targetKey, oclcNum)
comment=prompt("Enter an optional comment and press "OK" or press "Cancel" to end", "");
if(comment!=null)
window.location="/identities/move?undo&sourceKey="+sourceKey+"&targetKey="+targetKey+"&oclcNum="+oclcNum+"&originalIdentity="+targetKey+"&comment="+comment;
function sendBack(sourceKey, targetKey, oclcNum)
comment=prompt("Enter an optional comment and press "OK" or press "Cancel" to end", "");
if(comment!=null)
window.location="/identities/move?undo&sourceKey="+sourceKey+"&targetKey="+targetKey+"&oclcNum="+oclcNum+"&originalIdentity="+sourceKey+"&comment="+comment;
function getElementsByClassName(classname, node)
if(!node)
node = document.getElementsByTagName("body")[0];
var a=;
var re=new RegExp('\b' + classname + '\b');
var els=node.getElementsByTagName("*");
for(var i=0; els.length>=i; i++)
if(re.test(els[i].className))
a.push(els[i]);
return a;
function turnEditEntriesOn(node)
var entries=getElementsByClassName('editEntry', node);
if (entries)
for (var i = 0; entries.length>=i; i++)
entries[i].style.display="block";
document.getElementById('identitiesonSwitch').style.display='none';
document.getElementById('identitiesoffSwitch').style.display='inline';
function turnEditEntriesOff(node)
var entries=getElementsByClassName('editEntry', node);
if (entries)
for (var i = 0; entries.length>=i; i++)
entries[i].style.display="none";
document.getElementById('identitiesonSwitch').style.display='inline';
document.getElementById('identitiesoffSwitch').style.display='none';
Chierchia, Gennaro
Overview
Works: | 82 works in 298 publications in 3 languages and 5,442 library holdings |
---|---|
Genres: | Encyclopedias Conference papers and proceedings Software |
Roles: | Author, Editor, Honoree |
Publication Timeline
.
Most widely held works by
Gennaro Chierchia
Gennaro Chierchia
Meaning and grammar : an introduction to semantics by Gennaro Chierchia(
)
50
editions published
between
1990
and
2004
in
English and Italian
and held by
2,236 WorldCat member
libraries
worldwide
This introduction to natural language semantics addresses the major theoretical questions in the field. It examines the systematic
study of linguistic meaning through a sequence of formal tools and their linguistic applications
Dynamics of meaning : anaphora, presupposition, and the theory of grammar by Gennaro Chierchia(
)
18
editions published
between
1995
and
2009
in
English
and held by
1,565 WorldCat member
libraries
worldwide
This text illustrates how seemingly abstract stances on the nature of meaning can have significant and far-reaching linguistic
consequences, leading to the detection of new facts and influencing the understanding of the syntax/semantics/pragmatics interface
Logic in grammar : polarity, free choice, and intervention by Gennaro Chierchia(
)
15
editions published
in
2013
in
English
and held by
508 WorldCat member
libraries
worldwide
In a fundamental investigation of language and human reasoning Gennaro Chierchia looks at how syntactic and inferential processes
interact through the study of polarity sensitive and free choice items. He reformulates the semantics of focus and scope and
the pragmatics of implicature as part of the recursive semantic system
Topics in the syntax and semantics of infinitives and gerunds by Gennaro Chierchia(
Book
)
35
editions published
between
1984
and
2018
in
English and Undetermined
and held by
197 WorldCat member
libraries
worldwide
Properties, types and meaning(
Book
)
5
editions published
in
1989
in
English
and held by
183 WorldCat member
libraries
worldwide
This collection focuses on two interrelated problems which are central to the analysis of meaning: intentionality and the
nature of semantic categories. Most of the problems that semantics currently faces call for a characterization of information
bearing structures richer than one cast in terms of possible worlds, and for a system of semantic categories more dynamic
and flexible than the one stemming from standard type-theory. -- Back cover
Semantic interfaces : reference, anaphora, and aspect(
Book
)
10
editions published
in
2001
in
English
and held by
167 WorldCat member
libraries
worldwide
This volume collects papers on the theory of meaning (semantics) and its relation to syntax
Semantica by Gennaro Chierchia(
Book
)
15
editions published
between
1997
and
2007
in
Italian and Portuguese
and held by
76 WorldCat member
libraries
worldwide
The MIT encyclopedia of the cognitive sciences by Robert A Wilson(
Book
)
1
edition published
in
1999
in
English
and held by
56 WorldCat member
libraries
worldwide
Alfabetisk opslagsværk. Hver artikel er skrevet af førende forskere på området
Properties, types and meaning by Type Theory and Semantics Conference on Property Theory(
Book
)
15
editions published
between
1988
and
1989
in
English
and held by
46 WorldCat member
libraries
worldwide
Properties, Types and Meaning : Volume II: Semantic Issues by Gennaro Chierchia(
)
2
editions published
between
1988
and
1989
in
English
and held by
37 WorldCat member
libraries
worldwide
This collection of papers stems originally from a conference on Property Theory, Type Theory and Semantics held in Amherst
on March 13-16 1986. The conference brought together logicians, philosophers, com puter scientists and linguists who had been
working on these issues (of ten in isolation from one another). Our intent was to boost debate and exchange of ideas on these
fundamental issues at a time of rapid change in semantics and cognitive science. The papers published in this work have evolved
substantially since their original presentation at the conference. Given their scope, we thought it convenient to divide the
work into two volumes. The first deals primarily with logical and philosophical foundations, the second with more empirical
semantic issues. While there is a common set of issues tying the two volumes together, they are both self-contained and can
be read independently of one another. Two of the papers in the present collection (van Benthem in volume 1 and Chierchia in
volume II) were not actually read at the conference. They are nevertheless included here for their direct relevance to the
topics of the volumes. Regrettably, some of the papers that were presented (Feferman, Klein, and Plotkin) could not be included
in the present work due to timing problems. We nevertheless thank the authors for their contribu tion in terms of ideas and
participation in the debate
Properties, types and meaning(
Book
)
10
editions published
in
1989
in
English
and held by
34 WorldCat member
libraries
worldwide
Significato e grammatica : semantica del linguaggio naturale by Gennaro Chierchia(
Book
)
7
editions published
in
1993
in
Italian and English
and held by
23 WorldCat member
libraries
worldwide
Properties, types and meaning(
Book
)
9
editions published
in
1989
in
English
and held by
22 WorldCat member
libraries
worldwide
Topics in the syntax and semantics of infinitives and gerunds : a dissertation by Gennaro Chierchia(
)
9
editions published
in
1984
in
English
and held by
21 WorldCat member
libraries
worldwide
Properties, types and meaning(
Book
)
8
editions published
between
1988
and
1989
in
English
and held by
20 WorldCat member
libraries
worldwide
Meaning and grammar : an introduction to semantics by Gennaro Chierchia(
)
1
edition published
in
1990
in
English
and held by
19 WorldCat member
libraries
worldwide
Annotation
The Parameter of Aspect by Gennaro Chierchia(
)
2
editions published
between
1991
and
1997
in
English
and held by
10 WorldCat member
libraries
worldwide
Reference and anaphoric relations by Klaus von Heusinger(
)
1
edition published
in
2001
in
English
and held by
9 WorldCat member
libraries
worldwide
The notions of reference and anaphoric relations have been discussed since antiquity and they are still one of the most challenging
subjects in linguistics, logics and philosophy of language. The quest for a satisfying account of anaphoric reference has
initiated a wide range of new and interesting approaches in formal semantics; and recent research confirms the old insight
that reference and anaphoricity are closely interrelated issues. This volume brings together fifteen original research articles
on the representation and interpretation of indefinite and definite noun phrases, anaphoric pronouns, and closely related
issues such as scope and quantifier movement. The analyses are worked out within discourse representation theory, file change
semantics, and dynamic logic, a family of recent frameworks developed for the formal analysis of discourse semantics. Particular
attention is paid to E-type theories of pronouns and to the use of choice functions in the semantics of noun phrases. The
papers collected in this volume shed light on the question of how linguistic expressions establish reference and anaphoric
relations. The use of choice function approaches within dynamic semantics opens new research perspectives on these questions.
Audience: This book will be of interest to scholars and students of linguistics, logicians, philosophers of language, computational
linguists, and computer scientists with an interest in the semantics of natural language
Compositionality, Context and Semantic Values Essays in Honour of Ernie Lepore by Gennaro Chierchia(
)
2
editions published
in
2009
in
Undetermined
and held by
9 WorldCat member
libraries
worldwide
Structures for Semantics by Gennaro Chierchia(
)
1
edition published
in
1991
in
English
and held by
9 WorldCat member
libraries
worldwide
more
fewer
Audience Level
0 | 1 | |||
Kids | General | Special |
Audience level:
0.21
(from
0.06
for
Dynamics o
... to
0.97
for
Significat
...)
Related Identities
McConnell-Ginet, Sally
Partee, Barbara Hall Editor
Turner, Raymond 1947- Editor
Cecchetto, Carlo Editor
Guasti, Maria Teresa Editor
Pelletier, Francis J. Other
Jacobson, Pauline
Neville, Helen J.
Sperber, Dan
Russell, Stuart
Useful Links
Library of Congress Authority File (English)
Virtual International Authority File.
Wikipedia Gennaro Chierchia
Wikidata.
Associated Subjects
Anaphora (Linguistics) Artificial intelligence Cognition Cognitive science Computational linguistics Definiteness (Linguistics) Generative grammar Grammar Grammar, Comparative and general Grammar, Comparative and general--Aspect Grammar, Comparative and general--Gerund Grammar, Comparative and general--Grammatical categories Grammar, Comparative and general--Infinitive Grammar, Comparative and general--Quantifiers Grammar, Comparative and general--Syntax Grammar, Comparative and general--Tense Grammar, Comparative and general--Verb Language and languages Language and logic Linguistics Linguistics--Philosophy Logic Polarity (Linguistics) Pragmatics Presupposition (Logic) Reference (Linguistics) Semantics Semantics, Comparative Semantics (Philosophy)
Covers
Alternative Names
Gennaro Chierchia Italiaans taalkundige
Gennaro Chierchia Italian linguist
Gennaro Chierchia lingüista italiano
Languages
English
(191)
Italian
(21)
Portuguese
(1)
(function(i,s,o,g,r,a,m))(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-45070317-1', 'worldcat.org');
ga('send', 'pageview');
setTimeout(function()var a=document.createElement("script");
var b=document.getElementsByTagName("script")[0];
a.src=document.location.protocol+"//dnn506yrbagrg.cloudfront.net/pages/scripts/0018/3695.js?"+Math.floor(new Date().getTime()/3600000);
a.async=true;a.type="text/javascript";b.parentNode.insertBefore(a,b), 1);