Hopkins, Anthony 1937-


WorldCat Identities



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' ],

['1940-1941', 5, 0, 0, ''],

['1941-1942', 0, 0, 0, ''],

['1942-1943', 0, 0, 0, ''],

['1943-1944', 0, 0, 0, ''],

['1944-1945', 0, 0, 0, ''],

['1945-1946', 0, 0, 0, ''],

['1946-1947', 0, 0, 0, ''],

['1947-1948', 0, 0, 0, ''],

['1948-1949', 0, 0, 0, ''],

['1949-1950', 0, 0, 0, ''],

['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', 0, 0, 0, ''],

['1960-1961', 0, 0, 0, ''],

['1961-1962', 0, 0, 0, ''],

['1962-1963', 5, 0, 0, ''],

['1963-1964', 0, 0, 0, ''],

['1964-1965', 10, 0, 0, ''],

['1965-1966', 0, 0, 0, ''],

['1966-1967', 0, 0, 0, ''],

['1967-1968', 0, 0, 0, ''],

['1968-1969', 20, 0, 0, ''],

['1969-1970', 20, 0, 0, ''],

['1970-1971', 15, 0, 0, ''],

['1971-1972', 5, 0, 0, ''],

['1972-1973', 20, 0, 0, ''],

['1973-1974', 15, 0, 0, ''],

['1974-1975', 20, 0, 0, ''],

['1975-1976', 15, 0, 0, ''],

['1976-1977', 5, 0, 0, ''],

['1977-1978', 25, 0, 0, ''],

['1978-1979', 20, 0, 0, ''],

['1979-1980', 5, 0, 0, ''],

['1980-1981', 30, 0, 0, ''],

['1981-1982', 35, 0, 0, ''],

['1982-1983', 30, 0, 0, ''],

['1983-1984', 20, 0, 0, ''],

['1984-1985', 30, 0, 0, ''],

['1985-1986', 30, 0, 0, ''],

['1986-1987', 25, 0, 0, ''],

['1987-1988', 30, 0, 0, ''],

['1988-1989', 30, 0, 0, ''],

['1989-1990', 30, 0, 15, ''],

['1990-1991', 35, 0, 0, ''],

['1991-1992', 40, 0, 0, ''],

['1992-1993', 40, 0, 15, ''],

['1993-1994', 45, 0, 20, ''],

['1994-1995', 40, 0, 20, ''],

['1995-1996', 40, 0, 15, ''],

['1996-1997', 40, 0, 5, ''],

['1997-1998', 40, 0, 20, ''],

['1998-1999', 45, 0, 15, ''],

['1999-2000', 45, 0, 10, ''],

['2000-2001', 45, 0, 15, ''],

['2001-2002', 50, 0, 10, ''],

['2002-2003', 45, 0, 0, ''],

['2003-2004', 45, 0, 0, ''],

['2004-2005', 45, 0, 20, ''],

['2005-2006', 45, 0, 20, ''],

['2006-2007', 45, 0, 10, ''],

['2007-2008', 50, 0, 5, ''],

['2008-2009', 45, 0, 10, ''],

['2009-2010', 45, 0, 0, ''],

['2010-2011', 45, 0, 0, ''],

['2011-2012', 45, 0, 0, ''],

['2012-2013', 40, 0, 0, ''],

['2013-2014', 45, 0, 0, ''],

['2014-2015', 40, 0, 5, ''],

['2015-2016', 40, 0, 5, ''],

['2016-2017', 40, 0, 0, ''],

['2017-2018', 45, 0, 0, ''],

['2018-2019', 35, 0, 0, ''],

