Kretzschmar, Hermann 1848-1924


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

['1860-1862', 5, 0, 0, ''],

['1862-1864', 0, 0, 0, ''],

['1864-1866', 0, 0, 0, ''],

['1866-1868', 5, 0, 0, ''],

['1868-1870', 10, 0, 0, ''],

['1870-1872', 15, 0, 0, ''],

['1872-1874', 0, 0, 0, ''],

['1874-1876', 25, 0, 0, ''],

['1876-1878', 10, 0, 0, ''],

['1878-1880', 15, 0, 0, ''],

['1880-1882', 20, 0, 0, ''],

['1882-1884', 15, 0, 0, ''],

['1884-1886', 15, 0, 0, ''],

['1886-1888', 20, 0, 0, ''],

['1888-1890', 20, 0, 0, ''],

['1890-1892', 25, 0, 0, ''],

['1892-1894', 15, 0, 0, ''],

['1894-1896', 25, 0, 0, ''],

['1896-1898', 15, 0, 0, ''],

['1898-1900', 40, 0, 0, ''],

['1900-1902', 25, 0, 0, ''],

['1902-1904', 30, 0, 0, ''],

['1904-1906', 20, 0, 0, ''],

['1906-1908', 15, 0, 0, ''],

['1908-1910', 15, 0, 0, ''],

['1910-1912', 35, 0, 0, ''],

['1912-1914', 25, 0, 0, ''],

['1914-1916', 20, 0, 0, ''],

['1916-1918', 20, 0, 0, ''],

['1918-1920', 30, 0, 0, ''],

['1920-1922', 30, 0, 0, ''],

['1922-1924', 15, 0, 0, ''],

['1924-1926', 10, 0, 0, ''],

['1926-1928', 0, 15, 0, ''],

['1928-1930', 0, 0, 0, ''],

['1930-1932', 0, 20, 0, ''],

['1932-1934', 0, 30, 0, ''],

['1934-1936', 0, 15, 0, ''],

['1936-1938', 0, 0, 0, ''],

['1938-1940', 0, 15, 0, ''],

['1940-1942', 0, 15, 0, ''],

['1942-1944', 0, 0, 0, ''],

['1944-1946', 0, 0, 0, ''],

['1946-1948', 0, 10, 0, ''],

['1948-1950', 0, 5, 0, ''],

['1950-1952', 0, 20, 0, ''],

['1952-1954', 0, 10, 0, ''],

['1954-1956', 0, 10, 0, ''],

['1956-1958', 0, 25, 0, ''],

['1958-1960', 0, 20, 0, ''],

['1960-1962', 0, 20, 0, ''],

['1962-1964', 0, 0, 0, ''],

['1964-1966', 0, 5, 0, ''],

['1966-1968', 0, 15, 0, ''],

['1968-1970', 0, 10, 0, ''],

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

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

['1974-1976', 0, 10, 0, ''],

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

['1978-1980', 0, 0, 0, ''],

['1980-1982', 0, 10, 0, ''],

['1982-1984', 0, 15, 0, ''],

['1984-1986', 0, 0, 10, ''],

['1986-1988', 0, 0, 0, ''],

['1988-1990', 0, 10, 0, ''],

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

['1992-1994', 0, 15, 0, ''],

['1994-1996', 0, 15, 0, ''],

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

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

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

['2002-2004', 0, 0, 0, ''],

['2004-2006', 0, 5, 0, ''],

['2006-2008', 0, 10, 0, ''],

['2008-2010', 0, 0, 0, ''],

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

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

['2014-2016', 0, 0, 0, ''],

['2016-2018', 0, 10, 0, ''],

['2018-2020', 0, 5, 0, ''],

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




Kretzschmar, Hermann 1848-1924



Overview









Works: 595
works in
1,490
publications in
6
languages and
6,924
library holdings

Genres:
Masses 
Vocal scores 
Scores 
Songs and music 
Manuscripts 
Criticism, interpretation, etc 
Oratorios 
Art music 
Drama 
Music 

Roles:
Author, Editor, Writer of accompanying material, Instrumentalist, Author of introduction, Other, Compiler, Creator, Arranger, Honoree, Originator, Performer, wpr, Bibliographic antecedent, Composer, Adapter
Classifications: M2010,
782.323


Publication Timeline

.



Most widely held works about
Hermann Kretzschmar


  • Praxisorientierte Musikwissenschaft : Studien zu Leben und Werk Hermann Kretzschmars by Heinz-Dieter Sommer(
    Book
    )



  • Hermann Kretzschmar und die Musikpädagogik zwischen 1890 und 1915 by Martin Pfeffer(
    Book
    )



  • Hermann Kretzschmar : Konferenzbericht Olbernhau 1998(
    Book
    )



  • Festschrift Hermann Kretzschmar zum siebzigsten Geburtstage by August Ferdinand Hermann KRETZSCHMAR(
    Book
    )



  • The Paul Bekker papers by Paul Bekker(

    )


 



