Chillán (Chile) Escuela Mexico

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' ],
['1880-1881', 0, 0, 0, ''],
['1881-1882', 0, 0, 0, ''],
['1882-1883', 0, 0, 0, ''],
['1883-1884', 0, 0, 0, ''],
['1884-1885', 0, 0, 0, ''],
['1885-1886', 0, 0, 0, ''],
['1886-1887', 0, 0, 0, ''],
['1887-1888', 0, 0, 0, ''],
['1888-1889', 0, 0, 0, ''],
['1889-1890', 5, 0, 0, ''],
['1890-1891', 0, 0, 0, ''],
['1891-1892', 0, 0, 0, ''],
['1892-1893', 0, 0, 0, ''],
['1893-1894', 0, 0, 0, ''],
['1894-1895', 0, 0, 0, ''],
['1895-1896', 0, 0, 0, ''],
['1896-1897', 0, 0, 0, ''],
['1897-1898', 0, 0, 0, ''],
['1898-1899', 5, 0, 0, ''],
['1899-1900', 0, 0, 0, ''],
['1900-1901', 5, 0, 0, ''],
['1901-1902', 0, 0, 0, ''],
['1902-1903', 0, 0, 0, ''],
['1903-1904', 0, 0, 0, ''],
['1904-1905', 0, 0, 0, ''],
['1905-1906', 0, 0, 0, ''],
['1906-1907', 0, 0, 0, ''],
['1907-1908', 0, 0, 5, ''],
['1908-1909', 0, 0, 5, ''],
['1909-1910', 0, 0, 0, ''],
['1910-1911', 0, 0, 0, ''],
['1911-1912', 0, 0, 0, ''],
['1912-1913', 5, 0, 0, ''],
['1913-1914', 0, 0, 0, ''],
['1914-1915', 0, 0, 0, ''],
['1915-1916', 0, 0, 0, ''],
['1916-1917', 0, 0, 0, ''],
['1917-1918', 0, 0, 0, ''],
['1918-1919', 0, 0, 0, ''],
['1919-1920', 0, 0, 0, ''],
['1920-1921', 0, 0, 0, ''],
['1921-1922', 0, 0, 0, ''],
['1922-1923', 0, 0, 0, ''],
['1923-1924', 0, 0, 0, ''],
['1924-1925', 0, 0, 0, ''],
['1925-1926', 0, 0, 0, ''],
['1926-1927', 0, 0, 0, ''],
['1927-1928', 0, 0, 0, ''],
['1928-1929', 0, 0, 0, ''],
['1929-1930', 0, 0, 0, ''],
['1930-1931', 0, 0, 0, ''],
['1931-1932', 0, 0, 0, ''],
['1932-1933', 0, 0, 0, ''],
['1933-1934', 0, 0, 0, ''],
['1934-1935', 0, 0, 0, ''],
['1935-1936', 0, 0, 0, ''],
['1936-1937', 0, 0, 0, ''],
['1937-1938', 0, 0, 0, ''],
['1938-1939', 0, 0, 0, ''],
['1939-1940', 0, 0, 0, ''],
['1940-1941', 0, 0, 0, ''],
['1941-1942', 0, 0, 0, ''],
['1942-1943', 0, 0, 5, ''],
['1943-1944', 0, 0, 5, ''],
['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, ''],
]);
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';
Chillán (Chile) Escuela Mexico
Overview
| Works: | 9 works in 11 publications in 1 language and 49 library holdings |
|---|---|
| Genres: | Periodicals History |
Publication Timeline
.
Most widely held works about
Chillán (Chile)
Chillán (Chile)
Pintura mural, Escuela México de Chillán by Ernesto Eslava(
Book
)
América es la casa : arte mural y espacio público en Chillán by Fidel Torres Pedreros(
Book
)
Historia de las misiones del Colegio de Chillán, precedida de una Reseña acerca de los primitivos Franciscanos en Chile by Roberto Lagos(
)
Most widely held works by
Chillán (Chile)
Chillán (Chile)
Boletin tecnico by Chillán (Chile)(
)
in
Spanish
and held by
13 WorldCat member
libraries
worldwide
Relacion que de la conducta observada por los padres misioneros del Colejio de propaganda fide, de la ciudad de Chile, desde
el año de 1808 hasta fines del pasado de 1814, hace su prelado el reverendo padre frai Juan Ramon, en virtud del oficio que
para ello le pasó el reverendo padre frai Melchor Martínez by Chillán (Chile)(
)
1
edition published
in
1900
in
Spanish
and held by
8 WorldCat member
libraries
worldwide
Contestacion que el colegio de misioneros de Chillán dió a la proclama que hizo circular el Illmo. Señor obispo de Epifanía
en Chillán y La Frontera by Chillán (Chile)(
Book
)
1
edition published
in
1912
in
Spanish
and held by
5 WorldCat member
libraries
worldwide
Memoria by Chillán (Chile)(
)
in
Spanish
and held by
2 WorldCat member
libraries
worldwide
Reglamento by Chillán (Chile)(
Book
)
1
edition published
in
1898
in
Spanish
and held by
1 WorldCat member
library
worldwide
Reparticion de premios en el Liceo de Chillan, 17 de septiembre de 1889 by Chillán (Chile)(
Book
)
1
edition published
in
1889
in
Spanish
and held by
1 WorldCat member
library
worldwide
Audience Level
| 0 | ![]() | 1 | ||
| Kids | General | Special | ||
Audience level:
0.80
(from
0.64
for
Reparticio
... to
0.90
for
Reglamento
...)
Related Identities
Concepción (Chile) Universidad Estación Experimental, Chillan
Catholic Church
Siqueiros, David Alfaro 1896-1974
Torres Pedreros, Fidel 1971- Author
Vera Manríquez, Andrés Rodrigo 1979-
Guerrero, Xavier
Eslava, Ernesto Author
Contreras P, Patricio 1970- Photographer
Arias Estrada, Luis 1970-
Lagos, Roberto Author
Useful Links
Library of Congress Authority File (English)
Virtual International Authority File.
Wikipedia Chillán
Wikidata.
Associated Subjects
Agriculture--Research Artists Arts, Chilean Awards Catholic Church Chile Chile--Chillán Franciscans International relations Mapuche Indians--Missions Mexico Missions Mural painting and decoration, Chilean Painting Puerto Rico Religion War of Independence (Chile : 1810-1824)
Alternative Names
Chillán, Chile
Čiljana
Čiljanas
Τσιλάν
Чилан
Чильян
Чиян
Чиљан
צ'ייאן
تشيلان
شیلان، شیلی
چیلان
चिलन
चिल्लान
চিলান
ચિલાન
சில்லன்
చిల్లాన్
ಚಿಲ್ಲನ್
චිලාන්
ชิยัน
치얀
チヤン
奇廉
Languages
Spanish
(11)
(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);