['2019-2020', 10, 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';




Hopkins, Anthony 1937-



Overview









Works: 858
works in
4,827
publications in
11
languages and
109,738
library holdings

Genres:
Drama 
Film adaptations 
Action and adventure films 
Fantasy films 
History 
Historical films 
Science fiction films 
Biographical films 
War films 
Detective and mystery films 

Roles:
Actor, Narrator, Performer, Author, Other, Costume designer, Artist, Interviewee, Contributor, Director, Dedicatee, Bibliographic antecedent, Singer, Editor, Adapter, Honoree, pre
Classifications: PN1997,
791.4372


Publication Timeline

.



Most widely held works about
Anthony Hopkins


  • Anthony Hopkins : the authorized biography by Quentin Falk(
    Book
    )



  • Anthony Hopkins : the unauthorized biography by Michael Feeney Callan(
    Book
    )



  • Anthony Hopkins : too good to waste : a biography by Quentin FALK(
    Book
    )



  • Anthony Hopkins : a three act life by Michael Feeney Callan(
    Book
    )



  • Anthony Hopkins : in darkness and light by Michael Feeney CALLAN(
    Book
    )



  • Arise Sir Anthony Hopkins by Michael Feeney Callan(
    Book
    )



  • Stage managing chaos : a diary of the Old Vic production of Fernando Arrabal's The Architect and the Emperor of Assyria by Jackie Harvey(
    Book
    )



  • The many faces of Zorro(
    Visual
    )



  • Welsh drinkers by Aubrey Malone(
    Book
    )



  • Anthony Hopkins : the biography : reflections from an offshore island by Cathy Jenkins Mathias(
    Book
    )



  • Anthony Hopkins by John Emyr(
    Book
    )



  • The Anthony Hopkins handbook : everything you need to know about Anthony Hopkins(

    )



  • Anthony Hopkins : an American Film Institute seminar on his work : [held March 17, 1976] by Anthony Hopkins(
    Book
    )



  • Anthony Hopkins : too good to waste : a biography by Quentin Falk(
    Recording
    )



  • Anthony Hopkins(

    )



  • A Julie Taymor film, Titus(
    Book
    )



  • Martin Poll Papers by Martin Poll(

    )



  • Anthony Hopkins--talking with David Frost(
    Visual
    )



  • Conversations : Anthony Hopkins by Anthony Hopkins(
    Visual
    )



  • Sir Anthony Hopkins by Bart Mills(

    )



 

moreShow More Titles

fewerShow Fewer Titles




Most widely held works by
Anthony Hopkins


The silence of the lambs by Jonathan Demme(
Visual
)

172
editions published

between
1990
and
2018
in
5
languages

and held by
4,559 WorldCat member

libraries

worldwide

FBI agent Clarice Starling is assigned to help find a missing woman to save her from a psychopathic serial killer who skins
his victims. Clarice attempts to gain a better insight into the twisted mind of the killer by talking to another psychopath
Hannibal Lecter, who used to be a respected psychiatrist



Amistad by Steven Spielberg(
Visual
)

105
editions published

between
1993
and
2016
in
7
languages

and held by
3,720 WorldCat member

libraries

worldwide

Chronicles the 1839 revolt on board a slave ship bound for America. Much of the story involves the court-room drama about
the slave who led the revolt



Thor by Kenneth Charles Branagh(
Visual
)

65
editions published

between
2011
and
2017
in
4
languages

and held by
2,840 WorldCat member

libraries

worldwide

When the arrogant warrior Thor is banished to Earth from his homeworld of Asgard, he must fight to reclaim his lost powers.
Pursued by an invasion force sent to destroy him, the fallen God of Thunder must rise to the battle and learn what it takes
to become a true hero



Legends of the fall by Edward Zwick(
Visual
)

97
editions published

between
1985
and
2018
in
8
languages

and held by
2,784 WorldCat member

libraries

worldwide

The story of the Ludlow family of Montana, spanning the first three decades of the 20th century


The mask of Zorro by Steven Spielberg(
Visual
)

62
editions published

between
1940
and
2013
in
5
languages

and held by
2,444 WorldCat member

libraries

worldwide

The elder Zorro comes out of retirement to train a new Zorro to fight the enemy Montero


Beowulf by Benjamin Bagby(
Visual
)

53
editions published

between
2007
and
2016
in
English and Spanish
and held by
2,430 WorldCat member

libraries

worldwide

In the age of heroes comes the mightiest warrior of them all, Beowulf. After destroying the overpowering demon Grendel, he
incurs the undying wrath of the beast's ruthlessly seductive mother, who will use any means possible to ensure revenge. The
ensuing epic battle resonate throughout the ages



Noah by Darren Aronofsky Movie(
Visual
)

39
editions published

between
2013
and
2014
in
3
languages

and held by
2,296 WorldCat member