Most widely held works by
Hermann Kretzschmar


Missa solemnis in D : for four solo voices, chorus and orchestra, op. 123 by Ludwig van Beethoven(

)

10
editions published

between
1900
and
1954
in
3
languages

and held by
439 WorldCat member

libraries

worldwide

"Long neglected in scholarship, the so-called Grasnick 5 documents reveal Beethoven working out concepts and ideas, offering
fascinating insights into his creative method. This critical edition, the third in the Beethoven Sketchbook Series, offers
a facsimile and transcription of the contents of the stitched pocket sketchbook started by the fifty-year-old master during
the summer of 1820. At the time, Beethoven labored over the Missa solemnis, Opus 123. The sketchbook's pages yield the entire
record of his early ideas on the Agnus Dei of that work as well as a sketch for part of the Benedictus."--from publisher's
website



Günther von Schwarzburg : Oper in drei Akten by Ignaz Holzbauer(

)

26
editions published

between
1902
and
1958
in
4
languages

and held by
302 WorldCat member

libraries

worldwide



Geschichte der Oper by Hermann Kretzschmar(
Book
)

29
editions published

between
1905
and
1993
in
3
languages

and held by
286 WorldCat member

libraries

worldwide



Geschichte des neuen deutschen Liedes by Hermann Kretzschmar(
Book
)

25
editions published

between
1911
and
1966
in
German and English
and held by
230 WorldCat member

libraries

worldwide



Sammlung auserlesener Fabeln by Johann Ernst Bach(

)

13
editions published

between
1910
and
1957
in
German and Undetermined
and held by
229 WorldCat member

libraries

worldwide



Arien by Heinrich Albert(

)

9
editions published

between
1950
and
1958
in
German and Undetermined
and held by
222 WorldCat member

libraries

worldwide



Führer durch den Concertsaal by Hermann Kretzschmar(
Book
)

63
editions published

between
1887
and
2016
in
3
languages

and held by
215 WorldCat member

libraries

worldwide



Einführung in die Musikgeschichte by Hermann Kretzschmar(
Book
)

19
editions published

between
1920
and
1983
in
German and Undetermined
and held by
177 WorldCat member

libraries

worldwide



Führer durch den Konzertsaal by Hermann Kretzschmar(
Book
)

38
editions published

between
1898
and
2016
in
3
languages

and held by
171 WorldCat member

libraries

worldwide



Musikalische Zeitfragen. zehn Vorträge by Hermann Kretzschmar(
Book
)

24
editions published

between
1900
and
1920
in
German and Undetermined
and held by
149 WorldCat member

libraries

worldwide




Festschrift zum 90. Geburtstage Sr. Exzellenz des Wirklichen Geheimen Rates Rochus Freiherrn von Liliencron by Rochus von Liliencron(
Book
)

16
editions published

between
1910
and
1970
in
German and English
and held by
127 WorldCat member

libraries

worldwide



Festschrift Hermann Kretzschmar zum 70. [i.e. siebzigsten] Geburtstage by Hermann Kretzschmar(
Book
)

14
editions published

between
1918
and
1973
in
German
and held by
126 WorldCat member

libraries

worldwide



Denkmäler deutscher Tonkunst(

)

9
editions published

between
1892
and
1972
in
3
languages

and held by
107 WorldCat member

libraries

worldwide



Elias : Oratorium nach den Worten des alten Testamentes = Elijah : oratorio with words from the Old Testament ; op. 70 by Felix Mendelssohn Bartholdy(

)

12
editions published

between
1951
and
1965
in
German and English
and held by
97 WorldCat member

libraries

worldwide

II. Vokalwerke. 1. Für Chor und Orchester


Denkmäler deutscher Tonkunst(

)

4
editions published

in
1892
in
German
and held by
95 WorldCat member

libraries

worldwide



Mass in B minor : for soli, chorus and orchestra by Johann Sebastian Bach(

)

33
editions published

between
1880
and
1956
in
4
languages

and held by
94 WorldCat member

libraries

worldwide

Composition de l'orchestre: 2.3*.0.2/1.3.0.0, timbales, cordes, continuo


Passionsmusik nach dem Evangelisten Johannes by Johann Sebastian Bach(

)

2
editions published

between
1940
and
1960
in
German
and held by
91 WorldCat member

libraries

worldwide



