Muñoz, Carlos 1919-2005


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

['1997-1998', 10, 0, 0, ''],

['1998-1999', 5, 0, 0, ''],

['1999-2000', 5, 0, 0, ''],

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

['2018-2019', 0, 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';




Muñoz, Carlos 1919-2005



Overview









Works: 7
works in
13
publications in
1
language and
15
library holdings

Genres:
Drama 

Roles: Author
Classifications: PQ6282,
860


Publication Timeline

.



Most widely held works by
Carlos Muñoz


La casa de los Martínez(
Visual
)

5
editions published

between
1998
and
2011
in
Spanish
and held by
6 WorldCat member

libraries

worldwide

Durante la grabación en la casa de los Martínez de un programa de televisión, el señor Martínez ve con desagrado las
atenciones de que es objeto su esposa por parte del director. El libro de memorias de la suegra, famosa ex-actriz, complica
las cosas. Los Martínez se van a descansar a su pueblo, pero su popularidad los persigue



¡¡Campeones!! by Ramon Torrado(
Visual
)

2
editions published

in
1989
in
Spanish
and held by
3 WorldCat member

libraries

worldwide

El portero de fútbol firma, sin saberlo, un documento comprometido que le cuesta su expulsión. Ya no podrá jugar la gran
final entre los dos equipos rivales



El alcalde de Zalamea by Pedro Calderón de la Barca(
Recording
)

2
editions published

between
1958
and
1975
in
Spanish
and held by
2 WorldCat member

libraries

worldwide

The Mayor of Zalamea (Spanish: El Alcalde de Zalamea) is a play written by Pedro Calderón de la Barca (1600-1681) during
the Golden Age of Spanish drama. It was probably written in 1636. It pays homage to a play by the same name by Lope de Vega,
which it surpassed in fame through its superior character development, becoming one of the most well-known plays of its time.
This play has three acts that explore the power of the self-made man against the political authorities of 17th century Spanish
society, and the continuous struggle between corporate and individual honor



Noche fantástica(
Visual
)

1
edition published

in
1997
in
Spanish
and held by
1 WorldCat member

library

worldwide



Cine y video : plan joven Donostia by Carlos ( Muñoz(
Book
)

1
edition published

in
1989
in
Spanish
and held by
1 WorldCat member

library

worldwide



Sin novedad en el Alcazar(

)

1
edition published

in
1997
in
Spanish
and held by
1 WorldCat member

library

worldwide



Alas de juventud(
Visual
)

1
edition published

in
1999
in
Spanish
and held by
1 WorldCat member

library

worldwide


 



Audience Level









0

Audience Level


1
  Kids General Special  

Audience level:
0.86
(from
0.50
for
El alcalde
... to
0.99
for
Cine y vid
...)




WorldCat IdentitiesRelated Identities


  • Martínez, Julia ( 1931- ) plus


  • Navarro, Agustín plus


  • Aparicio, Rafaela 1906-1996 plus


  • Villalba, Romano plus


  • Zamora, Ricardo 1901-1978 plus


  • Gorostiza, Guillermo 1909-1966 plus


  • Soto, Luchy 1919-1970 plus


  • Torrado, Adolfo 1904-1958 plus


  • Polo, Ramón plus


  • Rubio, José plus




Associated Subjects


Social classes Spain Spanish drama Spanish drama--Classical period




Alternative Names


Carlos Muñoz acteur espagnol

Carlos Muñoz actor espanyol

Carlos Muñoz actor spaniol

Carlos Muñoz aktor spanjoll

Carlos Muñoz Arosa actor español

Carlos Muñoz Hispaania näitleja

Carlos Muñoz Spaans acteur (1919-2005)

Carlos Muñoz spanischer Schauspieler

Carlos Muñoz Spanish actor

Carlos Muñoz spansk skådespelare

Carlos Muñoz spansk skodespelar

Carlos Muñoz spansk skuespiller

Muñoz Arosa, Carlos 1919-2005

Muñoz, Carlitos 1919-2005

Карлос Муньос

كارلوس مونيوث (ممثل) ممثل إسباني


Languages


Spanish
(13)









(function(i,s,o,g,r,a,m)function()[]).push(arguments),i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(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

How to write a 12-bar blues melodyI-IV-V blues progressionHow to play the bridges in a standard blues progressionHow does Gdim7 fit in C# minor?question on a certain chord progressionMusicology of Melody12 bar blues, spread rhythm: alternative to 6th chord to avoid finger stretchChord progressions/ Root key/ MelodiesHow to put chords (POP-EDM) under a given lead vocal melody (starting from a good knowledge in music theory)Are there “rules” for improvising with the minor pentatonic scale over 12-bar shuffle?Confusion about blues scale and chords

What if the end-user didn't have the required library?What is setup.py?What is a clean, pythonic way to have multiple constructors in Python?What does Ruby have that Python doesn't, and vice versa?What is the reason for having '//' in Python?How do I create a namespace package in Python?How to package shared objects that python modules depend on?setuptools vs. distutils: why is distutils still a thing?Navigation in Windows 10 vs code not going to virtualenv library when the same library is installed at user levelPython create package for local usePackaging a project that uses multiple python versionsWhy is permission denied on pip install except for when “--user” is included at end of command?

Why did Thanos need his ship to help him in the battle scene?Which actor plays Thanos in the Avengers mid-credits scene?Are there economic implications portrayed in comics where the buildings and cities are ruined almost daily?Old X-Men comic where team travels to alien world with a ring-like sun that needs recharging?Why does Ego need help sleeping?Is there an objective answer to who “the strongest Avenger” is?How did Banner get unstuck?Why did Thanos get hit?How did Thanos (or anyone) know the Infinity Stones would give him this power?Did Thanos leave Eitri alive for his after-sales service?In Avengers 1, why does Thanos need Loki?