libraries

worldwide

A man is appointed by God to carry out a crucial mission of rescue before a calamitous flood destroys the world


The remains of the day by James Ivory(
Visual
)

78
editions published

between
1993
and
2016
in
6
languages

and held by
2,293 WorldCat member

libraries

worldwide

This is a story of blind devotion and repressed love between a fanatically perfect butler and a high-spirited, strong-minded
young housekeeper in the employ of a British lord who is unwittingly a Nazi dupe



The elephant man by David Lynch(
Visual
)

103
editions published

between
1980
and
2017
in
6
languages

and held by
2,137 WorldCat member

libraries

worldwide

Based on a true story, the film examines the complex emotional experiences faced by John Merrick, the "Elephant Man" when
he is discovered by a dedicated surgeon. Rescued from his degrading life as a circus freak, Merrick is given a chance to live
his last years with comfort, respect, and dignity



Thor. Ragnarok by Taika Waititi(
Visual
)

23
editions published

between
2017
and
2018
in
English and Spanish
and held by
2,098 WorldCat member

libraries

worldwide

Thor is imprisoned on the other side of the universe and finds himself in a race against time to get back to Asgard to stop
Ragnarok, the destruction of his homeworld and the end of Asgardian civilization, at the hands of an all-powerful new threat,
the ruthless Hela




The lion in winter by Anthony Harvey(
Visual
)

47
editions published

between
1968
and
2018
in
3
languages

and held by
2,040 WorldCat member

libraries

worldwide

Dramatization of the relationship between Henry II and Eleanor of Aquitaine


Othello by William SHAKESPEARE(
Visual
)

95
editions published

between
1979
and
2017
in
English and Undetermined
and held by
1,996 WorldCat member

libraries

worldwide

Shakespeare's play about the tragic consequences of jealousy. Othello appoints Cassio as his chief lieutenant, arousing the
jealousy of Iago, who conspires to undo them both. Iago tells Othello that his wife, the beautiful Desdemona, is having an
affair with Cassio. Othello strangles Desdemona before learning of Iago's evil, and then kills himself in remorse



Transformers by Michael Bay(
Visual
)

34
editions published

in
2017
in
English
and held by
1,981 WorldCat member

libraries

worldwide

Humans and Transformers are at war, Optimus Prime is gone. The key to saving humanity's future lies buried in the secrets
of the past, in the hidden history of Transformers on Earth



Alexander by Jenny Beavan(
Visual
)

52
editions published

between
2004
and
2014
in
3
languages

and held by
1,893 WorldCat member

libraries

worldwide

The story of Alexander the Great, who in 4th century BC conquered ninety percent of the known world of the time by defeating
Greece, Persia, Afghanistan, and India in just eight years



Thor : the dark world by Chris Hemsworth(
Visual
)

23
editions published

between
2013
and
2014
in
English
and held by
1,852 WorldCat member

libraries

worldwide

Thor fights to restore order across the cosmos, but an ancient race led by the vengeful Malekith returns to plunge the universe
back into darkness. Faced with an enemy that even Odin and Asgard cannot withstand, Thor must embark on his most perilous
and personal journey yet, one that will reunite him with Jane Foster and force him to sacrifice everything to save us all



Hitchcock by Sacha Gervasi(
Visual
)

86
editions published

between
2003
and
2014
in
7
languages

and held by
1,848 WorldCat member

libraries

worldwide

Plagued by both a reckless ego and nagging self-doubt, Hollywood legend Alfred Hitchcock becomes obsessed with a grisly murder
story that the studios won't back. Determined, he risks his reputation, his home and even the love of his wife Alma, as he
sets out to make the film



Dr. Seuss' How the Grinch stole Christmas by Ron Howard(
Visual
)

31
editions published

between
2000
and
2017
in
English
and held by
1,792 WorldCat member

libraries

worldwide

In Whoville, live the Whos, an almost mutated sort of munchkinlike people. All the Whos love Christmas, yet just outside of
their beloved Whoville lives the Grinch. The Grinch is a nasty creature that hates Christmas, and plots to steal it away from
the Whos which he equally abhors. Yet a small child, Cindy Lou Who, decides to try befriend the Grinch



