Phranakorn Rajabhat University Library

Acting in musical theatre: A comprehensive course /

Deer, Joe

Acting in musical theatre: A comprehensive course / Acting in musical theatre Joe Deer, author - 2nd ed. - New York : Routledge, 2016 - xxxii, 396 p : ill ; 25 cm.

Includes indexes

Introduction page 1-4 Section I: Fundamentals of acting in musical theatre page 5-6 -- Acting basics - the fiundation page 7-16 -- Acting basics - step by step page 17-38 -- Making it matter page 39-44 Section II: Score and libretto analysis and structure page 45-46 - - Musical analysis - listening for clues page 47-65 -- working with words - the language of the lyric and libretto page 66-84 -- Elements of storytelling page 85-109 -- Character analysis page 110-132 Section III: The journey of the song page 133-134 -- The journey begins page 135-155 -- Working with relationship page 156-168 -- Intensifiers page 169-180 Section IV: Making it a performance page 181-182 - - Discovering your phrasing page 183-195 -- Staging your song page 196-219 -- Rehearsal into performance page 220-226 Section V: Style in musical theatre page 227-228 -- What is style? page 229-241 -- Style tags page 242-251 -- Style overviews page 252-302 Section VI: The profession page 303-304 -- Do you have the stuff? page 305-349 -- Auditioning page 350-364 -- A winning attitude page 365-374

9780415713276 5800


ACTING IN MUSICAL THEATER
MUSICAL THEATER--INSTRUCTION AND STUDY

MT 956 / D43A 2016

มหาวิทยาลัยศรีปทุม (กทม.)
2410/2 ถ.พหลโยธิน เขตจตุจักร กรุงเทพฯ 10900
Tel : 02-579-1111, 02-561-2222
มหาวิทยาลัยศรีปทุม (ชลบุรี)
79 หมู่ 1 ถ.บางนา-ตราด ต.คลองตำหรุ อ.เมือง จ.ชลบุรี 20000
Tel : 038-146-123
มหาวิทยาลัยศรีปทุม (ขอนแก่น)
182/12 หมู่ 4 ถ.ศรีจันทร์ ต.ในเมือง อ.เมือง จ.ขอนแก่น 40000
Tel : 043-224-111


 

$(document).ready(function() { // Basic detection of search var searchBox = $('#transl1'); // This is standard OPAC search input id ?? // Actually standard is 'q' or 'idx'. // We want to trigger when the user sees results. // Usually we check if we are on search results page. if ($('body').hasClass('opac-results')) { var params = new URLSearchParams(window.location.search); var query = params.get('q'); if (query) { // Show Loading var container = $('
'); container.append('

✨ AI Recommendations

'); container.append('
Searching with AI...
'); // Prepend to main content // Selector depends on theme. 'div.maincontent' or '#opac-main' $('#userresults').prepend(container); $.ajax({ url: '/api/v1/contrib/aisearch/search?q=' + encodeURIComponent(query), method: 'GET', success: function(data) { container.find('.spinner').remove(); if (data && data.length > 0) { var ul = ''; container.append(ul); } else { container.append('

No AI recommendations found.

'); } }, error: function() { container.find('.spinner').remove(); container.append('

Error loading AI recommendations.

'); } }); } } });