Führer durch den Konzertsaal by Hermann Kretzschmar(
Book
)

29
editions published

between
1890
and
1939
in
German and Undetermined
and held by
66 WorldCat member

libraries

worldwide



Der Weinberg by Johann Valentin Görner(

)

2
editions published

in
1961
in
German
and held by
61 WorldCat member

libraries

worldwide



Machet die Tore weit by Sebastian Knüpfer(

)

1
edition published

in
1961
in
German
and held by
61 WorldCat member

libraries

worldwide




 

moreShow More Titles

fewerShow Fewer Titles




Audience Level









0

Audience Level


1
  Kids General Special  

Audience level:
0.67
(from
0.38
for
Der Weinbe
... to
0.91
for
Führer du
...)




WorldCat IdentitiesRelated Identities


  • Moser, Hans Joachim 1889-1967 Other Editor Creator plus


  • Beethoven, Ludwig van 1770-1827 Author plus


  • Baker, Theodore 1851-1934 Translator plus


  • Görner, Johann Valentin Composer plus


  • Bach, Johann Sebastian 1685-1750 Author Composer plus


  • Liliencron, Rochus Freiherr von 1820-1912 Editor plus


  • Holzbauer, Ignaz 1711-1783 Author Composer plus


  • Bach, Johann Ernst 1722-1777 Author Composer plus


  • Albert, Heinrich 1604-1651 Author Composer plus


  • Bernoulli, Eduard 1867-1927 Editor plus




Associated Subjects


Anthems Autographs Bach, Johann Sebastian, Ballads, German Beethoven, Ludwig van, Choruses, Sacred Choruses, Sacred (Mixed voices, 4 parts) with piano Choruses, Sacred (Mixed voices) with orchestra--Scores Choruses, Sacred (Mixed voices) with orchestra--Vocal scores with piano Credo (Music) Elijah--(Biblical prophet) Germany Instrumental music Instrumental music--Scores Kretzschmar, Hermann, Liliencron, Rochus,--Freiherr von, Mass (Music) Masses Masses (Bach, Johann Sebastian) Masses--Excerpts Masses--Excerpts--Vocal scores with piano Masses--Parts Masses--Scores Masses--Vocal scores Masses--Vocal scores with piano Music Musical analysis Musical sketches Music appreciation Music--Instruction and study Musicology Opera Operas Operas--Scores Oratorios Oratorios--Excerpts--Vocal scores with piano Oratorios--Parts Oratorios--Scores Oratorios--Vocal scores with piano Part songs, German Passion music Piano music--Scores Sacred vocal music--Scores Sanctus (Music) Songs, German Songs (Medium voice) with harpsichord Violin and piano music, Arranged Vocal music Vocal music--Scores Woodwind sextets (Recorders (6))




Alternative Names


Hermann Kretzschmar compositore, insegnante e filosofo tedesco

Hermann Kretzschmar deutscher Musikwissenschaftler und -schriftsteller

Hermann Kretzschmar Duits filosoof

Hermann Kretzschmar professor académico alemão

Hermann Kretzschmar Teacher, performer, musicologist and author

Hermann Kretzschmar tysk professor

Krechmar, German.

Krechmar, German 1848-1924

Kretzchmar August Ferdinand Hermann 1848-1924

Kretzschmar, August F.

Kretzschmar, August F. 1848-1924

Kretzschmar August Ferdinand Hermann

Kretzschmar, August Ferdinand Hermann 1848-1924

Kretzschmar Augustus Ferdinand Hermann

Kretzschmar, H.

Kretzschmar, H. 1848-1924

Kretzschmar, Hermanus

Kretzschmar, Hermanus 1848-1924

Кречмар, Август Фердинанд Германн

赫爾曼·克雷茨施馬爾


Languages


German
(329)

Latin
(32)

English
(10)

Russian
(1)

Multiple languages
(1)

Germanic
(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

Log på Navigationsmenu

Wonderful Copenhagen (sang) Eksterne henvisninger | NavigationsmenurSide på frankloesser.comWonderful Copenhagen

Detroit Tigers Spis treści Historia | Skład zespołu | Sukcesy | Członkowie Baseball Hall of Fame | Zastrzeżone numery | Przypisy | Menu nawigacyjneEncyclopedia of Detroit - Detroit TigersTigers Stadium, Detroit, MITigers Timeline 1900sDetroit Tigers Team History & EncyclopediaTigers Timeline 1910s1935 World Series1945 World Series1945 World Series1984 World SeriesComerica Park, Detroit, MI2006 World Series2012 World SeriesDetroit Tigers 40-Man RosterDetroit Tigers Coaching StaffTigers Hall of FamersTigers Retired Numberse