Meet Joe Black by Martin Brest(
Visual
)

74
editions published

between
1985
and
2017
in
4
languages

and held by
1,770 WorldCat member

libraries

worldwide

Death appears to claim a wealthy media mogul who bargains for more time, during which Death falls in love with the man's daughter


A bridge too far by Richard Attenborough(
Visual
)

25
editions published

between
1977
and
2014
in
English
and held by
1,746 WorldCat member

libraries

worldwide

A dramatic recreation of an Allied airdrop behind German lines in Holland, and the subsequent disastrous Battle of Arnhem


Hannibal by Ridley Scott(
Visual
)

87
editions published

between
2000
and
2011
in
6
languages

and held by
1,599 WorldCat member

libraries

worldwide

After escaping from the asylum in Baltimore, Dr. Hannibal Lecter, moves to Florence, Italy where he has become one of the
curators of the Palazzo Vecchio. His cover is broken when a cop, for money, turns Dr. Lecter over to his old patient, Mason
Verger. FBI agent Clarice Starling finds out about Mason's evil plot to feed Dr. Lecter to a bunch of man-eating hogs and
will do anything to make sure that Mason doesn't succeed




 

moreShow More Titles

fewerShow Fewer Titles




Audience Level









0

Audience Level


1
  Kids General Special  

Audience level:
0.17
(from
0.09
for
Thor. Ragn
... to
0.82
for
Anthony Ho
...)




WorldCat IdentitiesRelated Identities


  • MGM Home Entertainment Inc Producer Distributor plus


  • Universal Pictures (Firm) Other Producer plus


  • Paramount Pictures Corporation plus


  • Columbia Pictures Producer plus


  • Warner Home Video (Firm) Other plus


  • Metro-Goldwyn-Mayer Producer plus


  • Ivory, James Other Performer Restager Director Film editor Author Editor plus


  • Tally, Ted Scenarist Other Author of screenplay Contributor plus


  • Thompson, Emma Other Performer Actor plus


  • Jhabvala, Ruth Prawer 1927-2013 Other Interviewee Adapter Scenarist Author of screenplay Originator plus




Associated Subjects


Actors Adams, John Quincy, Adventure and adventurers Alexander,--the Great, Amistad (Schooner) Arnhem, Battle of (Netherlands : 1944) Beowulf,--King of the Geats Brothers Butlers Cinque Deluge Demonology Earth (Planet) Eleanor,--of Aquitaine, Queen, consort of Henry II, King of England, Enemies England Good and evil Great Britain Greece Harris, Thomas, Henry--II,--King of England, Heroes Hitchcock, Alfred, Household employees Hulk--(Fictitious character) Imaginary wars and battles Kings and rulers Kirby, Jack Lecter, Hannibal--(Fictitious character), Lee, Stan, Loki--(Norse deity) Macedonian Expansion (Greece : 359-323 B.C.) Man-woman relationships Montana Mothers Mythology, Norse Netherlands--Arnhem New Mexico Noah--(Biblical figure) Nobility Psychopaths Serial murderers Slave insurrections Thor--(Norse deity) Transformers (Fictitious characters) Trials (Mutiny) United States United States.--Federal Bureau of Investigation World War (1939-1945) Zorro--(Fictitious character)




Amistad

Covers



AmistadLegends of the fallThe mask of ZorroThe remains of the dayThe lion in winterDr. Seuss' How the Grinch stole ChristmasMeet Joe BlackA bridge too farHannibal


Alternative Names


Anthony Hopkins

Anthony Hopkins acteur britannique

Anthony Hopkins actor galés

Anthony Hopkins Actor, pintor, compositor y director galés considerado una leyenda viviente de Hollywood.

Anthony Hopkins aktor brytyjski

Anthony Hopkins americký herec a režisér

Anthony Hopkins attore britannico

Anthony Hopkins attore gallese naturalizzato statunitense

Anthony Hopkins britesch-US-amerikanesche Schauspiller

Anthony Hopkins britisch-amerikanischer Schauspieler

Anthony Hopkins britisk skuespiller

Anthony Hopkins Brits acteur

Anthony Hopkins brittisk skådespelare

Anthony Hopkins Gales nga aktor ti pelikula, entablado ken telebision

Anthony Hopkins kimra aktoro

Anthony Hopkins walesi-amerikai színész

Anthony Hopkins walesi-amerikai színész (1937-)

Anthony Hopkins walisisk skuespiller

Anthony Hopkins Welsh stage and television actor

Antonius Hopkins

Entoni Hopkins

Entonijs Hopkinss

Hopkins, Anthony (Actor)

Hopkins, Anthony Philip 1937-

Hopkins, Anthony Philip 1937- Sir

Hopkins, Anthony Philip, Sir, 1937-

Hopkins, Anthony Sir

Hopkins, Philip Anthony 1937-

Hopkins Philip Anthony sir

Sir Anthony Hopkins

Άντονι Χόπκινς

Антъни Хопкинс

Антъни Хопкинс уелски актьор

Ентони Хопкинс

Ентоні Гопкінс

Хопкинс, Э 1937-

Хопкинс, Э. (Энтони), 1937-

Хопкинс Энтони

Энтані Гопкінз

Энтані Хопкінс

Энтони Хопкинс британский и американский актёр театра и кино, режиссёр, композитор

Әнтони Һопкинс

Էնթոնի Հոփքինս

אנתוני הופקינס

הופקינס, אנטוני

انتونى هوبكنز

أنتوني هوبكنز

انتوني هوپکينز

آنتونی هاپکینز تهیه‌کننده، فیلمنامه‌نویس، بازیگر، آهنگساز، و کارگردان بریتانیایی

انتھنی ہوپکنز

ئەنتۆنی هۆپکینس

एंथनी हॉपकिंस

অ্যান্থনি হপকিন্স

স্যার অ্যান্থনি হপকিন্স

ਐਂਥੋਨੀ ਹੌਪਕਿੰਸ

ఆంథోనీ హాప్కిన్స్

ಆಂಥನಿ ಹಾಪ್ಕಿನ್ಸ್

ആന്റണി ഹോപ്കിൻസ്

ആന്റണി ഹോപ്കിൻസ് ബ്രിട്ടനിലെ ചലച്ചിത്ര അഭിനേതാവ്

ඇන්තනි හොප්කින්ස්

แอนโทนี ฮ็อปกินส์

ენტონი ჰოპკინზი

ენტონი ჰოპკინსი

앤서니 홉킨스

アンソニー・ホプキンス

安東尼·霍普金斯

安東尼鶴健士

安東尼鶴堅斯


Languages


English
(1,242)

Spanish
(70)

German
(23)

French
(21)

Italian
(18)

Multiple languages
(10)

Russian
(2)

Turkish
(1)

Polish
(1)

Welsh
(1)

Dutch
(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);

Popular posts from this blog

Reverse int within the 32-bit signed integer range: [−2^31, 2^31 − 1]Combining two 32-bit integers into one 64-bit integerDetermine if an int is within rangeLossy packing 32 bit integer to 16 bitComputing the square root of a 64-bit integerKeeping integer addition within boundsSafe multiplication of two 64-bit signed integersLeetcode 10: Regular Expression MatchingSigned integer-to-ascii x86_64 assembler macroReverse the digits of an Integer“Add two numbers given in reverse order from a linked list”

Category:Fedor von Bock Media in category "Fedor von Bock"Navigation menuUpload mediaISNI: 0000 0000 5511 3417VIAF ID: 24712551GND ID: 119294796Library of Congress authority ID: n96068363BnF ID: 12534305fSUDOC authorities ID: 034604189Open Library ID: OL338253ANKCR AUT ID: jn19990000869National Library of Israel ID: 000514068National Thesaurus for Author Names ID: 341574317ReasonatorScholiaStatistics

Kiel Indholdsfortegnelse Historie | Transport og færgeforbindelser | Sejlsport og anden sport | Kultur | Kendte personer fra Kiel | Noter | Litteratur | Eksterne henvisninger | Navigationsmenuwww.kiel.de54°19′31″N 10°8′26″Ø / 54.32528°N 10.14056°Ø / 54.32528; 10.14056Oberbürgermeister Dr. Ulf Kämpferwww.statistik-nord.deDen danske Stats StatistikKiels hjemmesiderrrWorldCat312794080n790547494030481-4