<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://producers.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Skritzer</id>
	<title>Producers.wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://producers.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Skritzer"/>
	<link rel="alternate" type="text/html" href="https://producers.wiki/wiki/Special:Contributions/Skritzer"/>
	<updated>2026-05-01T12:13:20Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.33.1</generator>
	<entry>
		<id>https://producers.wiki/index.php?title=Module:Navbox&amp;diff=6309</id>
		<title>Module:Navbox</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Module:Navbox&amp;diff=6309"/>
		<updated>2026-04-15T07:16:41Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;--require('strict')&lt;br /&gt;
local p = {}&lt;br /&gt;
local navbar = require('Module:Navbar')._navbar&lt;br /&gt;
local cfg = mw.loadData('Module:Navbox/configuration')&lt;br /&gt;
local getArgs -- lazily initialized&lt;br /&gt;
local args&lt;br /&gt;
local format = string.format&lt;br /&gt;
&lt;br /&gt;
local function striped(wikitext, border)&lt;br /&gt;
	-- Return wikitext with markers replaced for odd/even striping.&lt;br /&gt;
	-- Child (subgroup) navboxes are flagged with a category that is removed&lt;br /&gt;
	-- by parent navboxes. The result is that the category shows all pages&lt;br /&gt;
	-- where a child navbox is not contained in a parent navbox.&lt;br /&gt;
	local orphanCat = cfg.category.orphan&lt;br /&gt;
	if border == cfg.keyword.border_subgroup and args[cfg.arg.orphan] ~= cfg.keyword.orphan_yes then&lt;br /&gt;
		-- No change; striping occurs in outermost navbox.&lt;br /&gt;
		return wikitext .. orphanCat&lt;br /&gt;
	end&lt;br /&gt;
	local first, second = cfg.class.navbox_odd_part, cfg.class.navbox_even_part&lt;br /&gt;
	if args[cfg.arg.evenodd] then&lt;br /&gt;
		if args[cfg.arg.evenodd] == cfg.keyword.evenodd_swap then&lt;br /&gt;
			first, second = second, first&lt;br /&gt;
		else&lt;br /&gt;
			first = args[cfg.arg.evenodd]&lt;br /&gt;
			second = first&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	local changer&lt;br /&gt;
	if first == second then&lt;br /&gt;
		changer = first&lt;br /&gt;
	else&lt;br /&gt;
		local index = 0&lt;br /&gt;
		changer = function (code)&lt;br /&gt;
			if code == '0' then&lt;br /&gt;
				-- Current occurrence is for a group before a nested table.&lt;br /&gt;
				-- Set it to first as a valid although pointless class.&lt;br /&gt;
				-- The next occurrence will be the first row after a title&lt;br /&gt;
				-- in a subgroup and will also be first.&lt;br /&gt;
				index = 0&lt;br /&gt;
				return first&lt;br /&gt;
			end&lt;br /&gt;
			index = index + 1&lt;br /&gt;
			return index % 2 == 1 and first or second&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	local regex = orphanCat:gsub('([%[%]])', '%%%1')&lt;br /&gt;
	return (wikitext:gsub(regex, ''):gsub(cfg.marker.regex, changer)) -- () omits gsub count&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function processItem(item, nowrapitems)&lt;br /&gt;
	if item:sub(1, 2) == '{|' then&lt;br /&gt;
		-- Applying nowrap to lines in a table does not make sense.&lt;br /&gt;
		-- Add newlines to compensate for trim of x in |parm=x in a template.&lt;br /&gt;
		return '\n' .. item ..'\n'&lt;br /&gt;
	end&lt;br /&gt;
	if nowrapitems == cfg.keyword.nowrapitems_yes then&lt;br /&gt;
		local lines = {}&lt;br /&gt;
		for line in (item .. '\n'):gmatch('([^\n]*)\n') do&lt;br /&gt;
			local prefix, content = line:match('^([*:;#]+)%s*(.*)')&lt;br /&gt;
			if prefix and not content:match(cfg.pattern.nowrap) then&lt;br /&gt;
				line = format(cfg.nowrap_item, prefix, content)&lt;br /&gt;
			end&lt;br /&gt;
			table.insert(lines, line)&lt;br /&gt;
		end&lt;br /&gt;
		item = table.concat(lines, '\n')&lt;br /&gt;
	end&lt;br /&gt;
	if item:match('^[*:;#]') then&lt;br /&gt;
		return '\n' .. item ..'\n'&lt;br /&gt;
	end&lt;br /&gt;
	return item&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function has_navbar()&lt;br /&gt;
	return args[cfg.arg.navbar] ~= cfg.keyword.navbar_off&lt;br /&gt;
		and args[cfg.arg.navbar] ~= cfg.keyword.navbar_plain&lt;br /&gt;
		and (&lt;br /&gt;
			args[cfg.arg.name]&lt;br /&gt;
			or mw.getCurrentFrame():getParent():getTitle():gsub(cfg.pattern.sandbox, '')&lt;br /&gt;
				~= cfg.pattern.navbox&lt;br /&gt;
		)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function renderNavBar(titleCell)&lt;br /&gt;
	if has_navbar() then&lt;br /&gt;
		titleCell:wikitext(navbar{&lt;br /&gt;
			[cfg.navbar.name] = args[cfg.arg.name],&lt;br /&gt;
			[cfg.navbar.mini] = 1,&lt;br /&gt;
			[cfg.navbar.fontstyle] = (args[cfg.arg.basestyle] or '') .. ';' ..&lt;br /&gt;
				(args[cfg.arg.titlestyle] or '') ..&lt;br /&gt;
				';background:none transparent;border:none;box-shadow:none;padding:0;'&lt;br /&gt;
		})&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function renderTitleRow(tbl)&lt;br /&gt;
	if not args[cfg.arg.title] then return end&lt;br /&gt;
&lt;br /&gt;
	local titleRow = tbl:tag('tr')&lt;br /&gt;
&lt;br /&gt;
	local titleCell = titleRow:tag('th'):attr('scope', 'col')&lt;br /&gt;
&lt;br /&gt;
	local titleColspan = 2&lt;br /&gt;
	if args[cfg.arg.imageleft] then titleColspan = titleColspan + 1 end&lt;br /&gt;
	if args[cfg.arg.image] then titleColspan = titleColspan + 1 end&lt;br /&gt;
&lt;br /&gt;
	titleCell&lt;br /&gt;
		:cssText(args[cfg.arg.basestyle])&lt;br /&gt;
		:cssText(args[cfg.arg.titlestyle])&lt;br /&gt;
		:addClass(cfg.class.navbox_title)&lt;br /&gt;
		:attr('colspan', titleColspan)&lt;br /&gt;
&lt;br /&gt;
	renderNavBar(titleCell)&lt;br /&gt;
&lt;br /&gt;
	titleCell&lt;br /&gt;
		:tag('div')&lt;br /&gt;
			-- id for aria-labelledby attribute&lt;br /&gt;
			:attr('id', mw.uri.anchorEncode(args[cfg.arg.title]))&lt;br /&gt;
			:addClass(args[cfg.arg.titleclass])&lt;br /&gt;
			:css('font-size', '114%')&lt;br /&gt;
			:css('margin', '0 4em')&lt;br /&gt;
			:wikitext(processItem(args[cfg.arg.title]))&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function getAboveBelowColspan()&lt;br /&gt;
	local ret = 2&lt;br /&gt;
	if args[cfg.arg.imageleft] then ret = ret + 1 end&lt;br /&gt;
	if args[cfg.arg.image] then ret = ret + 1 end&lt;br /&gt;
	return ret&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function renderAboveRow(tbl)&lt;br /&gt;
	if not args[cfg.arg.above] then return end&lt;br /&gt;
&lt;br /&gt;
	tbl:tag('tr')&lt;br /&gt;
		:tag('td')&lt;br /&gt;
			:addClass(cfg.class.navbox_abovebelow)&lt;br /&gt;
			:addClass(args[cfg.arg.aboveclass])&lt;br /&gt;
			:cssText(args[cfg.arg.basestyle])&lt;br /&gt;
			:cssText(args[cfg.arg.abovestyle])&lt;br /&gt;
			:attr('colspan', getAboveBelowColspan())&lt;br /&gt;
			:tag('div')&lt;br /&gt;
				-- id for aria-labelledby attribute, if no title&lt;br /&gt;
				:attr('id', (not args[cfg.arg.title]) and mw.uri.anchorEncode(args[cfg.arg.above]) or nil)&lt;br /&gt;
				:wikitext(processItem(args[cfg.arg.above], args[cfg.arg.nowrapitems]))&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function renderBelowRow(tbl)&lt;br /&gt;
	if not args[cfg.arg.below] then return end&lt;br /&gt;
&lt;br /&gt;
	tbl:tag('tr')&lt;br /&gt;
		:tag('td')&lt;br /&gt;
			:addClass(cfg.class.navbox_abovebelow)&lt;br /&gt;
			:addClass(args[cfg.arg.belowclass])&lt;br /&gt;
			:cssText(args[cfg.arg.basestyle])&lt;br /&gt;
			:cssText(args[cfg.arg.belowstyle])&lt;br /&gt;
			:attr('colspan', getAboveBelowColspan())&lt;br /&gt;
			:tag('div')&lt;br /&gt;
				:wikitext(processItem(args[cfg.arg.below], args[cfg.arg.nowrapitems]))&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function renderListRow(tbl, index, listnum, listnums_size)&lt;br /&gt;
	local row = tbl:tag('tr')&lt;br /&gt;
&lt;br /&gt;
	if index == 1 and args[cfg.arg.imageleft] then&lt;br /&gt;
		row&lt;br /&gt;
			:tag('td')&lt;br /&gt;
				:addClass(cfg.class.noviewer)&lt;br /&gt;
				:addClass(cfg.class.navbox_image)&lt;br /&gt;
				:addClass(args[cfg.arg.imageclass])&lt;br /&gt;
				:css('width', '1px')               -- Minimize width&lt;br /&gt;
				:css('padding', '0 2px 0 0')&lt;br /&gt;
				:cssText(args[cfg.arg.imageleftstyle])&lt;br /&gt;
				:attr('rowspan', listnums_size)&lt;br /&gt;
				:tag('div')&lt;br /&gt;
					:wikitext(processItem(args[cfg.arg.imageleft]))&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	local group_and_num = format(cfg.arg.group_and_num, listnum)&lt;br /&gt;
	local groupstyle_and_num = format(cfg.arg.groupstyle_and_num, listnum)&lt;br /&gt;
	if args[group_and_num] then&lt;br /&gt;
		local groupCell = row:tag('th')&lt;br /&gt;
&lt;br /&gt;
		-- id for aria-labelledby attribute, if lone group with no title or above&lt;br /&gt;
		if listnum == 1 and not (args[cfg.arg.title] or args[cfg.arg.above] or args[cfg.arg.group2]) then&lt;br /&gt;
			groupCell&lt;br /&gt;
				:attr('id', mw.uri.anchorEncode(args[cfg.arg.group1]))&lt;br /&gt;
		end&lt;br /&gt;
&lt;br /&gt;
		groupCell&lt;br /&gt;
			:attr('scope', 'row')&lt;br /&gt;
			:addClass(cfg.class.navbox_group)&lt;br /&gt;
			:addClass(args[cfg.arg.groupclass])&lt;br /&gt;
			:cssText(args[cfg.arg.basestyle])&lt;br /&gt;
			-- If groupwidth not specified, minimize width&lt;br /&gt;
			:css('width', args[cfg.arg.groupwidth] or '1%')&lt;br /&gt;
&lt;br /&gt;
		groupCell&lt;br /&gt;
			:cssText(args[cfg.arg.groupstyle])&lt;br /&gt;
			:cssText(args[groupstyle_and_num])&lt;br /&gt;
			:wikitext(args[group_and_num])&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	local listCell = row:tag('td')&lt;br /&gt;
&lt;br /&gt;
	if args[group_and_num] then&lt;br /&gt;
		listCell&lt;br /&gt;
			:addClass(cfg.class.navbox_list_with_group)&lt;br /&gt;
	else&lt;br /&gt;
		listCell:attr('colspan', 2)&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	if not args[cfg.arg.groupwidth] then&lt;br /&gt;
		listCell:css('width', '100%')&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	local rowstyle  -- usually nil so cssText(rowstyle) usually adds nothing&lt;br /&gt;
	if index % 2 == 1 then&lt;br /&gt;
		rowstyle = args[cfg.arg.oddstyle]&lt;br /&gt;
	else&lt;br /&gt;
		rowstyle = args[cfg.arg.evenstyle]&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	local list_and_num = format(cfg.arg.list_and_num, listnum)&lt;br /&gt;
	local listText = args[list_and_num]&lt;br /&gt;
	local oddEven = cfg.marker.oddeven&lt;br /&gt;
	if listText:sub(1, 12) == '&amp;lt;/div&amp;gt;&amp;lt;table' then&lt;br /&gt;
		-- Assume list text is for a subgroup navbox so no automatic striping for this row.&lt;br /&gt;
		oddEven = listText:find(cfg.pattern.navbox_title) and cfg.marker.restart or cfg.class.navbox_odd_part&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	local liststyle_and_num = format(cfg.arg.liststyle_and_num, listnum)&lt;br /&gt;
	local listclass_and_num = format(cfg.arg.listclass_and_num, listnum)&lt;br /&gt;
	listCell&lt;br /&gt;
		:css('padding', '0')&lt;br /&gt;
		:cssText(args[cfg.arg.liststyle])&lt;br /&gt;
		:cssText(rowstyle)&lt;br /&gt;
		:cssText(args[liststyle_and_num])&lt;br /&gt;
		:addClass(cfg.class.navbox_list)&lt;br /&gt;
		:addClass(cfg.class.navbox_part .. oddEven)&lt;br /&gt;
		:addClass(args[cfg.arg.listclass])&lt;br /&gt;
		:addClass(args[listclass_and_num])&lt;br /&gt;
		:tag('div')&lt;br /&gt;
			:css('padding',&lt;br /&gt;
				(index == 1 and args[cfg.arg.list1padding]) or args[cfg.arg.listpadding] or '0 0.25em'&lt;br /&gt;
			)&lt;br /&gt;
			:wikitext(processItem(listText, args[cfg.arg.nowrapitems]))&lt;br /&gt;
&lt;br /&gt;
	if index == 1 and args[cfg.arg.image] then&lt;br /&gt;
		row&lt;br /&gt;
			:tag('td')&lt;br /&gt;
				:addClass(cfg.class.noviewer)&lt;br /&gt;
				:addClass(cfg.class.navbox_image)&lt;br /&gt;
				:addClass(args[cfg.arg.imageclass])&lt;br /&gt;
				:css('width', '1px')               -- Minimize width&lt;br /&gt;
				:css('padding', '0 0 0 2px')&lt;br /&gt;
				:cssText(args[cfg.arg.imagestyle])&lt;br /&gt;
				:attr('rowspan', listnums_size)&lt;br /&gt;
				:tag('div')&lt;br /&gt;
					:wikitext(processItem(args[cfg.arg.image]))&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function has_list_class(htmlclass)&lt;br /&gt;
	local patterns = {&lt;br /&gt;
		'^' .. htmlclass .. '$',&lt;br /&gt;
		'%s' .. htmlclass .. '$',&lt;br /&gt;
		'^' .. htmlclass .. '%s',&lt;br /&gt;
		'%s' .. htmlclass .. '%s'&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	for arg, _ in pairs(args) do&lt;br /&gt;
		if type(arg) == 'string' and mw.ustring.find(arg, cfg.pattern.class) then&lt;br /&gt;
			for _, pattern in ipairs(patterns) do&lt;br /&gt;
				if mw.ustring.find(args[arg] or '', pattern) then&lt;br /&gt;
					return true&lt;br /&gt;
				end&lt;br /&gt;
			end&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	return false&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
-- there are a lot of list classes in the wild, so we add their TemplateStyles&lt;br /&gt;
local function add_list_styles()&lt;br /&gt;
	local frame = mw.getCurrentFrame()&lt;br /&gt;
	local function add_list_templatestyles(htmlclass, templatestyles)&lt;br /&gt;
		if has_list_class(htmlclass) then&lt;br /&gt;
			return frame:extensionTag{&lt;br /&gt;
				name = 'templatestyles', args = { src = templatestyles }&lt;br /&gt;
			}&lt;br /&gt;
		else&lt;br /&gt;
			return ''&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	local hlist_styles = add_list_templatestyles('hlist', cfg.hlist_templatestyles)&lt;br /&gt;
	local plainlist_styles = add_list_templatestyles('plainlist', cfg.plainlist_templatestyles)&lt;br /&gt;
	&lt;br /&gt;
	-- a second workaround for [[phab:T303378]]&lt;br /&gt;
	-- when that issue is fixed, we can actually use has_navbar not to emit the&lt;br /&gt;
	-- tag here if we want&lt;br /&gt;
	if has_navbar() and hlist_styles == '' then&lt;br /&gt;
		hlist_styles = frame:extensionTag{&lt;br /&gt;
			name = 'templatestyles', args = { src = cfg.hlist_templatestyles }&lt;br /&gt;
		}&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	-- hlist -&amp;gt; plainlist is best-effort to preserve old Common.css ordering.&lt;br /&gt;
	-- this ordering is not a guarantee because most navboxes will emit only&lt;br /&gt;
	-- one of these classes [hlist_note]&lt;br /&gt;
	return hlist_styles .. plainlist_styles&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function needsHorizontalLists(border)&lt;br /&gt;
	if border == cfg.keyword.border_subgroup or args[cfg.arg.tracking] == cfg.keyword.tracking_no then&lt;br /&gt;
		return false&lt;br /&gt;
	end&lt;br /&gt;
	return not has_list_class(cfg.pattern.hlist) and not has_list_class(cfg.pattern.plainlist)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function hasBackgroundColors()&lt;br /&gt;
	for _, key in ipairs({cfg.arg.titlestyle, cfg.arg.groupstyle,&lt;br /&gt;
		cfg.arg.basestyle, cfg.arg.abovestyle, cfg.arg.belowstyle}) do&lt;br /&gt;
		if tostring(args[key]):find('background', 1, true) then&lt;br /&gt;
			return true&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	return false&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function hasBorders()&lt;br /&gt;
	for _, key in ipairs({cfg.arg.groupstyle, cfg.arg.basestyle,&lt;br /&gt;
		cfg.arg.abovestyle, cfg.arg.belowstyle}) do&lt;br /&gt;
		if tostring(args[key]):find('border', 1, true) then&lt;br /&gt;
			return true&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	return false&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function isIllegible()&lt;br /&gt;
	local styleratio = require('Module:Color contrast')._styleratio&lt;br /&gt;
	for key, style in pairs(args) do&lt;br /&gt;
		if tostring(key):match(cfg.pattern.style) then&lt;br /&gt;
			if styleratio{mw.text.unstripNoWiki(style)} &amp;lt; 4.5 then&lt;br /&gt;
				return true&lt;br /&gt;
			end&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	return false&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function getTrackingCategories(border)&lt;br /&gt;
	local cats = {}&lt;br /&gt;
	if needsHorizontalLists(border) then table.insert(cats, cfg.category.horizontal_lists) end&lt;br /&gt;
	if hasBackgroundColors() then table.insert(cats, cfg.category.background_colors) end&lt;br /&gt;
	if isIllegible() then table.insert(cats, cfg.category.illegible) end&lt;br /&gt;
	if hasBorders() then table.insert(cats, cfg.category.borders) end&lt;br /&gt;
	return cats&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function renderTrackingCategories(builder, border)&lt;br /&gt;
	local title = mw.title.getCurrentTitle()&lt;br /&gt;
	if title.namespace ~= 10 then return end -- not in template space&lt;br /&gt;
	local subpage = title.subpageText&lt;br /&gt;
	if subpage == cfg.keyword.subpage_doc or subpage == cfg.keyword.subpage_sandbox&lt;br /&gt;
		or subpage == cfg.keyword.subpage_testcases then return end&lt;br /&gt;
&lt;br /&gt;
	for _, cat in ipairs(getTrackingCategories(border)) do&lt;br /&gt;
		builder:wikitext('[[Category:' .. cat .. ']]')&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function renderMainTable(border, listnums)&lt;br /&gt;
	local tbl = mw.html.create('table')&lt;br /&gt;
		:addClass(cfg.class.nowraplinks)&lt;br /&gt;
		:addClass(args[cfg.arg.bodyclass])&lt;br /&gt;
&lt;br /&gt;
	local state = args[cfg.arg.state]&lt;br /&gt;
	if args[cfg.arg.title] and state ~= cfg.keyword.state_plain and state ~= cfg.keyword.state_off then&lt;br /&gt;
		if state == cfg.keyword.state_collapsed then&lt;br /&gt;
			state = cfg.class.collapsed&lt;br /&gt;
		end&lt;br /&gt;
		tbl&lt;br /&gt;
			:addClass(cfg.class.collapsible)&lt;br /&gt;
			:addClass(state or cfg.class.autocollapse)&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	tbl:css('border-spacing', 0)&lt;br /&gt;
	if border == cfg.keyword.border_subgroup or border == cfg.keyword.border_none then&lt;br /&gt;
		tbl&lt;br /&gt;
			:addClass(cfg.class.navbox_subgroup)&lt;br /&gt;
			:cssText(args[cfg.arg.bodystyle])&lt;br /&gt;
			:cssText(args[cfg.arg.style])&lt;br /&gt;
	else  -- regular navbox - bodystyle and style will be applied to the wrapper table&lt;br /&gt;
		tbl&lt;br /&gt;
			:addClass(cfg.class.navbox_inner)&lt;br /&gt;
			:css('background', 'transparent')&lt;br /&gt;
			:css('color', 'inherit')&lt;br /&gt;
	end&lt;br /&gt;
	tbl:cssText(args[cfg.arg.innerstyle])&lt;br /&gt;
&lt;br /&gt;
	renderTitleRow(tbl)&lt;br /&gt;
	renderAboveRow(tbl)&lt;br /&gt;
	local listnums_size = #listnums&lt;br /&gt;
	for i, listnum in ipairs(listnums) do&lt;br /&gt;
		renderListRow(tbl, i, listnum, listnums_size)&lt;br /&gt;
	end&lt;br /&gt;
	renderBelowRow(tbl)&lt;br /&gt;
&lt;br /&gt;
	return tbl&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function add_navbox_styles(hiding_templatestyles)&lt;br /&gt;
	local frame = mw.getCurrentFrame()&lt;br /&gt;
	-- This is a lambda so that it doesn't need the frame as a parameter&lt;br /&gt;
	local function add_user_styles(templatestyles)&lt;br /&gt;
		if templatestyles and templatestyles ~= '' then&lt;br /&gt;
			return frame:extensionTag{&lt;br /&gt;
				name = 'templatestyles', args = { src = templatestyles }&lt;br /&gt;
			}&lt;br /&gt;
		end&lt;br /&gt;
		return ''&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	-- get templatestyles. load base from config so that Lua only needs to do&lt;br /&gt;
	-- the work once of parser tag expansion&lt;br /&gt;
	local base_templatestyles = cfg.templatestyles&lt;br /&gt;
	local templatestyles = add_user_styles(args[cfg.arg.templatestyles])&lt;br /&gt;
	local child_templatestyles = add_user_styles(args[cfg.arg.child_templatestyles])&lt;br /&gt;
&lt;br /&gt;
	-- The 'navbox-styles' div exists to wrap the styles to work around T200206&lt;br /&gt;
	-- more elegantly. Instead of combinatorial rules, this ends up being linear&lt;br /&gt;
	-- number of CSS rules.&lt;br /&gt;
	return mw.html.create('div')&lt;br /&gt;
		:addClass(cfg.class.navbox_styles)&lt;br /&gt;
		:wikitext(&lt;br /&gt;
			add_list_styles() .. -- see [hlist_note] applied to 'before base_templatestyles'&lt;br /&gt;
			base_templatestyles ..&lt;br /&gt;
			templatestyles ..&lt;br /&gt;
			child_templatestyles ..&lt;br /&gt;
			table.concat(hiding_templatestyles)&lt;br /&gt;
		)&lt;br /&gt;
		:done()&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
-- work around [[phab:T303378]]&lt;br /&gt;
-- for each arg: find all the templatestyles strip markers, insert them into a&lt;br /&gt;
-- table. then remove all templatestyles markers from the arg&lt;br /&gt;
local function move_hiding_templatestyles(args)&lt;br /&gt;
	local gfind = string.gfind&lt;br /&gt;
	local gsub = string.gsub&lt;br /&gt;
	local templatestyles_markers = {}&lt;br /&gt;
	local strip_marker_pattern = '(\127[^\127]*UNIQ%-%-templatestyles%-%x+%-QINU[^\127]*\127)'&lt;br /&gt;
	for k, arg in pairs(args) do&lt;br /&gt;
		for marker in gfind(arg, strip_marker_pattern) do&lt;br /&gt;
			table.insert(templatestyles_markers, marker)&lt;br /&gt;
		end&lt;br /&gt;
		args[k] = gsub(arg, strip_marker_pattern, '')&lt;br /&gt;
	end&lt;br /&gt;
	return templatestyles_markers&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p._navbox(navboxArgs)&lt;br /&gt;
	args = navboxArgs&lt;br /&gt;
	local hiding_templatestyles = move_hiding_templatestyles(args)&lt;br /&gt;
	local listnums = {}&lt;br /&gt;
&lt;br /&gt;
	for k, _ in pairs(args) do&lt;br /&gt;
		if type(k) == 'string' then&lt;br /&gt;
			local listnum = k:match(cfg.pattern.listnum)&lt;br /&gt;
			if listnum then table.insert(listnums, tonumber(listnum)) end&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	table.sort(listnums)&lt;br /&gt;
&lt;br /&gt;
	local border = mw.text.trim(args[cfg.arg.border] or args[1] or '')&lt;br /&gt;
	if border == cfg.keyword.border_child then&lt;br /&gt;
		border = cfg.keyword.border_subgroup&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	-- render the main body of the navbox&lt;br /&gt;
	local tbl = renderMainTable(border, listnums)&lt;br /&gt;
&lt;br /&gt;
	local res = mw.html.create()&lt;br /&gt;
	-- render the appropriate wrapper for the navbox, based on the border param&lt;br /&gt;
&lt;br /&gt;
	if border == cfg.keyword.border_none then&lt;br /&gt;
		res:node(add_navbox_styles(hiding_templatestyles))&lt;br /&gt;
		local nav = res:tag('div')&lt;br /&gt;
			:attr('role', 'navigation')&lt;br /&gt;
			:node(tbl)&lt;br /&gt;
		-- aria-labelledby title, otherwise above, otherwise lone group&lt;br /&gt;
		if args[cfg.arg.title] or args[cfg.arg.above] or (args[cfg.arg.group1]&lt;br /&gt;
			and not args[cfg.arg.group2]) then&lt;br /&gt;
			nav:attr(&lt;br /&gt;
				'aria-labelledby',&lt;br /&gt;
				mw.uri.anchorEncode(&lt;br /&gt;
					args[cfg.arg.title] or args[cfg.arg.above] or args[cfg.arg.group1]&lt;br /&gt;
				)&lt;br /&gt;
			)&lt;br /&gt;
		else&lt;br /&gt;
			nav:attr('aria-label', cfg.aria_label)&lt;br /&gt;
		end&lt;br /&gt;
	elseif border == cfg.keyword.border_subgroup then&lt;br /&gt;
		-- We assume that this navbox is being rendered in a list cell of a&lt;br /&gt;
		-- parent navbox, and is therefore inside a div with padding:0em 0.25em.&lt;br /&gt;
		-- We start with a &amp;lt;/div&amp;gt; to avoid the padding being applied, and at the&lt;br /&gt;
		-- end add a &amp;lt;div&amp;gt; to balance out the parent's &amp;lt;/div&amp;gt;&lt;br /&gt;
		res&lt;br /&gt;
			:wikitext('&amp;lt;/div&amp;gt;')&lt;br /&gt;
			:node(tbl)&lt;br /&gt;
			:wikitext('&amp;lt;div&amp;gt;')&lt;br /&gt;
	else&lt;br /&gt;
		res:node(add_navbox_styles(hiding_templatestyles))&lt;br /&gt;
		local nav = res:tag('div')&lt;br /&gt;
			:attr('role', 'navigation')&lt;br /&gt;
			:addClass(cfg.class.navbox)&lt;br /&gt;
			:addClass(args[cfg.arg.navboxclass])&lt;br /&gt;
			:cssText(args[cfg.arg.bodystyle])&lt;br /&gt;
			:cssText(args[cfg.arg.style])&lt;br /&gt;
			:css('padding', '3px')&lt;br /&gt;
			:node(tbl)&lt;br /&gt;
		-- aria-labelledby title, otherwise above, otherwise lone group&lt;br /&gt;
		if args[cfg.arg.title] or args[cfg.arg.above]&lt;br /&gt;
			or (args[cfg.arg.group1] and not args[cfg.arg.group2]) then&lt;br /&gt;
			nav:attr(&lt;br /&gt;
				'aria-labelledby',&lt;br /&gt;
				mw.uri.anchorEncode(args[cfg.arg.title] or args[cfg.arg.above] or args[cfg.arg.group1])&lt;br /&gt;
			)&lt;br /&gt;
		else&lt;br /&gt;
			nav:attr('aria-label', cfg.aria_label)&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	if (args[cfg.arg.nocat] or cfg.keyword.nocat_false):lower() == cfg.keyword.nocat_false then&lt;br /&gt;
		renderTrackingCategories(res, border)&lt;br /&gt;
	end&lt;br /&gt;
	return striped(tostring(res), border)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p.navbox(frame)&lt;br /&gt;
	if not getArgs then&lt;br /&gt;
		getArgs = require('Module:Arguments').getArgs&lt;br /&gt;
	end&lt;br /&gt;
	args = getArgs(frame, {wrappers = {cfg.pattern.navbox}})&lt;br /&gt;
&lt;br /&gt;
	-- Read the arguments in the order they'll be output in, to make references&lt;br /&gt;
	-- number in the right order.&lt;br /&gt;
	local _&lt;br /&gt;
	_ = args[cfg.arg.title]&lt;br /&gt;
	_ = args[cfg.arg.above]&lt;br /&gt;
	-- Limit this to 20 as covering 'most' cases (that's a SWAG) and because&lt;br /&gt;
	-- iterator approach won't work here&lt;br /&gt;
	for i = 1, 20 do&lt;br /&gt;
		_ = args[format(cfg.arg.group_and_num, i)]&lt;br /&gt;
		_ = args[format(cfg.arg.list_and_num, i)]&lt;br /&gt;
	end&lt;br /&gt;
	_ = args[cfg.arg.below]&lt;br /&gt;
&lt;br /&gt;
	return p._navbox(args)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=The_equation_that_broke_the_Internet_6%C3%B72(1%2B2)%3D%3F&amp;diff=6308</id>
		<title>The equation that broke the Internet 6÷2(1+2)=?</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=The_equation_that_broke_the_Internet_6%C3%B72(1%2B2)%3D%3F&amp;diff=6308"/>
		<updated>2025-11-25T20:26:15Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: /* Explicit vs Implicit (implied) multiplication */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{multiple image&lt;br /&gt;
&amp;lt;!-- Layout parameters --&amp;gt;&lt;br /&gt;
 | align             = right  &lt;br /&gt;
 | direction         = &amp;lt;!-- horizontal (default), vertical --&amp;gt;&lt;br /&gt;
 | background color  = &amp;lt;!-- box background --&amp;gt;&lt;br /&gt;
 | width             = 400&lt;br /&gt;
 | caption_align     =  center&lt;br /&gt;
 | image1            = CasioCalculator.png&lt;br /&gt;
 | caption1 = The Casio fx-9860 GII SD returns the correct answer to the equation as given. The next row provides the answer that a less sophisticated calculator would return.&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
'''6÷2(1+2)=?''' is the algebra question that many Internet respondents seem to get wrong.  If you are in the camp that knows the correct answer is 1, read no further. If you believe the answer is 9, you should probably review this document. {{highlight|There is only one number that 6 can be divided by to result in 9, and that number is 2/3.}}&lt;br /&gt;
&lt;br /&gt;
== Proof of correct solution ==&lt;br /&gt;
''Encyclopedia Britannica'': &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
::'''''Distributive law''''', ''in mathematics, the law relating the operations of multiplication and addition, stated symbolically, a(b + c) = ab + ac; that is, the monomial factor a is distributed, or separately applied, to each term of the binomial factor b + c, resulting in the product ab + ac.''&lt;br /&gt;
::&amp;amp;ndash;[https://www.britannica.com/science/distributive-law Encyclopedia Britticana]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Therefore, in 6÷2(1+2)=?, we start with the &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt; Distributive Law&amp;lt;/span&amp;gt; in the &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;Parenthesis&amp;lt;/span&amp;gt; step of the Order of Operations.&lt;br /&gt;
&lt;br /&gt;
::'''6÷2(1+2)=?'''&lt;br /&gt;
::'''6÷&amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;(2*1 + 2*2)&amp;lt;/span&amp;gt;=?'''&lt;br /&gt;
::'''6÷(2 + 4)=?'''&lt;br /&gt;
::'''6÷(6)=?'''&lt;br /&gt;
::'''6÷6=1'''&lt;br /&gt;
&lt;br /&gt;
==Proof incorrect solution ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p style=&amp;quot;text-align:center;&amp;quot;&amp;gt; {{highlight|Without fail, 2(1+2) will always equal (2*1 + 2*2), this is the '''Distributive Law.'''}}&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If we substitute x for 2(1+2) from the given equation and back-test the equation with the result of 9:&lt;br /&gt;
&lt;br /&gt;
If &lt;br /&gt;
&lt;br /&gt;
:6÷x = 9&lt;br /&gt;
&lt;br /&gt;
then &lt;br /&gt;
&lt;br /&gt;
:6÷9 = x&lt;br /&gt;
&lt;br /&gt;
there is a common divisor of 3 so we reduce the fraction...&lt;br /&gt;
&lt;br /&gt;
:2÷3 = x &lt;br /&gt;
&lt;br /&gt;
Now we compare the value given in the equation to the value we found (above) for x.&lt;br /&gt;
&lt;br /&gt;
:2÷3 '''!=''' 2(1+2)&lt;br /&gt;
&lt;br /&gt;
Therefore:&lt;br /&gt;
&lt;br /&gt;
:6÷2(1+2) '''!=''' 9&lt;br /&gt;
&lt;br /&gt;
==Processing rules== &lt;br /&gt;
In the majority of incorrect proofs the respondent will cite PEMDAS or BODMAS, we all agree that parentheses or brackets are processed first.  However, some respondents incorrectly resolve the [P]arentheses or [B]rackets of PEMDAS - BODMAS. For some reason, these solvers believe that they can resolve within the parentheses, but neglect to multiply the adjacent and dependent coefficient.&lt;br /&gt;
&lt;br /&gt;
=== PEMDAS ===&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::P	parenthesis&lt;br /&gt;
::E	exponentiation&lt;br /&gt;
::M	multiplication&lt;br /&gt;
::D	division&lt;br /&gt;
::A	addition&lt;br /&gt;
::S	subtraction&lt;br /&gt;
&lt;br /&gt;
::&amp;amp;ndash;[https://mathworld.wolfram.com/PEMDAS.html Wolfram PEMDAS]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Parentheses ===&lt;br /&gt;
''Wolfram Mathworld'' on parenthetical expressions:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
:: 1. ''Parentheses are used in mathematical expressions to denote modifications to normal order of operations (precedence rules)...''&lt;br /&gt;
::[...]&lt;br /&gt;
::3. ''Parentheses are used to enclose the variables of a function in the form f(x), which means that values of the function f are dependent upon the values of x.''&lt;br /&gt;
::&amp;amp;ndash;[http://mathworld.wolfram.com/Parenthesis.html Wolfram Parenthesis]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Distributive law===&lt;br /&gt;
''Encyclopedia Britannica'' on parenthetical expressions: &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
::'''''Distributive law''''', ''in mathematics, the law relating the operations of multiplication and addition, stated symbolically, a(b + c) = ab + ac; that is, the monomial factor a is distributed, or separately applied, to each term of the binomial factor b + c, resulting in the product ab + ac.''&lt;br /&gt;
::&amp;amp;ndash;[https://www.britannica.com/science/distributive-law Encyclopedia Britticana]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Therefore, in 6÷2(1+2)=?, we start with the Distributive Law in the &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;Parenthesis&amp;lt;/span&amp;gt; step of the Order of Operations.&lt;br /&gt;
&lt;br /&gt;
::'''6÷2(1+2)=?'''&lt;br /&gt;
::'''6÷&amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;(2*1 + 2*2)&amp;lt;/span&amp;gt;=?'''&lt;br /&gt;
::'''6÷(2 + 4)=?'''&lt;br /&gt;
::'''6÷(6)=?'''&lt;br /&gt;
::'''6÷6=1'''&lt;br /&gt;
&lt;br /&gt;
So the fatal error with solvers who emphasize the left to right rule, is in incorrectly handling the Parentheses step, disregarding the Distributive Law.&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;s&amp;gt;'''&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;6÷2(3)&amp;lt;/div&amp;gt;'''&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some are even compelled to add an explicit multiplier, not given in the equation.&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;s&amp;gt;'''&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;6÷2*(3)&amp;lt;/div&amp;gt;'''&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;s&amp;gt;'''&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;3*(3)&amp;lt;/div&amp;gt;'''&amp;lt;/s&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
=== Parenthetical expressions ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
{{Quote|text=&lt;br /&gt;
''Parenthetical Expression. The parenthesis was described in Chapter 1 as a grouping symbol. When an algebraic expression is enclosed by a parenthesis it is known as a parenthetical expression. '''When a parenthetical expression is immediately preceded by coefficient, the parenthetical expression is a factor and &amp;lt;u&amp;gt;must be multiplied by the coefficient.&amp;lt;/u&amp;gt;''' This is done in the following manner.''&lt;br /&gt;
::''5(a + b) = 5a + 5b'' &amp;lt;br/&amp;gt;&lt;br /&gt;
::''3a(b - c) = 3ab - 3ac''&lt;br /&gt;
&lt;br /&gt;
&amp;amp;ndash;[https://books.google.com/books?id=BabtEFxgZ2AC &amp;quot;Technical Shop Mathematics / Edition 2&amp;quot;], by John G. Anderson, ISBN-13:9780831111458, Industrial Press, Inc., 02/28/1983, Page:138&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Explicit vs Implicit (implied) multiplication ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:center&amp;quot;&amp;gt;&lt;br /&gt;
{{Quote|text='''''Implied multiplication''' has a higher priority than explicit multiplication to allow users to enter expressions, in the same manner as they would be written.''&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;ndash;[https://epsstore.ti.com/OA_HTML/csksxvm.jsp?nSetId=103110 Implied Multiplication Versus Explicit Multiplication on TI Graphing Calculators]&lt;br /&gt;
 }}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Explicit operations have explicit operators (* ÷ + - ) which are delimiters that divide equations into separate terms.  Implied multiplication is notation that informs us that the value of a variable, bracketed function or exponent are connected and not separate terms. ''Implied multiplication is everywhere, 1x = x and x/1=x. Any number times 1 is that number and any number divided by 1 is that number.''&lt;br /&gt;
&lt;br /&gt;
Implied multiplication is also implicit multiplication.&lt;br /&gt;
&lt;br /&gt;
{{Quote|text=&lt;br /&gt;
'''im·plic·it'''&lt;br /&gt;
&lt;br /&gt;
''adjective''&lt;br /&gt;
&lt;br /&gt;
:1. implied though not plainly expressed.&lt;br /&gt;
&lt;br /&gt;
:2. essentially or very closely connected with; always to be found in.&lt;br /&gt;
&lt;br /&gt;
'''im·plied'''&lt;br /&gt;
&lt;br /&gt;
''adjective''&lt;br /&gt;
&lt;br /&gt;
:1. suggested but not directly expressed; implicit.&lt;br /&gt;
&lt;br /&gt;
'''ex·plic·it'''&lt;br /&gt;
&lt;br /&gt;
''adjective''&lt;br /&gt;
&lt;br /&gt;
:1. stated clearly and in detail, leaving no room for confusion or doubt.&lt;br /&gt;
&lt;br /&gt;
&amp;amp;ndash;Oxford&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
6÷2(1+2) has two EXPLICIT operators, division and addition. However, IMPLIED multiplication tells us to IMPLICITLY multiply, [2(2+1)], in the P step of PEMDAS. &lt;br /&gt;
In the division step, we must apply division to the (entire) implicitly connected parenthetical expression.  We cannot apply division to the coefficient (2) and then not apply division to the factor (2+1).&lt;br /&gt;
&lt;br /&gt;
'''Incorrect:''' (''because division is not EXPLICITLY applied to the entire parenthetical expression'')&lt;br /&gt;
&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:80px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
6          &lt;br /&gt;
----  &lt;br /&gt;
2      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:80px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:80px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
(2+1)&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:80px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:80px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
3 * (1+2)          &lt;br /&gt;
&amp;lt;br/&amp;gt;    &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Correct:''' (''when EXPLICIT division is applied, it is applied to the entire term.'')&lt;br /&gt;
&amp;lt;div style=&amp;quot;color:green;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:80px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
6          &lt;br /&gt;
----  &lt;br /&gt;
1      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:80px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
÷&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:80px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
2(1+2)         &lt;br /&gt;
----  &lt;br /&gt;
1     &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:80px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:80px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
2 * (1+2)          &lt;br /&gt;
----  &lt;br /&gt;
6 * 1      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Traditional solution:'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;color:green;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:80px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
6          &lt;br /&gt;
----  &lt;br /&gt;
2(1+2)      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:80px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:80px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
3          &lt;br /&gt;
----  &lt;br /&gt;
1*(1+2)      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:80px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:80px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
3          &lt;br /&gt;
----  &lt;br /&gt;
3      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:80px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=  1&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
As we can see, we cannot add an EXPLICIT operator to 6÷2(1+2) without maintaining the IMPLICIT relationship that was stated with IMPLIED multiplication. 6÷2(1+2) == 6÷(2*(1+2)).&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Correctly solving left to right==&lt;br /&gt;
&lt;br /&gt;
If we insist on a left to right solution, ignoring both PEMDAS and the Distributive Law, we can do this by expressing the common divisor first. However, division is sustained and must be applied to everything to the right of the explicit division operator.&lt;br /&gt;
&lt;br /&gt;
::''6÷2(1+2)=?''&lt;br /&gt;
::''3÷1(1+2)=?''  &lt;br /&gt;
::''3÷(1+2)=?''&lt;br /&gt;
::''3÷(3)=?''&lt;br /&gt;
::''3÷3=1''&lt;br /&gt;
&lt;br /&gt;
When we reduce by the common divisor, this does not complete the division operation, it simply reduces the coefficient to one. Division must be applied to both the factor and the coefficient of the parenthetical expression.&lt;br /&gt;
&lt;br /&gt;
==The equation is not ambiguous ==&lt;br /&gt;
===6÷2(1+2) is not equal to 6÷2*(1+2)===&lt;br /&gt;
Standing alone, 6 will always equal 6 and 2(1+2) will also always equal 6, so dividing these two terms will always equal 1. &lt;br /&gt;
&lt;br /&gt;
We would not write 2(a+b) as (2(a+b)), nor can we re-write the given equation as 6÷2*(a+b) and maintain the same value. We can however, rewrite the full equation to include an explicit multiplier if we take care to maintain the parenthetical expression with additional bracketing 6÷(2*(a+b)).&lt;br /&gt;
&lt;br /&gt;
=== Obelus ===&lt;br /&gt;
Granted, the [https://web.archive.org/web/20210417145938/https://www.wyzant.com/resources/blogs/14831/the_obelus_for_division obelus (÷)] is an archaic symbol for division, it visually represents a fraction with one dot being the numerator and the other being the denominator. Computers use the forward slash for division because the standard keyboard does not have an obelus key.  &lt;br /&gt;
&lt;br /&gt;
For those who claim that the obelus is outdated, why then is it present on virtually every modern calculator?&lt;br /&gt;
&lt;br /&gt;
== The calculator problem ==&lt;br /&gt;
&lt;br /&gt;
The [https://www.desmos.com/scientific Desmos Scientific Calculator] handles our given equation correctly. The error checking appears to be built into the division key.&lt;br /&gt;
&lt;br /&gt;
Entering the equation into a programming language, or low quality calculator, requires the explicit multiplication symbol and outer parenthesis to maintain value of the parenthetical expression.&lt;br /&gt;
&lt;br /&gt;
'''6÷2(1+2) == 6÷(2*(1+2))'''&lt;br /&gt;
&lt;br /&gt;
Other calculators, including Google and Wolfram will simply strip the parenthesis and solve a different equation, 6÷2*3. This is because within the programming, the open parenthesis (bracketing) triggers a different function within the programming, an open parenthesis tells the compiler to find the innermost parenthesized term and work outwards.  Thus, to get the correct answer from inferior calculators, the input must be formalized with correct bracketing. I.e. 6÷(2*(1+2))&lt;br /&gt;
&lt;br /&gt;
==Spreadsheets==&lt;br /&gt;
Entering the equation as =6/2(1+2) into a cell in a LibreOffice Calc spreadsheet will result in Err:509 (Missing operator), Google Sheets also returns an error (Formula parse error). This forces the user to format the equation using explicit multiplication. To avoid the left to right problem, the compiler must be instructed in advance to prepare for the function with an extra pair of parenthesis =6/(2*(1+2)).&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [https://www.nytimes.com/2019/08/05/science/math-equation-pemdas-bodmas.html &amp;quot;That Vexing Math Equation? Here’s an Addition&amp;quot;]&lt;br /&gt;
* [https://www.youtube.com/watch?v=hsZCtgFcL40 &amp;quot;How to Solve 8÷2(2+2) Using Implied Multiplication&amp;quot;]&lt;br /&gt;
* [https://slate.com/technology/2013/03/facebook-math-problem-why-pemdas-doesnt-always-give-a-clear-answer.html &amp;quot;What Is the Answer to That Stupid Math Problem on Facebook?&amp;quot;]&lt;br /&gt;
* [https://www.inc.com/dave-kerpen/this-basic-math-problem-is-breaking-internet.html This Basic Math Problem Is Breaking the Internet: How do you solve this simple arithmetic problem?]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=The_equation_that_broke_the_Internet_6%C3%B72(1%2B2)%3D%3F&amp;diff=6307</id>
		<title>The equation that broke the Internet 6÷2(1+2)=?</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=The_equation_that_broke_the_Internet_6%C3%B72(1%2B2)%3D%3F&amp;diff=6307"/>
		<updated>2025-11-25T20:22:28Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{multiple image&lt;br /&gt;
&amp;lt;!-- Layout parameters --&amp;gt;&lt;br /&gt;
 | align             = right  &lt;br /&gt;
 | direction         = &amp;lt;!-- horizontal (default), vertical --&amp;gt;&lt;br /&gt;
 | background color  = &amp;lt;!-- box background --&amp;gt;&lt;br /&gt;
 | width             = 400&lt;br /&gt;
 | caption_align     =  center&lt;br /&gt;
 | image1            = CasioCalculator.png&lt;br /&gt;
 | caption1 = The Casio fx-9860 GII SD returns the correct answer to the equation as given. The next row provides the answer that a less sophisticated calculator would return.&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
'''6÷2(1+2)=?''' is the algebra question that many Internet respondents seem to get wrong.  If you are in the camp that knows the correct answer is 1, read no further. If you believe the answer is 9, you should probably review this document. {{highlight|There is only one number that 6 can be divided by to result in 9, and that number is 2/3.}}&lt;br /&gt;
&lt;br /&gt;
== Proof of correct solution ==&lt;br /&gt;
''Encyclopedia Britannica'': &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
::'''''Distributive law''''', ''in mathematics, the law relating the operations of multiplication and addition, stated symbolically, a(b + c) = ab + ac; that is, the monomial factor a is distributed, or separately applied, to each term of the binomial factor b + c, resulting in the product ab + ac.''&lt;br /&gt;
::&amp;amp;ndash;[https://www.britannica.com/science/distributive-law Encyclopedia Britticana]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Therefore, in 6÷2(1+2)=?, we start with the &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt; Distributive Law&amp;lt;/span&amp;gt; in the &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;Parenthesis&amp;lt;/span&amp;gt; step of the Order of Operations.&lt;br /&gt;
&lt;br /&gt;
::'''6÷2(1+2)=?'''&lt;br /&gt;
::'''6÷&amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;(2*1 + 2*2)&amp;lt;/span&amp;gt;=?'''&lt;br /&gt;
::'''6÷(2 + 4)=?'''&lt;br /&gt;
::'''6÷(6)=?'''&lt;br /&gt;
::'''6÷6=1'''&lt;br /&gt;
&lt;br /&gt;
==Proof incorrect solution ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p style=&amp;quot;text-align:center;&amp;quot;&amp;gt; {{highlight|Without fail, 2(1+2) will always equal (2*1 + 2*2), this is the '''Distributive Law.'''}}&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If we substitute x for 2(1+2) from the given equation and back-test the equation with the result of 9:&lt;br /&gt;
&lt;br /&gt;
If &lt;br /&gt;
&lt;br /&gt;
:6÷x = 9&lt;br /&gt;
&lt;br /&gt;
then &lt;br /&gt;
&lt;br /&gt;
:6÷9 = x&lt;br /&gt;
&lt;br /&gt;
there is a common divisor of 3 so we reduce the fraction...&lt;br /&gt;
&lt;br /&gt;
:2÷3 = x &lt;br /&gt;
&lt;br /&gt;
Now we compare the value given in the equation to the value we found (above) for x.&lt;br /&gt;
&lt;br /&gt;
:2÷3 '''!=''' 2(1+2)&lt;br /&gt;
&lt;br /&gt;
Therefore:&lt;br /&gt;
&lt;br /&gt;
:6÷2(1+2) '''!=''' 9&lt;br /&gt;
&lt;br /&gt;
==Processing rules== &lt;br /&gt;
In the majority of incorrect proofs the respondent will cite PEMDAS or BODMAS, we all agree that parentheses or brackets are processed first.  However, some respondents incorrectly resolve the [P]arentheses or [B]rackets of PEMDAS - BODMAS. For some reason, these solvers believe that they can resolve within the parentheses, but neglect to multiply the adjacent and dependent coefficient.&lt;br /&gt;
&lt;br /&gt;
=== PEMDAS ===&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::P	parenthesis&lt;br /&gt;
::E	exponentiation&lt;br /&gt;
::M	multiplication&lt;br /&gt;
::D	division&lt;br /&gt;
::A	addition&lt;br /&gt;
::S	subtraction&lt;br /&gt;
&lt;br /&gt;
::&amp;amp;ndash;[https://mathworld.wolfram.com/PEMDAS.html Wolfram PEMDAS]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Parentheses ===&lt;br /&gt;
''Wolfram Mathworld'' on parenthetical expressions:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
:: 1. ''Parentheses are used in mathematical expressions to denote modifications to normal order of operations (precedence rules)...''&lt;br /&gt;
::[...]&lt;br /&gt;
::3. ''Parentheses are used to enclose the variables of a function in the form f(x), which means that values of the function f are dependent upon the values of x.''&lt;br /&gt;
::&amp;amp;ndash;[http://mathworld.wolfram.com/Parenthesis.html Wolfram Parenthesis]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Distributive law===&lt;br /&gt;
''Encyclopedia Britannica'' on parenthetical expressions: &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
::'''''Distributive law''''', ''in mathematics, the law relating the operations of multiplication and addition, stated symbolically, a(b + c) = ab + ac; that is, the monomial factor a is distributed, or separately applied, to each term of the binomial factor b + c, resulting in the product ab + ac.''&lt;br /&gt;
::&amp;amp;ndash;[https://www.britannica.com/science/distributive-law Encyclopedia Britticana]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Therefore, in 6÷2(1+2)=?, we start with the Distributive Law in the &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;Parenthesis&amp;lt;/span&amp;gt; step of the Order of Operations.&lt;br /&gt;
&lt;br /&gt;
::'''6÷2(1+2)=?'''&lt;br /&gt;
::'''6÷&amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;(2*1 + 2*2)&amp;lt;/span&amp;gt;=?'''&lt;br /&gt;
::'''6÷(2 + 4)=?'''&lt;br /&gt;
::'''6÷(6)=?'''&lt;br /&gt;
::'''6÷6=1'''&lt;br /&gt;
&lt;br /&gt;
So the fatal error with solvers who emphasize the left to right rule, is in incorrectly handling the Parentheses step, disregarding the Distributive Law.&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;s&amp;gt;'''&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;6÷2(3)&amp;lt;/div&amp;gt;'''&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some are even compelled to add an explicit multiplier, not given in the equation.&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;s&amp;gt;'''&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;6÷2*(3)&amp;lt;/div&amp;gt;'''&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;s&amp;gt;'''&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;3*(3)&amp;lt;/div&amp;gt;'''&amp;lt;/s&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
=== Parenthetical expressions ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
{{Quote|text=&lt;br /&gt;
''Parenthetical Expression. The parenthesis was described in Chapter 1 as a grouping symbol. When an algebraic expression is enclosed by a parenthesis it is known as a parenthetical expression. '''When a parenthetical expression is immediately preceded by coefficient, the parenthetical expression is a factor and &amp;lt;u&amp;gt;must be multiplied by the coefficient.&amp;lt;/u&amp;gt;''' This is done in the following manner.''&lt;br /&gt;
::''5(a + b) = 5a + 5b'' &amp;lt;br/&amp;gt;&lt;br /&gt;
::''3a(b - c) = 3ab - 3ac''&lt;br /&gt;
&lt;br /&gt;
&amp;amp;ndash;[https://books.google.com/books?id=BabtEFxgZ2AC &amp;quot;Technical Shop Mathematics / Edition 2&amp;quot;], by John G. Anderson, ISBN-13:9780831111458, Industrial Press, Inc., 02/28/1983, Page:138&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Explicit vs Implicit (implied) multiplication ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:center&amp;quot;&amp;gt;&lt;br /&gt;
{{Quote|text='''''Implied multiplication''' has a higher priority than explicit multiplication to allow users to enter expressions, in the same manner as they would be written.''&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;ndash;[https://epsstore.ti.com/OA_HTML/csksxvm.jsp?nSetId=103110 Implied Multiplication Versus Explicit Multiplication on TI Graphing Calculators]&lt;br /&gt;
 }}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Explicit operations have explicit operators (* ÷ + - ) which are delimiters that divide equations into separate terms.  Implied multiplication is notation that informs us that the value of a variable, bracketed function or exponent are connected and not separate terms. ''Implied multiplication is everywhere, 1x = x and x/1=x. Any number times 1 is that number and any number divided by 1 is that number.''&lt;br /&gt;
&lt;br /&gt;
Implied multiplication is also implicit multiplication.&lt;br /&gt;
&lt;br /&gt;
{{Quote|text=&lt;br /&gt;
'''im·plic·it'''&lt;br /&gt;
&lt;br /&gt;
''adjective''&lt;br /&gt;
&lt;br /&gt;
:1. implied though not plainly expressed.&lt;br /&gt;
&lt;br /&gt;
:2. essentially or very closely connected with; always to be found in.&lt;br /&gt;
&lt;br /&gt;
'''im·plied'''&lt;br /&gt;
&lt;br /&gt;
''adjective''&lt;br /&gt;
&lt;br /&gt;
:1. suggested but not directly expressed; implicit.&lt;br /&gt;
&lt;br /&gt;
'''ex·plic·it'''&lt;br /&gt;
&lt;br /&gt;
''adjective''&lt;br /&gt;
&lt;br /&gt;
:1. stated clearly and in detail, leaving no room for confusion or doubt.&lt;br /&gt;
&lt;br /&gt;
&amp;amp;ndash;Oxford&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
6÷2(1+2) has two EXPLICIT operators, division and addition. However, IMPLIED multiplication tells us to IMPLICITLY multiply, [2(2+1)], in the P step of PEMDAS. &lt;br /&gt;
In the division step, we must apply division to the (entire) implicitly connected parenthetical expression.  We cannot apply division to the coefficient (2) and then not apply division to the factor (2+1).&lt;br /&gt;
&lt;br /&gt;
'''Incorrect:''' (''because division is not EXPLICITLY applied to the entire parenthetical expression'')&lt;br /&gt;
&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
6          &lt;br /&gt;
----  &lt;br /&gt;
2      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
(2+1)&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
3 * (1+2)          &lt;br /&gt;
&amp;lt;br/&amp;gt;    &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Correct:''' (''when EXPLICIT division is applied, it is applied to the entire term.'')&lt;br /&gt;
&amp;lt;div style=&amp;quot;color:green;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
6          &lt;br /&gt;
----  &lt;br /&gt;
1      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
÷&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
2(1+2)         &lt;br /&gt;
----  &lt;br /&gt;
1     &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
2 * (1+2)          &lt;br /&gt;
----  &lt;br /&gt;
6 * 1      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Traditional solution:'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;color:green;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
6          &lt;br /&gt;
----  &lt;br /&gt;
2(1+2)      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
3          &lt;br /&gt;
----  &lt;br /&gt;
1*(1+2)      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
3          &lt;br /&gt;
----  &lt;br /&gt;
3      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=  1&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
As we can see, we cannot add an EXPLICIT operator to 6÷2(1+2) without maintaining the IMPLICIT relationship that was stated with IMPLIED multiplication. 6÷2(1+2) == 6÷(2*(1+2)).&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Correctly solving left to right==&lt;br /&gt;
&lt;br /&gt;
If we insist on a left to right solution, ignoring both PEMDAS and the Distributive Law, we can do this by expressing the common divisor first. However, division is sustained and must be applied to everything to the right of the explicit division operator.&lt;br /&gt;
&lt;br /&gt;
::''6÷2(1+2)=?''&lt;br /&gt;
::''3÷1(1+2)=?''  &lt;br /&gt;
::''3÷(1+2)=?''&lt;br /&gt;
::''3÷(3)=?''&lt;br /&gt;
::''3÷3=1''&lt;br /&gt;
&lt;br /&gt;
When we reduce by the common divisor, this does not complete the division operation, it simply reduces the coefficient to one. Division must be applied to both the factor and the coefficient of the parenthetical expression.&lt;br /&gt;
&lt;br /&gt;
==The equation is not ambiguous ==&lt;br /&gt;
===6÷2(1+2) is not equal to 6÷2*(1+2)===&lt;br /&gt;
Standing alone, 6 will always equal 6 and 2(1+2) will also always equal 6, so dividing these two terms will always equal 1. &lt;br /&gt;
&lt;br /&gt;
We would not write 2(a+b) as (2(a+b)), nor can we re-write the given equation as 6÷2*(a+b) and maintain the same value. We can however, rewrite the full equation to include an explicit multiplier if we take care to maintain the parenthetical expression with additional bracketing 6÷(2*(a+b)).&lt;br /&gt;
&lt;br /&gt;
=== Obelus ===&lt;br /&gt;
Granted, the [https://web.archive.org/web/20210417145938/https://www.wyzant.com/resources/blogs/14831/the_obelus_for_division obelus (÷)] is an archaic symbol for division, it visually represents a fraction with one dot being the numerator and the other being the denominator. Computers use the forward slash for division because the standard keyboard does not have an obelus key.  &lt;br /&gt;
&lt;br /&gt;
For those who claim that the obelus is outdated, why then is it present on virtually every modern calculator?&lt;br /&gt;
&lt;br /&gt;
== The calculator problem ==&lt;br /&gt;
&lt;br /&gt;
The [https://www.desmos.com/scientific Desmos Scientific Calculator] handles our given equation correctly. The error checking appears to be built into the division key.&lt;br /&gt;
&lt;br /&gt;
Entering the equation into a programming language, or low quality calculator, requires the explicit multiplication symbol and outer parenthesis to maintain value of the parenthetical expression.&lt;br /&gt;
&lt;br /&gt;
'''6÷2(1+2) == 6÷(2*(1+2))'''&lt;br /&gt;
&lt;br /&gt;
Other calculators, including Google and Wolfram will simply strip the parenthesis and solve a different equation, 6÷2*3. This is because within the programming, the open parenthesis (bracketing) triggers a different function within the programming, an open parenthesis tells the compiler to find the innermost parenthesized term and work outwards.  Thus, to get the correct answer from inferior calculators, the input must be formalized with correct bracketing. I.e. 6÷(2*(1+2))&lt;br /&gt;
&lt;br /&gt;
==Spreadsheets==&lt;br /&gt;
Entering the equation as =6/2(1+2) into a cell in a LibreOffice Calc spreadsheet will result in Err:509 (Missing operator), Google Sheets also returns an error (Formula parse error). This forces the user to format the equation using explicit multiplication. To avoid the left to right problem, the compiler must be instructed in advance to prepare for the function with an extra pair of parenthesis =6/(2*(1+2)).&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [https://www.nytimes.com/2019/08/05/science/math-equation-pemdas-bodmas.html &amp;quot;That Vexing Math Equation? Here’s an Addition&amp;quot;]&lt;br /&gt;
* [https://www.youtube.com/watch?v=hsZCtgFcL40 &amp;quot;How to Solve 8÷2(2+2) Using Implied Multiplication&amp;quot;]&lt;br /&gt;
* [https://slate.com/technology/2013/03/facebook-math-problem-why-pemdas-doesnt-always-give-a-clear-answer.html &amp;quot;What Is the Answer to That Stupid Math Problem on Facebook?&amp;quot;]&lt;br /&gt;
* [https://www.inc.com/dave-kerpen/this-basic-math-problem-is-breaking-internet.html This Basic Math Problem Is Breaking the Internet: How do you solve this simple arithmetic problem?]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=The_equation_that_broke_the_Internet&amp;diff=6306</id>
		<title>The equation that broke the Internet</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=The_equation_that_broke_the_Internet&amp;diff=6306"/>
		<updated>2025-11-25T20:21:27Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: Skritzer moved page The equation that broke the Internet to The equation that broke the Internet 6÷2(1+2)=?: show equation in title&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[The equation that broke the Internet 6÷2(1+2)=?]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=The_equation_that_broke_the_Internet_6%C3%B72(1%2B2)%3D%3F&amp;diff=6305</id>
		<title>The equation that broke the Internet 6÷2(1+2)=?</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=The_equation_that_broke_the_Internet_6%C3%B72(1%2B2)%3D%3F&amp;diff=6305"/>
		<updated>2025-11-25T20:21:26Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: Skritzer moved page The equation that broke the Internet to The equation that broke the Internet 6÷2(1+2)=?: show equation in title&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{multiple image&lt;br /&gt;
&amp;lt;!-- Layout parameters --&amp;gt;&lt;br /&gt;
 | align             = right  &lt;br /&gt;
 | direction         = &amp;lt;!-- horizontal (default), vertical --&amp;gt;&lt;br /&gt;
 | background color  = &amp;lt;!-- box background --&amp;gt;&lt;br /&gt;
 | width             = 400&lt;br /&gt;
 | caption_align     =  center&lt;br /&gt;
 | image1            = CasioCalculator.png&lt;br /&gt;
 | caption1 = The Casio fx-9860 GII SD returns the correct answer to the equation as given. The next row provides the answer that a less sophisticated calculator would return.&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
'''6÷2(1+2)=?''' is the algebra question that many Internet respondents seem to get wrong.  If you are in the camp that knows the correct answer is 1, read no further. If you believe the answer is 9, you should probably review this document -- {{highlight|there is only one number that 6 can be divided by to result in 9, and that number is 2/3.}}&lt;br /&gt;
&lt;br /&gt;
== Proof of correct solution ==&lt;br /&gt;
''Encyclopedia Britannica'': &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
::'''''Distributive law''''', ''in mathematics, the law relating the operations of multiplication and addition, stated symbolically, a(b + c) = ab + ac; that is, the monomial factor a is distributed, or separately applied, to each term of the binomial factor b + c, resulting in the product ab + ac.''&lt;br /&gt;
::&amp;amp;ndash;[https://www.britannica.com/science/distributive-law Encyclopedia Britticana]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Therefore, in 6÷2(1+2)=?, we start with the &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt; Distributive Law&amp;lt;/span&amp;gt; in the &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;Parenthesis&amp;lt;/span&amp;gt; step of the Order of Operations.&lt;br /&gt;
&lt;br /&gt;
::'''6÷2(1+2)=?'''&lt;br /&gt;
::'''6÷&amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;(2*1 + 2*2)&amp;lt;/span&amp;gt;=?'''&lt;br /&gt;
::'''6÷(2 + 4)=?'''&lt;br /&gt;
::'''6÷(6)=?'''&lt;br /&gt;
::'''6÷6=1'''&lt;br /&gt;
&lt;br /&gt;
==Proof incorrect solution ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p style=&amp;quot;text-align:center;&amp;quot;&amp;gt; {{highlight|Without fail, 2(1+2) will always equal (2*1 + 2*2), this is the '''Distributive Law.'''}}&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If we substitute x for 2(1+2) from the given equation and back-test the equation with the result of 9:&lt;br /&gt;
&lt;br /&gt;
If &lt;br /&gt;
&lt;br /&gt;
:6÷x = 9&lt;br /&gt;
&lt;br /&gt;
then &lt;br /&gt;
&lt;br /&gt;
:6÷9 = x&lt;br /&gt;
&lt;br /&gt;
there is a common divisor of 3 so we reduce the fraction...&lt;br /&gt;
&lt;br /&gt;
:2÷3 = x &lt;br /&gt;
&lt;br /&gt;
Now we compare the value given in the equation to the value we found (above) for x.&lt;br /&gt;
&lt;br /&gt;
:2÷3 '''!=''' 2(1+2)&lt;br /&gt;
&lt;br /&gt;
Therefore:&lt;br /&gt;
&lt;br /&gt;
:6÷2(1+2) '''!=''' 9&lt;br /&gt;
&lt;br /&gt;
==Processing rules== &lt;br /&gt;
In the majority of incorrect proofs the respondent will cite PEMDAS or BODMAS, we all agree that parentheses or brackets are processed first.  However, some respondents incorrectly resolve the [P]arentheses or [B]rackets of PEMDAS - BODMAS. For some reason, these solvers believe that they can resolve within the parentheses, but neglect to multiply the adjacent and dependent coefficient.&lt;br /&gt;
&lt;br /&gt;
=== PEMDAS ===&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::P	parenthesis&lt;br /&gt;
::E	exponentiation&lt;br /&gt;
::M	multiplication&lt;br /&gt;
::D	division&lt;br /&gt;
::A	addition&lt;br /&gt;
::S	subtraction&lt;br /&gt;
&lt;br /&gt;
::&amp;amp;ndash;[https://mathworld.wolfram.com/PEMDAS.html Wolfram PEMDAS]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Parentheses ===&lt;br /&gt;
''Wolfram Mathworld'' on parenthetical expressions:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
:: 1. ''Parentheses are used in mathematical expressions to denote modifications to normal order of operations (precedence rules)...''&lt;br /&gt;
::[...]&lt;br /&gt;
::3. ''Parentheses are used to enclose the variables of a function in the form f(x), which means that values of the function f are dependent upon the values of x.''&lt;br /&gt;
::&amp;amp;ndash;[http://mathworld.wolfram.com/Parenthesis.html Wolfram Parenthesis]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Distributive law===&lt;br /&gt;
''Encyclopedia Britannica'' on parenthetical expressions: &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
::'''''Distributive law''''', ''in mathematics, the law relating the operations of multiplication and addition, stated symbolically, a(b + c) = ab + ac; that is, the monomial factor a is distributed, or separately applied, to each term of the binomial factor b + c, resulting in the product ab + ac.''&lt;br /&gt;
::&amp;amp;ndash;[https://www.britannica.com/science/distributive-law Encyclopedia Britticana]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Therefore, in 6÷2(1+2)=?, we start with the Distributive Law in the &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;Parenthesis&amp;lt;/span&amp;gt; step of the Order of Operations.&lt;br /&gt;
&lt;br /&gt;
::'''6÷2(1+2)=?'''&lt;br /&gt;
::'''6÷&amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;(2*1 + 2*2)&amp;lt;/span&amp;gt;=?'''&lt;br /&gt;
::'''6÷(2 + 4)=?'''&lt;br /&gt;
::'''6÷(6)=?'''&lt;br /&gt;
::'''6÷6=1'''&lt;br /&gt;
&lt;br /&gt;
So the fatal error with solvers who emphasize the left to right rule, is in incorrectly handling the Parentheses step, disregarding the Distributive Law.&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;s&amp;gt;'''&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;6÷2(3)&amp;lt;/div&amp;gt;'''&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some are even compelled to add an explicit multiplier, not given in the equation.&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;s&amp;gt;'''&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;6÷2*(3)&amp;lt;/div&amp;gt;'''&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;s&amp;gt;'''&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;3*(3)&amp;lt;/div&amp;gt;'''&amp;lt;/s&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
=== Parenthetical expressions ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
{{Quote|text=&lt;br /&gt;
''Parenthetical Expression. The parenthesis was described in Chapter 1 as a grouping symbol. When an algebraic expression is enclosed by a parenthesis it is known as a parenthetical expression. '''When a parenthetical expression is immediately preceded by coefficient, the parenthetical expression is a factor and &amp;lt;u&amp;gt;must be multiplied by the coefficient.&amp;lt;/u&amp;gt;''' This is done in the following manner.''&lt;br /&gt;
::''5(a + b) = 5a + 5b'' &amp;lt;br/&amp;gt;&lt;br /&gt;
::''3a(b - c) = 3ab - 3ac''&lt;br /&gt;
&lt;br /&gt;
&amp;amp;ndash;[https://books.google.com/books?id=BabtEFxgZ2AC &amp;quot;Technical Shop Mathematics / Edition 2&amp;quot;], by John G. Anderson, ISBN-13:9780831111458, Industrial Press, Inc., 02/28/1983, Page:138&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Explicit vs Implicit (implied) multiplication ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:center&amp;quot;&amp;gt;&lt;br /&gt;
{{Quote|text='''''Implied multiplication''' has a higher priority than explicit multiplication to allow users to enter expressions, in the same manner as they would be written.''&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;ndash;[https://epsstore.ti.com/OA_HTML/csksxvm.jsp?nSetId=103110 Implied Multiplication Versus Explicit Multiplication on TI Graphing Calculators]&lt;br /&gt;
 }}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Explicit operations have explicit operators (* ÷ + - ) which are delimiters that divide equations into separate terms.  Implied multiplication is notation that informs us that the value of a variable, bracketed function or exponent are connected and not separate terms. ''Implied multiplication is everywhere, 1x = x and x/1=x. Any number times 1 is that number and any number divided by 1 is that number.''&lt;br /&gt;
&lt;br /&gt;
Implied multiplication is also implicit multiplication.&lt;br /&gt;
&lt;br /&gt;
{{Quote|text=&lt;br /&gt;
'''im·plic·it'''&lt;br /&gt;
&lt;br /&gt;
''adjective''&lt;br /&gt;
&lt;br /&gt;
:1. implied though not plainly expressed.&lt;br /&gt;
&lt;br /&gt;
:2. essentially or very closely connected with; always to be found in.&lt;br /&gt;
&lt;br /&gt;
'''im·plied'''&lt;br /&gt;
&lt;br /&gt;
''adjective''&lt;br /&gt;
&lt;br /&gt;
:1. suggested but not directly expressed; implicit.&lt;br /&gt;
&lt;br /&gt;
'''ex·plic·it'''&lt;br /&gt;
&lt;br /&gt;
''adjective''&lt;br /&gt;
&lt;br /&gt;
:1. stated clearly and in detail, leaving no room for confusion or doubt.&lt;br /&gt;
&lt;br /&gt;
&amp;amp;ndash;Oxford&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
6÷2(1+2) has two EXPLICIT operators, division and addition. However, IMPLIED multiplication tells us to IMPLICITLY multiply, [2(2+1)], in the P step of PEMDAS. &lt;br /&gt;
In the division step, we must apply division to the (entire) implicitly connected parenthetical expression.  We cannot apply division to the coefficient (2) and then not apply division to the factor (2+1).&lt;br /&gt;
&lt;br /&gt;
'''Incorrect:''' (''because division is not EXPLICITLY applied to the entire parenthetical expression'')&lt;br /&gt;
&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
6          &lt;br /&gt;
----  &lt;br /&gt;
2      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
(2+1)&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
3 * (1+2)          &lt;br /&gt;
&amp;lt;br/&amp;gt;    &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Correct:''' (''when EXPLICIT division is applied, it is applied to the entire term.'')&lt;br /&gt;
&amp;lt;div style=&amp;quot;color:green;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
6          &lt;br /&gt;
----  &lt;br /&gt;
1      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
÷&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
2(1+2)         &lt;br /&gt;
----  &lt;br /&gt;
1     &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
2 * (1+2)          &lt;br /&gt;
----  &lt;br /&gt;
6 * 1      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Traditional solution:'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;color:green;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
6          &lt;br /&gt;
----  &lt;br /&gt;
2(1+2)      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
3          &lt;br /&gt;
----  &lt;br /&gt;
1*(1+2)      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
3          &lt;br /&gt;
----  &lt;br /&gt;
3      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=  1&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
As we can see, we cannot add an EXPLICIT operator to 6÷2(1+2) without maintaining the IMPLICIT relationship that was stated with IMPLIED multiplication. 6÷2(1+2) == 6÷(2*(1+2)).&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Correctly solving left to right==&lt;br /&gt;
&lt;br /&gt;
If we insist on a left to right solution, ignoring both PEMDAS and the Distributive Law, we can do this by expressing the common divisor first. However, division is sustained and must be applied to everything to the right of the explicit division operator.&lt;br /&gt;
&lt;br /&gt;
::''6÷2(1+2)=?''&lt;br /&gt;
::''3÷1(1+2)=?''  &lt;br /&gt;
::''3÷(1+2)=?''&lt;br /&gt;
::''3÷(3)=?''&lt;br /&gt;
::''3÷3=1''&lt;br /&gt;
&lt;br /&gt;
When we reduce by the common divisor, this does not complete the division operation, it simply reduces the coefficient to one. Division must be applied to both the factor and the coefficient of the parenthetical expression.&lt;br /&gt;
&lt;br /&gt;
==The equation is not ambiguous ==&lt;br /&gt;
===6÷2(1+2) is not equal to 6÷2*(1+2)===&lt;br /&gt;
Standing alone, 6 will always equal 6 and 2(1+2) will also always equal 6, so dividing these two terms will always equal 1. &lt;br /&gt;
&lt;br /&gt;
We would not write 2(a+b) as (2(a+b)), nor can we re-write the given equation as 6÷2*(a+b) and maintain the same value. We can however, rewrite the full equation to include an explicit multiplier if we take care to maintain the parenthetical expression with additional bracketing 6÷(2*(a+b)).&lt;br /&gt;
&lt;br /&gt;
=== Obelus ===&lt;br /&gt;
Granted, the [https://web.archive.org/web/20210417145938/https://www.wyzant.com/resources/blogs/14831/the_obelus_for_division obelus (÷)] is an archaic symbol for division, it visually represents a fraction with one dot being the numerator and the other being the denominator. Computers use the forward slash for division because the standard keyboard does not have an obelus key.  &lt;br /&gt;
&lt;br /&gt;
For those who claim that the obelus is outdated, why then is it present on virtually every modern calculator?&lt;br /&gt;
&lt;br /&gt;
== The calculator problem ==&lt;br /&gt;
&lt;br /&gt;
The [https://www.desmos.com/scientific Desmos Scientific Calculator] handles our given equation correctly. The error checking appears to be built into the division key.&lt;br /&gt;
&lt;br /&gt;
Entering the equation into a programming language, or low quality calculator, requires the explicit multiplication symbol and outer parenthesis to maintain value of the parenthetical expression.&lt;br /&gt;
&lt;br /&gt;
'''6÷2(1+2) == 6÷(2*(1+2))'''&lt;br /&gt;
&lt;br /&gt;
Other calculators, including Google and Wolfram will simply strip the parenthesis and solve a different equation, 6÷2*3. This is because within the programming, the open parenthesis (bracketing) triggers a different function within the programming, an open parenthesis tells the compiler to find the innermost parenthesized term and work outwards.  Thus, to get the correct answer from inferior calculators, the input must be formalized with correct bracketing. I.e. 6÷(2*(1+2))&lt;br /&gt;
&lt;br /&gt;
==Spreadsheets==&lt;br /&gt;
Entering the equation as =6/2(1+2) into a cell in a LibreOffice Calc spreadsheet will result in Err:509 (Missing operator), Google Sheets also returns an error (Formula parse error). This forces the user to format the equation using explicit multiplication. To avoid the left to right problem, the compiler must be instructed in advance to prepare for the function with an extra pair of parenthesis =6/(2*(1+2)).&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [https://www.nytimes.com/2019/08/05/science/math-equation-pemdas-bodmas.html &amp;quot;That Vexing Math Equation? Here’s an Addition&amp;quot;]&lt;br /&gt;
* [https://www.youtube.com/watch?v=hsZCtgFcL40 &amp;quot;How to Solve 8÷2(2+2) Using Implied Multiplication&amp;quot;]&lt;br /&gt;
* [https://slate.com/technology/2013/03/facebook-math-problem-why-pemdas-doesnt-always-give-a-clear-answer.html &amp;quot;What Is the Answer to That Stupid Math Problem on Facebook?&amp;quot;]&lt;br /&gt;
* [https://www.inc.com/dave-kerpen/this-basic-math-problem-is-breaking-internet.html This Basic Math Problem Is Breaking the Internet: How do you solve this simple arithmetic problem?]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=The_equation_that_broke_the_Internet_6%C3%B72(1%2B2)%3D%3F&amp;diff=6304</id>
		<title>The equation that broke the Internet 6÷2(1+2)=?</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=The_equation_that_broke_the_Internet_6%C3%B72(1%2B2)%3D%3F&amp;diff=6304"/>
		<updated>2025-11-25T20:19:11Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: /* Processing rules */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{multiple image&lt;br /&gt;
&amp;lt;!-- Layout parameters --&amp;gt;&lt;br /&gt;
 | align             = right  &lt;br /&gt;
 | direction         = &amp;lt;!-- horizontal (default), vertical --&amp;gt;&lt;br /&gt;
 | background color  = &amp;lt;!-- box background --&amp;gt;&lt;br /&gt;
 | width             = 400&lt;br /&gt;
 | caption_align     =  center&lt;br /&gt;
 | image1            = CasioCalculator.png&lt;br /&gt;
 | caption1 = The Casio fx-9860 GII SD returns the correct answer to the equation as given. The next row provides the answer that a less sophisticated calculator would return.&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
'''6÷2(1+2)=?''' is the algebra question that many Internet respondents seem to get wrong.  If you are in the camp that knows the correct answer is 1, read no further. If you believe the answer is 9, you should probably review this document -- {{highlight|there is only one number that 6 can be divided by to result in 9, and that number is 2/3.}}&lt;br /&gt;
&lt;br /&gt;
== Proof of correct solution ==&lt;br /&gt;
''Encyclopedia Britannica'': &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
::'''''Distributive law''''', ''in mathematics, the law relating the operations of multiplication and addition, stated symbolically, a(b + c) = ab + ac; that is, the monomial factor a is distributed, or separately applied, to each term of the binomial factor b + c, resulting in the product ab + ac.''&lt;br /&gt;
::&amp;amp;ndash;[https://www.britannica.com/science/distributive-law Encyclopedia Britticana]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Therefore, in 6÷2(1+2)=?, we start with the &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt; Distributive Law&amp;lt;/span&amp;gt; in the &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;Parenthesis&amp;lt;/span&amp;gt; step of the Order of Operations.&lt;br /&gt;
&lt;br /&gt;
::'''6÷2(1+2)=?'''&lt;br /&gt;
::'''6÷&amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;(2*1 + 2*2)&amp;lt;/span&amp;gt;=?'''&lt;br /&gt;
::'''6÷(2 + 4)=?'''&lt;br /&gt;
::'''6÷(6)=?'''&lt;br /&gt;
::'''6÷6=1'''&lt;br /&gt;
&lt;br /&gt;
==Proof incorrect solution ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p style=&amp;quot;text-align:center;&amp;quot;&amp;gt; {{highlight|Without fail, 2(1+2) will always equal (2*1 + 2*2), this is the '''Distributive Law.'''}}&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If we substitute x for 2(1+2) from the given equation and back-test the equation with the result of 9:&lt;br /&gt;
&lt;br /&gt;
If &lt;br /&gt;
&lt;br /&gt;
:6÷x = 9&lt;br /&gt;
&lt;br /&gt;
then &lt;br /&gt;
&lt;br /&gt;
:6÷9 = x&lt;br /&gt;
&lt;br /&gt;
there is a common divisor of 3 so we reduce the fraction...&lt;br /&gt;
&lt;br /&gt;
:2÷3 = x &lt;br /&gt;
&lt;br /&gt;
Now we compare the value given in the equation to the value we found (above) for x.&lt;br /&gt;
&lt;br /&gt;
:2÷3 '''!=''' 2(1+2)&lt;br /&gt;
&lt;br /&gt;
Therefore:&lt;br /&gt;
&lt;br /&gt;
:6÷2(1+2) '''!=''' 9&lt;br /&gt;
&lt;br /&gt;
==Processing rules== &lt;br /&gt;
In the majority of incorrect proofs the respondent will cite PEMDAS or BODMAS, we all agree that parentheses or brackets are processed first.  However, some respondents incorrectly resolve the [P]arentheses or [B]rackets of PEMDAS - BODMAS. For some reason, these solvers believe that they can resolve within the parentheses, but neglect to multiply the adjacent and dependent coefficient.&lt;br /&gt;
&lt;br /&gt;
=== PEMDAS ===&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::P	parenthesis&lt;br /&gt;
::E	exponentiation&lt;br /&gt;
::M	multiplication&lt;br /&gt;
::D	division&lt;br /&gt;
::A	addition&lt;br /&gt;
::S	subtraction&lt;br /&gt;
&lt;br /&gt;
::&amp;amp;ndash;[https://mathworld.wolfram.com/PEMDAS.html Wolfram PEMDAS]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Parentheses ===&lt;br /&gt;
''Wolfram Mathworld'' on parenthetical expressions:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
:: 1. ''Parentheses are used in mathematical expressions to denote modifications to normal order of operations (precedence rules)...''&lt;br /&gt;
::[...]&lt;br /&gt;
::3. ''Parentheses are used to enclose the variables of a function in the form f(x), which means that values of the function f are dependent upon the values of x.''&lt;br /&gt;
::&amp;amp;ndash;[http://mathworld.wolfram.com/Parenthesis.html Wolfram Parenthesis]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Distributive law===&lt;br /&gt;
''Encyclopedia Britannica'' on parenthetical expressions: &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
::'''''Distributive law''''', ''in mathematics, the law relating the operations of multiplication and addition, stated symbolically, a(b + c) = ab + ac; that is, the monomial factor a is distributed, or separately applied, to each term of the binomial factor b + c, resulting in the product ab + ac.''&lt;br /&gt;
::&amp;amp;ndash;[https://www.britannica.com/science/distributive-law Encyclopedia Britticana]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Therefore, in 6÷2(1+2)=?, we start with the Distributive Law in the &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;Parenthesis&amp;lt;/span&amp;gt; step of the Order of Operations.&lt;br /&gt;
&lt;br /&gt;
::'''6÷2(1+2)=?'''&lt;br /&gt;
::'''6÷&amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;(2*1 + 2*2)&amp;lt;/span&amp;gt;=?'''&lt;br /&gt;
::'''6÷(2 + 4)=?'''&lt;br /&gt;
::'''6÷(6)=?'''&lt;br /&gt;
::'''6÷6=1'''&lt;br /&gt;
&lt;br /&gt;
So the fatal error with solvers who emphasize the left to right rule, is in incorrectly handling the Parentheses step, disregarding the Distributive Law.&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;s&amp;gt;'''&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;6÷2(3)&amp;lt;/div&amp;gt;'''&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some are even compelled to add an explicit multiplier, not given in the equation.&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;s&amp;gt;'''&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;6÷2*(3)&amp;lt;/div&amp;gt;'''&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;s&amp;gt;'''&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;3*(3)&amp;lt;/div&amp;gt;'''&amp;lt;/s&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
=== Parenthetical expressions ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
{{Quote|text=&lt;br /&gt;
''Parenthetical Expression. The parenthesis was described in Chapter 1 as a grouping symbol. When an algebraic expression is enclosed by a parenthesis it is known as a parenthetical expression. '''When a parenthetical expression is immediately preceded by coefficient, the parenthetical expression is a factor and &amp;lt;u&amp;gt;must be multiplied by the coefficient.&amp;lt;/u&amp;gt;''' This is done in the following manner.''&lt;br /&gt;
::''5(a + b) = 5a + 5b'' &amp;lt;br/&amp;gt;&lt;br /&gt;
::''3a(b - c) = 3ab - 3ac''&lt;br /&gt;
&lt;br /&gt;
&amp;amp;ndash;[https://books.google.com/books?id=BabtEFxgZ2AC &amp;quot;Technical Shop Mathematics / Edition 2&amp;quot;], by John G. Anderson, ISBN-13:9780831111458, Industrial Press, Inc., 02/28/1983, Page:138&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Explicit vs Implicit (implied) multiplication ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:center&amp;quot;&amp;gt;&lt;br /&gt;
{{Quote|text='''''Implied multiplication''' has a higher priority than explicit multiplication to allow users to enter expressions, in the same manner as they would be written.''&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;ndash;[https://epsstore.ti.com/OA_HTML/csksxvm.jsp?nSetId=103110 Implied Multiplication Versus Explicit Multiplication on TI Graphing Calculators]&lt;br /&gt;
 }}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Explicit operations have explicit operators (* ÷ + - ) which are delimiters that divide equations into separate terms.  Implied multiplication is notation that informs us that the value of a variable, bracketed function or exponent are connected and not separate terms. ''Implied multiplication is everywhere, 1x = x and x/1=x. Any number times 1 is that number and any number divided by 1 is that number.''&lt;br /&gt;
&lt;br /&gt;
Implied multiplication is also implicit multiplication.&lt;br /&gt;
&lt;br /&gt;
{{Quote|text=&lt;br /&gt;
'''im·plic·it'''&lt;br /&gt;
&lt;br /&gt;
''adjective''&lt;br /&gt;
&lt;br /&gt;
:1. implied though not plainly expressed.&lt;br /&gt;
&lt;br /&gt;
:2. essentially or very closely connected with; always to be found in.&lt;br /&gt;
&lt;br /&gt;
'''im·plied'''&lt;br /&gt;
&lt;br /&gt;
''adjective''&lt;br /&gt;
&lt;br /&gt;
:1. suggested but not directly expressed; implicit.&lt;br /&gt;
&lt;br /&gt;
'''ex·plic·it'''&lt;br /&gt;
&lt;br /&gt;
''adjective''&lt;br /&gt;
&lt;br /&gt;
:1. stated clearly and in detail, leaving no room for confusion or doubt.&lt;br /&gt;
&lt;br /&gt;
&amp;amp;ndash;Oxford&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
6÷2(1+2) has two EXPLICIT operators, division and addition. However, IMPLIED multiplication tells us to IMPLICITLY multiply, [2(2+1)], in the P step of PEMDAS. &lt;br /&gt;
In the division step, we must apply division to the (entire) implicitly connected parenthetical expression.  We cannot apply division to the coefficient (2) and then not apply division to the factor (2+1).&lt;br /&gt;
&lt;br /&gt;
'''Incorrect:''' (''because division is not EXPLICITLY applied to the entire parenthetical expression'')&lt;br /&gt;
&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
6          &lt;br /&gt;
----  &lt;br /&gt;
2      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
(2+1)&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
3 * (1+2)          &lt;br /&gt;
&amp;lt;br/&amp;gt;    &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Correct:''' (''when EXPLICIT division is applied, it is applied to the entire term.'')&lt;br /&gt;
&amp;lt;div style=&amp;quot;color:green;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
6          &lt;br /&gt;
----  &lt;br /&gt;
1      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
÷&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
2(1+2)         &lt;br /&gt;
----  &lt;br /&gt;
1     &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
2 * (1+2)          &lt;br /&gt;
----  &lt;br /&gt;
6 * 1      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Traditional solution:'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;color:green;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
6          &lt;br /&gt;
----  &lt;br /&gt;
2(1+2)      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
3          &lt;br /&gt;
----  &lt;br /&gt;
1*(1+2)      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
3          &lt;br /&gt;
----  &lt;br /&gt;
3      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=  1&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
As we can see, we cannot add an EXPLICIT operator to 6÷2(1+2) without maintaining the IMPLICIT relationship that was stated with IMPLIED multiplication. 6÷2(1+2) == 6÷(2*(1+2)).&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Correctly solving left to right==&lt;br /&gt;
&lt;br /&gt;
If we insist on a left to right solution, ignoring both PEMDAS and the Distributive Law, we can do this by expressing the common divisor first. However, division is sustained and must be applied to everything to the right of the explicit division operator.&lt;br /&gt;
&lt;br /&gt;
::''6÷2(1+2)=?''&lt;br /&gt;
::''3÷1(1+2)=?''  &lt;br /&gt;
::''3÷(1+2)=?''&lt;br /&gt;
::''3÷(3)=?''&lt;br /&gt;
::''3÷3=1''&lt;br /&gt;
&lt;br /&gt;
When we reduce by the common divisor, this does not complete the division operation, it simply reduces the coefficient to one. Division must be applied to both the factor and the coefficient of the parenthetical expression.&lt;br /&gt;
&lt;br /&gt;
==The equation is not ambiguous ==&lt;br /&gt;
===6÷2(1+2) is not equal to 6÷2*(1+2)===&lt;br /&gt;
Standing alone, 6 will always equal 6 and 2(1+2) will also always equal 6, so dividing these two terms will always equal 1. &lt;br /&gt;
&lt;br /&gt;
We would not write 2(a+b) as (2(a+b)), nor can we re-write the given equation as 6÷2*(a+b) and maintain the same value. We can however, rewrite the full equation to include an explicit multiplier if we take care to maintain the parenthetical expression with additional bracketing 6÷(2*(a+b)).&lt;br /&gt;
&lt;br /&gt;
=== Obelus ===&lt;br /&gt;
Granted, the [https://web.archive.org/web/20210417145938/https://www.wyzant.com/resources/blogs/14831/the_obelus_for_division obelus (÷)] is an archaic symbol for division, it visually represents a fraction with one dot being the numerator and the other being the denominator. Computers use the forward slash for division because the standard keyboard does not have an obelus key.  &lt;br /&gt;
&lt;br /&gt;
For those who claim that the obelus is outdated, why then is it present on virtually every modern calculator?&lt;br /&gt;
&lt;br /&gt;
== The calculator problem ==&lt;br /&gt;
&lt;br /&gt;
The [https://www.desmos.com/scientific Desmos Scientific Calculator] handles our given equation correctly. The error checking appears to be built into the division key.&lt;br /&gt;
&lt;br /&gt;
Entering the equation into a programming language, or low quality calculator, requires the explicit multiplication symbol and outer parenthesis to maintain value of the parenthetical expression.&lt;br /&gt;
&lt;br /&gt;
'''6÷2(1+2) == 6÷(2*(1+2))'''&lt;br /&gt;
&lt;br /&gt;
Other calculators, including Google and Wolfram will simply strip the parenthesis and solve a different equation, 6÷2*3. This is because within the programming, the open parenthesis (bracketing) triggers a different function within the programming, an open parenthesis tells the compiler to find the innermost parenthesized term and work outwards.  Thus, to get the correct answer from inferior calculators, the input must be formalized with correct bracketing. I.e. 6÷(2*(1+2))&lt;br /&gt;
&lt;br /&gt;
==Spreadsheets==&lt;br /&gt;
Entering the equation as =6/2(1+2) into a cell in a LibreOffice Calc spreadsheet will result in Err:509 (Missing operator), Google Sheets also returns an error (Formula parse error). This forces the user to format the equation using explicit multiplication. To avoid the left to right problem, the compiler must be instructed in advance to prepare for the function with an extra pair of parenthesis =6/(2*(1+2)).&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [https://www.nytimes.com/2019/08/05/science/math-equation-pemdas-bodmas.html &amp;quot;That Vexing Math Equation? Here’s an Addition&amp;quot;]&lt;br /&gt;
* [https://www.youtube.com/watch?v=hsZCtgFcL40 &amp;quot;How to Solve 8÷2(2+2) Using Implied Multiplication&amp;quot;]&lt;br /&gt;
* [https://slate.com/technology/2013/03/facebook-math-problem-why-pemdas-doesnt-always-give-a-clear-answer.html &amp;quot;What Is the Answer to That Stupid Math Problem on Facebook?&amp;quot;]&lt;br /&gt;
* [https://www.inc.com/dave-kerpen/this-basic-math-problem-is-breaking-internet.html This Basic Math Problem Is Breaking the Internet: How do you solve this simple arithmetic problem?]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=The_equation_that_broke_the_Internet_6%C3%B72(1%2B2)%3D%3F&amp;diff=6303</id>
		<title>The equation that broke the Internet 6÷2(1+2)=?</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=The_equation_that_broke_the_Internet_6%C3%B72(1%2B2)%3D%3F&amp;diff=6303"/>
		<updated>2025-11-25T20:17:08Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: /* Proof incorrect solution */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{multiple image&lt;br /&gt;
&amp;lt;!-- Layout parameters --&amp;gt;&lt;br /&gt;
 | align             = right  &lt;br /&gt;
 | direction         = &amp;lt;!-- horizontal (default), vertical --&amp;gt;&lt;br /&gt;
 | background color  = &amp;lt;!-- box background --&amp;gt;&lt;br /&gt;
 | width             = 400&lt;br /&gt;
 | caption_align     =  center&lt;br /&gt;
 | image1            = CasioCalculator.png&lt;br /&gt;
 | caption1 = The Casio fx-9860 GII SD returns the correct answer to the equation as given. The next row provides the answer that a less sophisticated calculator would return.&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
'''6÷2(1+2)=?''' is the algebra question that many Internet respondents seem to get wrong.  If you are in the camp that knows the correct answer is 1, read no further. If you believe the answer is 9, you should probably review this document -- {{highlight|there is only one number that 6 can be divided by to result in 9, and that number is 2/3.}}&lt;br /&gt;
&lt;br /&gt;
== Proof of correct solution ==&lt;br /&gt;
''Encyclopedia Britannica'': &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
::'''''Distributive law''''', ''in mathematics, the law relating the operations of multiplication and addition, stated symbolically, a(b + c) = ab + ac; that is, the monomial factor a is distributed, or separately applied, to each term of the binomial factor b + c, resulting in the product ab + ac.''&lt;br /&gt;
::&amp;amp;ndash;[https://www.britannica.com/science/distributive-law Encyclopedia Britticana]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Therefore, in 6÷2(1+2)=?, we start with the &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt; Distributive Law&amp;lt;/span&amp;gt; in the &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;Parenthesis&amp;lt;/span&amp;gt; step of the Order of Operations.&lt;br /&gt;
&lt;br /&gt;
::'''6÷2(1+2)=?'''&lt;br /&gt;
::'''6÷&amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;(2*1 + 2*2)&amp;lt;/span&amp;gt;=?'''&lt;br /&gt;
::'''6÷(2 + 4)=?'''&lt;br /&gt;
::'''6÷(6)=?'''&lt;br /&gt;
::'''6÷6=1'''&lt;br /&gt;
&lt;br /&gt;
==Proof incorrect solution ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p style=&amp;quot;text-align:center;&amp;quot;&amp;gt; {{highlight|Without fail, 2(1+2) will always equal (2*1 + 2*2), this is the '''Distributive Law.'''}}&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If we substitute x for 2(1+2) from the given equation and back-test the equation with the result of 9:&lt;br /&gt;
&lt;br /&gt;
If &lt;br /&gt;
&lt;br /&gt;
:6÷x = 9&lt;br /&gt;
&lt;br /&gt;
then &lt;br /&gt;
&lt;br /&gt;
:6÷9 = x&lt;br /&gt;
&lt;br /&gt;
there is a common divisor of 3 so we reduce the fraction...&lt;br /&gt;
&lt;br /&gt;
:2÷3 = x &lt;br /&gt;
&lt;br /&gt;
Now we compare the value given in the equation to the value we found (above) for x.&lt;br /&gt;
&lt;br /&gt;
:2÷3 '''!=''' 2(1+2)&lt;br /&gt;
&lt;br /&gt;
Therefore:&lt;br /&gt;
&lt;br /&gt;
:6÷2(1+2) '''!=''' 9&lt;br /&gt;
&lt;br /&gt;
==Processing rules== &lt;br /&gt;
In the majority of incorrect proofs the respondent will cite PEMDAS or BODMAS, we all agree that parentheses or brackets are processed first.  However, some respondents incorrectly resolve the [P]arentheses or [B]rackets of PEMDAS - BODMAS, for some reason, these solvers believe that they can resolve within the parentheses, but neglect to multiply the adjacent and dependent coefficient.&lt;br /&gt;
&lt;br /&gt;
=== PEMDAS ===&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::P	parenthesis&lt;br /&gt;
::E	exponentiation&lt;br /&gt;
::M	multiplication&lt;br /&gt;
::D	division&lt;br /&gt;
::A	addition&lt;br /&gt;
::S	subtraction&lt;br /&gt;
&lt;br /&gt;
::&amp;amp;ndash;[https://mathworld.wolfram.com/PEMDAS.html Wolfram PEMDAS]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Parentheses ===&lt;br /&gt;
''Wolfram Mathworld'' on parenthetical expressions:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
:: 1. ''Parentheses are used in mathematical expressions to denote modifications to normal order of operations (precedence rules)...''&lt;br /&gt;
::[...]&lt;br /&gt;
::3. ''Parentheses are used to enclose the variables of a function in the form f(x), which means that values of the function f are dependent upon the values of x.''&lt;br /&gt;
::&amp;amp;ndash;[http://mathworld.wolfram.com/Parenthesis.html Wolfram Parenthesis]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Distributive law===&lt;br /&gt;
''Encyclopedia Britannica'' on parenthetical expressions: &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
::'''''Distributive law''''', ''in mathematics, the law relating the operations of multiplication and addition, stated symbolically, a(b + c) = ab + ac; that is, the monomial factor a is distributed, or separately applied, to each term of the binomial factor b + c, resulting in the product ab + ac.''&lt;br /&gt;
::&amp;amp;ndash;[https://www.britannica.com/science/distributive-law Encyclopedia Britticana]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Therefore, in 6÷2(1+2)=?, we start with the Distributive Law in the &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;Parenthesis&amp;lt;/span&amp;gt; step of the Order of Operations.&lt;br /&gt;
&lt;br /&gt;
::'''6÷2(1+2)=?'''&lt;br /&gt;
::'''6÷&amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;(2*1 + 2*2)&amp;lt;/span&amp;gt;=?'''&lt;br /&gt;
::'''6÷(2 + 4)=?'''&lt;br /&gt;
::'''6÷(6)=?'''&lt;br /&gt;
::'''6÷6=1'''&lt;br /&gt;
&lt;br /&gt;
So the fatal error with solvers who emphasize the left to right rule, is in incorrectly handling the Parentheses step, disregarding the Distributive Law.&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;s&amp;gt;'''&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;6÷2(3)&amp;lt;/div&amp;gt;'''&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some are even compelled to add an explicit multiplier, not given in the equation.&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;s&amp;gt;'''&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;6÷2*(3)&amp;lt;/div&amp;gt;'''&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;s&amp;gt;'''&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;3*(3)&amp;lt;/div&amp;gt;'''&amp;lt;/s&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
=== Parenthetical expressions ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
{{Quote|text=&lt;br /&gt;
''Parenthetical Expression. The parenthesis was described in Chapter 1 as a grouping symbol. When an algebraic expression is enclosed by a parenthesis it is known as a parenthetical expression. '''When a parenthetical expression is immediately preceded by coefficient, the parenthetical expression is a factor and &amp;lt;u&amp;gt;must be multiplied by the coefficient.&amp;lt;/u&amp;gt;''' This is done in the following manner.''&lt;br /&gt;
::''5(a + b) = 5a + 5b'' &amp;lt;br/&amp;gt;&lt;br /&gt;
::''3a(b - c) = 3ab - 3ac''&lt;br /&gt;
&lt;br /&gt;
&amp;amp;ndash;[https://books.google.com/books?id=BabtEFxgZ2AC &amp;quot;Technical Shop Mathematics / Edition 2&amp;quot;], by John G. Anderson, ISBN-13:9780831111458, Industrial Press, Inc., 02/28/1983, Page:138&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Explicit vs Implicit (implied) multiplication ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:center&amp;quot;&amp;gt;&lt;br /&gt;
{{Quote|text='''''Implied multiplication''' has a higher priority than explicit multiplication to allow users to enter expressions, in the same manner as they would be written.''&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;ndash;[https://epsstore.ti.com/OA_HTML/csksxvm.jsp?nSetId=103110 Implied Multiplication Versus Explicit Multiplication on TI Graphing Calculators]&lt;br /&gt;
 }}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Explicit operations have explicit operators (* ÷ + - ) which are delimiters that divide equations into separate terms.  Implied multiplication is notation that informs us that the value of a variable, bracketed function or exponent are connected and not separate terms. ''Implied multiplication is everywhere, 1x = x and x/1=x. Any number times 1 is that number and any number divided by 1 is that number.''&lt;br /&gt;
&lt;br /&gt;
Implied multiplication is also implicit multiplication.&lt;br /&gt;
&lt;br /&gt;
{{Quote|text=&lt;br /&gt;
'''im·plic·it'''&lt;br /&gt;
&lt;br /&gt;
''adjective''&lt;br /&gt;
&lt;br /&gt;
:1. implied though not plainly expressed.&lt;br /&gt;
&lt;br /&gt;
:2. essentially or very closely connected with; always to be found in.&lt;br /&gt;
&lt;br /&gt;
'''im·plied'''&lt;br /&gt;
&lt;br /&gt;
''adjective''&lt;br /&gt;
&lt;br /&gt;
:1. suggested but not directly expressed; implicit.&lt;br /&gt;
&lt;br /&gt;
'''ex·plic·it'''&lt;br /&gt;
&lt;br /&gt;
''adjective''&lt;br /&gt;
&lt;br /&gt;
:1. stated clearly and in detail, leaving no room for confusion or doubt.&lt;br /&gt;
&lt;br /&gt;
&amp;amp;ndash;Oxford&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
6÷2(1+2) has two EXPLICIT operators, division and addition. However, IMPLIED multiplication tells us to IMPLICITLY multiply, [2(2+1)], in the P step of PEMDAS. &lt;br /&gt;
In the division step, we must apply division to the (entire) implicitly connected parenthetical expression.  We cannot apply division to the coefficient (2) and then not apply division to the factor (2+1).&lt;br /&gt;
&lt;br /&gt;
'''Incorrect:''' (''because division is not EXPLICITLY applied to the entire parenthetical expression'')&lt;br /&gt;
&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
6          &lt;br /&gt;
----  &lt;br /&gt;
2      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
(2+1)&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
3 * (1+2)          &lt;br /&gt;
&amp;lt;br/&amp;gt;    &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Correct:''' (''when EXPLICIT division is applied, it is applied to the entire term.'')&lt;br /&gt;
&amp;lt;div style=&amp;quot;color:green;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
6          &lt;br /&gt;
----  &lt;br /&gt;
1      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
÷&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
2(1+2)         &lt;br /&gt;
----  &lt;br /&gt;
1     &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
2 * (1+2)          &lt;br /&gt;
----  &lt;br /&gt;
6 * 1      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Traditional solution:'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;color:green;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
6          &lt;br /&gt;
----  &lt;br /&gt;
2(1+2)      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
3          &lt;br /&gt;
----  &lt;br /&gt;
1*(1+2)      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
3          &lt;br /&gt;
----  &lt;br /&gt;
3      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=  1&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
As we can see, we cannot add an EXPLICIT operator to 6÷2(1+2) without maintaining the IMPLICIT relationship that was stated with IMPLIED multiplication. 6÷2(1+2) == 6÷(2*(1+2)).&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Correctly solving left to right==&lt;br /&gt;
&lt;br /&gt;
If we insist on a left to right solution, ignoring both PEMDAS and the Distributive Law, we can do this by expressing the common divisor first. However, division is sustained and must be applied to everything to the right of the explicit division operator.&lt;br /&gt;
&lt;br /&gt;
::''6÷2(1+2)=?''&lt;br /&gt;
::''3÷1(1+2)=?''  &lt;br /&gt;
::''3÷(1+2)=?''&lt;br /&gt;
::''3÷(3)=?''&lt;br /&gt;
::''3÷3=1''&lt;br /&gt;
&lt;br /&gt;
When we reduce by the common divisor, this does not complete the division operation, it simply reduces the coefficient to one. Division must be applied to both the factor and the coefficient of the parenthetical expression.&lt;br /&gt;
&lt;br /&gt;
==The equation is not ambiguous ==&lt;br /&gt;
===6÷2(1+2) is not equal to 6÷2*(1+2)===&lt;br /&gt;
Standing alone, 6 will always equal 6 and 2(1+2) will also always equal 6, so dividing these two terms will always equal 1. &lt;br /&gt;
&lt;br /&gt;
We would not write 2(a+b) as (2(a+b)), nor can we re-write the given equation as 6÷2*(a+b) and maintain the same value. We can however, rewrite the full equation to include an explicit multiplier if we take care to maintain the parenthetical expression with additional bracketing 6÷(2*(a+b)).&lt;br /&gt;
&lt;br /&gt;
=== Obelus ===&lt;br /&gt;
Granted, the [https://web.archive.org/web/20210417145938/https://www.wyzant.com/resources/blogs/14831/the_obelus_for_division obelus (÷)] is an archaic symbol for division, it visually represents a fraction with one dot being the numerator and the other being the denominator. Computers use the forward slash for division because the standard keyboard does not have an obelus key.  &lt;br /&gt;
&lt;br /&gt;
For those who claim that the obelus is outdated, why then is it present on virtually every modern calculator?&lt;br /&gt;
&lt;br /&gt;
== The calculator problem ==&lt;br /&gt;
&lt;br /&gt;
The [https://www.desmos.com/scientific Desmos Scientific Calculator] handles our given equation correctly. The error checking appears to be built into the division key.&lt;br /&gt;
&lt;br /&gt;
Entering the equation into a programming language, or low quality calculator, requires the explicit multiplication symbol and outer parenthesis to maintain value of the parenthetical expression.&lt;br /&gt;
&lt;br /&gt;
'''6÷2(1+2) == 6÷(2*(1+2))'''&lt;br /&gt;
&lt;br /&gt;
Other calculators, including Google and Wolfram will simply strip the parenthesis and solve a different equation, 6÷2*3. This is because within the programming, the open parenthesis (bracketing) triggers a different function within the programming, an open parenthesis tells the compiler to find the innermost parenthesized term and work outwards.  Thus, to get the correct answer from inferior calculators, the input must be formalized with correct bracketing. I.e. 6÷(2*(1+2))&lt;br /&gt;
&lt;br /&gt;
==Spreadsheets==&lt;br /&gt;
Entering the equation as =6/2(1+2) into a cell in a LibreOffice Calc spreadsheet will result in Err:509 (Missing operator), Google Sheets also returns an error (Formula parse error). This forces the user to format the equation using explicit multiplication. To avoid the left to right problem, the compiler must be instructed in advance to prepare for the function with an extra pair of parenthesis =6/(2*(1+2)).&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [https://www.nytimes.com/2019/08/05/science/math-equation-pemdas-bodmas.html &amp;quot;That Vexing Math Equation? Here’s an Addition&amp;quot;]&lt;br /&gt;
* [https://www.youtube.com/watch?v=hsZCtgFcL40 &amp;quot;How to Solve 8÷2(2+2) Using Implied Multiplication&amp;quot;]&lt;br /&gt;
* [https://slate.com/technology/2013/03/facebook-math-problem-why-pemdas-doesnt-always-give-a-clear-answer.html &amp;quot;What Is the Answer to That Stupid Math Problem on Facebook?&amp;quot;]&lt;br /&gt;
* [https://www.inc.com/dave-kerpen/this-basic-math-problem-is-breaking-internet.html This Basic Math Problem Is Breaking the Internet: How do you solve this simple arithmetic problem?]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=The_equation_that_broke_the_Internet_6%C3%B72(1%2B2)%3D%3F&amp;diff=6302</id>
		<title>The equation that broke the Internet 6÷2(1+2)=?</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=The_equation_that_broke_the_Internet_6%C3%B72(1%2B2)%3D%3F&amp;diff=6302"/>
		<updated>2025-11-25T20:16:47Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: /* Proof of correct solution */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{multiple image&lt;br /&gt;
&amp;lt;!-- Layout parameters --&amp;gt;&lt;br /&gt;
 | align             = right  &lt;br /&gt;
 | direction         = &amp;lt;!-- horizontal (default), vertical --&amp;gt;&lt;br /&gt;
 | background color  = &amp;lt;!-- box background --&amp;gt;&lt;br /&gt;
 | width             = 400&lt;br /&gt;
 | caption_align     =  center&lt;br /&gt;
 | image1            = CasioCalculator.png&lt;br /&gt;
 | caption1 = The Casio fx-9860 GII SD returns the correct answer to the equation as given. The next row provides the answer that a less sophisticated calculator would return.&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
'''6÷2(1+2)=?''' is the algebra question that many Internet respondents seem to get wrong.  If you are in the camp that knows the correct answer is 1, read no further. If you believe the answer is 9, you should probably review this document -- {{highlight|there is only one number that 6 can be divided by to result in 9, and that number is 2/3.}}&lt;br /&gt;
&lt;br /&gt;
==Proof incorrect solution ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p style=&amp;quot;text-align:center;&amp;quot;&amp;gt; {{highlight|Without fail, 2(1+2) will always equal (2*1 + 2*2), this is the '''Distributive Law.'''}}&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If we substitute x for 2(1+2) from the given equation and back-test the equation with the result of 9:&lt;br /&gt;
&lt;br /&gt;
If &lt;br /&gt;
&lt;br /&gt;
:6÷x = 9&lt;br /&gt;
&lt;br /&gt;
then &lt;br /&gt;
&lt;br /&gt;
:6÷9 = x&lt;br /&gt;
&lt;br /&gt;
there is a common divisor of 3 so we reduce the fraction...&lt;br /&gt;
&lt;br /&gt;
:2÷3 = x &lt;br /&gt;
&lt;br /&gt;
Now we compare the value given in the equation to the value we found (above) for x.&lt;br /&gt;
&lt;br /&gt;
:2÷3 '''!=''' 2(1+2)&lt;br /&gt;
&lt;br /&gt;
Therefore:&lt;br /&gt;
&lt;br /&gt;
:6÷2(1+2) '''!=''' 9&lt;br /&gt;
&lt;br /&gt;
==Processing rules== &lt;br /&gt;
In the majority of incorrect proofs the respondent will cite PEMDAS or BODMAS, we all agree that parentheses or brackets are processed first.  However, some respondents incorrectly resolve the [P]arentheses or [B]rackets of PEMDAS - BODMAS, for some reason, these solvers believe that they can resolve within the parentheses, but neglect to multiply the adjacent and dependent coefficient.&lt;br /&gt;
&lt;br /&gt;
=== PEMDAS ===&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::P	parenthesis&lt;br /&gt;
::E	exponentiation&lt;br /&gt;
::M	multiplication&lt;br /&gt;
::D	division&lt;br /&gt;
::A	addition&lt;br /&gt;
::S	subtraction&lt;br /&gt;
&lt;br /&gt;
::&amp;amp;ndash;[https://mathworld.wolfram.com/PEMDAS.html Wolfram PEMDAS]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Parentheses ===&lt;br /&gt;
''Wolfram Mathworld'' on parenthetical expressions:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
:: 1. ''Parentheses are used in mathematical expressions to denote modifications to normal order of operations (precedence rules)...''&lt;br /&gt;
::[...]&lt;br /&gt;
::3. ''Parentheses are used to enclose the variables of a function in the form f(x), which means that values of the function f are dependent upon the values of x.''&lt;br /&gt;
::&amp;amp;ndash;[http://mathworld.wolfram.com/Parenthesis.html Wolfram Parenthesis]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Distributive law===&lt;br /&gt;
''Encyclopedia Britannica'' on parenthetical expressions: &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
::'''''Distributive law''''', ''in mathematics, the law relating the operations of multiplication and addition, stated symbolically, a(b + c) = ab + ac; that is, the monomial factor a is distributed, or separately applied, to each term of the binomial factor b + c, resulting in the product ab + ac.''&lt;br /&gt;
::&amp;amp;ndash;[https://www.britannica.com/science/distributive-law Encyclopedia Britticana]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Therefore, in 6÷2(1+2)=?, we start with the Distributive Law in the &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;Parenthesis&amp;lt;/span&amp;gt; step of the Order of Operations.&lt;br /&gt;
&lt;br /&gt;
::'''6÷2(1+2)=?'''&lt;br /&gt;
::'''6÷&amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;(2*1 + 2*2)&amp;lt;/span&amp;gt;=?'''&lt;br /&gt;
::'''6÷(2 + 4)=?'''&lt;br /&gt;
::'''6÷(6)=?'''&lt;br /&gt;
::'''6÷6=1'''&lt;br /&gt;
&lt;br /&gt;
So the fatal error with solvers who emphasize the left to right rule, is in incorrectly handling the Parentheses step, disregarding the Distributive Law.&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;s&amp;gt;'''&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;6÷2(3)&amp;lt;/div&amp;gt;'''&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some are even compelled to add an explicit multiplier, not given in the equation.&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;s&amp;gt;'''&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;6÷2*(3)&amp;lt;/div&amp;gt;'''&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;s&amp;gt;'''&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;3*(3)&amp;lt;/div&amp;gt;'''&amp;lt;/s&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
=== Parenthetical expressions ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
{{Quote|text=&lt;br /&gt;
''Parenthetical Expression. The parenthesis was described in Chapter 1 as a grouping symbol. When an algebraic expression is enclosed by a parenthesis it is known as a parenthetical expression. '''When a parenthetical expression is immediately preceded by coefficient, the parenthetical expression is a factor and &amp;lt;u&amp;gt;must be multiplied by the coefficient.&amp;lt;/u&amp;gt;''' This is done in the following manner.''&lt;br /&gt;
::''5(a + b) = 5a + 5b'' &amp;lt;br/&amp;gt;&lt;br /&gt;
::''3a(b - c) = 3ab - 3ac''&lt;br /&gt;
&lt;br /&gt;
&amp;amp;ndash;[https://books.google.com/books?id=BabtEFxgZ2AC &amp;quot;Technical Shop Mathematics / Edition 2&amp;quot;], by John G. Anderson, ISBN-13:9780831111458, Industrial Press, Inc., 02/28/1983, Page:138&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Explicit vs Implicit (implied) multiplication ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:center&amp;quot;&amp;gt;&lt;br /&gt;
{{Quote|text='''''Implied multiplication''' has a higher priority than explicit multiplication to allow users to enter expressions, in the same manner as they would be written.''&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;ndash;[https://epsstore.ti.com/OA_HTML/csksxvm.jsp?nSetId=103110 Implied Multiplication Versus Explicit Multiplication on TI Graphing Calculators]&lt;br /&gt;
 }}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Explicit operations have explicit operators (* ÷ + - ) which are delimiters that divide equations into separate terms.  Implied multiplication is notation that informs us that the value of a variable, bracketed function or exponent are connected and not separate terms. ''Implied multiplication is everywhere, 1x = x and x/1=x. Any number times 1 is that number and any number divided by 1 is that number.''&lt;br /&gt;
&lt;br /&gt;
Implied multiplication is also implicit multiplication.&lt;br /&gt;
&lt;br /&gt;
{{Quote|text=&lt;br /&gt;
'''im·plic·it'''&lt;br /&gt;
&lt;br /&gt;
''adjective''&lt;br /&gt;
&lt;br /&gt;
:1. implied though not plainly expressed.&lt;br /&gt;
&lt;br /&gt;
:2. essentially or very closely connected with; always to be found in.&lt;br /&gt;
&lt;br /&gt;
'''im·plied'''&lt;br /&gt;
&lt;br /&gt;
''adjective''&lt;br /&gt;
&lt;br /&gt;
:1. suggested but not directly expressed; implicit.&lt;br /&gt;
&lt;br /&gt;
'''ex·plic·it'''&lt;br /&gt;
&lt;br /&gt;
''adjective''&lt;br /&gt;
&lt;br /&gt;
:1. stated clearly and in detail, leaving no room for confusion or doubt.&lt;br /&gt;
&lt;br /&gt;
&amp;amp;ndash;Oxford&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
6÷2(1+2) has two EXPLICIT operators, division and addition. However, IMPLIED multiplication tells us to IMPLICITLY multiply, [2(2+1)], in the P step of PEMDAS. &lt;br /&gt;
In the division step, we must apply division to the (entire) implicitly connected parenthetical expression.  We cannot apply division to the coefficient (2) and then not apply division to the factor (2+1).&lt;br /&gt;
&lt;br /&gt;
'''Incorrect:''' (''because division is not EXPLICITLY applied to the entire parenthetical expression'')&lt;br /&gt;
&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
6          &lt;br /&gt;
----  &lt;br /&gt;
2      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
(2+1)&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
3 * (1+2)          &lt;br /&gt;
&amp;lt;br/&amp;gt;    &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Correct:''' (''when EXPLICIT division is applied, it is applied to the entire term.'')&lt;br /&gt;
&amp;lt;div style=&amp;quot;color:green;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
6          &lt;br /&gt;
----  &lt;br /&gt;
1      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
÷&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
2(1+2)         &lt;br /&gt;
----  &lt;br /&gt;
1     &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
2 * (1+2)          &lt;br /&gt;
----  &lt;br /&gt;
6 * 1      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Traditional solution:'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;color:green;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
6          &lt;br /&gt;
----  &lt;br /&gt;
2(1+2)      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
3          &lt;br /&gt;
----  &lt;br /&gt;
1*(1+2)      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
3          &lt;br /&gt;
----  &lt;br /&gt;
3      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=  1&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
As we can see, we cannot add an EXPLICIT operator to 6÷2(1+2) without maintaining the IMPLICIT relationship that was stated with IMPLIED multiplication. 6÷2(1+2) == 6÷(2*(1+2)).&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Correctly solving left to right==&lt;br /&gt;
&lt;br /&gt;
If we insist on a left to right solution, ignoring both PEMDAS and the Distributive Law, we can do this by expressing the common divisor first. However, division is sustained and must be applied to everything to the right of the explicit division operator.&lt;br /&gt;
&lt;br /&gt;
::''6÷2(1+2)=?''&lt;br /&gt;
::''3÷1(1+2)=?''  &lt;br /&gt;
::''3÷(1+2)=?''&lt;br /&gt;
::''3÷(3)=?''&lt;br /&gt;
::''3÷3=1''&lt;br /&gt;
&lt;br /&gt;
When we reduce by the common divisor, this does not complete the division operation, it simply reduces the coefficient to one. Division must be applied to both the factor and the coefficient of the parenthetical expression.&lt;br /&gt;
&lt;br /&gt;
==The equation is not ambiguous ==&lt;br /&gt;
===6÷2(1+2) is not equal to 6÷2*(1+2)===&lt;br /&gt;
Standing alone, 6 will always equal 6 and 2(1+2) will also always equal 6, so dividing these two terms will always equal 1. &lt;br /&gt;
&lt;br /&gt;
We would not write 2(a+b) as (2(a+b)), nor can we re-write the given equation as 6÷2*(a+b) and maintain the same value. We can however, rewrite the full equation to include an explicit multiplier if we take care to maintain the parenthetical expression with additional bracketing 6÷(2*(a+b)).&lt;br /&gt;
&lt;br /&gt;
=== Obelus ===&lt;br /&gt;
Granted, the [https://web.archive.org/web/20210417145938/https://www.wyzant.com/resources/blogs/14831/the_obelus_for_division obelus (÷)] is an archaic symbol for division, it visually represents a fraction with one dot being the numerator and the other being the denominator. Computers use the forward slash for division because the standard keyboard does not have an obelus key.  &lt;br /&gt;
&lt;br /&gt;
For those who claim that the obelus is outdated, why then is it present on virtually every modern calculator?&lt;br /&gt;
&lt;br /&gt;
== The calculator problem ==&lt;br /&gt;
&lt;br /&gt;
The [https://www.desmos.com/scientific Desmos Scientific Calculator] handles our given equation correctly. The error checking appears to be built into the division key.&lt;br /&gt;
&lt;br /&gt;
Entering the equation into a programming language, or low quality calculator, requires the explicit multiplication symbol and outer parenthesis to maintain value of the parenthetical expression.&lt;br /&gt;
&lt;br /&gt;
'''6÷2(1+2) == 6÷(2*(1+2))'''&lt;br /&gt;
&lt;br /&gt;
Other calculators, including Google and Wolfram will simply strip the parenthesis and solve a different equation, 6÷2*3. This is because within the programming, the open parenthesis (bracketing) triggers a different function within the programming, an open parenthesis tells the compiler to find the innermost parenthesized term and work outwards.  Thus, to get the correct answer from inferior calculators, the input must be formalized with correct bracketing. I.e. 6÷(2*(1+2))&lt;br /&gt;
&lt;br /&gt;
==Spreadsheets==&lt;br /&gt;
Entering the equation as =6/2(1+2) into a cell in a LibreOffice Calc spreadsheet will result in Err:509 (Missing operator), Google Sheets also returns an error (Formula parse error). This forces the user to format the equation using explicit multiplication. To avoid the left to right problem, the compiler must be instructed in advance to prepare for the function with an extra pair of parenthesis =6/(2*(1+2)).&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [https://www.nytimes.com/2019/08/05/science/math-equation-pemdas-bodmas.html &amp;quot;That Vexing Math Equation? Here’s an Addition&amp;quot;]&lt;br /&gt;
* [https://www.youtube.com/watch?v=hsZCtgFcL40 &amp;quot;How to Solve 8÷2(2+2) Using Implied Multiplication&amp;quot;]&lt;br /&gt;
* [https://slate.com/technology/2013/03/facebook-math-problem-why-pemdas-doesnt-always-give-a-clear-answer.html &amp;quot;What Is the Answer to That Stupid Math Problem on Facebook?&amp;quot;]&lt;br /&gt;
* [https://www.inc.com/dave-kerpen/this-basic-math-problem-is-breaking-internet.html This Basic Math Problem Is Breaking the Internet: How do you solve this simple arithmetic problem?]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=The_equation_that_broke_the_Internet_6%C3%B72(1%2B2)%3D%3F&amp;diff=6301</id>
		<title>The equation that broke the Internet 6÷2(1+2)=?</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=The_equation_that_broke_the_Internet_6%C3%B72(1%2B2)%3D%3F&amp;diff=6301"/>
		<updated>2025-11-25T20:15:41Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: /* Proof incorrect solution */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{multiple image&lt;br /&gt;
&amp;lt;!-- Layout parameters --&amp;gt;&lt;br /&gt;
 | align             = right  &lt;br /&gt;
 | direction         = &amp;lt;!-- horizontal (default), vertical --&amp;gt;&lt;br /&gt;
 | background color  = &amp;lt;!-- box background --&amp;gt;&lt;br /&gt;
 | width             = 400&lt;br /&gt;
 | caption_align     =  center&lt;br /&gt;
 | image1            = CasioCalculator.png&lt;br /&gt;
 | caption1 = The Casio fx-9860 GII SD returns the correct answer to the equation as given. The next row provides the answer that a less sophisticated calculator would return.&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
'''6÷2(1+2)=?''' is the algebra question that many Internet respondents seem to get wrong.  If you are in the camp that knows the correct answer is 1, read no further. If you believe the answer is 9, you should probably review this document -- {{highlight|there is only one number that 6 can be divided by to result in 9, and that number is 2/3.}}&lt;br /&gt;
&lt;br /&gt;
==Proof incorrect solution ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p style=&amp;quot;text-align:center;&amp;quot;&amp;gt; {{highlight|Without fail, 2(1+2) will always equal (2*1 + 2*2), this is the '''Distributive Law.'''}}&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If we substitute x for 2(1+2) from the given equation and back-test the equation with the result of 9:&lt;br /&gt;
&lt;br /&gt;
If &lt;br /&gt;
&lt;br /&gt;
:6÷x = 9&lt;br /&gt;
&lt;br /&gt;
then &lt;br /&gt;
&lt;br /&gt;
:6÷9 = x&lt;br /&gt;
&lt;br /&gt;
there is a common divisor of 3 so we reduce the fraction...&lt;br /&gt;
&lt;br /&gt;
:2÷3 = x &lt;br /&gt;
&lt;br /&gt;
Now we compare the value given in the equation to the value we found (above) for x.&lt;br /&gt;
&lt;br /&gt;
:2÷3 '''!=''' 2(1+2)&lt;br /&gt;
&lt;br /&gt;
Therefore:&lt;br /&gt;
&lt;br /&gt;
:6÷2(1+2) '''!=''' 9&lt;br /&gt;
&lt;br /&gt;
== Proof of correct solution ==&lt;br /&gt;
''Encyclopedia Britannica'': &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
::'''''Distributive law''''', ''in mathematics, the law relating the operations of multiplication and addition, stated symbolically, a(b + c) = ab + ac; that is, the monomial factor a is distributed, or separately applied, to each term of the binomial factor b + c, resulting in the product ab + ac.''&lt;br /&gt;
::&amp;amp;ndash;[https://www.britannica.com/science/distributive-law Encyclopedia Britticana]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Therefore, in 6÷2(1+2)=?, we start with the &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt; Distributive Law&amp;lt;/span&amp;gt; in the &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;Parenthesis&amp;lt;/span&amp;gt; step of the Order of Operations.&lt;br /&gt;
&lt;br /&gt;
::'''6÷2(1+2)=?'''&lt;br /&gt;
::'''6÷&amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;(2*1 + 2*2)&amp;lt;/span&amp;gt;=?'''&lt;br /&gt;
::'''6÷(2 + 4)=?'''&lt;br /&gt;
::'''6÷(6)=?'''&lt;br /&gt;
::'''6÷6=1'''&lt;br /&gt;
&lt;br /&gt;
==Processing rules== &lt;br /&gt;
In the majority of incorrect proofs the respondent will cite PEMDAS or BODMAS, we all agree that parentheses or brackets are processed first.  However, some respondents incorrectly resolve the [P]arentheses or [B]rackets of PEMDAS - BODMAS, for some reason, these solvers believe that they can resolve within the parentheses, but neglect to multiply the adjacent and dependent coefficient.&lt;br /&gt;
&lt;br /&gt;
=== PEMDAS ===&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::P	parenthesis&lt;br /&gt;
::E	exponentiation&lt;br /&gt;
::M	multiplication&lt;br /&gt;
::D	division&lt;br /&gt;
::A	addition&lt;br /&gt;
::S	subtraction&lt;br /&gt;
&lt;br /&gt;
::&amp;amp;ndash;[https://mathworld.wolfram.com/PEMDAS.html Wolfram PEMDAS]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Parentheses ===&lt;br /&gt;
''Wolfram Mathworld'' on parenthetical expressions:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
:: 1. ''Parentheses are used in mathematical expressions to denote modifications to normal order of operations (precedence rules)...''&lt;br /&gt;
::[...]&lt;br /&gt;
::3. ''Parentheses are used to enclose the variables of a function in the form f(x), which means that values of the function f are dependent upon the values of x.''&lt;br /&gt;
::&amp;amp;ndash;[http://mathworld.wolfram.com/Parenthesis.html Wolfram Parenthesis]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Distributive law===&lt;br /&gt;
''Encyclopedia Britannica'' on parenthetical expressions: &lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
::'''''Distributive law''''', ''in mathematics, the law relating the operations of multiplication and addition, stated symbolically, a(b + c) = ab + ac; that is, the monomial factor a is distributed, or separately applied, to each term of the binomial factor b + c, resulting in the product ab + ac.''&lt;br /&gt;
::&amp;amp;ndash;[https://www.britannica.com/science/distributive-law Encyclopedia Britticana]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Therefore, in 6÷2(1+2)=?, we start with the Distributive Law in the &amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;Parenthesis&amp;lt;/span&amp;gt; step of the Order of Operations.&lt;br /&gt;
&lt;br /&gt;
::'''6÷2(1+2)=?'''&lt;br /&gt;
::'''6÷&amp;lt;span style=&amp;quot;color:green;&amp;quot;&amp;gt;(2*1 + 2*2)&amp;lt;/span&amp;gt;=?'''&lt;br /&gt;
::'''6÷(2 + 4)=?'''&lt;br /&gt;
::'''6÷(6)=?'''&lt;br /&gt;
::'''6÷6=1'''&lt;br /&gt;
&lt;br /&gt;
So the fatal error with solvers who emphasize the left to right rule, is in incorrectly handling the Parentheses step, disregarding the Distributive Law.&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;s&amp;gt;'''&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;6÷2(3)&amp;lt;/div&amp;gt;'''&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some are even compelled to add an explicit multiplier, not given in the equation.&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;s&amp;gt;'''&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;6÷2*(3)&amp;lt;/div&amp;gt;'''&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;s&amp;gt;'''&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;3*(3)&amp;lt;/div&amp;gt;'''&amp;lt;/s&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
=== Parenthetical expressions ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
{{Quote|text=&lt;br /&gt;
''Parenthetical Expression. The parenthesis was described in Chapter 1 as a grouping symbol. When an algebraic expression is enclosed by a parenthesis it is known as a parenthetical expression. '''When a parenthetical expression is immediately preceded by coefficient, the parenthetical expression is a factor and &amp;lt;u&amp;gt;must be multiplied by the coefficient.&amp;lt;/u&amp;gt;''' This is done in the following manner.''&lt;br /&gt;
::''5(a + b) = 5a + 5b'' &amp;lt;br/&amp;gt;&lt;br /&gt;
::''3a(b - c) = 3ab - 3ac''&lt;br /&gt;
&lt;br /&gt;
&amp;amp;ndash;[https://books.google.com/books?id=BabtEFxgZ2AC &amp;quot;Technical Shop Mathematics / Edition 2&amp;quot;], by John G. Anderson, ISBN-13:9780831111458, Industrial Press, Inc., 02/28/1983, Page:138&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Explicit vs Implicit (implied) multiplication ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:center&amp;quot;&amp;gt;&lt;br /&gt;
{{Quote|text='''''Implied multiplication''' has a higher priority than explicit multiplication to allow users to enter expressions, in the same manner as they would be written.''&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;ndash;[https://epsstore.ti.com/OA_HTML/csksxvm.jsp?nSetId=103110 Implied Multiplication Versus Explicit Multiplication on TI Graphing Calculators]&lt;br /&gt;
 }}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Explicit operations have explicit operators (* ÷ + - ) which are delimiters that divide equations into separate terms.  Implied multiplication is notation that informs us that the value of a variable, bracketed function or exponent are connected and not separate terms. ''Implied multiplication is everywhere, 1x = x and x/1=x. Any number times 1 is that number and any number divided by 1 is that number.''&lt;br /&gt;
&lt;br /&gt;
Implied multiplication is also implicit multiplication.&lt;br /&gt;
&lt;br /&gt;
{{Quote|text=&lt;br /&gt;
'''im·plic·it'''&lt;br /&gt;
&lt;br /&gt;
''adjective''&lt;br /&gt;
&lt;br /&gt;
:1. implied though not plainly expressed.&lt;br /&gt;
&lt;br /&gt;
:2. essentially or very closely connected with; always to be found in.&lt;br /&gt;
&lt;br /&gt;
'''im·plied'''&lt;br /&gt;
&lt;br /&gt;
''adjective''&lt;br /&gt;
&lt;br /&gt;
:1. suggested but not directly expressed; implicit.&lt;br /&gt;
&lt;br /&gt;
'''ex·plic·it'''&lt;br /&gt;
&lt;br /&gt;
''adjective''&lt;br /&gt;
&lt;br /&gt;
:1. stated clearly and in detail, leaving no room for confusion or doubt.&lt;br /&gt;
&lt;br /&gt;
&amp;amp;ndash;Oxford&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
6÷2(1+2) has two EXPLICIT operators, division and addition. However, IMPLIED multiplication tells us to IMPLICITLY multiply, [2(2+1)], in the P step of PEMDAS. &lt;br /&gt;
In the division step, we must apply division to the (entire) implicitly connected parenthetical expression.  We cannot apply division to the coefficient (2) and then not apply division to the factor (2+1).&lt;br /&gt;
&lt;br /&gt;
'''Incorrect:''' (''because division is not EXPLICITLY applied to the entire parenthetical expression'')&lt;br /&gt;
&amp;lt;div style=&amp;quot;color:red;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
6          &lt;br /&gt;
----  &lt;br /&gt;
2      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
(2+1)&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
3 * (1+2)          &lt;br /&gt;
&amp;lt;br/&amp;gt;    &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Correct:''' (''when EXPLICIT division is applied, it is applied to the entire term.'')&lt;br /&gt;
&amp;lt;div style=&amp;quot;color:green;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
6          &lt;br /&gt;
----  &lt;br /&gt;
1      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
÷&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
2(1+2)         &lt;br /&gt;
----  &lt;br /&gt;
1     &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
2 * (1+2)          &lt;br /&gt;
----  &lt;br /&gt;
6 * 1      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Traditional solution:'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;color:green;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
6          &lt;br /&gt;
----  &lt;br /&gt;
2(1+2)      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
3          &lt;br /&gt;
----  &lt;br /&gt;
1*(1+2)      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
3          &lt;br /&gt;
----  &lt;br /&gt;
3      &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:60px; text-align:center; float:left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
=  1&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
As we can see, we cannot add an EXPLICIT operator to 6÷2(1+2) without maintaining the IMPLICIT relationship that was stated with IMPLIED multiplication. 6÷2(1+2) == 6÷(2*(1+2)).&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Correctly solving left to right==&lt;br /&gt;
&lt;br /&gt;
If we insist on a left to right solution, ignoring both PEMDAS and the Distributive Law, we can do this by expressing the common divisor first. However, division is sustained and must be applied to everything to the right of the explicit division operator.&lt;br /&gt;
&lt;br /&gt;
::''6÷2(1+2)=?''&lt;br /&gt;
::''3÷1(1+2)=?''  &lt;br /&gt;
::''3÷(1+2)=?''&lt;br /&gt;
::''3÷(3)=?''&lt;br /&gt;
::''3÷3=1''&lt;br /&gt;
&lt;br /&gt;
When we reduce by the common divisor, this does not complete the division operation, it simply reduces the coefficient to one. Division must be applied to both the factor and the coefficient of the parenthetical expression.&lt;br /&gt;
&lt;br /&gt;
==The equation is not ambiguous ==&lt;br /&gt;
===6÷2(1+2) is not equal to 6÷2*(1+2)===&lt;br /&gt;
Standing alone, 6 will always equal 6 and 2(1+2) will also always equal 6, so dividing these two terms will always equal 1. &lt;br /&gt;
&lt;br /&gt;
We would not write 2(a+b) as (2(a+b)), nor can we re-write the given equation as 6÷2*(a+b) and maintain the same value. We can however, rewrite the full equation to include an explicit multiplier if we take care to maintain the parenthetical expression with additional bracketing 6÷(2*(a+b)).&lt;br /&gt;
&lt;br /&gt;
=== Obelus ===&lt;br /&gt;
Granted, the [https://web.archive.org/web/20210417145938/https://www.wyzant.com/resources/blogs/14831/the_obelus_for_division obelus (÷)] is an archaic symbol for division, it visually represents a fraction with one dot being the numerator and the other being the denominator. Computers use the forward slash for division because the standard keyboard does not have an obelus key.  &lt;br /&gt;
&lt;br /&gt;
For those who claim that the obelus is outdated, why then is it present on virtually every modern calculator?&lt;br /&gt;
&lt;br /&gt;
== The calculator problem ==&lt;br /&gt;
&lt;br /&gt;
The [https://www.desmos.com/scientific Desmos Scientific Calculator] handles our given equation correctly. The error checking appears to be built into the division key.&lt;br /&gt;
&lt;br /&gt;
Entering the equation into a programming language, or low quality calculator, requires the explicit multiplication symbol and outer parenthesis to maintain value of the parenthetical expression.&lt;br /&gt;
&lt;br /&gt;
'''6÷2(1+2) == 6÷(2*(1+2))'''&lt;br /&gt;
&lt;br /&gt;
Other calculators, including Google and Wolfram will simply strip the parenthesis and solve a different equation, 6÷2*3. This is because within the programming, the open parenthesis (bracketing) triggers a different function within the programming, an open parenthesis tells the compiler to find the innermost parenthesized term and work outwards.  Thus, to get the correct answer from inferior calculators, the input must be formalized with correct bracketing. I.e. 6÷(2*(1+2))&lt;br /&gt;
&lt;br /&gt;
==Spreadsheets==&lt;br /&gt;
Entering the equation as =6/2(1+2) into a cell in a LibreOffice Calc spreadsheet will result in Err:509 (Missing operator), Google Sheets also returns an error (Formula parse error). This forces the user to format the equation using explicit multiplication. To avoid the left to right problem, the compiler must be instructed in advance to prepare for the function with an extra pair of parenthesis =6/(2*(1+2)).&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [https://www.nytimes.com/2019/08/05/science/math-equation-pemdas-bodmas.html &amp;quot;That Vexing Math Equation? Here’s an Addition&amp;quot;]&lt;br /&gt;
* [https://www.youtube.com/watch?v=hsZCtgFcL40 &amp;quot;How to Solve 8÷2(2+2) Using Implied Multiplication&amp;quot;]&lt;br /&gt;
* [https://slate.com/technology/2013/03/facebook-math-problem-why-pemdas-doesnt-always-give-a-clear-answer.html &amp;quot;What Is the Answer to That Stupid Math Problem on Facebook?&amp;quot;]&lt;br /&gt;
* [https://www.inc.com/dave-kerpen/this-basic-math-problem-is-breaking-internet.html This Basic Math Problem Is Breaking the Internet: How do you solve this simple arithmetic problem?]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Thriller_(album)&amp;diff=6300</id>
		<title>Draft: Thriller (album)</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Thriller_(album)&amp;diff=6300"/>
		<updated>2024-03-09T01:00:56Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Reissues and catalog sales ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;On November 18, 2022, Sony Music released Thriller 40, a 40th-anniversary reissue of Thriller including a bonus disc containing outtakes from the original recording sessions.[168] The 2022 reissue was followed by a 2023 documentary.&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''Thriller 40'' is a reissue of the ''Thriller'' album, with a bonus disc containing recording session outtakes, released on November 18, 2022. A companion documentary film was released to Showtime / Paramount+ on December 2, 2023, directed by [[Nelson George]], the film focuses on studio stories told by the original artists involved in the 1983 recording sessions. In anticipation of the fortieth anniversary, Anthony Marinelli (programmer / synthesizers) and Steven Ray (executive assistant to Quincy Jones), hosted a music-focused podcast...&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Thriller_(album)&amp;diff=6299</id>
		<title>Draft: Thriller (album)</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Thriller_(album)&amp;diff=6299"/>
		<updated>2024-03-09T00:39:08Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Reissues and catalog sales ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;On November 18, 2022, Sony Music released Thriller 40, a 40th-anniversary reissue of Thriller including a bonus disc containing outtakes from the original recording sessions.[168] The 2022 reissue was followed by a 2023 documentary.&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''Thriller 40'' is a reissue of the ''Thriller'' album, with a bonus disc containing recording session outtakes, released on November 18, 2022. A companion documentary film was released to Showtime / Paramount+ on December 2, 2023, directed by [[Nelson George]], the film focuses on studio stories told by the original artists involved in the 1983 recording sessions. In anticipation of the fortieth anniversary, Anthony Marinelli (synthesizers) and Steven Ray (executive assistant to Quincy Jones), hosted a music focused podcast&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Thriller_(album)&amp;diff=6298</id>
		<title>Draft: Thriller (album)</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Thriller_(album)&amp;diff=6298"/>
		<updated>2024-03-08T00:30:17Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Reissues and catalog sales ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;On November 18, 2022, Sony Music released Thriller 40, a 40th-anniversary reissue of Thriller including a bonus disc containing outtakes from the original recording sessions.[168] The 2022 reissue was followed by a 2023 documentary.&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''Thriller 40'' is a reissue of the ''Thriller'' album, with a bonus disc containing recording session outtakes, released on November 18, 2022. A companion documentary film was released to Showtime / Paramount+ on December 2, 2023, directed by [[Nelson George]], the film focuses on studio stories from the original artists involved in the 1983 recording sessions.&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Thriller_(album)&amp;diff=6297</id>
		<title>Draft: Thriller (album)</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Thriller_(album)&amp;diff=6297"/>
		<updated>2024-03-08T00:16:57Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: /* Reissues and catalog sales */ draft&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Reissues and catalog sales ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;On November 18, 2022, Sony Music released Thriller 40, a 40th-anniversary reissue of Thriller including a bonus disc containing outtakes from the original recording sessions.[168] The 2022 reissue was followed by a 2023 documentary.&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''Thriller 40'' is a reissue of the ''Thriller'' album, with a bonus disc containing recording session outtakes, released on November 18, 2022. A companion documentary film was released in 2023, focusing on studio stories from the artists involved in the 1983 recording sessions.&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Thriller_(album)&amp;diff=6296</id>
		<title>Draft: Thriller (album)</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Thriller_(album)&amp;diff=6296"/>
		<updated>2024-03-03T00:47:26Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: Created page with &amp;quot;== Reissues and catalog sales ==  On November 18, 2022, Sony Music released Thriller 40, a 40th-anniversary reissue of Thriller including a bonus disc containing outtakes from...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Reissues and catalog sales ==&lt;br /&gt;
&lt;br /&gt;
On November 18, 2022, Sony Music released Thriller 40, a 40th-anniversary reissue of Thriller including a bonus disc containing outtakes from the original recording sessions.[168] The 2022 reissue was followed by a 2023 documentary.&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6295</id>
		<title>Draft: Heather Youmans</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6295"/>
		<updated>2024-02-29T20:16:28Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{short description|American singer-songwriter}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox musical artist&lt;br /&gt;
| name             = Heather Youmans&lt;br /&gt;
| image            = File:Heather_Youmans.jpg&lt;br /&gt;
| image_size       =&lt;br /&gt;
| landscape        = &amp;lt;!-- yes, if wide image, otherwise leave blank --&amp;gt;&lt;br /&gt;
| alt              = Heather Youmans sings at 2011 Relay For Life in San Diego, California&lt;br /&gt;
| caption          =&lt;br /&gt;
| birth_name       = Heather Anne Youmans&lt;br /&gt;
| native_name      =&lt;br /&gt;
| native_name_lang =&lt;br /&gt;
| alias            =&lt;br /&gt;
| birth_date       = {{birth date and age|1992|05|16}}&lt;br /&gt;
| birth_place      = [[Vista, California]], U.S.&lt;br /&gt;
| origin           =&lt;br /&gt;
| death_date       = &amp;lt;!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) --&amp;gt;&lt;br /&gt;
| death_place      =&lt;br /&gt;
| genre            = Rock, pop, country, soul&lt;br /&gt;
| occupation       = Singer-songwriter, actor, journalist&lt;br /&gt;
| instrument       = vocals, bass&lt;br /&gt;
| years_active     = 2002–present&lt;br /&gt;
| label            = {{plainlist| &lt;br /&gt;
* Caption Records&lt;br /&gt;
* Weir Brothers Entertainment&lt;br /&gt;
* Suspicious Love Productions}}&lt;br /&gt;
| associated_acts  =&lt;br /&gt;
| website          = {{URL|www.heatheryoumans.com}}&lt;br /&gt;
| module =&lt;br /&gt;
&lt;br /&gt;
  {{Infobox person&lt;br /&gt;
    | education	= {{highlight|[[Master of Business Administration| MBA]]}}&lt;br /&gt;
    | alma_mater = {{highlight|[[California State University, Long Beach]] (2013)}}&lt;br /&gt;
    | television = {{plainlist| [[I Can See Your Voice (American TV series)| ''I Can See Your Voice'']]&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt;}}&lt;br /&gt;
  }}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color: moccasin&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Heather Youmans is an American principal and session singer. Opening for a UNICEF benefit concert in 2005, featuring Sting and Natalie Cole, cemented Youmans' future goals for the stage,&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Youmans 2012 LATIMES&amp;quot;&amp;gt;{{cite web | last=Youmans | first=Heather | title=Youmans: Heading to Hollywood | website=Daily Pilot | date=2012-01-26 | url=https://www.latimes.com/socal/daily-pilot/entertainment/tn-dpt-xpm-2012-01-26-tn-dpt-0127-youmans-20120126-story.html | access-date=2024-02-29 | archive-url=https://web.archive.org/web/20230127154132/https://www.latimes.com/socal/daily-pilot/entertainment/tn-dpt-xpm-2012-01-26-tn-dpt-0127-youmans-20120126-story.html|archive-date=2023-01-27}}&amp;lt;/ref&amp;gt;  opportunities then arose with 20th Century Fox motion pictures, both as a singer and songwriter.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Youmans has had a long running association with Disney since 2005, {{ref}} and completed a tour of China, ''Disney 100 Wonderland'' in 2024.&amp;lt;ref name=&amp;quot;Things to do in Shenzhen, China 2024 l244&amp;quot;&amp;gt;{{cite web | title=Heather Youman Disney 100 Wonderland with Disney Concerts @ Bay Opera Shenzhen – Bao’an | website=Things to do in Shenzhen, China | date=2024-01-19 | url=https://events.nowshenzhen.com/calendar/heather-youman-disney-100-wonderland-with-disney-concerts-bay-opera-shenzhen-baoan/ | access-date=2024-02-22 | archive-date=2024-02-21 |archive-url=https://web.archive.org/web/20240221180851/https://events.nowshenzhen.com/calendar/heather-youman-disney-100-wonderland-with-disney-concerts-bay-opera-shenzhen-baoan/}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Youmans enjoys singing the national anthem for professional sports teams (MLB and NHL), video footage of Youmans' anthem performances have gone viral.&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
'''Heather Youmans''' is an American singer-songwriter, actress, tap dancer and journalist, her work has been featured in ''American Songwriter'' magazine,&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt; [[Forbes|''Forbes Women'']] and ''Parade'' magazine profiled her career and music in 2020.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans tap dancing on [[I Can See Your Voice (American TV series)|''I Can See Your Voice'']] episode 4 (FOX),&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; convinced the judges that she is a professional dancer,&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
a video depicting her delivery of the national anthem and dealing with acoustic delay effect of a large stadium (Oakland Coliseum) went viral on social media in 2021.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Early life ==&lt;br /&gt;
Youmans began landing theatre roles at age ten, such as Amarylis in ''[[The Music Man]]'',  Marta in ''[[The Sound of Music]]'' in 2003,&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;/&amp;gt; as well as Nellie in ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]'' in 2004 at the [[Lawrence Welk|Welk]] Resort Theatre.&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;/&amp;gt;  In 2004, she won first place in the Del Mar TV Idol Contest, Junior Division, at age twelve.&amp;lt;ref name=DelMarTV/&amp;gt; On November 30, 2005, Youmans performed an opening solo at the [[UNICEF]] Snowflake Ball at the [[Beverly Wilshire Hotel|Regent Beverly Wilshire]]. Headlining acts for the evening included, [[Sting (musician)|Sting]], [[Chris Botti]] and [[Natalie Cole]].&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans attended [[Rancho Buena Vista High School]] and was active in the Associated Student Body, dance and drama programs. In 2009, she won the MACY Award for Highest Achievement and Best Supporting Vocal-Female for her role as Rusty in [[Footloose (musical)|''Footloose'']],&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;/&amp;gt; and Best Vocal Female in 2010 for her role as Jo in ''[[Little Women]]''.&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Education ==&lt;br /&gt;
Youmans holds a B.A. in Journalism and Mass Communication with a music minor (classical and jazz vocal at [[Bob Cole Conservatory of Music]]). She graduated [[magna cum laude]] from [[California State University, Long Beach]] (CSULB) in 2013, and graduated with an MBA at CSULB with an emphasis in marketing. During her undergraduate studies, Youmans created and hosted ''Heartbreakers: The Women of Rock'', a radio format program on [[Kbeach#22 West Radio|KBeach.org]] (2011-2013).  {{Highlight|While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Career ==&lt;br /&gt;
In 2005, Youmans earned a voice-over part, playing Becky Thatcher in Disney's ''[[Tom Sawyer's Island]]'' and the following year, won the part of Shana the Rock Star in a pre-production musical ''[[Teen Witch the Musical]]'' (2007).&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt; These accomplishments led to featured artist performances on the soundtrack for [[Moondance Alexander]] (2007).&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;/&amp;gt; Youmans' single, &amp;quot;Girl to Change Your World&amp;quot;, was a (2011) hit on [[Radio Disney]],&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; and it is one of the two Youmans songs included in the film ''Love by Design'' (2014), starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]].&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;The [[Teen Witch the Musical]] project was successful in its primary goal of reproducing the missing soundtrack for the Halloween classic film [[Teen Witch]] (1989).&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt; The musical stage-play never made it out of [[Workshop production|workshop]] and has yet to achieve the secondary goal of becoming a viable [[Broadway theatre|Broadway]] offering.&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;/&amp;gt; This association with Weir Brothers Productions led to additional soundtrack features in the films ''[[Moondance Alexander]]'' (2007), ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
While concurrently studying journalism and music, Youmans auditioned and stacked up credits in Southern California regional theater and wrote for national and regional newspapers on entertainment topics. &amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; She has produced and hosted an entertainment format radio show,&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; interviewed entertainment industry legends,&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt; and ran a marketing campaign for [[Jon MacLennan|Jon MacLennan's]] iBook, ''Melodic Expressions: The Art of the Line'' (2012).&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;/&amp;gt; She works as a communications professional in [[Los Angeles]].&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Theatre and live performances ===&lt;br /&gt;
==== Beverly Hills opener  ====&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;&lt;br /&gt;
==== American Idol ====&lt;br /&gt;
In 2012, Youmans performed &amp;quot;[[Some Kind of Wonderful (The Drifters song)|Some Kind of Wonderful]]&amp;quot; at the [[American Idol]] San Diego competition and won a golden ticket after a unanimous decision from the judges ([[Steven Tyler]], [[Jennifer Lopez]] and [[Randy Jackson]]), which advanced her to the [[American Idol (season 11)#Hollywood week and Vegas rounds|''Hollywood Week'']] competition.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  Youmans was eliminated during ''Hollywood Week'' in Season 11. She attributes the elimination to nerves and an ambitious music selection, [[Heart (band)|Heart]]’s &amp;quot;[[Crazy on You]]&amp;quot;.&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable sortable collapsed collapsible&amp;quot; style=&amp;quot;width:98%; margin-right:0; text-align:center;&amp;quot;&lt;br /&gt;
|+ Professional performances and theatre roles&lt;br /&gt;
|-&lt;br /&gt;
! Year&lt;br /&gt;
! Title&lt;br /&gt;
! Role&lt;br /&gt;
! Venue&lt;br /&gt;
! Director/Producer&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[The Music Man]]''||align=&amp;quot;center&amp;quot;|Amarylis||Welk Resort Theatre||Lewis Wilkenfeld&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[Sound of Music]]''||align=&amp;quot;center&amp;quot;|Marta||Welk Resort Theatre||Joshua Carr&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Nellie||Welk Resort Theatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie (musical)|Annie]]''||align=&amp;quot;center&amp;quot;|Orphan Sadie||La Mirada Theatre for the Performing Arts||McCoy Rigby Ent. Glenn Casale&lt;br /&gt;
|-&lt;br /&gt;
|2004||''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Jessie||Saddleback Civic Light Opera||Sheryl Donchey&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[To Kill a Mockingbird]]''||align=&amp;quot;center&amp;quot;|Scout||West Coast Ensemble|| {{sic|hide=y|C. Jaffe/R. Israel}}&lt;br /&gt;
|-&lt;br /&gt;
|2005||UNICEF Snowflake Ball||align=&amp;quot;center&amp;quot;|Opening Soloist||[[Beverly Wilshire Hotel|Regent Beverly Wilshire]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2005|| ''[[Tight Quarters]]''||align=&amp;quot;center&amp;quot;|Lauren||Whitefire Theatre||Jules Aaron&lt;br /&gt;
|-&lt;br /&gt;
|2005||Kodak Christmas||align=&amp;quot;center&amp;quot;|Featured Soloist||[[Dolby Theatre|Kodak Theatre]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2006||''[[Teen Witch the Musical]]''||align=&amp;quot;center&amp;quot;|Shana the Rock Star|| [[Workshop production|workshop]] ||Alana Lambros&lt;br /&gt;
|-&lt;br /&gt;
|2008||[[New Music Weekly]] Awards||align=&amp;quot;center&amp;quot;|Featured Soloist||Avalon Theatre||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2009||''[[42nd Street (musical)|42nd Street]]'' ||align=&amp;quot;center&amp;quot;|Ensemble|| Moonlight Amphitheatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2010|| ''Once Upon A Wedding''||align=&amp;quot;center&amp;quot;|Daisy||Bahia Resort-Dinner Theatre||Laughing Tree Prod.&lt;br /&gt;
|-&lt;br /&gt;
|2010-12|| ''Journey To The Lost Temple''||align=&amp;quot;center&amp;quot;|Pippin||[[Legoland]]-California||Shawn Griener&lt;br /&gt;
|-&lt;br /&gt;
|2012||''[[American Idol]]'' Season 11||align=&amp;quot;center&amp;quot;|Contestant|| [[USS Midway Museum]]|| [[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2012||''American Idol'' Season 11||align=&amp;quot;center&amp;quot;|Hollywood Week||[[Pasadena Civic Auditorium]]||[[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2019||Jason Robert Brown In Concert||align=&amp;quot;center&amp;quot;|Lead singer||Cabaret at the Merc||Gerald Sternbach &lt;br /&gt;
|-&lt;br /&gt;
|2019||Evita In Concert||align=&amp;quot;center&amp;quot;|Ensemble||PVPA||Richard Israel &lt;br /&gt;
|-&lt;br /&gt;
|2020||HAIR||align=&amp;quot;center&amp;quot;|Suzannah 1000-Year-Old Monk||LGBT Center LA||Kate Sullivan Jared Stein&lt;br /&gt;
|-&lt;br /&gt;
|2020||New Year's Eve, National Anthem Singer||align=&amp;quot;center&amp;quot;|Soloist||Staples Center||LA Kings &amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;/&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Recorded and broadcast ===&lt;br /&gt;
&amp;lt;s&amp;gt;In addition to performing in nationally televised commercials, Youmans has been involved in several cutting-edge media projects.&amp;lt;/s&amp;gt;  In 2005, Youmans played the part of Becky Thatcher in Disney's [[Tom Sawyer's Island]], a voice-over project.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  The performance was delivered via hand-held computers issued to visitors on [[Disneyland|Disneyland's]] Tom Sawyer's Island. A pilot project, titled &amp;quot;Available Light&amp;quot;, was one of the first to test Sony Blu-ray camera technology.&lt;br /&gt;
&lt;br /&gt;
==== Soundtracks ====&lt;br /&gt;
* ''[[Teen Witch the Musical]]'' (2007) original cast recording, Weir Brothers Entertainment.&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Moondance Alexander]]'' (2007) starring [[Kay Panabaker]], [[Don Johnson]] and [[Lori Loughlin]], [[20th Century Fox|20th Century Fox Home Entertainment]]&lt;br /&gt;
* ''[[Flicka 2]]'' (2010) starring [[Patrick Warburton]], [[Tammin Sursok]] and [[Clint Black]], [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011) starring [[Travis Turner]] and [[Donnelly Rhodes]],  [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''Love by Design'' (2014) starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]], Gold Line Prod. Int.&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Newport Beach FF&amp;quot;&amp;gt;{{cite web|title=Newport Beach Film Festival|url=https://www.imdb.com/event/ev0000491/2014?ref_=ttawd_ev_1|website=[[IMDb]]|accessdate=1 February 2015|date=2 February 2014|quote=First-time Filmmaker: Winner}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*''High Strung'' (2016) starring [[Keenan Kampa]], Nicholas Galitzine, [[Jane Seymour (actress)|Jane Seymour]], Riviera Films.&amp;lt;ref name=&amp;quot;High Strung&amp;quot;&amp;gt;{{cite web|title=''High Strung''|url=http://www.soundtrack.net/album/high-strung/|website=Soundtrack.net|accessdate=30 March 2016|date=8 April 2016}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Singles ====&lt;br /&gt;
&amp;lt;!--* &amp;quot;Never Gonna Be The Same Again&amp;quot; (2007)&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt;--&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World&amp;quot; (2011)&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World - The Remixes&amp;quot; (2011)&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;In My Arms&amp;quot; (2012)&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;My Kind of Trouble LIVE at the Recordium&amp;quot; (2019)&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Is It Just Me LIVE at the Recordium&amp;quot; (2019)&lt;br /&gt;
* &amp;quot;Shine&amp;quot; (2019)&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;You Made Me Hate Love Songs LIVE at YouTube Space&amp;quot; (2020)&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;A Little Closer To Happy&amp;quot; (2021)&lt;br /&gt;
* &amp;quot;Worth It&amp;quot; (2021)&lt;br /&gt;
&lt;br /&gt;
=== Journalism ===&lt;br /&gt;
Youmans writes about entertainment topics, specifically dance, music, theatre and film. Her Southern California beat includes covering venues, such as the [[Orange County Fair (California)|Orange County Fair]], the Newport Beach Jazz Festival, the [[Playboy Jazz Festival]], Sunset Jazz at Newport, the [[Hollywood Bowl]] and [[Segerstrom Center for the Arts]]. Her freelance position with [[Freedom Communications]] has afforded interviews with: [[George Lopez]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Drew Carey]] and [[Brooke Shields]],&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt;  Grammy Award-winning musicians [[David Sanborn]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Jeff Hamilton (drummer)|Jeff Hamilton]]&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;/&amp;gt; for the ''[[Orange County Register]]'', and her interview with Grammy nominee [[Brian McKnight]] was additionally published in the ''Los Angeles Register''.&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;/&amp;gt; Earlier interviews include, [[Chita Rivera]] for the ''[[Los Angeles Times]]''&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and interviews with [[Ann Wilson]]&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt; and  [[Martina McBride]]&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt; for the [[Los Angeles Times suburban sections|Los Angeles Times Media Group's]] ''Daily Pilot''.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;!--- See http://en.wikipedia.org/wiki/Wikipedia:Footnotes on how to create references using &amp;lt;ref&amp;gt;&amp;lt;/ref&amp;gt; tags which will then appear here automatically --&amp;gt;&lt;br /&gt;
{{Reflist|2| refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student gets golden ticket on 'American Idol'|url=http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|publisher=Daily 49er|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821011818/http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|archivedate=21 August 2014|date=24 January 2012}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;&amp;gt;{{cite web|author1=Giulia Nahmany|title=Giulia Nahmany Love by Design Premiere at Newport Beach Film Festival|url=https://www.youtube.com/watch?v=et6kw-AH0ZA|publisher=Giulia Nahmany YouTube Channel|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821015154/https://www.youtube.com/watch?v=et6kw-AH0ZA|archivedate=21 August 2014|date=20 May 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=TWTM&amp;gt;{{cite web|title=Teen Witch The Musical|url=http://weirbrothersentertainment.com/releases/teen-witch|publisher=Weir Brothers Entertainment|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822014020/http://weirbrothersentertainment.com/releases/teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;&amp;gt;{{cite web|title=Heather Youmans: Credits|url=http://www.allmusic.com/artist/heather-youmans-mn0000643210/credits|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=DelMarTV&amp;gt;{{cite web|title=Del Mar TV Idol Contest 2004|url=http://www.delmartv.com/idol/idol04.html|publisher=Del Mar TV Foundation|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822011402/http://www.delmartv.com/idol/idol04.html|archivedate=22 August 2014|date=10 October 2004|quote=Heather Youmans (1st place)}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;&amp;gt;{{cite web|title=Moondance Alexander Soundtrack|url=http://www.allmusic.com/album/moondance-alexander-mw0000493713|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;&amp;gt;{{cite web|title=2010 MACY Award Winners|url=http://macyawards.com/news/67-news/132-2010-macy-award-winners|publisher=MACY Awards|accessdate=22 August 2014|date=22 May 2010|url-status=dead|archiveurl=https://web.archive.org/web/20140903125715/http://macyawards.com/news/67-news/132-2010-macy-award-winners|archivedate=3 September 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;&amp;gt;{{cite web|title=2009 MACY Award Winners|url=http://macyawards.com/news/67-news/122-2009-macy-award-winners|accessdate=22 August 2014|url-status=dead|archiveurl=https://web.archive.org/web/20140822022545/http://macyawards.com/news/67-news/122-2009-macy-award-winners|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;&amp;gt;{{cite news|last1=Krugen|first1=Pam|title=Strong leads, chemistry make Welk's 'Get Your Gun' a winner|url=http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|newspaper=The San Diego Union-Tribune|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822042246/http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|archivedate=22 August 2014|date=3 September 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=Annie Get Your Gun|url=http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822044216/http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|archivedate=22 August 2014|year=2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=The Sound of Music|url=http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822045133/http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;&amp;gt;{{cite web|last1=Wood|first1=Jennifer M.|title=18 Fun Facts About 'Teen Witch'|url=http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|publisher=mental_floss|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822193830/http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;&amp;gt;{{cite web|title=Girl to Change Your World: Releases|url=http://www.allmusic.com/album/girl-to-change-your-world-mw0002363250/releases|website=[[AllMusic]]|accessdate=23 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - Girl To Change Your World|url=https://www.youtube.com/watch?v=lYU6FLZm9nQ|publisher=Caption Records YouTube Channel|accessdate=23 August 2014|date=7 February 2010}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student loses shot at 'Idol' fame|url=http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|publisher=Daily 49er|accessdate=23 August 2014|archiveurl=https://web.archive.org/web/20140823012031/http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|archivedate=23 August 2014|date=12 February 2012|quote=Still, she said she’s not ashamed of the footage. “Yeah, it sucks,” she said. “Everybody has a bad day. Yeah, it’s unfortunate that they showed me having a bad day, but what can you do?”}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Newport Jazz Festival goes down smooth|url=http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|newspaper=[[Orange County Register]]|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826092910/http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|archivedate=26 August 2014|date=29 May 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;&amp;gt;{{cite web|last1=Schnaidt|first1=Joe|title=Lighting The Way To Hope On Rodeo Drive|url=http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|publisher=Canyon News|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826100957/http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|archivedate=26 August 2014|date=4 December 2005|quote=BEVERLY HILLS — Wednesday, November 30 illuminated Rodeo Drive at Wilshire Boulevard for the annual holiday lighting ceremony with celebrities, sponsors and a ray of hope for children facing poverty, health risks and poor education.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 9 August 2011 | title = Marley &amp;amp; Me The Puppy Years music from and inspired by the motion picture | medium = MP3 &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B005JBC14S&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 4 May 2010 | title = Flicka 2 Original Motion Picture Soundtrack | medium = MP3/CD &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B003JE2EIU&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;JRAY Nom&amp;quot;&amp;gt;{{cite web|title=2009 JRAY Awards|url=http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|publisher=Fulerton Civic Light Opera|accessdate=28 August 2014|archiveurl=https://web.archive.org/web/20140828012354/http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|archivedate=28 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;&amp;gt;{{cite news|last1=Malik|first1=Abhay|title=Alumnus Jon MacLennan's iBook 'Melodic Expressions' advances guitar instruction |url=http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|newspaper=[[Daily Bruin]]|accessdate=8 August 2014|archiveurl=https://web.archive.org/web/20140808121825/http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|archivedate=8 August 2014|date=8 May 2012|quote=Heather Youmans, an “American Idol” contestant and freelance journalist, helped edit the iBook and has expressed excitement over the finished product as well.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;&amp;gt;{{cite web|last1=MacLennan|first1=Jon|title=In My Arms Jon MacLennan (feat. Heather Youmans)|url=https://www.youtube.com/watch?v=G8QJ5aToHxw|publisher=Jon MacLennan YouTube Channel|accessdate=28 August 2014|date=16 July 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - &amp;quot;Never Gonna Be the Same Again&amp;quot; Studio City Sound LIVE|url=https://www.youtube.com/watch?v=rYhEtU1EgUM|publisher=[[Studio City Sound]]|accessdate=28 August 2014|date=3 October 2011}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;iBook Press Release&amp;quot;&amp;gt;{{cite press release|title=Melodic Expressions: The Art of the Line|url=http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|website=www.heatheryoumansmusic.com/|publisher=Jon MacLennan|accessdate=28 August 2014|date=3 May 2013|archiveurl=https://web.archive.org/web/20140828221739/http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|archivedate=28 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Change in tempo for Playboy Jazz Festival&lt;br /&gt;
|url=http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=21 August 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829013440/http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Brooke Shields takes the helm of 'Chicago'&lt;br /&gt;
|url=http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=17 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829014021/http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Sunset Jazz series kicks off in Newport&lt;br /&gt;
|url=http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|accessdate=29 August 2014|newspaper=[[The Orange County Register]]|date=9 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829015132/http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;&amp;gt;{{cite web|title=Weir Brothers Entertainment: Albums|url=http://www.last.fm/label/Weir+Brothers+Entertainment/albums|website=last.fm|publisher=Weir Brothers Entertainment|accessdate=29 August 2014|archiveurl=https://web.archive.org/web/20140829023539/http://www.last.fm/label/Weir+Brothers+Entertainment/albums|archivedate=29 August 2014|year=2011|quote=Girl to Change Your World singles}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Music for most every taste|url=http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|accessdate=29 August 2014|newspaper=Daily Pilot|archiveurl=https://web.archive.org/web/20140829225029/http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=O.C. Fair gets some Heart|url=http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|accessdate=29 August 2014|newspaper=Daily Pilot|date=2 August 2012|archiveurl=https://web.archive.org/web/20140829224632/http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Youmans: Chita Rivera to perform hits from a storied career|url=http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|accessdate=29 August 2014|newspaper=[[The Los Angeles Times]]|date=10 November 2011|archiveurl=https://web.archive.org/web/20140829220754/http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival|url=http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|accessdate=29 August 2014|newspaper=[[Orange County Register]]|date=28 May 2014|archiveurl=https://web.archive.org/web/20140829215845/http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival&lt;br /&gt;
|publisher=Los Angeles Register|date=29 May 2014&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;&amp;gt;{{cite news|title='High Strung' Soundtrack Announced|url=http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|accessdate=3 May 2016|publisher=FILM MUSIC REPORTER|date=9 March 2016|archiveurl=https://web.archive.org/web/20160503051828/http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|archivedate=3 May 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;&amp;gt;{{cite web|author1=Kristyn Burtt|title=Heather Youmans at the Red Carpet Premiere for &amp;quot;High Strung&amp;quot; #HighStrungMovie|url=https://www.youtube.com/watch?v=YOlN1Zt4_I8|website=YouTube.com|publisher=Mingle Media TV|accessdate=3 May 2016|date=30 March 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=Meet This Week's She Rocks Spotlight Series Artists, Including Grammy-Nominated Headliner Mindi Abair | website=Parade | date=2020-04-22 | url=https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-url=https://web.archive.org/web/20200427002753/https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-date=2020-04-27 | url-status=dead | access-date=2020-04-27}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;&amp;gt;{{cite web | title=Daily Discovery: Heather Youmans, &amp;quot;Shine&amp;quot; « American Songwriter | website=American Songwriter | date=2019-11-13 | url=https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200316151706/https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-date=2020-03-16 | url-status=live | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;&amp;gt;{{cite web | last=Buttonow | first=Leslie | title=Front and Center: Heather Youmans, PR &amp;amp; Communications Manager, Fender Musical Instruments Corporation – the WiMN - The Women's International Music Network | website=thewimn.com | date=2019-05-01 | url=https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-url=https://web.archive.org/web/20200426083920/https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-date=2020-04-26 | url-status=unfit | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;&amp;gt;{{cite web | title=Premiere: Singer-Songwriter Heather Youmans Reveals Latest Single &amp;quot;Shine&amp;quot; + Music Video | website=Elicit Magazine | date=2019-10-18 | url=http://www.elicitmagazine.com/heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200428035459/http://www.elicitmagazine.com/heather-youmans-shine/ | archive-date=2020-04-28 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;&amp;gt;{{cite web |url= https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble |title= Heather Youmans Gets Honest And Real In &amp;quot;My Kind Of Trouble&amp;quot; |date= 2019-08-13 |website= BuzzMusic |access-date= 2020-04-27 |archive-date= 2020-04-28 |archive-url= https://web.archive.org/web/20200428034603/https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;&amp;gt;{{cite web | title=Emerging Headliner: Heather Youmans | website=Headliner Magazine | date=2020-02-25 | url=https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-url=https://web.archive.org/web/20200225061919/https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-date=2020-02-25 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;&amp;gt;{{cite web | last=Brunner | first=Jeryl | title=Why This Successful Singer-Songwriter Won't Give Up Her Day Job | website=Forbes | date=2020-09-30 | url=https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/ | access-date=2020-10-01 |archive-url=https://web.archive.org/web/20201001011624if_/https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/?fbclid=IwAR3q2uGBNQP6MO-2pr57Mopo6AM0b_lktTAEhvQKHD6XhTNH5jSQoOQpiT4#5d2b64a67b7e|archive-date=2020-10-01}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=You're Gonna Feel the Joy of Heather Youmans' Video for 'Shine' | website=Parade: Entertainment, Recipes, Health, Life, Holidays | date=2020-10-06 | url=https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-url=https://web.archive.org/web/20201007032747/https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-date=2020-10-07 | url-status=dead | access-date=2020-10-07}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;&amp;gt;{{cite web | title=Heather Youmans Releases 'Shine' As Love Letter To Younger Self | website=Headliner Magazine | url=https://headlinermagazine.net/blog/heather-youmans-releases-shine-as-love-letter-to-younger-self.html | access-date=2020-10-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;&amp;gt;{{cite AV media  | people = Heather Youmans  | date = 2020-10-28  | title = The Tap Dancer Performs &amp;quot;Youngblood&amp;quot; By 5 Seconds Of Summer - Season 1 Ep. 4 - I CAN SEE YOUR VOICE  | language = en  | url = https://www.youtube.com/watch?v=Z5rghUxRero  | access-date = 2020-10-31  | publisher = FOX }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot;&amp;gt;{{cite web | title=Column: Singer from Vista stuns panel in new Fox reality series | website=San Diego Union-Tribune | date=2020-11-14 | url=https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-url=https://web.archive.org/web/20201118211051/https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-date=2020-11-18 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot;&amp;gt;{{cite web | last=Upadhyay | first=Nayna | title=EXCLUSIVE - Heather Youmans says 'I Can See Your Voice' is all about finding 'singers that America needs to know' | website=MEAWW | date=2020-11-16 | url=https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-url=https://web.archive.org/web/20201116192203/https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-date=2020-11-16 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.heatheryoumans.com Official website]&lt;br /&gt;
* {{YouTube|user=HeatherYoumans|Heather Youmans}}&lt;br /&gt;
* {{Facebook|HeatherYoumansOfficial|Heather Youmans}}&lt;br /&gt;
&amp;lt;!--* {{itunes|us/artist/heather-youmans/id219552589|Heather Youmans}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Youmans, Heather}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Categories &lt;br /&gt;
[[Category:Articles created via the Article Wizard]]---&amp;gt;&lt;br /&gt;
[[Category:1992 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:American stage actresses]]&lt;br /&gt;
[[Category:American women singer-songwriters]]&lt;br /&gt;
[[Category:American musical theatre actresses]]&lt;br /&gt;
[[Category:21st-century American actresses]]&lt;br /&gt;
[[Category:21st-century American singers]]&lt;br /&gt;
[[Category:Musicians from San Diego]]&lt;br /&gt;
[[Category:Musicians from Vista, California]]&lt;br /&gt;
[[Category:American music journalists]]&lt;br /&gt;
[[Category:American women journalists]]&lt;br /&gt;
[[Category:Journalists from California]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--[[Category:American film actresses]]&lt;br /&gt;
[[Category:American television actresses]]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Women writers about music]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Singer-songwriters from California]]&lt;br /&gt;
{{authority control}}&lt;br /&gt;
[[Category:21st-century American women singers]]&lt;br /&gt;
[[Category:21st-century American journalists]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6294</id>
		<title>Draft: Heather Youmans</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6294"/>
		<updated>2024-02-29T20:15:32Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{short description|American singer-songwriter}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox musical artist&lt;br /&gt;
| name             = Heather Youmans&lt;br /&gt;
| image            = File:Heather_Youmans.jpg&lt;br /&gt;
| image_size       =&lt;br /&gt;
| landscape        = &amp;lt;!-- yes, if wide image, otherwise leave blank --&amp;gt;&lt;br /&gt;
| alt              = Heather Youmans sings at 2011 Relay For Life in San Diego, California&lt;br /&gt;
| caption          =&lt;br /&gt;
| birth_name       = Heather Anne Youmans&lt;br /&gt;
| native_name      =&lt;br /&gt;
| native_name_lang =&lt;br /&gt;
| alias            =&lt;br /&gt;
| birth_date       = {{birth date and age|1992|05|16}}&lt;br /&gt;
| birth_place      = [[Vista, California]], U.S.&lt;br /&gt;
| origin           =&lt;br /&gt;
| death_date       = &amp;lt;!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) --&amp;gt;&lt;br /&gt;
| death_place      =&lt;br /&gt;
| genre            = Rock, pop, country, soul&lt;br /&gt;
| occupation       = Singer-songwriter, actor, journalist&lt;br /&gt;
| instrument       = vocals, bass&lt;br /&gt;
| years_active     = 2002–present&lt;br /&gt;
| label            = {{plainlist| &lt;br /&gt;
* Caption Records&lt;br /&gt;
* Weir Brothers Entertainment&lt;br /&gt;
* Suspicious Love Productions}}&lt;br /&gt;
| associated_acts  =&lt;br /&gt;
| website          = {{URL|www.heatheryoumans.com}}&lt;br /&gt;
| module =&lt;br /&gt;
&lt;br /&gt;
  {{Infobox person&lt;br /&gt;
    | education	= {{highlight|[[Master of Business Administration| MBA]]}}&lt;br /&gt;
    | alma_mater = {{highlight|[[California State University, Long Beach]] (2013)}}&lt;br /&gt;
    | television = {{plainlist| [[I Can See Your Voice (American TV series)| ''I Can See Your Voice'']]&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt;}}&lt;br /&gt;
  }}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color: moccasin&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Heather Youmans is an American principal and session singer. Opening for a UNICEF benefit concert in 2005, featuring Sting and Natalie Cole, cemented Youmans' future goals for the stage,&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Youmans 2012 LATIMES&amp;quot;&amp;gt;{{cite web | last=Youmans | first=Heather | title=Youmans: Heading to Hollywood | website=Daily Pilot | date=2012-01-26 | url=https://www.latimes.com/socal/daily-pilot/entertainment/tn-dpt-xpm-2012-01-26-tn-dpt-0127-youmans-20120126-story.html | access-date=2024-02-29 | archive-url=https://web.archive.org/web/20230127154132/https://www.latimes.com/socal/daily-pilot/entertainment/tn-dpt-xpm-2012-01-26-tn-dpt-0127-youmans-20120126-story.html|archive-date=2023-01-27}}&amp;lt;/ref&amp;gt;  opportunities then arose with 20th Century Fox motion pictures, both as a singer and songwriter.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Youmans has had a long running association with Disney since 2005. Youmans completed a tour of China, ''Disney 100 Wonderland'' in 2024.&amp;lt;ref name=&amp;quot;Things to do in Shenzhen, China 2024 l244&amp;quot;&amp;gt;{{cite web | title=Heather Youman Disney 100 Wonderland with Disney Concerts @ Bay Opera Shenzhen – Bao’an | website=Things to do in Shenzhen, China | date=2024-01-19 | url=https://events.nowshenzhen.com/calendar/heather-youman-disney-100-wonderland-with-disney-concerts-bay-opera-shenzhen-baoan/ | access-date=2024-02-22 | archive-date=2024-02-21 |archive-url=https://web.archive.org/web/20240221180851/https://events.nowshenzhen.com/calendar/heather-youman-disney-100-wonderland-with-disney-concerts-bay-opera-shenzhen-baoan/}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Youmans enjoys singing the national anthem for professional sports teams (MLB and NHL), video footage of Youmans' anthem performances have gone viral.&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
'''Heather Youmans''' is an American singer-songwriter, actress, tap dancer and journalist, her work has been featured in ''American Songwriter'' magazine,&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt; [[Forbes|''Forbes Women'']] and ''Parade'' magazine profiled her career and music in 2020.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans tap dancing on [[I Can See Your Voice (American TV series)|''I Can See Your Voice'']] episode 4 (FOX),&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; convinced the judges that she is a professional dancer,&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
a video depicting her delivery of the national anthem and dealing with acoustic delay effect of a large stadium (Oakland Coliseum) went viral on social media in 2021.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Early life ==&lt;br /&gt;
Youmans began landing theatre roles at age ten, such as Amarylis in ''[[The Music Man]]'',  Marta in ''[[The Sound of Music]]'' in 2003,&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;/&amp;gt; as well as Nellie in ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]'' in 2004 at the [[Lawrence Welk|Welk]] Resort Theatre.&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;/&amp;gt;  In 2004, she won first place in the Del Mar TV Idol Contest, Junior Division, at age twelve.&amp;lt;ref name=DelMarTV/&amp;gt; On November 30, 2005, Youmans performed an opening solo at the [[UNICEF]] Snowflake Ball at the [[Beverly Wilshire Hotel|Regent Beverly Wilshire]]. Headlining acts for the evening included, [[Sting (musician)|Sting]], [[Chris Botti]] and [[Natalie Cole]].&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans attended [[Rancho Buena Vista High School]] and was active in the Associated Student Body, dance and drama programs. In 2009, she won the MACY Award for Highest Achievement and Best Supporting Vocal-Female for her role as Rusty in [[Footloose (musical)|''Footloose'']],&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;/&amp;gt; and Best Vocal Female in 2010 for her role as Jo in ''[[Little Women]]''.&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Education ==&lt;br /&gt;
Youmans holds a B.A. in Journalism and Mass Communication with a music minor (classical and jazz vocal at [[Bob Cole Conservatory of Music]]). She graduated [[magna cum laude]] from [[California State University, Long Beach]] (CSULB) in 2013, and graduated with an MBA at CSULB with an emphasis in marketing. During her undergraduate studies, Youmans created and hosted ''Heartbreakers: The Women of Rock'', a radio format program on [[Kbeach#22 West Radio|KBeach.org]] (2011-2013).  {{Highlight|While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Career ==&lt;br /&gt;
In 2005, Youmans earned a voice-over part, playing Becky Thatcher in Disney's ''[[Tom Sawyer's Island]]'' and the following year, won the part of Shana the Rock Star in a pre-production musical ''[[Teen Witch the Musical]]'' (2007).&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt; These accomplishments led to featured artist performances on the soundtrack for [[Moondance Alexander]] (2007).&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;/&amp;gt; Youmans' single, &amp;quot;Girl to Change Your World&amp;quot;, was a (2011) hit on [[Radio Disney]],&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; and it is one of the two Youmans songs included in the film ''Love by Design'' (2014), starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]].&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;The [[Teen Witch the Musical]] project was successful in its primary goal of reproducing the missing soundtrack for the Halloween classic film [[Teen Witch]] (1989).&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt; The musical stage-play never made it out of [[Workshop production|workshop]] and has yet to achieve the secondary goal of becoming a viable [[Broadway theatre|Broadway]] offering.&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;/&amp;gt; This association with Weir Brothers Productions led to additional soundtrack features in the films ''[[Moondance Alexander]]'' (2007), ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
While concurrently studying journalism and music, Youmans auditioned and stacked up credits in Southern California regional theater and wrote for national and regional newspapers on entertainment topics. &amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; She has produced and hosted an entertainment format radio show,&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; interviewed entertainment industry legends,&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt; and ran a marketing campaign for [[Jon MacLennan|Jon MacLennan's]] iBook, ''Melodic Expressions: The Art of the Line'' (2012).&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;/&amp;gt; She works as a communications professional in [[Los Angeles]].&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Theatre and live performances ===&lt;br /&gt;
==== Beverly Hills opener  ====&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;&lt;br /&gt;
==== American Idol ====&lt;br /&gt;
In 2012, Youmans performed &amp;quot;[[Some Kind of Wonderful (The Drifters song)|Some Kind of Wonderful]]&amp;quot; at the [[American Idol]] San Diego competition and won a golden ticket after a unanimous decision from the judges ([[Steven Tyler]], [[Jennifer Lopez]] and [[Randy Jackson]]), which advanced her to the [[American Idol (season 11)#Hollywood week and Vegas rounds|''Hollywood Week'']] competition.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  Youmans was eliminated during ''Hollywood Week'' in Season 11. She attributes the elimination to nerves and an ambitious music selection, [[Heart (band)|Heart]]’s &amp;quot;[[Crazy on You]]&amp;quot;.&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable sortable collapsed collapsible&amp;quot; style=&amp;quot;width:98%; margin-right:0; text-align:center;&amp;quot;&lt;br /&gt;
|+ Professional performances and theatre roles&lt;br /&gt;
|-&lt;br /&gt;
! Year&lt;br /&gt;
! Title&lt;br /&gt;
! Role&lt;br /&gt;
! Venue&lt;br /&gt;
! Director/Producer&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[The Music Man]]''||align=&amp;quot;center&amp;quot;|Amarylis||Welk Resort Theatre||Lewis Wilkenfeld&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[Sound of Music]]''||align=&amp;quot;center&amp;quot;|Marta||Welk Resort Theatre||Joshua Carr&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Nellie||Welk Resort Theatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie (musical)|Annie]]''||align=&amp;quot;center&amp;quot;|Orphan Sadie||La Mirada Theatre for the Performing Arts||McCoy Rigby Ent. Glenn Casale&lt;br /&gt;
|-&lt;br /&gt;
|2004||''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Jessie||Saddleback Civic Light Opera||Sheryl Donchey&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[To Kill a Mockingbird]]''||align=&amp;quot;center&amp;quot;|Scout||West Coast Ensemble|| {{sic|hide=y|C. Jaffe/R. Israel}}&lt;br /&gt;
|-&lt;br /&gt;
|2005||UNICEF Snowflake Ball||align=&amp;quot;center&amp;quot;|Opening Soloist||[[Beverly Wilshire Hotel|Regent Beverly Wilshire]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2005|| ''[[Tight Quarters]]''||align=&amp;quot;center&amp;quot;|Lauren||Whitefire Theatre||Jules Aaron&lt;br /&gt;
|-&lt;br /&gt;
|2005||Kodak Christmas||align=&amp;quot;center&amp;quot;|Featured Soloist||[[Dolby Theatre|Kodak Theatre]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2006||''[[Teen Witch the Musical]]''||align=&amp;quot;center&amp;quot;|Shana the Rock Star|| [[Workshop production|workshop]] ||Alana Lambros&lt;br /&gt;
|-&lt;br /&gt;
|2008||[[New Music Weekly]] Awards||align=&amp;quot;center&amp;quot;|Featured Soloist||Avalon Theatre||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2009||''[[42nd Street (musical)|42nd Street]]'' ||align=&amp;quot;center&amp;quot;|Ensemble|| Moonlight Amphitheatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2010|| ''Once Upon A Wedding''||align=&amp;quot;center&amp;quot;|Daisy||Bahia Resort-Dinner Theatre||Laughing Tree Prod.&lt;br /&gt;
|-&lt;br /&gt;
|2010-12|| ''Journey To The Lost Temple''||align=&amp;quot;center&amp;quot;|Pippin||[[Legoland]]-California||Shawn Griener&lt;br /&gt;
|-&lt;br /&gt;
|2012||''[[American Idol]]'' Season 11||align=&amp;quot;center&amp;quot;|Contestant|| [[USS Midway Museum]]|| [[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2012||''American Idol'' Season 11||align=&amp;quot;center&amp;quot;|Hollywood Week||[[Pasadena Civic Auditorium]]||[[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2019||Jason Robert Brown In Concert||align=&amp;quot;center&amp;quot;|Lead singer||Cabaret at the Merc||Gerald Sternbach &lt;br /&gt;
|-&lt;br /&gt;
|2019||Evita In Concert||align=&amp;quot;center&amp;quot;|Ensemble||PVPA||Richard Israel &lt;br /&gt;
|-&lt;br /&gt;
|2020||HAIR||align=&amp;quot;center&amp;quot;|Suzannah 1000-Year-Old Monk||LGBT Center LA||Kate Sullivan Jared Stein&lt;br /&gt;
|-&lt;br /&gt;
|2020||New Year's Eve, National Anthem Singer||align=&amp;quot;center&amp;quot;|Soloist||Staples Center||LA Kings &amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;/&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Recorded and broadcast ===&lt;br /&gt;
&amp;lt;s&amp;gt;In addition to performing in nationally televised commercials, Youmans has been involved in several cutting-edge media projects.&amp;lt;/s&amp;gt;  In 2005, Youmans played the part of Becky Thatcher in Disney's [[Tom Sawyer's Island]], a voice-over project.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  The performance was delivered via hand-held computers issued to visitors on [[Disneyland|Disneyland's]] Tom Sawyer's Island. A pilot project, titled &amp;quot;Available Light&amp;quot;, was one of the first to test Sony Blu-ray camera technology.&lt;br /&gt;
&lt;br /&gt;
==== Soundtracks ====&lt;br /&gt;
* ''[[Teen Witch the Musical]]'' (2007) original cast recording, Weir Brothers Entertainment.&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Moondance Alexander]]'' (2007) starring [[Kay Panabaker]], [[Don Johnson]] and [[Lori Loughlin]], [[20th Century Fox|20th Century Fox Home Entertainment]]&lt;br /&gt;
* ''[[Flicka 2]]'' (2010) starring [[Patrick Warburton]], [[Tammin Sursok]] and [[Clint Black]], [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011) starring [[Travis Turner]] and [[Donnelly Rhodes]],  [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''Love by Design'' (2014) starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]], Gold Line Prod. Int.&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Newport Beach FF&amp;quot;&amp;gt;{{cite web|title=Newport Beach Film Festival|url=https://www.imdb.com/event/ev0000491/2014?ref_=ttawd_ev_1|website=[[IMDb]]|accessdate=1 February 2015|date=2 February 2014|quote=First-time Filmmaker: Winner}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*''High Strung'' (2016) starring [[Keenan Kampa]], Nicholas Galitzine, [[Jane Seymour (actress)|Jane Seymour]], Riviera Films.&amp;lt;ref name=&amp;quot;High Strung&amp;quot;&amp;gt;{{cite web|title=''High Strung''|url=http://www.soundtrack.net/album/high-strung/|website=Soundtrack.net|accessdate=30 March 2016|date=8 April 2016}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Singles ====&lt;br /&gt;
&amp;lt;!--* &amp;quot;Never Gonna Be The Same Again&amp;quot; (2007)&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt;--&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World&amp;quot; (2011)&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World - The Remixes&amp;quot; (2011)&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;In My Arms&amp;quot; (2012)&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;My Kind of Trouble LIVE at the Recordium&amp;quot; (2019)&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Is It Just Me LIVE at the Recordium&amp;quot; (2019)&lt;br /&gt;
* &amp;quot;Shine&amp;quot; (2019)&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;You Made Me Hate Love Songs LIVE at YouTube Space&amp;quot; (2020)&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;A Little Closer To Happy&amp;quot; (2021)&lt;br /&gt;
* &amp;quot;Worth It&amp;quot; (2021)&lt;br /&gt;
&lt;br /&gt;
=== Journalism ===&lt;br /&gt;
Youmans writes about entertainment topics, specifically dance, music, theatre and film. Her Southern California beat includes covering venues, such as the [[Orange County Fair (California)|Orange County Fair]], the Newport Beach Jazz Festival, the [[Playboy Jazz Festival]], Sunset Jazz at Newport, the [[Hollywood Bowl]] and [[Segerstrom Center for the Arts]]. Her freelance position with [[Freedom Communications]] has afforded interviews with: [[George Lopez]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Drew Carey]] and [[Brooke Shields]],&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt;  Grammy Award-winning musicians [[David Sanborn]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Jeff Hamilton (drummer)|Jeff Hamilton]]&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;/&amp;gt; for the ''[[Orange County Register]]'', and her interview with Grammy nominee [[Brian McKnight]] was additionally published in the ''Los Angeles Register''.&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;/&amp;gt; Earlier interviews include, [[Chita Rivera]] for the ''[[Los Angeles Times]]''&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and interviews with [[Ann Wilson]]&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt; and  [[Martina McBride]]&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt; for the [[Los Angeles Times suburban sections|Los Angeles Times Media Group's]] ''Daily Pilot''.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;!--- See http://en.wikipedia.org/wiki/Wikipedia:Footnotes on how to create references using &amp;lt;ref&amp;gt;&amp;lt;/ref&amp;gt; tags which will then appear here automatically --&amp;gt;&lt;br /&gt;
{{Reflist|2| refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student gets golden ticket on 'American Idol'|url=http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|publisher=Daily 49er|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821011818/http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|archivedate=21 August 2014|date=24 January 2012}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;&amp;gt;{{cite web|author1=Giulia Nahmany|title=Giulia Nahmany Love by Design Premiere at Newport Beach Film Festival|url=https://www.youtube.com/watch?v=et6kw-AH0ZA|publisher=Giulia Nahmany YouTube Channel|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821015154/https://www.youtube.com/watch?v=et6kw-AH0ZA|archivedate=21 August 2014|date=20 May 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=TWTM&amp;gt;{{cite web|title=Teen Witch The Musical|url=http://weirbrothersentertainment.com/releases/teen-witch|publisher=Weir Brothers Entertainment|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822014020/http://weirbrothersentertainment.com/releases/teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;&amp;gt;{{cite web|title=Heather Youmans: Credits|url=http://www.allmusic.com/artist/heather-youmans-mn0000643210/credits|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=DelMarTV&amp;gt;{{cite web|title=Del Mar TV Idol Contest 2004|url=http://www.delmartv.com/idol/idol04.html|publisher=Del Mar TV Foundation|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822011402/http://www.delmartv.com/idol/idol04.html|archivedate=22 August 2014|date=10 October 2004|quote=Heather Youmans (1st place)}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;&amp;gt;{{cite web|title=Moondance Alexander Soundtrack|url=http://www.allmusic.com/album/moondance-alexander-mw0000493713|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;&amp;gt;{{cite web|title=2010 MACY Award Winners|url=http://macyawards.com/news/67-news/132-2010-macy-award-winners|publisher=MACY Awards|accessdate=22 August 2014|date=22 May 2010|url-status=dead|archiveurl=https://web.archive.org/web/20140903125715/http://macyawards.com/news/67-news/132-2010-macy-award-winners|archivedate=3 September 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;&amp;gt;{{cite web|title=2009 MACY Award Winners|url=http://macyawards.com/news/67-news/122-2009-macy-award-winners|accessdate=22 August 2014|url-status=dead|archiveurl=https://web.archive.org/web/20140822022545/http://macyawards.com/news/67-news/122-2009-macy-award-winners|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;&amp;gt;{{cite news|last1=Krugen|first1=Pam|title=Strong leads, chemistry make Welk's 'Get Your Gun' a winner|url=http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|newspaper=The San Diego Union-Tribune|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822042246/http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|archivedate=22 August 2014|date=3 September 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=Annie Get Your Gun|url=http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822044216/http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|archivedate=22 August 2014|year=2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=The Sound of Music|url=http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822045133/http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;&amp;gt;{{cite web|last1=Wood|first1=Jennifer M.|title=18 Fun Facts About 'Teen Witch'|url=http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|publisher=mental_floss|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822193830/http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;&amp;gt;{{cite web|title=Girl to Change Your World: Releases|url=http://www.allmusic.com/album/girl-to-change-your-world-mw0002363250/releases|website=[[AllMusic]]|accessdate=23 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - Girl To Change Your World|url=https://www.youtube.com/watch?v=lYU6FLZm9nQ|publisher=Caption Records YouTube Channel|accessdate=23 August 2014|date=7 February 2010}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student loses shot at 'Idol' fame|url=http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|publisher=Daily 49er|accessdate=23 August 2014|archiveurl=https://web.archive.org/web/20140823012031/http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|archivedate=23 August 2014|date=12 February 2012|quote=Still, she said she’s not ashamed of the footage. “Yeah, it sucks,” she said. “Everybody has a bad day. Yeah, it’s unfortunate that they showed me having a bad day, but what can you do?”}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Newport Jazz Festival goes down smooth|url=http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|newspaper=[[Orange County Register]]|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826092910/http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|archivedate=26 August 2014|date=29 May 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;&amp;gt;{{cite web|last1=Schnaidt|first1=Joe|title=Lighting The Way To Hope On Rodeo Drive|url=http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|publisher=Canyon News|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826100957/http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|archivedate=26 August 2014|date=4 December 2005|quote=BEVERLY HILLS — Wednesday, November 30 illuminated Rodeo Drive at Wilshire Boulevard for the annual holiday lighting ceremony with celebrities, sponsors and a ray of hope for children facing poverty, health risks and poor education.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 9 August 2011 | title = Marley &amp;amp; Me The Puppy Years music from and inspired by the motion picture | medium = MP3 &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B005JBC14S&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 4 May 2010 | title = Flicka 2 Original Motion Picture Soundtrack | medium = MP3/CD &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B003JE2EIU&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;JRAY Nom&amp;quot;&amp;gt;{{cite web|title=2009 JRAY Awards|url=http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|publisher=Fulerton Civic Light Opera|accessdate=28 August 2014|archiveurl=https://web.archive.org/web/20140828012354/http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|archivedate=28 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;&amp;gt;{{cite news|last1=Malik|first1=Abhay|title=Alumnus Jon MacLennan's iBook 'Melodic Expressions' advances guitar instruction |url=http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|newspaper=[[Daily Bruin]]|accessdate=8 August 2014|archiveurl=https://web.archive.org/web/20140808121825/http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|archivedate=8 August 2014|date=8 May 2012|quote=Heather Youmans, an “American Idol” contestant and freelance journalist, helped edit the iBook and has expressed excitement over the finished product as well.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;&amp;gt;{{cite web|last1=MacLennan|first1=Jon|title=In My Arms Jon MacLennan (feat. Heather Youmans)|url=https://www.youtube.com/watch?v=G8QJ5aToHxw|publisher=Jon MacLennan YouTube Channel|accessdate=28 August 2014|date=16 July 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - &amp;quot;Never Gonna Be the Same Again&amp;quot; Studio City Sound LIVE|url=https://www.youtube.com/watch?v=rYhEtU1EgUM|publisher=[[Studio City Sound]]|accessdate=28 August 2014|date=3 October 2011}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;iBook Press Release&amp;quot;&amp;gt;{{cite press release|title=Melodic Expressions: The Art of the Line|url=http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|website=www.heatheryoumansmusic.com/|publisher=Jon MacLennan|accessdate=28 August 2014|date=3 May 2013|archiveurl=https://web.archive.org/web/20140828221739/http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|archivedate=28 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Change in tempo for Playboy Jazz Festival&lt;br /&gt;
|url=http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=21 August 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829013440/http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Brooke Shields takes the helm of 'Chicago'&lt;br /&gt;
|url=http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=17 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829014021/http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Sunset Jazz series kicks off in Newport&lt;br /&gt;
|url=http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|accessdate=29 August 2014|newspaper=[[The Orange County Register]]|date=9 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829015132/http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;&amp;gt;{{cite web|title=Weir Brothers Entertainment: Albums|url=http://www.last.fm/label/Weir+Brothers+Entertainment/albums|website=last.fm|publisher=Weir Brothers Entertainment|accessdate=29 August 2014|archiveurl=https://web.archive.org/web/20140829023539/http://www.last.fm/label/Weir+Brothers+Entertainment/albums|archivedate=29 August 2014|year=2011|quote=Girl to Change Your World singles}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Music for most every taste|url=http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|accessdate=29 August 2014|newspaper=Daily Pilot|archiveurl=https://web.archive.org/web/20140829225029/http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=O.C. Fair gets some Heart|url=http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|accessdate=29 August 2014|newspaper=Daily Pilot|date=2 August 2012|archiveurl=https://web.archive.org/web/20140829224632/http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Youmans: Chita Rivera to perform hits from a storied career|url=http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|accessdate=29 August 2014|newspaper=[[The Los Angeles Times]]|date=10 November 2011|archiveurl=https://web.archive.org/web/20140829220754/http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival|url=http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|accessdate=29 August 2014|newspaper=[[Orange County Register]]|date=28 May 2014|archiveurl=https://web.archive.org/web/20140829215845/http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival&lt;br /&gt;
|publisher=Los Angeles Register|date=29 May 2014&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;&amp;gt;{{cite news|title='High Strung' Soundtrack Announced|url=http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|accessdate=3 May 2016|publisher=FILM MUSIC REPORTER|date=9 March 2016|archiveurl=https://web.archive.org/web/20160503051828/http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|archivedate=3 May 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;&amp;gt;{{cite web|author1=Kristyn Burtt|title=Heather Youmans at the Red Carpet Premiere for &amp;quot;High Strung&amp;quot; #HighStrungMovie|url=https://www.youtube.com/watch?v=YOlN1Zt4_I8|website=YouTube.com|publisher=Mingle Media TV|accessdate=3 May 2016|date=30 March 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=Meet This Week's She Rocks Spotlight Series Artists, Including Grammy-Nominated Headliner Mindi Abair | website=Parade | date=2020-04-22 | url=https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-url=https://web.archive.org/web/20200427002753/https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-date=2020-04-27 | url-status=dead | access-date=2020-04-27}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;&amp;gt;{{cite web | title=Daily Discovery: Heather Youmans, &amp;quot;Shine&amp;quot; « American Songwriter | website=American Songwriter | date=2019-11-13 | url=https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200316151706/https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-date=2020-03-16 | url-status=live | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;&amp;gt;{{cite web | last=Buttonow | first=Leslie | title=Front and Center: Heather Youmans, PR &amp;amp; Communications Manager, Fender Musical Instruments Corporation – the WiMN - The Women's International Music Network | website=thewimn.com | date=2019-05-01 | url=https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-url=https://web.archive.org/web/20200426083920/https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-date=2020-04-26 | url-status=unfit | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;&amp;gt;{{cite web | title=Premiere: Singer-Songwriter Heather Youmans Reveals Latest Single &amp;quot;Shine&amp;quot; + Music Video | website=Elicit Magazine | date=2019-10-18 | url=http://www.elicitmagazine.com/heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200428035459/http://www.elicitmagazine.com/heather-youmans-shine/ | archive-date=2020-04-28 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;&amp;gt;{{cite web |url= https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble |title= Heather Youmans Gets Honest And Real In &amp;quot;My Kind Of Trouble&amp;quot; |date= 2019-08-13 |website= BuzzMusic |access-date= 2020-04-27 |archive-date= 2020-04-28 |archive-url= https://web.archive.org/web/20200428034603/https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;&amp;gt;{{cite web | title=Emerging Headliner: Heather Youmans | website=Headliner Magazine | date=2020-02-25 | url=https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-url=https://web.archive.org/web/20200225061919/https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-date=2020-02-25 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;&amp;gt;{{cite web | last=Brunner | first=Jeryl | title=Why This Successful Singer-Songwriter Won't Give Up Her Day Job | website=Forbes | date=2020-09-30 | url=https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/ | access-date=2020-10-01 |archive-url=https://web.archive.org/web/20201001011624if_/https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/?fbclid=IwAR3q2uGBNQP6MO-2pr57Mopo6AM0b_lktTAEhvQKHD6XhTNH5jSQoOQpiT4#5d2b64a67b7e|archive-date=2020-10-01}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=You're Gonna Feel the Joy of Heather Youmans' Video for 'Shine' | website=Parade: Entertainment, Recipes, Health, Life, Holidays | date=2020-10-06 | url=https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-url=https://web.archive.org/web/20201007032747/https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-date=2020-10-07 | url-status=dead | access-date=2020-10-07}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;&amp;gt;{{cite web | title=Heather Youmans Releases 'Shine' As Love Letter To Younger Self | website=Headliner Magazine | url=https://headlinermagazine.net/blog/heather-youmans-releases-shine-as-love-letter-to-younger-self.html | access-date=2020-10-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;&amp;gt;{{cite AV media  | people = Heather Youmans  | date = 2020-10-28  | title = The Tap Dancer Performs &amp;quot;Youngblood&amp;quot; By 5 Seconds Of Summer - Season 1 Ep. 4 - I CAN SEE YOUR VOICE  | language = en  | url = https://www.youtube.com/watch?v=Z5rghUxRero  | access-date = 2020-10-31  | publisher = FOX }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot;&amp;gt;{{cite web | title=Column: Singer from Vista stuns panel in new Fox reality series | website=San Diego Union-Tribune | date=2020-11-14 | url=https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-url=https://web.archive.org/web/20201118211051/https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-date=2020-11-18 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot;&amp;gt;{{cite web | last=Upadhyay | first=Nayna | title=EXCLUSIVE - Heather Youmans says 'I Can See Your Voice' is all about finding 'singers that America needs to know' | website=MEAWW | date=2020-11-16 | url=https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-url=https://web.archive.org/web/20201116192203/https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-date=2020-11-16 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.heatheryoumans.com Official website]&lt;br /&gt;
* {{YouTube|user=HeatherYoumans|Heather Youmans}}&lt;br /&gt;
* {{Facebook|HeatherYoumansOfficial|Heather Youmans}}&lt;br /&gt;
&amp;lt;!--* {{itunes|us/artist/heather-youmans/id219552589|Heather Youmans}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Youmans, Heather}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Categories &lt;br /&gt;
[[Category:Articles created via the Article Wizard]]---&amp;gt;&lt;br /&gt;
[[Category:1992 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:American stage actresses]]&lt;br /&gt;
[[Category:American women singer-songwriters]]&lt;br /&gt;
[[Category:American musical theatre actresses]]&lt;br /&gt;
[[Category:21st-century American actresses]]&lt;br /&gt;
[[Category:21st-century American singers]]&lt;br /&gt;
[[Category:Musicians from San Diego]]&lt;br /&gt;
[[Category:Musicians from Vista, California]]&lt;br /&gt;
[[Category:American music journalists]]&lt;br /&gt;
[[Category:American women journalists]]&lt;br /&gt;
[[Category:Journalists from California]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--[[Category:American film actresses]]&lt;br /&gt;
[[Category:American television actresses]]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Women writers about music]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Singer-songwriters from California]]&lt;br /&gt;
{{authority control}}&lt;br /&gt;
[[Category:21st-century American women singers]]&lt;br /&gt;
[[Category:21st-century American journalists]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6293</id>
		<title>Draft: Heather Youmans</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6293"/>
		<updated>2024-02-29T20:10:17Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: remove twice&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{short description|American singer-songwriter}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox musical artist&lt;br /&gt;
| name             = Heather Youmans&lt;br /&gt;
| image            = File:Heather_Youmans.jpg&lt;br /&gt;
| image_size       =&lt;br /&gt;
| landscape        = &amp;lt;!-- yes, if wide image, otherwise leave blank --&amp;gt;&lt;br /&gt;
| alt              = Heather Youmans sings at 2011 Relay For Life in San Diego, California&lt;br /&gt;
| caption          =&lt;br /&gt;
| birth_name       = Heather Anne Youmans&lt;br /&gt;
| native_name      =&lt;br /&gt;
| native_name_lang =&lt;br /&gt;
| alias            =&lt;br /&gt;
| birth_date       = {{birth date and age|1992|05|16}}&lt;br /&gt;
| birth_place      = [[Vista, California]], U.S.&lt;br /&gt;
| origin           =&lt;br /&gt;
| death_date       = &amp;lt;!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) --&amp;gt;&lt;br /&gt;
| death_place      =&lt;br /&gt;
| genre            = Rock, pop, country, soul&lt;br /&gt;
| occupation       = Singer-songwriter, actor, journalist&lt;br /&gt;
| instrument       = vocals, bass&lt;br /&gt;
| years_active     = 2002–present&lt;br /&gt;
| label            = {{plainlist| &lt;br /&gt;
* Caption Records&lt;br /&gt;
* Weir Brothers Entertainment&lt;br /&gt;
* Suspicious Love Productions}}&lt;br /&gt;
| associated_acts  =&lt;br /&gt;
| website          = {{URL|www.heatheryoumans.com}}&lt;br /&gt;
| module =&lt;br /&gt;
&lt;br /&gt;
  {{Infobox person&lt;br /&gt;
    | education	= {{highlight|[[Master of Business Administration| MBA]]}}&lt;br /&gt;
    | alma_mater = {{highlight|[[California State University, Long Beach]] (2013)}}&lt;br /&gt;
    | television = {{plainlist| [[I Can See Your Voice (American TV series)| ''I Can See Your Voice'']]&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt;}}&lt;br /&gt;
  }}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color: moccasin&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Heather Youmans is an American principal and session singer. Opening for a UNICEF benefit concert in 2005, featuring Sting and Natalie Cole, cemented Youmans' future goals for the stage.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Youmans 2012 LATIMES&amp;quot;&amp;gt;{{cite web | last=Youmans | first=Heather | title=Youmans: Heading to Hollywood | website=Daily Pilot | date=2012-01-26 | url=https://www.latimes.com/socal/daily-pilot/entertainment/tn-dpt-xpm-2012-01-26-tn-dpt-0127-youmans-20120126-story.html | access-date=2024-02-29 | archive-url=https://web.archive.org/web/20230127154132/https://www.latimes.com/socal/daily-pilot/entertainment/tn-dpt-xpm-2012-01-26-tn-dpt-0127-youmans-20120126-story.html|archive-date=2023-01-27}}&amp;lt;/ref&amp;gt;  Opportunities arose with 20th Century Fox motion pictures, both as a singer and songwriter, and Youmans has had a long running association with Disney since 2005.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; Youmans completed a tour of China, ''Disney 100 Wonderland'' in 2024, and enjoys singing the national anthem for professional sports teams (MLB and NHL). Video footage of Youmans' anthem performances have gone viral.&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
'''Heather Youmans''' is an American singer-songwriter, actress, tap dancer and journalist, her work has been featured in ''American Songwriter'' magazine,&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt; [[Forbes|''Forbes Women'']] and ''Parade'' magazine profiled her career and music in 2020.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans tap dancing on [[I Can See Your Voice (American TV series)|''I Can See Your Voice'']] episode 4 (FOX),&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; convinced the judges that she is a professional dancer,&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
a video depicting her delivery of the national anthem and dealing with acoustic delay effect of a large stadium (Oakland Coliseum) went viral on social media in 2021.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Early life ==&lt;br /&gt;
Youmans began landing theatre roles at age ten, such as Amarylis in ''[[The Music Man]]'',  Marta in ''[[The Sound of Music]]'' in 2003,&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;/&amp;gt; as well as Nellie in ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]'' in 2004 at the [[Lawrence Welk|Welk]] Resort Theatre.&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;/&amp;gt;  In 2004, she won first place in the Del Mar TV Idol Contest, Junior Division, at age twelve.&amp;lt;ref name=DelMarTV/&amp;gt; On November 30, 2005, Youmans performed an opening solo at the [[UNICEF]] Snowflake Ball at the [[Beverly Wilshire Hotel|Regent Beverly Wilshire]]. Headlining acts for the evening included, [[Sting (musician)|Sting]], [[Chris Botti]] and [[Natalie Cole]].&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans attended [[Rancho Buena Vista High School]] and was active in the Associated Student Body, dance and drama programs. In 2009, she won the MACY Award for Highest Achievement and Best Supporting Vocal-Female for her role as Rusty in [[Footloose (musical)|''Footloose'']],&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;/&amp;gt; and Best Vocal Female in 2010 for her role as Jo in ''[[Little Women]]''.&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Education ==&lt;br /&gt;
Youmans holds a B.A. in Journalism and Mass Communication with a music minor (classical and jazz vocal at [[Bob Cole Conservatory of Music]]). She graduated [[magna cum laude]] from [[California State University, Long Beach]] (CSULB) in 2013, and graduated with an MBA at CSULB with an emphasis in marketing. During her undergraduate studies, Youmans created and hosted ''Heartbreakers: The Women of Rock'', a radio format program on [[Kbeach#22 West Radio|KBeach.org]] (2011-2013).  {{Highlight|While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Career ==&lt;br /&gt;
In 2005, Youmans earned a voice-over part, playing Becky Thatcher in Disney's ''[[Tom Sawyer's Island]]'' and the following year, won the part of Shana the Rock Star in a pre-production musical ''[[Teen Witch the Musical]]'' (2007).&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt; These accomplishments led to featured artist performances on the soundtrack for [[Moondance Alexander]] (2007).&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;/&amp;gt; Youmans' single, &amp;quot;Girl to Change Your World&amp;quot;, was a (2011) hit on [[Radio Disney]],&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; and it is one of the two Youmans songs included in the film ''Love by Design'' (2014), starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]].&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;The [[Teen Witch the Musical]] project was successful in its primary goal of reproducing the missing soundtrack for the Halloween classic film [[Teen Witch]] (1989).&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt; The musical stage-play never made it out of [[Workshop production|workshop]] and has yet to achieve the secondary goal of becoming a viable [[Broadway theatre|Broadway]] offering.&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;/&amp;gt; This association with Weir Brothers Productions led to additional soundtrack features in the films ''[[Moondance Alexander]]'' (2007), ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
While concurrently studying journalism and music, Youmans auditioned and stacked up credits in Southern California regional theater and wrote for national and regional newspapers on entertainment topics. &amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; She has produced and hosted an entertainment format radio show,&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; interviewed entertainment industry legends,&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt; and ran a marketing campaign for [[Jon MacLennan|Jon MacLennan's]] iBook, ''Melodic Expressions: The Art of the Line'' (2012).&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;/&amp;gt; She works as a communications professional in [[Los Angeles]].&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Theatre and live performances ===&lt;br /&gt;
==== Beverly Hills opener  ====&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;&lt;br /&gt;
==== American Idol ====&lt;br /&gt;
In 2012, Youmans performed &amp;quot;[[Some Kind of Wonderful (The Drifters song)|Some Kind of Wonderful]]&amp;quot; at the [[American Idol]] San Diego competition and won a golden ticket after a unanimous decision from the judges ([[Steven Tyler]], [[Jennifer Lopez]] and [[Randy Jackson]]), which advanced her to the [[American Idol (season 11)#Hollywood week and Vegas rounds|''Hollywood Week'']] competition.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  Youmans was eliminated during ''Hollywood Week'' in Season 11. She attributes the elimination to nerves and an ambitious music selection, [[Heart (band)|Heart]]’s &amp;quot;[[Crazy on You]]&amp;quot;.&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable sortable collapsed collapsible&amp;quot; style=&amp;quot;width:98%; margin-right:0; text-align:center;&amp;quot;&lt;br /&gt;
|+ Professional performances and theatre roles&lt;br /&gt;
|-&lt;br /&gt;
! Year&lt;br /&gt;
! Title&lt;br /&gt;
! Role&lt;br /&gt;
! Venue&lt;br /&gt;
! Director/Producer&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[The Music Man]]''||align=&amp;quot;center&amp;quot;|Amarylis||Welk Resort Theatre||Lewis Wilkenfeld&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[Sound of Music]]''||align=&amp;quot;center&amp;quot;|Marta||Welk Resort Theatre||Joshua Carr&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Nellie||Welk Resort Theatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie (musical)|Annie]]''||align=&amp;quot;center&amp;quot;|Orphan Sadie||La Mirada Theatre for the Performing Arts||McCoy Rigby Ent. Glenn Casale&lt;br /&gt;
|-&lt;br /&gt;
|2004||''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Jessie||Saddleback Civic Light Opera||Sheryl Donchey&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[To Kill a Mockingbird]]''||align=&amp;quot;center&amp;quot;|Scout||West Coast Ensemble|| {{sic|hide=y|C. Jaffe/R. Israel}}&lt;br /&gt;
|-&lt;br /&gt;
|2005||UNICEF Snowflake Ball||align=&amp;quot;center&amp;quot;|Opening Soloist||[[Beverly Wilshire Hotel|Regent Beverly Wilshire]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2005|| ''[[Tight Quarters]]''||align=&amp;quot;center&amp;quot;|Lauren||Whitefire Theatre||Jules Aaron&lt;br /&gt;
|-&lt;br /&gt;
|2005||Kodak Christmas||align=&amp;quot;center&amp;quot;|Featured Soloist||[[Dolby Theatre|Kodak Theatre]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2006||''[[Teen Witch the Musical]]''||align=&amp;quot;center&amp;quot;|Shana the Rock Star|| [[Workshop production|workshop]] ||Alana Lambros&lt;br /&gt;
|-&lt;br /&gt;
|2008||[[New Music Weekly]] Awards||align=&amp;quot;center&amp;quot;|Featured Soloist||Avalon Theatre||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2009||''[[42nd Street (musical)|42nd Street]]'' ||align=&amp;quot;center&amp;quot;|Ensemble|| Moonlight Amphitheatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2010|| ''Once Upon A Wedding''||align=&amp;quot;center&amp;quot;|Daisy||Bahia Resort-Dinner Theatre||Laughing Tree Prod.&lt;br /&gt;
|-&lt;br /&gt;
|2010-12|| ''Journey To The Lost Temple''||align=&amp;quot;center&amp;quot;|Pippin||[[Legoland]]-California||Shawn Griener&lt;br /&gt;
|-&lt;br /&gt;
|2012||''[[American Idol]]'' Season 11||align=&amp;quot;center&amp;quot;|Contestant|| [[USS Midway Museum]]|| [[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2012||''American Idol'' Season 11||align=&amp;quot;center&amp;quot;|Hollywood Week||[[Pasadena Civic Auditorium]]||[[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2019||Jason Robert Brown In Concert||align=&amp;quot;center&amp;quot;|Lead singer||Cabaret at the Merc||Gerald Sternbach &lt;br /&gt;
|-&lt;br /&gt;
|2019||Evita In Concert||align=&amp;quot;center&amp;quot;|Ensemble||PVPA||Richard Israel &lt;br /&gt;
|-&lt;br /&gt;
|2020||HAIR||align=&amp;quot;center&amp;quot;|Suzannah 1000-Year-Old Monk||LGBT Center LA||Kate Sullivan Jared Stein&lt;br /&gt;
|-&lt;br /&gt;
|2020||New Year's Eve, National Anthem Singer||align=&amp;quot;center&amp;quot;|Soloist||Staples Center||LA Kings &amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;/&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Recorded and broadcast ===&lt;br /&gt;
&amp;lt;s&amp;gt;In addition to performing in nationally televised commercials, Youmans has been involved in several cutting-edge media projects.&amp;lt;/s&amp;gt;  In 2005, Youmans played the part of Becky Thatcher in Disney's [[Tom Sawyer's Island]], a voice-over project.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  The performance was delivered via hand-held computers issued to visitors on [[Disneyland|Disneyland's]] Tom Sawyer's Island. A pilot project, titled &amp;quot;Available Light&amp;quot;, was one of the first to test Sony Blu-ray camera technology.&lt;br /&gt;
&lt;br /&gt;
==== Soundtracks ====&lt;br /&gt;
* ''[[Teen Witch the Musical]]'' (2007) original cast recording, Weir Brothers Entertainment.&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Moondance Alexander]]'' (2007) starring [[Kay Panabaker]], [[Don Johnson]] and [[Lori Loughlin]], [[20th Century Fox|20th Century Fox Home Entertainment]]&lt;br /&gt;
* ''[[Flicka 2]]'' (2010) starring [[Patrick Warburton]], [[Tammin Sursok]] and [[Clint Black]], [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011) starring [[Travis Turner]] and [[Donnelly Rhodes]],  [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''Love by Design'' (2014) starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]], Gold Line Prod. Int.&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Newport Beach FF&amp;quot;&amp;gt;{{cite web|title=Newport Beach Film Festival|url=https://www.imdb.com/event/ev0000491/2014?ref_=ttawd_ev_1|website=[[IMDb]]|accessdate=1 February 2015|date=2 February 2014|quote=First-time Filmmaker: Winner}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*''High Strung'' (2016) starring [[Keenan Kampa]], Nicholas Galitzine, [[Jane Seymour (actress)|Jane Seymour]], Riviera Films.&amp;lt;ref name=&amp;quot;High Strung&amp;quot;&amp;gt;{{cite web|title=''High Strung''|url=http://www.soundtrack.net/album/high-strung/|website=Soundtrack.net|accessdate=30 March 2016|date=8 April 2016}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Singles ====&lt;br /&gt;
&amp;lt;!--* &amp;quot;Never Gonna Be The Same Again&amp;quot; (2007)&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt;--&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World&amp;quot; (2011)&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World - The Remixes&amp;quot; (2011)&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;In My Arms&amp;quot; (2012)&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;My Kind of Trouble LIVE at the Recordium&amp;quot; (2019)&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Is It Just Me LIVE at the Recordium&amp;quot; (2019)&lt;br /&gt;
* &amp;quot;Shine&amp;quot; (2019)&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;You Made Me Hate Love Songs LIVE at YouTube Space&amp;quot; (2020)&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;A Little Closer To Happy&amp;quot; (2021)&lt;br /&gt;
* &amp;quot;Worth It&amp;quot; (2021)&lt;br /&gt;
&lt;br /&gt;
=== Journalism ===&lt;br /&gt;
Youmans writes about entertainment topics, specifically dance, music, theatre and film. Her Southern California beat includes covering venues, such as the [[Orange County Fair (California)|Orange County Fair]], the Newport Beach Jazz Festival, the [[Playboy Jazz Festival]], Sunset Jazz at Newport, the [[Hollywood Bowl]] and [[Segerstrom Center for the Arts]]. Her freelance position with [[Freedom Communications]] has afforded interviews with: [[George Lopez]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Drew Carey]] and [[Brooke Shields]],&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt;  Grammy Award-winning musicians [[David Sanborn]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Jeff Hamilton (drummer)|Jeff Hamilton]]&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;/&amp;gt; for the ''[[Orange County Register]]'', and her interview with Grammy nominee [[Brian McKnight]] was additionally published in the ''Los Angeles Register''.&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;/&amp;gt; Earlier interviews include, [[Chita Rivera]] for the ''[[Los Angeles Times]]''&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and interviews with [[Ann Wilson]]&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt; and  [[Martina McBride]]&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt; for the [[Los Angeles Times suburban sections|Los Angeles Times Media Group's]] ''Daily Pilot''.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;!--- See http://en.wikipedia.org/wiki/Wikipedia:Footnotes on how to create references using &amp;lt;ref&amp;gt;&amp;lt;/ref&amp;gt; tags which will then appear here automatically --&amp;gt;&lt;br /&gt;
{{Reflist|2| refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student gets golden ticket on 'American Idol'|url=http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|publisher=Daily 49er|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821011818/http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|archivedate=21 August 2014|date=24 January 2012}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;&amp;gt;{{cite web|author1=Giulia Nahmany|title=Giulia Nahmany Love by Design Premiere at Newport Beach Film Festival|url=https://www.youtube.com/watch?v=et6kw-AH0ZA|publisher=Giulia Nahmany YouTube Channel|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821015154/https://www.youtube.com/watch?v=et6kw-AH0ZA|archivedate=21 August 2014|date=20 May 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=TWTM&amp;gt;{{cite web|title=Teen Witch The Musical|url=http://weirbrothersentertainment.com/releases/teen-witch|publisher=Weir Brothers Entertainment|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822014020/http://weirbrothersentertainment.com/releases/teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;&amp;gt;{{cite web|title=Heather Youmans: Credits|url=http://www.allmusic.com/artist/heather-youmans-mn0000643210/credits|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=DelMarTV&amp;gt;{{cite web|title=Del Mar TV Idol Contest 2004|url=http://www.delmartv.com/idol/idol04.html|publisher=Del Mar TV Foundation|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822011402/http://www.delmartv.com/idol/idol04.html|archivedate=22 August 2014|date=10 October 2004|quote=Heather Youmans (1st place)}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;&amp;gt;{{cite web|title=Moondance Alexander Soundtrack|url=http://www.allmusic.com/album/moondance-alexander-mw0000493713|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;&amp;gt;{{cite web|title=2010 MACY Award Winners|url=http://macyawards.com/news/67-news/132-2010-macy-award-winners|publisher=MACY Awards|accessdate=22 August 2014|date=22 May 2010|url-status=dead|archiveurl=https://web.archive.org/web/20140903125715/http://macyawards.com/news/67-news/132-2010-macy-award-winners|archivedate=3 September 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;&amp;gt;{{cite web|title=2009 MACY Award Winners|url=http://macyawards.com/news/67-news/122-2009-macy-award-winners|accessdate=22 August 2014|url-status=dead|archiveurl=https://web.archive.org/web/20140822022545/http://macyawards.com/news/67-news/122-2009-macy-award-winners|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;&amp;gt;{{cite news|last1=Krugen|first1=Pam|title=Strong leads, chemistry make Welk's 'Get Your Gun' a winner|url=http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|newspaper=The San Diego Union-Tribune|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822042246/http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|archivedate=22 August 2014|date=3 September 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=Annie Get Your Gun|url=http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822044216/http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|archivedate=22 August 2014|year=2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=The Sound of Music|url=http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822045133/http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;&amp;gt;{{cite web|last1=Wood|first1=Jennifer M.|title=18 Fun Facts About 'Teen Witch'|url=http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|publisher=mental_floss|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822193830/http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;&amp;gt;{{cite web|title=Girl to Change Your World: Releases|url=http://www.allmusic.com/album/girl-to-change-your-world-mw0002363250/releases|website=[[AllMusic]]|accessdate=23 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - Girl To Change Your World|url=https://www.youtube.com/watch?v=lYU6FLZm9nQ|publisher=Caption Records YouTube Channel|accessdate=23 August 2014|date=7 February 2010}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student loses shot at 'Idol' fame|url=http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|publisher=Daily 49er|accessdate=23 August 2014|archiveurl=https://web.archive.org/web/20140823012031/http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|archivedate=23 August 2014|date=12 February 2012|quote=Still, she said she’s not ashamed of the footage. “Yeah, it sucks,” she said. “Everybody has a bad day. Yeah, it’s unfortunate that they showed me having a bad day, but what can you do?”}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Newport Jazz Festival goes down smooth|url=http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|newspaper=[[Orange County Register]]|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826092910/http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|archivedate=26 August 2014|date=29 May 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;&amp;gt;{{cite web|last1=Schnaidt|first1=Joe|title=Lighting The Way To Hope On Rodeo Drive|url=http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|publisher=Canyon News|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826100957/http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|archivedate=26 August 2014|date=4 December 2005|quote=BEVERLY HILLS — Wednesday, November 30 illuminated Rodeo Drive at Wilshire Boulevard for the annual holiday lighting ceremony with celebrities, sponsors and a ray of hope for children facing poverty, health risks and poor education.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 9 August 2011 | title = Marley &amp;amp; Me The Puppy Years music from and inspired by the motion picture | medium = MP3 &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B005JBC14S&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 4 May 2010 | title = Flicka 2 Original Motion Picture Soundtrack | medium = MP3/CD &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B003JE2EIU&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;JRAY Nom&amp;quot;&amp;gt;{{cite web|title=2009 JRAY Awards|url=http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|publisher=Fulerton Civic Light Opera|accessdate=28 August 2014|archiveurl=https://web.archive.org/web/20140828012354/http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|archivedate=28 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;&amp;gt;{{cite news|last1=Malik|first1=Abhay|title=Alumnus Jon MacLennan's iBook 'Melodic Expressions' advances guitar instruction |url=http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|newspaper=[[Daily Bruin]]|accessdate=8 August 2014|archiveurl=https://web.archive.org/web/20140808121825/http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|archivedate=8 August 2014|date=8 May 2012|quote=Heather Youmans, an “American Idol” contestant and freelance journalist, helped edit the iBook and has expressed excitement over the finished product as well.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;&amp;gt;{{cite web|last1=MacLennan|first1=Jon|title=In My Arms Jon MacLennan (feat. Heather Youmans)|url=https://www.youtube.com/watch?v=G8QJ5aToHxw|publisher=Jon MacLennan YouTube Channel|accessdate=28 August 2014|date=16 July 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - &amp;quot;Never Gonna Be the Same Again&amp;quot; Studio City Sound LIVE|url=https://www.youtube.com/watch?v=rYhEtU1EgUM|publisher=[[Studio City Sound]]|accessdate=28 August 2014|date=3 October 2011}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;iBook Press Release&amp;quot;&amp;gt;{{cite press release|title=Melodic Expressions: The Art of the Line|url=http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|website=www.heatheryoumansmusic.com/|publisher=Jon MacLennan|accessdate=28 August 2014|date=3 May 2013|archiveurl=https://web.archive.org/web/20140828221739/http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|archivedate=28 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Change in tempo for Playboy Jazz Festival&lt;br /&gt;
|url=http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=21 August 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829013440/http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Brooke Shields takes the helm of 'Chicago'&lt;br /&gt;
|url=http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=17 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829014021/http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Sunset Jazz series kicks off in Newport&lt;br /&gt;
|url=http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|accessdate=29 August 2014|newspaper=[[The Orange County Register]]|date=9 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829015132/http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;&amp;gt;{{cite web|title=Weir Brothers Entertainment: Albums|url=http://www.last.fm/label/Weir+Brothers+Entertainment/albums|website=last.fm|publisher=Weir Brothers Entertainment|accessdate=29 August 2014|archiveurl=https://web.archive.org/web/20140829023539/http://www.last.fm/label/Weir+Brothers+Entertainment/albums|archivedate=29 August 2014|year=2011|quote=Girl to Change Your World singles}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Music for most every taste|url=http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|accessdate=29 August 2014|newspaper=Daily Pilot|archiveurl=https://web.archive.org/web/20140829225029/http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=O.C. Fair gets some Heart|url=http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|accessdate=29 August 2014|newspaper=Daily Pilot|date=2 August 2012|archiveurl=https://web.archive.org/web/20140829224632/http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Youmans: Chita Rivera to perform hits from a storied career|url=http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|accessdate=29 August 2014|newspaper=[[The Los Angeles Times]]|date=10 November 2011|archiveurl=https://web.archive.org/web/20140829220754/http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival|url=http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|accessdate=29 August 2014|newspaper=[[Orange County Register]]|date=28 May 2014|archiveurl=https://web.archive.org/web/20140829215845/http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival&lt;br /&gt;
|publisher=Los Angeles Register|date=29 May 2014&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;&amp;gt;{{cite news|title='High Strung' Soundtrack Announced|url=http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|accessdate=3 May 2016|publisher=FILM MUSIC REPORTER|date=9 March 2016|archiveurl=https://web.archive.org/web/20160503051828/http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|archivedate=3 May 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;&amp;gt;{{cite web|author1=Kristyn Burtt|title=Heather Youmans at the Red Carpet Premiere for &amp;quot;High Strung&amp;quot; #HighStrungMovie|url=https://www.youtube.com/watch?v=YOlN1Zt4_I8|website=YouTube.com|publisher=Mingle Media TV|accessdate=3 May 2016|date=30 March 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=Meet This Week's She Rocks Spotlight Series Artists, Including Grammy-Nominated Headliner Mindi Abair | website=Parade | date=2020-04-22 | url=https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-url=https://web.archive.org/web/20200427002753/https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-date=2020-04-27 | url-status=dead | access-date=2020-04-27}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;&amp;gt;{{cite web | title=Daily Discovery: Heather Youmans, &amp;quot;Shine&amp;quot; « American Songwriter | website=American Songwriter | date=2019-11-13 | url=https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200316151706/https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-date=2020-03-16 | url-status=live | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;&amp;gt;{{cite web | last=Buttonow | first=Leslie | title=Front and Center: Heather Youmans, PR &amp;amp; Communications Manager, Fender Musical Instruments Corporation – the WiMN - The Women's International Music Network | website=thewimn.com | date=2019-05-01 | url=https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-url=https://web.archive.org/web/20200426083920/https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-date=2020-04-26 | url-status=unfit | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;&amp;gt;{{cite web | title=Premiere: Singer-Songwriter Heather Youmans Reveals Latest Single &amp;quot;Shine&amp;quot; + Music Video | website=Elicit Magazine | date=2019-10-18 | url=http://www.elicitmagazine.com/heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200428035459/http://www.elicitmagazine.com/heather-youmans-shine/ | archive-date=2020-04-28 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;&amp;gt;{{cite web |url= https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble |title= Heather Youmans Gets Honest And Real In &amp;quot;My Kind Of Trouble&amp;quot; |date= 2019-08-13 |website= BuzzMusic |access-date= 2020-04-27 |archive-date= 2020-04-28 |archive-url= https://web.archive.org/web/20200428034603/https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;&amp;gt;{{cite web | title=Emerging Headliner: Heather Youmans | website=Headliner Magazine | date=2020-02-25 | url=https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-url=https://web.archive.org/web/20200225061919/https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-date=2020-02-25 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;&amp;gt;{{cite web | last=Brunner | first=Jeryl | title=Why This Successful Singer-Songwriter Won't Give Up Her Day Job | website=Forbes | date=2020-09-30 | url=https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/ | access-date=2020-10-01 |archive-url=https://web.archive.org/web/20201001011624if_/https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/?fbclid=IwAR3q2uGBNQP6MO-2pr57Mopo6AM0b_lktTAEhvQKHD6XhTNH5jSQoOQpiT4#5d2b64a67b7e|archive-date=2020-10-01}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=You're Gonna Feel the Joy of Heather Youmans' Video for 'Shine' | website=Parade: Entertainment, Recipes, Health, Life, Holidays | date=2020-10-06 | url=https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-url=https://web.archive.org/web/20201007032747/https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-date=2020-10-07 | url-status=dead | access-date=2020-10-07}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;&amp;gt;{{cite web | title=Heather Youmans Releases 'Shine' As Love Letter To Younger Self | website=Headliner Magazine | url=https://headlinermagazine.net/blog/heather-youmans-releases-shine-as-love-letter-to-younger-self.html | access-date=2020-10-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;&amp;gt;{{cite AV media  | people = Heather Youmans  | date = 2020-10-28  | title = The Tap Dancer Performs &amp;quot;Youngblood&amp;quot; By 5 Seconds Of Summer - Season 1 Ep. 4 - I CAN SEE YOUR VOICE  | language = en  | url = https://www.youtube.com/watch?v=Z5rghUxRero  | access-date = 2020-10-31  | publisher = FOX }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot;&amp;gt;{{cite web | title=Column: Singer from Vista stuns panel in new Fox reality series | website=San Diego Union-Tribune | date=2020-11-14 | url=https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-url=https://web.archive.org/web/20201118211051/https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-date=2020-11-18 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot;&amp;gt;{{cite web | last=Upadhyay | first=Nayna | title=EXCLUSIVE - Heather Youmans says 'I Can See Your Voice' is all about finding 'singers that America needs to know' | website=MEAWW | date=2020-11-16 | url=https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-url=https://web.archive.org/web/20201116192203/https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-date=2020-11-16 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.heatheryoumans.com Official website]&lt;br /&gt;
* {{YouTube|user=HeatherYoumans|Heather Youmans}}&lt;br /&gt;
* {{Facebook|HeatherYoumansOfficial|Heather Youmans}}&lt;br /&gt;
&amp;lt;!--* {{itunes|us/artist/heather-youmans/id219552589|Heather Youmans}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Youmans, Heather}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Categories &lt;br /&gt;
[[Category:Articles created via the Article Wizard]]---&amp;gt;&lt;br /&gt;
[[Category:1992 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:American stage actresses]]&lt;br /&gt;
[[Category:American women singer-songwriters]]&lt;br /&gt;
[[Category:American musical theatre actresses]]&lt;br /&gt;
[[Category:21st-century American actresses]]&lt;br /&gt;
[[Category:21st-century American singers]]&lt;br /&gt;
[[Category:Musicians from San Diego]]&lt;br /&gt;
[[Category:Musicians from Vista, California]]&lt;br /&gt;
[[Category:American music journalists]]&lt;br /&gt;
[[Category:American women journalists]]&lt;br /&gt;
[[Category:Journalists from California]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--[[Category:American film actresses]]&lt;br /&gt;
[[Category:American television actresses]]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Women writers about music]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Singer-songwriters from California]]&lt;br /&gt;
{{authority control}}&lt;br /&gt;
[[Category:21st-century American women singers]]&lt;br /&gt;
[[Category:21st-century American journalists]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6292</id>
		<title>Draft: Heather Youmans</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6292"/>
		<updated>2024-02-29T19:45:33Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: refs&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{short description|American singer-songwriter}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox musical artist&lt;br /&gt;
| name             = Heather Youmans&lt;br /&gt;
| image            = File:Heather_Youmans.jpg&lt;br /&gt;
| image_size       =&lt;br /&gt;
| landscape        = &amp;lt;!-- yes, if wide image, otherwise leave blank --&amp;gt;&lt;br /&gt;
| alt              = Heather Youmans sings at 2011 Relay For Life in San Diego, California&lt;br /&gt;
| caption          =&lt;br /&gt;
| birth_name       = Heather Anne Youmans&lt;br /&gt;
| native_name      =&lt;br /&gt;
| native_name_lang =&lt;br /&gt;
| alias            =&lt;br /&gt;
| birth_date       = {{birth date and age|1992|05|16}}&lt;br /&gt;
| birth_place      = [[Vista, California]], U.S.&lt;br /&gt;
| origin           =&lt;br /&gt;
| death_date       = &amp;lt;!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) --&amp;gt;&lt;br /&gt;
| death_place      =&lt;br /&gt;
| genre            = Rock, pop, country, soul&lt;br /&gt;
| occupation       = Singer-songwriter, actor, journalist&lt;br /&gt;
| instrument       = vocals, bass&lt;br /&gt;
| years_active     = 2002–present&lt;br /&gt;
| label            = {{plainlist| &lt;br /&gt;
* Caption Records&lt;br /&gt;
* Weir Brothers Entertainment&lt;br /&gt;
* Suspicious Love Productions}}&lt;br /&gt;
| associated_acts  =&lt;br /&gt;
| website          = {{URL|www.heatheryoumans.com}}&lt;br /&gt;
| module =&lt;br /&gt;
&lt;br /&gt;
  {{Infobox person&lt;br /&gt;
    | education	= {{highlight|[[Master of Business Administration| MBA]]}}&lt;br /&gt;
    | alma_mater = {{highlight|[[California State University, Long Beach]] (2013)}}&lt;br /&gt;
    | television = {{plainlist| [[I Can See Your Voice (American TV series)| ''I Can See Your Voice'']]&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt;}}&lt;br /&gt;
  }}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color: moccasin&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Heather Youmans is an American principal and session singer. Opening for a UNICEF benefit concert in 2005, featuring Sting and Natalie Cole, cemented Youmans' future goals for the stage.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Youmans 2012 LATIMES&amp;quot;/&amp;gt;{{cite web | last=Youmans | first=Heather | title=Youmans: Heading to Hollywood | website=Daily Pilot | date=2012-01-26 | url=https://www.latimes.com/socal/daily-pilot/entertainment/tn-dpt-xpm-2012-01-26-tn-dpt-0127-youmans-20120126-story.html | access-date=2024-02-29 | archive-url=https://web.archive.org/web/20230127154132/https://www.latimes.com/socal/daily-pilot/entertainment/tn-dpt-xpm-2012-01-26-tn-dpt-0127-youmans-20120126-story.html|archive-date=2023-01-27}}&amp;lt;/ref&amp;gt;  Opportunities arose with 20th Century Fox motion pictures, both as a singer and songwriter, and Youmans has had a long running association with Disney since 2005.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; Youmans completed a tour of China, ''Disney 100 Wonderland'' in 2024, and enjoys singing the national anthem for professional sports teams (MLB and NHL). Video footage of Youmans' anthem performances have gone viral twice.&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
'''Heather Youmans''' is an American singer-songwriter, actress, tap dancer and journalist, her work has been featured in ''American Songwriter'' magazine,&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt; [[Forbes|''Forbes Women'']] and ''Parade'' magazine profiled her career and music in 2020.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans tap dancing on [[I Can See Your Voice (American TV series)|''I Can See Your Voice'']] episode 4 (FOX),&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; convinced the judges that she is a professional dancer,&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
a video depicting her delivery of the national anthem and dealing with acoustic delay effect of a large stadium (Oakland Coliseum) went viral on social media in 2021.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Early life ==&lt;br /&gt;
Youmans began landing theatre roles at age ten, such as Amarylis in ''[[The Music Man]]'',  Marta in ''[[The Sound of Music]]'' in 2003,&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;/&amp;gt; as well as Nellie in ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]'' in 2004 at the [[Lawrence Welk|Welk]] Resort Theatre.&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;/&amp;gt;  In 2004, she won first place in the Del Mar TV Idol Contest, Junior Division, at age twelve.&amp;lt;ref name=DelMarTV/&amp;gt; On November 30, 2005, Youmans performed an opening solo at the [[UNICEF]] Snowflake Ball at the [[Beverly Wilshire Hotel|Regent Beverly Wilshire]]. Headlining acts for the evening included, [[Sting (musician)|Sting]], [[Chris Botti]] and [[Natalie Cole]].&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans attended [[Rancho Buena Vista High School]] and was active in the Associated Student Body, dance and drama programs. In 2009, she won the MACY Award for Highest Achievement and Best Supporting Vocal-Female for her role as Rusty in [[Footloose (musical)|''Footloose'']],&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;/&amp;gt; and Best Vocal Female in 2010 for her role as Jo in ''[[Little Women]]''.&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Education ==&lt;br /&gt;
Youmans holds a B.A. in Journalism and Mass Communication with a music minor (classical and jazz vocal at [[Bob Cole Conservatory of Music]]). She graduated [[magna cum laude]] from [[California State University, Long Beach]] (CSULB) in 2013, and graduated with an MBA at CSULB with an emphasis in marketing. During her undergraduate studies, Youmans created and hosted ''Heartbreakers: The Women of Rock'', a radio format program on [[Kbeach#22 West Radio|KBeach.org]] (2011-2013).  {{Highlight|While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Career ==&lt;br /&gt;
In 2005, Youmans earned a voice-over part, playing Becky Thatcher in Disney's ''[[Tom Sawyer's Island]]'' and the following year, won the part of Shana the Rock Star in a pre-production musical ''[[Teen Witch the Musical]]'' (2007).&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt; These accomplishments led to featured artist performances on the soundtrack for [[Moondance Alexander]] (2007).&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;/&amp;gt; Youmans' single, &amp;quot;Girl to Change Your World&amp;quot;, was a (2011) hit on [[Radio Disney]],&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; and it is one of the two Youmans songs included in the film ''Love by Design'' (2014), starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]].&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;The [[Teen Witch the Musical]] project was successful in its primary goal of reproducing the missing soundtrack for the Halloween classic film [[Teen Witch]] (1989).&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt; The musical stage-play never made it out of [[Workshop production|workshop]] and has yet to achieve the secondary goal of becoming a viable [[Broadway theatre|Broadway]] offering.&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;/&amp;gt; This association with Weir Brothers Productions led to additional soundtrack features in the films ''[[Moondance Alexander]]'' (2007), ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
While concurrently studying journalism and music, Youmans auditioned and stacked up credits in Southern California regional theater and wrote for national and regional newspapers on entertainment topics. &amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; She has produced and hosted an entertainment format radio show,&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; interviewed entertainment industry legends,&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt; and ran a marketing campaign for [[Jon MacLennan|Jon MacLennan's]] iBook, ''Melodic Expressions: The Art of the Line'' (2012).&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;/&amp;gt; She works as a communications professional in [[Los Angeles]].&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Theatre and live performances ===&lt;br /&gt;
==== Beverly Hills opener  ====&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;&lt;br /&gt;
==== American Idol ====&lt;br /&gt;
In 2012, Youmans performed &amp;quot;[[Some Kind of Wonderful (The Drifters song)|Some Kind of Wonderful]]&amp;quot; at the [[American Idol]] San Diego competition and won a golden ticket after a unanimous decision from the judges ([[Steven Tyler]], [[Jennifer Lopez]] and [[Randy Jackson]]), which advanced her to the [[American Idol (season 11)#Hollywood week and Vegas rounds|''Hollywood Week'']] competition.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  Youmans was eliminated during ''Hollywood Week'' in Season 11. She attributes the elimination to nerves and an ambitious music selection, [[Heart (band)|Heart]]’s &amp;quot;[[Crazy on You]]&amp;quot;.&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable sortable collapsed collapsible&amp;quot; style=&amp;quot;width:98%; margin-right:0; text-align:center;&amp;quot;&lt;br /&gt;
|+ Professional performances and theatre roles&lt;br /&gt;
|-&lt;br /&gt;
! Year&lt;br /&gt;
! Title&lt;br /&gt;
! Role&lt;br /&gt;
! Venue&lt;br /&gt;
! Director/Producer&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[The Music Man]]''||align=&amp;quot;center&amp;quot;|Amarylis||Welk Resort Theatre||Lewis Wilkenfeld&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[Sound of Music]]''||align=&amp;quot;center&amp;quot;|Marta||Welk Resort Theatre||Joshua Carr&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Nellie||Welk Resort Theatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie (musical)|Annie]]''||align=&amp;quot;center&amp;quot;|Orphan Sadie||La Mirada Theatre for the Performing Arts||McCoy Rigby Ent. Glenn Casale&lt;br /&gt;
|-&lt;br /&gt;
|2004||''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Jessie||Saddleback Civic Light Opera||Sheryl Donchey&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[To Kill a Mockingbird]]''||align=&amp;quot;center&amp;quot;|Scout||West Coast Ensemble|| {{sic|hide=y|C. Jaffe/R. Israel}}&lt;br /&gt;
|-&lt;br /&gt;
|2005||UNICEF Snowflake Ball||align=&amp;quot;center&amp;quot;|Opening Soloist||[[Beverly Wilshire Hotel|Regent Beverly Wilshire]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2005|| ''[[Tight Quarters]]''||align=&amp;quot;center&amp;quot;|Lauren||Whitefire Theatre||Jules Aaron&lt;br /&gt;
|-&lt;br /&gt;
|2005||Kodak Christmas||align=&amp;quot;center&amp;quot;|Featured Soloist||[[Dolby Theatre|Kodak Theatre]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2006||''[[Teen Witch the Musical]]''||align=&amp;quot;center&amp;quot;|Shana the Rock Star|| [[Workshop production|workshop]] ||Alana Lambros&lt;br /&gt;
|-&lt;br /&gt;
|2008||[[New Music Weekly]] Awards||align=&amp;quot;center&amp;quot;|Featured Soloist||Avalon Theatre||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2009||''[[42nd Street (musical)|42nd Street]]'' ||align=&amp;quot;center&amp;quot;|Ensemble|| Moonlight Amphitheatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2010|| ''Once Upon A Wedding''||align=&amp;quot;center&amp;quot;|Daisy||Bahia Resort-Dinner Theatre||Laughing Tree Prod.&lt;br /&gt;
|-&lt;br /&gt;
|2010-12|| ''Journey To The Lost Temple''||align=&amp;quot;center&amp;quot;|Pippin||[[Legoland]]-California||Shawn Griener&lt;br /&gt;
|-&lt;br /&gt;
|2012||''[[American Idol]]'' Season 11||align=&amp;quot;center&amp;quot;|Contestant|| [[USS Midway Museum]]|| [[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2012||''American Idol'' Season 11||align=&amp;quot;center&amp;quot;|Hollywood Week||[[Pasadena Civic Auditorium]]||[[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2019||Jason Robert Brown In Concert||align=&amp;quot;center&amp;quot;|Lead singer||Cabaret at the Merc||Gerald Sternbach &lt;br /&gt;
|-&lt;br /&gt;
|2019||Evita In Concert||align=&amp;quot;center&amp;quot;|Ensemble||PVPA||Richard Israel &lt;br /&gt;
|-&lt;br /&gt;
|2020||HAIR||align=&amp;quot;center&amp;quot;|Suzannah 1000-Year-Old Monk||LGBT Center LA||Kate Sullivan Jared Stein&lt;br /&gt;
|-&lt;br /&gt;
|2020||New Year's Eve, National Anthem Singer||align=&amp;quot;center&amp;quot;|Soloist||Staples Center||LA Kings &amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;/&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Recorded and broadcast ===&lt;br /&gt;
&amp;lt;s&amp;gt;In addition to performing in nationally televised commercials, Youmans has been involved in several cutting-edge media projects.&amp;lt;/s&amp;gt;  In 2005, Youmans played the part of Becky Thatcher in Disney's [[Tom Sawyer's Island]], a voice-over project.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  The performance was delivered via hand-held computers issued to visitors on [[Disneyland|Disneyland's]] Tom Sawyer's Island. A pilot project, titled &amp;quot;Available Light&amp;quot;, was one of the first to test Sony Blu-ray camera technology.&lt;br /&gt;
&lt;br /&gt;
==== Soundtracks ====&lt;br /&gt;
* ''[[Teen Witch the Musical]]'' (2007) original cast recording, Weir Brothers Entertainment.&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Moondance Alexander]]'' (2007) starring [[Kay Panabaker]], [[Don Johnson]] and [[Lori Loughlin]], [[20th Century Fox|20th Century Fox Home Entertainment]]&lt;br /&gt;
* ''[[Flicka 2]]'' (2010) starring [[Patrick Warburton]], [[Tammin Sursok]] and [[Clint Black]], [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011) starring [[Travis Turner]] and [[Donnelly Rhodes]],  [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''Love by Design'' (2014) starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]], Gold Line Prod. Int.&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Newport Beach FF&amp;quot;&amp;gt;{{cite web|title=Newport Beach Film Festival|url=https://www.imdb.com/event/ev0000491/2014?ref_=ttawd_ev_1|website=[[IMDb]]|accessdate=1 February 2015|date=2 February 2014|quote=First-time Filmmaker: Winner}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*''High Strung'' (2016) starring [[Keenan Kampa]], Nicholas Galitzine, [[Jane Seymour (actress)|Jane Seymour]], Riviera Films.&amp;lt;ref name=&amp;quot;High Strung&amp;quot;&amp;gt;{{cite web|title=''High Strung''|url=http://www.soundtrack.net/album/high-strung/|website=Soundtrack.net|accessdate=30 March 2016|date=8 April 2016}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Singles ====&lt;br /&gt;
&amp;lt;!--* &amp;quot;Never Gonna Be The Same Again&amp;quot; (2007)&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt;--&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World&amp;quot; (2011)&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World - The Remixes&amp;quot; (2011)&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;In My Arms&amp;quot; (2012)&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;My Kind of Trouble LIVE at the Recordium&amp;quot; (2019)&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Is It Just Me LIVE at the Recordium&amp;quot; (2019)&lt;br /&gt;
* &amp;quot;Shine&amp;quot; (2019)&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;You Made Me Hate Love Songs LIVE at YouTube Space&amp;quot; (2020)&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;A Little Closer To Happy&amp;quot; (2021)&lt;br /&gt;
* &amp;quot;Worth It&amp;quot; (2021)&lt;br /&gt;
&lt;br /&gt;
=== Journalism ===&lt;br /&gt;
Youmans writes about entertainment topics, specifically dance, music, theatre and film. Her Southern California beat includes covering venues, such as the [[Orange County Fair (California)|Orange County Fair]], the Newport Beach Jazz Festival, the [[Playboy Jazz Festival]], Sunset Jazz at Newport, the [[Hollywood Bowl]] and [[Segerstrom Center for the Arts]]. Her freelance position with [[Freedom Communications]] has afforded interviews with: [[George Lopez]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Drew Carey]] and [[Brooke Shields]],&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt;  Grammy Award-winning musicians [[David Sanborn]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Jeff Hamilton (drummer)|Jeff Hamilton]]&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;/&amp;gt; for the ''[[Orange County Register]]'', and her interview with Grammy nominee [[Brian McKnight]] was additionally published in the ''Los Angeles Register''.&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;/&amp;gt; Earlier interviews include, [[Chita Rivera]] for the ''[[Los Angeles Times]]''&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and interviews with [[Ann Wilson]]&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt; and  [[Martina McBride]]&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt; for the [[Los Angeles Times suburban sections|Los Angeles Times Media Group's]] ''Daily Pilot''.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;!--- See http://en.wikipedia.org/wiki/Wikipedia:Footnotes on how to create references using &amp;lt;ref&amp;gt;&amp;lt;/ref&amp;gt; tags which will then appear here automatically --&amp;gt;&lt;br /&gt;
{{Reflist|2| refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student gets golden ticket on 'American Idol'|url=http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|publisher=Daily 49er|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821011818/http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|archivedate=21 August 2014|date=24 January 2012}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;&amp;gt;{{cite web|author1=Giulia Nahmany|title=Giulia Nahmany Love by Design Premiere at Newport Beach Film Festival|url=https://www.youtube.com/watch?v=et6kw-AH0ZA|publisher=Giulia Nahmany YouTube Channel|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821015154/https://www.youtube.com/watch?v=et6kw-AH0ZA|archivedate=21 August 2014|date=20 May 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=TWTM&amp;gt;{{cite web|title=Teen Witch The Musical|url=http://weirbrothersentertainment.com/releases/teen-witch|publisher=Weir Brothers Entertainment|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822014020/http://weirbrothersentertainment.com/releases/teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;&amp;gt;{{cite web|title=Heather Youmans: Credits|url=http://www.allmusic.com/artist/heather-youmans-mn0000643210/credits|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=DelMarTV&amp;gt;{{cite web|title=Del Mar TV Idol Contest 2004|url=http://www.delmartv.com/idol/idol04.html|publisher=Del Mar TV Foundation|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822011402/http://www.delmartv.com/idol/idol04.html|archivedate=22 August 2014|date=10 October 2004|quote=Heather Youmans (1st place)}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;&amp;gt;{{cite web|title=Moondance Alexander Soundtrack|url=http://www.allmusic.com/album/moondance-alexander-mw0000493713|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;&amp;gt;{{cite web|title=2010 MACY Award Winners|url=http://macyawards.com/news/67-news/132-2010-macy-award-winners|publisher=MACY Awards|accessdate=22 August 2014|date=22 May 2010|url-status=dead|archiveurl=https://web.archive.org/web/20140903125715/http://macyawards.com/news/67-news/132-2010-macy-award-winners|archivedate=3 September 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;&amp;gt;{{cite web|title=2009 MACY Award Winners|url=http://macyawards.com/news/67-news/122-2009-macy-award-winners|accessdate=22 August 2014|url-status=dead|archiveurl=https://web.archive.org/web/20140822022545/http://macyawards.com/news/67-news/122-2009-macy-award-winners|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;&amp;gt;{{cite news|last1=Krugen|first1=Pam|title=Strong leads, chemistry make Welk's 'Get Your Gun' a winner|url=http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|newspaper=The San Diego Union-Tribune|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822042246/http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|archivedate=22 August 2014|date=3 September 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=Annie Get Your Gun|url=http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822044216/http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|archivedate=22 August 2014|year=2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=The Sound of Music|url=http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822045133/http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;&amp;gt;{{cite web|last1=Wood|first1=Jennifer M.|title=18 Fun Facts About 'Teen Witch'|url=http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|publisher=mental_floss|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822193830/http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;&amp;gt;{{cite web|title=Girl to Change Your World: Releases|url=http://www.allmusic.com/album/girl-to-change-your-world-mw0002363250/releases|website=[[AllMusic]]|accessdate=23 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - Girl To Change Your World|url=https://www.youtube.com/watch?v=lYU6FLZm9nQ|publisher=Caption Records YouTube Channel|accessdate=23 August 2014|date=7 February 2010}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student loses shot at 'Idol' fame|url=http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|publisher=Daily 49er|accessdate=23 August 2014|archiveurl=https://web.archive.org/web/20140823012031/http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|archivedate=23 August 2014|date=12 February 2012|quote=Still, she said she’s not ashamed of the footage. “Yeah, it sucks,” she said. “Everybody has a bad day. Yeah, it’s unfortunate that they showed me having a bad day, but what can you do?”}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Newport Jazz Festival goes down smooth|url=http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|newspaper=[[Orange County Register]]|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826092910/http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|archivedate=26 August 2014|date=29 May 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;&amp;gt;{{cite web|last1=Schnaidt|first1=Joe|title=Lighting The Way To Hope On Rodeo Drive|url=http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|publisher=Canyon News|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826100957/http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|archivedate=26 August 2014|date=4 December 2005|quote=BEVERLY HILLS — Wednesday, November 30 illuminated Rodeo Drive at Wilshire Boulevard for the annual holiday lighting ceremony with celebrities, sponsors and a ray of hope for children facing poverty, health risks and poor education.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 9 August 2011 | title = Marley &amp;amp; Me The Puppy Years music from and inspired by the motion picture | medium = MP3 &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B005JBC14S&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 4 May 2010 | title = Flicka 2 Original Motion Picture Soundtrack | medium = MP3/CD &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B003JE2EIU&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;JRAY Nom&amp;quot;&amp;gt;{{cite web|title=2009 JRAY Awards|url=http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|publisher=Fulerton Civic Light Opera|accessdate=28 August 2014|archiveurl=https://web.archive.org/web/20140828012354/http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|archivedate=28 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;&amp;gt;{{cite news|last1=Malik|first1=Abhay|title=Alumnus Jon MacLennan's iBook 'Melodic Expressions' advances guitar instruction |url=http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|newspaper=[[Daily Bruin]]|accessdate=8 August 2014|archiveurl=https://web.archive.org/web/20140808121825/http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|archivedate=8 August 2014|date=8 May 2012|quote=Heather Youmans, an “American Idol” contestant and freelance journalist, helped edit the iBook and has expressed excitement over the finished product as well.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;&amp;gt;{{cite web|last1=MacLennan|first1=Jon|title=In My Arms Jon MacLennan (feat. Heather Youmans)|url=https://www.youtube.com/watch?v=G8QJ5aToHxw|publisher=Jon MacLennan YouTube Channel|accessdate=28 August 2014|date=16 July 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - &amp;quot;Never Gonna Be the Same Again&amp;quot; Studio City Sound LIVE|url=https://www.youtube.com/watch?v=rYhEtU1EgUM|publisher=[[Studio City Sound]]|accessdate=28 August 2014|date=3 October 2011}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;iBook Press Release&amp;quot;&amp;gt;{{cite press release|title=Melodic Expressions: The Art of the Line|url=http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|website=www.heatheryoumansmusic.com/|publisher=Jon MacLennan|accessdate=28 August 2014|date=3 May 2013|archiveurl=https://web.archive.org/web/20140828221739/http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|archivedate=28 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Change in tempo for Playboy Jazz Festival&lt;br /&gt;
|url=http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=21 August 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829013440/http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Brooke Shields takes the helm of 'Chicago'&lt;br /&gt;
|url=http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=17 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829014021/http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Sunset Jazz series kicks off in Newport&lt;br /&gt;
|url=http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|accessdate=29 August 2014|newspaper=[[The Orange County Register]]|date=9 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829015132/http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;&amp;gt;{{cite web|title=Weir Brothers Entertainment: Albums|url=http://www.last.fm/label/Weir+Brothers+Entertainment/albums|website=last.fm|publisher=Weir Brothers Entertainment|accessdate=29 August 2014|archiveurl=https://web.archive.org/web/20140829023539/http://www.last.fm/label/Weir+Brothers+Entertainment/albums|archivedate=29 August 2014|year=2011|quote=Girl to Change Your World singles}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Music for most every taste|url=http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|accessdate=29 August 2014|newspaper=Daily Pilot|archiveurl=https://web.archive.org/web/20140829225029/http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=O.C. Fair gets some Heart|url=http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|accessdate=29 August 2014|newspaper=Daily Pilot|date=2 August 2012|archiveurl=https://web.archive.org/web/20140829224632/http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Youmans: Chita Rivera to perform hits from a storied career|url=http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|accessdate=29 August 2014|newspaper=[[The Los Angeles Times]]|date=10 November 2011|archiveurl=https://web.archive.org/web/20140829220754/http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival|url=http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|accessdate=29 August 2014|newspaper=[[Orange County Register]]|date=28 May 2014|archiveurl=https://web.archive.org/web/20140829215845/http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival&lt;br /&gt;
|publisher=Los Angeles Register|date=29 May 2014&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;&amp;gt;{{cite news|title='High Strung' Soundtrack Announced|url=http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|accessdate=3 May 2016|publisher=FILM MUSIC REPORTER|date=9 March 2016|archiveurl=https://web.archive.org/web/20160503051828/http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|archivedate=3 May 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;&amp;gt;{{cite web|author1=Kristyn Burtt|title=Heather Youmans at the Red Carpet Premiere for &amp;quot;High Strung&amp;quot; #HighStrungMovie|url=https://www.youtube.com/watch?v=YOlN1Zt4_I8|website=YouTube.com|publisher=Mingle Media TV|accessdate=3 May 2016|date=30 March 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=Meet This Week's She Rocks Spotlight Series Artists, Including Grammy-Nominated Headliner Mindi Abair | website=Parade | date=2020-04-22 | url=https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-url=https://web.archive.org/web/20200427002753/https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-date=2020-04-27 | url-status=dead | access-date=2020-04-27}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;&amp;gt;{{cite web | title=Daily Discovery: Heather Youmans, &amp;quot;Shine&amp;quot; « American Songwriter | website=American Songwriter | date=2019-11-13 | url=https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200316151706/https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-date=2020-03-16 | url-status=live | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;&amp;gt;{{cite web | last=Buttonow | first=Leslie | title=Front and Center: Heather Youmans, PR &amp;amp; Communications Manager, Fender Musical Instruments Corporation – the WiMN - The Women's International Music Network | website=thewimn.com | date=2019-05-01 | url=https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-url=https://web.archive.org/web/20200426083920/https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-date=2020-04-26 | url-status=unfit | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;&amp;gt;{{cite web | title=Premiere: Singer-Songwriter Heather Youmans Reveals Latest Single &amp;quot;Shine&amp;quot; + Music Video | website=Elicit Magazine | date=2019-10-18 | url=http://www.elicitmagazine.com/heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200428035459/http://www.elicitmagazine.com/heather-youmans-shine/ | archive-date=2020-04-28 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;&amp;gt;{{cite web |url= https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble |title= Heather Youmans Gets Honest And Real In &amp;quot;My Kind Of Trouble&amp;quot; |date= 2019-08-13 |website= BuzzMusic |access-date= 2020-04-27 |archive-date= 2020-04-28 |archive-url= https://web.archive.org/web/20200428034603/https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;&amp;gt;{{cite web | title=Emerging Headliner: Heather Youmans | website=Headliner Magazine | date=2020-02-25 | url=https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-url=https://web.archive.org/web/20200225061919/https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-date=2020-02-25 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;&amp;gt;{{cite web | last=Brunner | first=Jeryl | title=Why This Successful Singer-Songwriter Won't Give Up Her Day Job | website=Forbes | date=2020-09-30 | url=https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/ | access-date=2020-10-01 |archive-url=https://web.archive.org/web/20201001011624if_/https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/?fbclid=IwAR3q2uGBNQP6MO-2pr57Mopo6AM0b_lktTAEhvQKHD6XhTNH5jSQoOQpiT4#5d2b64a67b7e|archive-date=2020-10-01}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=You're Gonna Feel the Joy of Heather Youmans' Video for 'Shine' | website=Parade: Entertainment, Recipes, Health, Life, Holidays | date=2020-10-06 | url=https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-url=https://web.archive.org/web/20201007032747/https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-date=2020-10-07 | url-status=dead | access-date=2020-10-07}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;&amp;gt;{{cite web | title=Heather Youmans Releases 'Shine' As Love Letter To Younger Self | website=Headliner Magazine | url=https://headlinermagazine.net/blog/heather-youmans-releases-shine-as-love-letter-to-younger-self.html | access-date=2020-10-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;&amp;gt;{{cite AV media  | people = Heather Youmans  | date = 2020-10-28  | title = The Tap Dancer Performs &amp;quot;Youngblood&amp;quot; By 5 Seconds Of Summer - Season 1 Ep. 4 - I CAN SEE YOUR VOICE  | language = en  | url = https://www.youtube.com/watch?v=Z5rghUxRero  | access-date = 2020-10-31  | publisher = FOX }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot;&amp;gt;{{cite web | title=Column: Singer from Vista stuns panel in new Fox reality series | website=San Diego Union-Tribune | date=2020-11-14 | url=https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-url=https://web.archive.org/web/20201118211051/https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-date=2020-11-18 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot;&amp;gt;{{cite web | last=Upadhyay | first=Nayna | title=EXCLUSIVE - Heather Youmans says 'I Can See Your Voice' is all about finding 'singers that America needs to know' | website=MEAWW | date=2020-11-16 | url=https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-url=https://web.archive.org/web/20201116192203/https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-date=2020-11-16 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.heatheryoumans.com Official website]&lt;br /&gt;
* {{YouTube|user=HeatherYoumans|Heather Youmans}}&lt;br /&gt;
* {{Facebook|HeatherYoumansOfficial|Heather Youmans}}&lt;br /&gt;
&amp;lt;!--* {{itunes|us/artist/heather-youmans/id219552589|Heather Youmans}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Youmans, Heather}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Categories &lt;br /&gt;
[[Category:Articles created via the Article Wizard]]---&amp;gt;&lt;br /&gt;
[[Category:1992 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:American stage actresses]]&lt;br /&gt;
[[Category:American women singer-songwriters]]&lt;br /&gt;
[[Category:American musical theatre actresses]]&lt;br /&gt;
[[Category:21st-century American actresses]]&lt;br /&gt;
[[Category:21st-century American singers]]&lt;br /&gt;
[[Category:Musicians from San Diego]]&lt;br /&gt;
[[Category:Musicians from Vista, California]]&lt;br /&gt;
[[Category:American music journalists]]&lt;br /&gt;
[[Category:American women journalists]]&lt;br /&gt;
[[Category:Journalists from California]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--[[Category:American film actresses]]&lt;br /&gt;
[[Category:American television actresses]]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Women writers about music]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Singer-songwriters from California]]&lt;br /&gt;
{{authority control}}&lt;br /&gt;
[[Category:21st-century American women singers]]&lt;br /&gt;
[[Category:21st-century American journalists]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6291</id>
		<title>Draft: Heather Youmans</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6291"/>
		<updated>2024-02-29T19:22:55Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{short description|American singer-songwriter}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox musical artist&lt;br /&gt;
| name             = Heather Youmans&lt;br /&gt;
| image            = File:Heather_Youmans.jpg&lt;br /&gt;
| image_size       =&lt;br /&gt;
| landscape        = &amp;lt;!-- yes, if wide image, otherwise leave blank --&amp;gt;&lt;br /&gt;
| alt              = Heather Youmans sings at 2011 Relay For Life in San Diego, California&lt;br /&gt;
| caption          =&lt;br /&gt;
| birth_name       = Heather Anne Youmans&lt;br /&gt;
| native_name      =&lt;br /&gt;
| native_name_lang =&lt;br /&gt;
| alias            =&lt;br /&gt;
| birth_date       = {{birth date and age|1992|05|16}}&lt;br /&gt;
| birth_place      = [[Vista, California]], U.S.&lt;br /&gt;
| origin           =&lt;br /&gt;
| death_date       = &amp;lt;!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) --&amp;gt;&lt;br /&gt;
| death_place      =&lt;br /&gt;
| genre            = Rock, pop, country, soul&lt;br /&gt;
| occupation       = Singer-songwriter, actor, journalist&lt;br /&gt;
| instrument       = vocals, bass&lt;br /&gt;
| years_active     = 2002–present&lt;br /&gt;
| label            = {{plainlist| &lt;br /&gt;
* Caption Records&lt;br /&gt;
* Weir Brothers Entertainment&lt;br /&gt;
* Suspicious Love Productions}}&lt;br /&gt;
| associated_acts  =&lt;br /&gt;
| website          = {{URL|www.heatheryoumans.com}}&lt;br /&gt;
| module =&lt;br /&gt;
&lt;br /&gt;
  {{Infobox person&lt;br /&gt;
    | education	= {{highlight|[[Master of Business Administration| MBA]]}}&lt;br /&gt;
    | alma_mater = {{highlight|[[California State University, Long Beach]] (2013)}}&lt;br /&gt;
    | television = {{plainlist| [[I Can See Your Voice (American TV series)| ''I Can See Your Voice'']]&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt;}}&lt;br /&gt;
  }}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color: moccasin&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Heather Youmans is an American principal and session singer. Opening for a UNICEF benefit concert in 2005, featuring Sting and Natalie Cole, cemented Youmans' future goals for the stage.  Opportunities arose with 20th Century Fox motion pictures, both as a singer and songwriter, and Youmans has had a long running association with Disney since 2005. Youmans completed a tour of China, ''Disney 100 Wonderland'' in 2024, and enjoys singing the national anthem for professional sports teams (MLB and NHL). Video footage of Youmans' anthem performances have gone viral twice.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
'''Heather Youmans''' is an American singer-songwriter, actress, tap dancer and journalist, her work has been featured in ''American Songwriter'' magazine,&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt; [[Forbes|''Forbes Women'']] and ''Parade'' magazine profiled her career and music in 2020.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans tap dancing on [[I Can See Your Voice (American TV series)|''I Can See Your Voice'']] episode 4 (FOX),&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; convinced the judges that she is a professional dancer,&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
a video depicting her delivery of the national anthem and dealing with acoustic delay effect of a large stadium (Oakland Coliseum) went viral on social media in 2021.&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Early life ==&lt;br /&gt;
Youmans began landing theatre roles at age ten, such as Amarylis in ''[[The Music Man]]'',  Marta in ''[[The Sound of Music]]'' in 2003,&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;/&amp;gt; as well as Nellie in ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]'' in 2004 at the [[Lawrence Welk|Welk]] Resort Theatre.&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;/&amp;gt;  In 2004, she won first place in the Del Mar TV Idol Contest, Junior Division, at age twelve.&amp;lt;ref name=DelMarTV/&amp;gt; On November 30, 2005, Youmans performed an opening solo at the [[UNICEF]] Snowflake Ball at the [[Beverly Wilshire Hotel|Regent Beverly Wilshire]]. Headlining acts for the evening included, [[Sting (musician)|Sting]], [[Chris Botti]] and [[Natalie Cole]].&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans attended [[Rancho Buena Vista High School]] and was active in the Associated Student Body, dance and drama programs. In 2009, she won the MACY Award for Highest Achievement and Best Supporting Vocal-Female for her role as Rusty in [[Footloose (musical)|''Footloose'']],&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;/&amp;gt; and Best Vocal Female in 2010 for her role as Jo in ''[[Little Women]]''.&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Education ==&lt;br /&gt;
Youmans holds a B.A. in Journalism and Mass Communication with a music minor (classical and jazz vocal at [[Bob Cole Conservatory of Music]]). She graduated [[magna cum laude]] from [[California State University, Long Beach]] (CSULB) in 2013, and graduated with an MBA at CSULB with an emphasis in marketing. During her undergraduate studies, Youmans created and hosted ''Heartbreakers: The Women of Rock'', a radio format program on [[Kbeach#22 West Radio|KBeach.org]] (2011-2013).  {{Highlight|While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Career ==&lt;br /&gt;
In 2005, Youmans earned a voice-over part, playing Becky Thatcher in Disney's ''[[Tom Sawyer's Island]]'' and the following year, won the part of Shana the Rock Star in a pre-production musical ''[[Teen Witch the Musical]]'' (2007).&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt; These accomplishments led to featured artist performances on the soundtrack for [[Moondance Alexander]] (2007).&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;/&amp;gt; Youmans' single, &amp;quot;Girl to Change Your World&amp;quot;, was a (2011) hit on [[Radio Disney]],&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; and it is one of the two Youmans songs included in the film ''Love by Design'' (2014), starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]].&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;The [[Teen Witch the Musical]] project was successful in its primary goal of reproducing the missing soundtrack for the Halloween classic film [[Teen Witch]] (1989).&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt; The musical stage-play never made it out of [[Workshop production|workshop]] and has yet to achieve the secondary goal of becoming a viable [[Broadway theatre|Broadway]] offering.&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;/&amp;gt; This association with Weir Brothers Productions led to additional soundtrack features in the films ''[[Moondance Alexander]]'' (2007), ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
While concurrently studying journalism and music, Youmans auditioned and stacked up credits in Southern California regional theater and wrote for national and regional newspapers on entertainment topics. &amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; She has produced and hosted an entertainment format radio show,&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; interviewed entertainment industry legends,&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt; and ran a marketing campaign for [[Jon MacLennan|Jon MacLennan's]] iBook, ''Melodic Expressions: The Art of the Line'' (2012).&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;/&amp;gt; She works as a communications professional in [[Los Angeles]].&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Theatre and live performances ===&lt;br /&gt;
==== Beverly Hills opener  ====&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;&lt;br /&gt;
==== American Idol ====&lt;br /&gt;
In 2012, Youmans performed &amp;quot;[[Some Kind of Wonderful (The Drifters song)|Some Kind of Wonderful]]&amp;quot; at the [[American Idol]] San Diego competition and won a golden ticket after a unanimous decision from the judges ([[Steven Tyler]], [[Jennifer Lopez]] and [[Randy Jackson]]), which advanced her to the [[American Idol (season 11)#Hollywood week and Vegas rounds|''Hollywood Week'']] competition.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  Youmans was eliminated during ''Hollywood Week'' in Season 11. She attributes the elimination to nerves and an ambitious music selection, [[Heart (band)|Heart]]’s &amp;quot;[[Crazy on You]]&amp;quot;.&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable sortable collapsed collapsible&amp;quot; style=&amp;quot;width:98%; margin-right:0; text-align:center;&amp;quot;&lt;br /&gt;
|+ Professional performances and theatre roles&lt;br /&gt;
|-&lt;br /&gt;
! Year&lt;br /&gt;
! Title&lt;br /&gt;
! Role&lt;br /&gt;
! Venue&lt;br /&gt;
! Director/Producer&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[The Music Man]]''||align=&amp;quot;center&amp;quot;|Amarylis||Welk Resort Theatre||Lewis Wilkenfeld&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[Sound of Music]]''||align=&amp;quot;center&amp;quot;|Marta||Welk Resort Theatre||Joshua Carr&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Nellie||Welk Resort Theatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie (musical)|Annie]]''||align=&amp;quot;center&amp;quot;|Orphan Sadie||La Mirada Theatre for the Performing Arts||McCoy Rigby Ent. Glenn Casale&lt;br /&gt;
|-&lt;br /&gt;
|2004||''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Jessie||Saddleback Civic Light Opera||Sheryl Donchey&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[To Kill a Mockingbird]]''||align=&amp;quot;center&amp;quot;|Scout||West Coast Ensemble|| {{sic|hide=y|C. Jaffe/R. Israel}}&lt;br /&gt;
|-&lt;br /&gt;
|2005||UNICEF Snowflake Ball||align=&amp;quot;center&amp;quot;|Opening Soloist||[[Beverly Wilshire Hotel|Regent Beverly Wilshire]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2005|| ''[[Tight Quarters]]''||align=&amp;quot;center&amp;quot;|Lauren||Whitefire Theatre||Jules Aaron&lt;br /&gt;
|-&lt;br /&gt;
|2005||Kodak Christmas||align=&amp;quot;center&amp;quot;|Featured Soloist||[[Dolby Theatre|Kodak Theatre]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2006||''[[Teen Witch the Musical]]''||align=&amp;quot;center&amp;quot;|Shana the Rock Star|| [[Workshop production|workshop]] ||Alana Lambros&lt;br /&gt;
|-&lt;br /&gt;
|2008||[[New Music Weekly]] Awards||align=&amp;quot;center&amp;quot;|Featured Soloist||Avalon Theatre||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2009||''[[42nd Street (musical)|42nd Street]]'' ||align=&amp;quot;center&amp;quot;|Ensemble|| Moonlight Amphitheatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2010|| ''Once Upon A Wedding''||align=&amp;quot;center&amp;quot;|Daisy||Bahia Resort-Dinner Theatre||Laughing Tree Prod.&lt;br /&gt;
|-&lt;br /&gt;
|2010-12|| ''Journey To The Lost Temple''||align=&amp;quot;center&amp;quot;|Pippin||[[Legoland]]-California||Shawn Griener&lt;br /&gt;
|-&lt;br /&gt;
|2012||''[[American Idol]]'' Season 11||align=&amp;quot;center&amp;quot;|Contestant|| [[USS Midway Museum]]|| [[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2012||''American Idol'' Season 11||align=&amp;quot;center&amp;quot;|Hollywood Week||[[Pasadena Civic Auditorium]]||[[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2019||Jason Robert Brown In Concert||align=&amp;quot;center&amp;quot;|Lead singer||Cabaret at the Merc||Gerald Sternbach &lt;br /&gt;
|-&lt;br /&gt;
|2019||Evita In Concert||align=&amp;quot;center&amp;quot;|Ensemble||PVPA||Richard Israel &lt;br /&gt;
|-&lt;br /&gt;
|2020||HAIR||align=&amp;quot;center&amp;quot;|Suzannah 1000-Year-Old Monk||LGBT Center LA||Kate Sullivan Jared Stein&lt;br /&gt;
|-&lt;br /&gt;
|2020||New Year's Eve, National Anthem Singer||align=&amp;quot;center&amp;quot;|Soloist||Staples Center||LA Kings &amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;/&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Recorded and broadcast ===&lt;br /&gt;
&amp;lt;s&amp;gt;In addition to performing in nationally televised commercials, Youmans has been involved in several cutting-edge media projects.&amp;lt;/s&amp;gt;  In 2005, Youmans played the part of Becky Thatcher in Disney's [[Tom Sawyer's Island]], a voice-over project.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  The performance was delivered via hand-held computers issued to visitors on [[Disneyland|Disneyland's]] Tom Sawyer's Island. A pilot project, titled &amp;quot;Available Light&amp;quot;, was one of the first to test Sony Blu-ray camera technology.&lt;br /&gt;
&lt;br /&gt;
==== Soundtracks ====&lt;br /&gt;
* ''[[Teen Witch the Musical]]'' (2007) original cast recording, Weir Brothers Entertainment.&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Moondance Alexander]]'' (2007) starring [[Kay Panabaker]], [[Don Johnson]] and [[Lori Loughlin]], [[20th Century Fox|20th Century Fox Home Entertainment]]&lt;br /&gt;
* ''[[Flicka 2]]'' (2010) starring [[Patrick Warburton]], [[Tammin Sursok]] and [[Clint Black]], [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011) starring [[Travis Turner]] and [[Donnelly Rhodes]],  [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''Love by Design'' (2014) starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]], Gold Line Prod. Int.&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Newport Beach FF&amp;quot;&amp;gt;{{cite web|title=Newport Beach Film Festival|url=https://www.imdb.com/event/ev0000491/2014?ref_=ttawd_ev_1|website=[[IMDb]]|accessdate=1 February 2015|date=2 February 2014|quote=First-time Filmmaker: Winner}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*''High Strung'' (2016) starring [[Keenan Kampa]], Nicholas Galitzine, [[Jane Seymour (actress)|Jane Seymour]], Riviera Films.&amp;lt;ref name=&amp;quot;High Strung&amp;quot;&amp;gt;{{cite web|title=''High Strung''|url=http://www.soundtrack.net/album/high-strung/|website=Soundtrack.net|accessdate=30 March 2016|date=8 April 2016}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Singles ====&lt;br /&gt;
&amp;lt;!--* &amp;quot;Never Gonna Be The Same Again&amp;quot; (2007)&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt;--&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World&amp;quot; (2011)&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World - The Remixes&amp;quot; (2011)&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;In My Arms&amp;quot; (2012)&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;My Kind of Trouble LIVE at the Recordium&amp;quot; (2019)&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Is It Just Me LIVE at the Recordium&amp;quot; (2019)&lt;br /&gt;
* &amp;quot;Shine&amp;quot; (2019)&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;You Made Me Hate Love Songs LIVE at YouTube Space&amp;quot; (2020)&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;A Little Closer To Happy&amp;quot; (2021)&lt;br /&gt;
* &amp;quot;Worth It&amp;quot; (2021)&lt;br /&gt;
&lt;br /&gt;
=== Journalism ===&lt;br /&gt;
Youmans writes about entertainment topics, specifically dance, music, theatre and film. Her Southern California beat includes covering venues, such as the [[Orange County Fair (California)|Orange County Fair]], the Newport Beach Jazz Festival, the [[Playboy Jazz Festival]], Sunset Jazz at Newport, the [[Hollywood Bowl]] and [[Segerstrom Center for the Arts]]. Her freelance position with [[Freedom Communications]] has afforded interviews with: [[George Lopez]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Drew Carey]] and [[Brooke Shields]],&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt;  Grammy Award-winning musicians [[David Sanborn]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Jeff Hamilton (drummer)|Jeff Hamilton]]&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;/&amp;gt; for the ''[[Orange County Register]]'', and her interview with Grammy nominee [[Brian McKnight]] was additionally published in the ''Los Angeles Register''.&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;/&amp;gt; Earlier interviews include, [[Chita Rivera]] for the ''[[Los Angeles Times]]''&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and interviews with [[Ann Wilson]]&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt; and  [[Martina McBride]]&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt; for the [[Los Angeles Times suburban sections|Los Angeles Times Media Group's]] ''Daily Pilot''.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;!--- See http://en.wikipedia.org/wiki/Wikipedia:Footnotes on how to create references using &amp;lt;ref&amp;gt;&amp;lt;/ref&amp;gt; tags which will then appear here automatically --&amp;gt;&lt;br /&gt;
{{Reflist|2| refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student gets golden ticket on 'American Idol'|url=http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|publisher=Daily 49er|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821011818/http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|archivedate=21 August 2014|date=24 January 2012}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;&amp;gt;{{cite web|author1=Giulia Nahmany|title=Giulia Nahmany Love by Design Premiere at Newport Beach Film Festival|url=https://www.youtube.com/watch?v=et6kw-AH0ZA|publisher=Giulia Nahmany YouTube Channel|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821015154/https://www.youtube.com/watch?v=et6kw-AH0ZA|archivedate=21 August 2014|date=20 May 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=TWTM&amp;gt;{{cite web|title=Teen Witch The Musical|url=http://weirbrothersentertainment.com/releases/teen-witch|publisher=Weir Brothers Entertainment|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822014020/http://weirbrothersentertainment.com/releases/teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;&amp;gt;{{cite web|title=Heather Youmans: Credits|url=http://www.allmusic.com/artist/heather-youmans-mn0000643210/credits|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=DelMarTV&amp;gt;{{cite web|title=Del Mar TV Idol Contest 2004|url=http://www.delmartv.com/idol/idol04.html|publisher=Del Mar TV Foundation|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822011402/http://www.delmartv.com/idol/idol04.html|archivedate=22 August 2014|date=10 October 2004|quote=Heather Youmans (1st place)}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;&amp;gt;{{cite web|title=Moondance Alexander Soundtrack|url=http://www.allmusic.com/album/moondance-alexander-mw0000493713|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;&amp;gt;{{cite web|title=2010 MACY Award Winners|url=http://macyawards.com/news/67-news/132-2010-macy-award-winners|publisher=MACY Awards|accessdate=22 August 2014|date=22 May 2010|url-status=dead|archiveurl=https://web.archive.org/web/20140903125715/http://macyawards.com/news/67-news/132-2010-macy-award-winners|archivedate=3 September 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;&amp;gt;{{cite web|title=2009 MACY Award Winners|url=http://macyawards.com/news/67-news/122-2009-macy-award-winners|accessdate=22 August 2014|url-status=dead|archiveurl=https://web.archive.org/web/20140822022545/http://macyawards.com/news/67-news/122-2009-macy-award-winners|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;&amp;gt;{{cite news|last1=Krugen|first1=Pam|title=Strong leads, chemistry make Welk's 'Get Your Gun' a winner|url=http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|newspaper=The San Diego Union-Tribune|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822042246/http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|archivedate=22 August 2014|date=3 September 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=Annie Get Your Gun|url=http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822044216/http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|archivedate=22 August 2014|year=2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=The Sound of Music|url=http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822045133/http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;&amp;gt;{{cite web|last1=Wood|first1=Jennifer M.|title=18 Fun Facts About 'Teen Witch'|url=http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|publisher=mental_floss|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822193830/http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;&amp;gt;{{cite web|title=Girl to Change Your World: Releases|url=http://www.allmusic.com/album/girl-to-change-your-world-mw0002363250/releases|website=[[AllMusic]]|accessdate=23 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - Girl To Change Your World|url=https://www.youtube.com/watch?v=lYU6FLZm9nQ|publisher=Caption Records YouTube Channel|accessdate=23 August 2014|date=7 February 2010}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student loses shot at 'Idol' fame|url=http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|publisher=Daily 49er|accessdate=23 August 2014|archiveurl=https://web.archive.org/web/20140823012031/http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|archivedate=23 August 2014|date=12 February 2012|quote=Still, she said she’s not ashamed of the footage. “Yeah, it sucks,” she said. “Everybody has a bad day. Yeah, it’s unfortunate that they showed me having a bad day, but what can you do?”}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Newport Jazz Festival goes down smooth|url=http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|newspaper=[[Orange County Register]]|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826092910/http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|archivedate=26 August 2014|date=29 May 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;&amp;gt;{{cite web|last1=Schnaidt|first1=Joe|title=Lighting The Way To Hope On Rodeo Drive|url=http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|publisher=Canyon News|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826100957/http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|archivedate=26 August 2014|date=4 December 2005|quote=BEVERLY HILLS — Wednesday, November 30 illuminated Rodeo Drive at Wilshire Boulevard for the annual holiday lighting ceremony with celebrities, sponsors and a ray of hope for children facing poverty, health risks and poor education.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 9 August 2011 | title = Marley &amp;amp; Me The Puppy Years music from and inspired by the motion picture | medium = MP3 &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B005JBC14S&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 4 May 2010 | title = Flicka 2 Original Motion Picture Soundtrack | medium = MP3/CD &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B003JE2EIU&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;JRAY Nom&amp;quot;&amp;gt;{{cite web|title=2009 JRAY Awards|url=http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|publisher=Fulerton Civic Light Opera|accessdate=28 August 2014|archiveurl=https://web.archive.org/web/20140828012354/http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|archivedate=28 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;&amp;gt;{{cite news|last1=Malik|first1=Abhay|title=Alumnus Jon MacLennan's iBook 'Melodic Expressions' advances guitar instruction |url=http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|newspaper=[[Daily Bruin]]|accessdate=8 August 2014|archiveurl=https://web.archive.org/web/20140808121825/http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|archivedate=8 August 2014|date=8 May 2012|quote=Heather Youmans, an “American Idol” contestant and freelance journalist, helped edit the iBook and has expressed excitement over the finished product as well.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;&amp;gt;{{cite web|last1=MacLennan|first1=Jon|title=In My Arms Jon MacLennan (feat. Heather Youmans)|url=https://www.youtube.com/watch?v=G8QJ5aToHxw|publisher=Jon MacLennan YouTube Channel|accessdate=28 August 2014|date=16 July 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - &amp;quot;Never Gonna Be the Same Again&amp;quot; Studio City Sound LIVE|url=https://www.youtube.com/watch?v=rYhEtU1EgUM|publisher=[[Studio City Sound]]|accessdate=28 August 2014|date=3 October 2011}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;iBook Press Release&amp;quot;&amp;gt;{{cite press release|title=Melodic Expressions: The Art of the Line|url=http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|website=www.heatheryoumansmusic.com/|publisher=Jon MacLennan|accessdate=28 August 2014|date=3 May 2013|archiveurl=https://web.archive.org/web/20140828221739/http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|archivedate=28 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Change in tempo for Playboy Jazz Festival&lt;br /&gt;
|url=http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=21 August 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829013440/http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Brooke Shields takes the helm of 'Chicago'&lt;br /&gt;
|url=http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=17 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829014021/http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Sunset Jazz series kicks off in Newport&lt;br /&gt;
|url=http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|accessdate=29 August 2014|newspaper=[[The Orange County Register]]|date=9 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829015132/http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;&amp;gt;{{cite web|title=Weir Brothers Entertainment: Albums|url=http://www.last.fm/label/Weir+Brothers+Entertainment/albums|website=last.fm|publisher=Weir Brothers Entertainment|accessdate=29 August 2014|archiveurl=https://web.archive.org/web/20140829023539/http://www.last.fm/label/Weir+Brothers+Entertainment/albums|archivedate=29 August 2014|year=2011|quote=Girl to Change Your World singles}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Music for most every taste|url=http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|accessdate=29 August 2014|newspaper=Daily Pilot|archiveurl=https://web.archive.org/web/20140829225029/http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=O.C. Fair gets some Heart|url=http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|accessdate=29 August 2014|newspaper=Daily Pilot|date=2 August 2012|archiveurl=https://web.archive.org/web/20140829224632/http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Youmans: Chita Rivera to perform hits from a storied career|url=http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|accessdate=29 August 2014|newspaper=[[The Los Angeles Times]]|date=10 November 2011|archiveurl=https://web.archive.org/web/20140829220754/http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival|url=http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|accessdate=29 August 2014|newspaper=[[Orange County Register]]|date=28 May 2014|archiveurl=https://web.archive.org/web/20140829215845/http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival&lt;br /&gt;
|publisher=Los Angeles Register|date=29 May 2014&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;&amp;gt;{{cite news|title='High Strung' Soundtrack Announced|url=http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|accessdate=3 May 2016|publisher=FILM MUSIC REPORTER|date=9 March 2016|archiveurl=https://web.archive.org/web/20160503051828/http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|archivedate=3 May 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;&amp;gt;{{cite web|author1=Kristyn Burtt|title=Heather Youmans at the Red Carpet Premiere for &amp;quot;High Strung&amp;quot; #HighStrungMovie|url=https://www.youtube.com/watch?v=YOlN1Zt4_I8|website=YouTube.com|publisher=Mingle Media TV|accessdate=3 May 2016|date=30 March 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=Meet This Week's She Rocks Spotlight Series Artists, Including Grammy-Nominated Headliner Mindi Abair | website=Parade | date=2020-04-22 | url=https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-url=https://web.archive.org/web/20200427002753/https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-date=2020-04-27 | url-status=dead | access-date=2020-04-27}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;&amp;gt;{{cite web | title=Daily Discovery: Heather Youmans, &amp;quot;Shine&amp;quot; « American Songwriter | website=American Songwriter | date=2019-11-13 | url=https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200316151706/https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-date=2020-03-16 | url-status=live | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;&amp;gt;{{cite web | last=Buttonow | first=Leslie | title=Front and Center: Heather Youmans, PR &amp;amp; Communications Manager, Fender Musical Instruments Corporation – the WiMN - The Women's International Music Network | website=thewimn.com | date=2019-05-01 | url=https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-url=https://web.archive.org/web/20200426083920/https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-date=2020-04-26 | url-status=unfit | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;&amp;gt;{{cite web | title=Premiere: Singer-Songwriter Heather Youmans Reveals Latest Single &amp;quot;Shine&amp;quot; + Music Video | website=Elicit Magazine | date=2019-10-18 | url=http://www.elicitmagazine.com/heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200428035459/http://www.elicitmagazine.com/heather-youmans-shine/ | archive-date=2020-04-28 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;&amp;gt;{{cite web |url= https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble |title= Heather Youmans Gets Honest And Real In &amp;quot;My Kind Of Trouble&amp;quot; |date= 2019-08-13 |website= BuzzMusic |access-date= 2020-04-27 |archive-date= 2020-04-28 |archive-url= https://web.archive.org/web/20200428034603/https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;&amp;gt;{{cite web | title=Emerging Headliner: Heather Youmans | website=Headliner Magazine | date=2020-02-25 | url=https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-url=https://web.archive.org/web/20200225061919/https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-date=2020-02-25 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;&amp;gt;{{cite web | last=Brunner | first=Jeryl | title=Why This Successful Singer-Songwriter Won't Give Up Her Day Job | website=Forbes | date=2020-09-30 | url=https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/ | access-date=2020-10-01 |archive-url=https://web.archive.org/web/20201001011624if_/https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/?fbclid=IwAR3q2uGBNQP6MO-2pr57Mopo6AM0b_lktTAEhvQKHD6XhTNH5jSQoOQpiT4#5d2b64a67b7e|archive-date=2020-10-01}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=You're Gonna Feel the Joy of Heather Youmans' Video for 'Shine' | website=Parade: Entertainment, Recipes, Health, Life, Holidays | date=2020-10-06 | url=https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-url=https://web.archive.org/web/20201007032747/https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-date=2020-10-07 | url-status=dead | access-date=2020-10-07}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;&amp;gt;{{cite web | title=Heather Youmans Releases 'Shine' As Love Letter To Younger Self | website=Headliner Magazine | url=https://headlinermagazine.net/blog/heather-youmans-releases-shine-as-love-letter-to-younger-self.html | access-date=2020-10-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;&amp;gt;{{cite AV media  | people = Heather Youmans  | date = 2020-10-28  | title = The Tap Dancer Performs &amp;quot;Youngblood&amp;quot; By 5 Seconds Of Summer - Season 1 Ep. 4 - I CAN SEE YOUR VOICE  | language = en  | url = https://www.youtube.com/watch?v=Z5rghUxRero  | access-date = 2020-10-31  | publisher = FOX }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot;&amp;gt;{{cite web | title=Column: Singer from Vista stuns panel in new Fox reality series | website=San Diego Union-Tribune | date=2020-11-14 | url=https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-url=https://web.archive.org/web/20201118211051/https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-date=2020-11-18 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot;&amp;gt;{{cite web | last=Upadhyay | first=Nayna | title=EXCLUSIVE - Heather Youmans says 'I Can See Your Voice' is all about finding 'singers that America needs to know' | website=MEAWW | date=2020-11-16 | url=https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-url=https://web.archive.org/web/20201116192203/https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-date=2020-11-16 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.heatheryoumans.com Official website]&lt;br /&gt;
* {{YouTube|user=HeatherYoumans|Heather Youmans}}&lt;br /&gt;
* {{Facebook|HeatherYoumansOfficial|Heather Youmans}}&lt;br /&gt;
&amp;lt;!--* {{itunes|us/artist/heather-youmans/id219552589|Heather Youmans}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Youmans, Heather}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Categories &lt;br /&gt;
[[Category:Articles created via the Article Wizard]]---&amp;gt;&lt;br /&gt;
[[Category:1992 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:American stage actresses]]&lt;br /&gt;
[[Category:American women singer-songwriters]]&lt;br /&gt;
[[Category:American musical theatre actresses]]&lt;br /&gt;
[[Category:21st-century American actresses]]&lt;br /&gt;
[[Category:21st-century American singers]]&lt;br /&gt;
[[Category:Musicians from San Diego]]&lt;br /&gt;
[[Category:Musicians from Vista, California]]&lt;br /&gt;
[[Category:American music journalists]]&lt;br /&gt;
[[Category:American women journalists]]&lt;br /&gt;
[[Category:Journalists from California]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--[[Category:American film actresses]]&lt;br /&gt;
[[Category:American television actresses]]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Women writers about music]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Singer-songwriters from California]]&lt;br /&gt;
{{authority control}}&lt;br /&gt;
[[Category:21st-century American women singers]]&lt;br /&gt;
[[Category:21st-century American journalists]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6290</id>
		<title>Draft: Heather Youmans</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6290"/>
		<updated>2024-02-29T02:07:14Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{short description|American singer-songwriter}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox musical artist&lt;br /&gt;
| name             = Heather Youmans&lt;br /&gt;
| image            = File:Heather_Youmans.jpg&lt;br /&gt;
| image_size       =&lt;br /&gt;
| landscape        = &amp;lt;!-- yes, if wide image, otherwise leave blank --&amp;gt;&lt;br /&gt;
| alt              = Heather Youmans sings at 2011 Relay For Life in San Diego, California&lt;br /&gt;
| caption          =&lt;br /&gt;
| birth_name       = Heather Anne Youmans&lt;br /&gt;
| native_name      =&lt;br /&gt;
| native_name_lang =&lt;br /&gt;
| alias            =&lt;br /&gt;
| birth_date       = {{birth date and age|1992|05|16}}&lt;br /&gt;
| birth_place      = [[Vista, California]], U.S.&lt;br /&gt;
| origin           =&lt;br /&gt;
| death_date       = &amp;lt;!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) --&amp;gt;&lt;br /&gt;
| death_place      =&lt;br /&gt;
| genre            = Rock, pop, country, soul&lt;br /&gt;
| occupation       = Singer-songwriter, actor, journalist&lt;br /&gt;
| instrument       = vocals, bass&lt;br /&gt;
| years_active     = 2002–present&lt;br /&gt;
| label            = {{plainlist| &lt;br /&gt;
* Caption Records&lt;br /&gt;
* Weir Brothers Entertainment&lt;br /&gt;
* Suspicious Love Productions}}&lt;br /&gt;
| associated_acts  =&lt;br /&gt;
| website          = {{URL|www.heatheryoumans.com}}&lt;br /&gt;
| module =&lt;br /&gt;
&lt;br /&gt;
  {{Infobox person&lt;br /&gt;
    | education	= {{highlight|[[Master of Business Administration| MBA]]}}&lt;br /&gt;
    | alma_mater = {{highlight|[[California State University, Long Beach]] (2013)}}&lt;br /&gt;
    | television = {{plainlist| [[I Can See Your Voice (American TV series)| ''I Can See Your Voice''&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; ]]}}&lt;br /&gt;
  }}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color: moccasin&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Heather Youmans is an American principal and session singer. Opening for a UNICEF benefit concert in 2005, featuring Sting and Natalie Cole, cemented Youmans' future goals for the stage.  Opportunities arose with 20th Century Fox motion pictures, both as a singer and songwriter, and Youmans has had a long running association with Disney since 2005. Youmans completed a tour of China, ''Disney 100 Wonderland'' in 2024, and enjoys singing the national anthem for professional sports teams (MLB and NHL). Video footage of Youmans' anthem performances have gone viral twice.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
'''Heather Youmans''' is an American singer-songwriter, actress, tap dancer and journalist, her work has been featured in ''American Songwriter'' magazine,&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt; [[Forbes|''Forbes Women'']] and ''Parade'' magazine profiled her career and music in 2020.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans tap dancing on [[I Can See Your Voice (American TV series)|''I Can See Your Voice'']] episode 4 (FOX),&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; convinced the judges that she is a professional dancer,&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
a video depicting her delivery of the national anthem and dealing with acoustic delay effect of a large stadium (Oakland Coliseum) went viral on social media in 2021.&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Early life ==&lt;br /&gt;
Youmans began landing theatre roles at age ten, such as Amarylis in ''[[The Music Man]]'',  Marta in ''[[The Sound of Music]]'' in 2003,&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;/&amp;gt; as well as Nellie in ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]'' in 2004 at the [[Lawrence Welk|Welk]] Resort Theatre.&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;/&amp;gt;  In 2004, she won first place in the Del Mar TV Idol Contest, Junior Division, at age twelve.&amp;lt;ref name=DelMarTV/&amp;gt; On November 30, 2005, Youmans performed an opening solo at the [[UNICEF]] Snowflake Ball at the [[Beverly Wilshire Hotel|Regent Beverly Wilshire]]. Headlining acts for the evening included, [[Sting (musician)|Sting]], [[Chris Botti]] and [[Natalie Cole]].&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans attended [[Rancho Buena Vista High School]] and was active in the Associated Student Body, dance and drama programs. In 2009, she won the MACY Award for Highest Achievement and Best Supporting Vocal-Female for her role as Rusty in [[Footloose (musical)|''Footloose'']],&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;/&amp;gt; and Best Vocal Female in 2010 for her role as Jo in ''[[Little Women]]''.&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Education ==&lt;br /&gt;
Youmans holds a B.A. in Journalism and Mass Communication with a music minor (classical and jazz vocal at [[Bob Cole Conservatory of Music]]). She graduated [[magna cum laude]] from [[California State University, Long Beach]] (CSULB) in 2013, and graduated with an MBA at CSULB with an emphasis in marketing. During her undergraduate studies, Youmans created and hosted ''Heartbreakers: The Women of Rock'', a radio format program on [[Kbeach#22 West Radio|KBeach.org]] (2011-2013).  {{Highlight|While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Career ==&lt;br /&gt;
In 2005, Youmans earned a voice-over part, playing Becky Thatcher in Disney's ''[[Tom Sawyer's Island]]'' and the following year, won the part of Shana the Rock Star in a pre-production musical ''[[Teen Witch the Musical]]'' (2007).&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt; These accomplishments led to featured artist performances on the soundtrack for [[Moondance Alexander]] (2007).&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;/&amp;gt; Youmans' single, &amp;quot;Girl to Change Your World&amp;quot;, was a (2011) hit on [[Radio Disney]],&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; and it is one of the two Youmans songs included in the film ''Love by Design'' (2014), starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]].&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;The [[Teen Witch the Musical]] project was successful in its primary goal of reproducing the missing soundtrack for the Halloween classic film [[Teen Witch]] (1989).&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt; The musical stage-play never made it out of [[Workshop production|workshop]] and has yet to achieve the secondary goal of becoming a viable [[Broadway theatre|Broadway]] offering.&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;/&amp;gt; This association with Weir Brothers Productions led to additional soundtrack features in the films ''[[Moondance Alexander]]'' (2007), ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
While concurrently studying journalism and music, Youmans auditioned and stacked up credits in Southern California regional theater and wrote for national and regional newspapers on entertainment topics. &amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; She has produced and hosted an entertainment format radio show,&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; interviewed entertainment industry legends,&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt; and ran a marketing campaign for [[Jon MacLennan|Jon MacLennan's]] iBook, ''Melodic Expressions: The Art of the Line'' (2012).&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;/&amp;gt; She works as a communications professional in [[Los Angeles]].&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Theatre and live performances ===&lt;br /&gt;
==== Beverly Hills opener  ====&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;&lt;br /&gt;
==== American Idol ====&lt;br /&gt;
In 2012, Youmans performed &amp;quot;[[Some Kind of Wonderful (The Drifters song)|Some Kind of Wonderful]]&amp;quot; at the [[American Idol]] San Diego competition and won a golden ticket after a unanimous decision from the judges ([[Steven Tyler]], [[Jennifer Lopez]] and [[Randy Jackson]]), which advanced her to the [[American Idol (season 11)#Hollywood week and Vegas rounds|''Hollywood Week'']] competition.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  Youmans was eliminated during ''Hollywood Week'' in Season 11. She attributes the elimination to nerves and an ambitious music selection, [[Heart (band)|Heart]]’s &amp;quot;[[Crazy on You]]&amp;quot;.&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable sortable collapsed collapsible&amp;quot; style=&amp;quot;width:98%; margin-right:0; text-align:center;&amp;quot;&lt;br /&gt;
|+ Professional performances and theatre roles&lt;br /&gt;
|-&lt;br /&gt;
! Year&lt;br /&gt;
! Title&lt;br /&gt;
! Role&lt;br /&gt;
! Venue&lt;br /&gt;
! Director/Producer&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[The Music Man]]''||align=&amp;quot;center&amp;quot;|Amarylis||Welk Resort Theatre||Lewis Wilkenfeld&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[Sound of Music]]''||align=&amp;quot;center&amp;quot;|Marta||Welk Resort Theatre||Joshua Carr&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Nellie||Welk Resort Theatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie (musical)|Annie]]''||align=&amp;quot;center&amp;quot;|Orphan Sadie||La Mirada Theatre for the Performing Arts||McCoy Rigby Ent. Glenn Casale&lt;br /&gt;
|-&lt;br /&gt;
|2004||''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Jessie||Saddleback Civic Light Opera||Sheryl Donchey&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[To Kill a Mockingbird]]''||align=&amp;quot;center&amp;quot;|Scout||West Coast Ensemble|| {{sic|hide=y|C. Jaffe/R. Israel}}&lt;br /&gt;
|-&lt;br /&gt;
|2005||UNICEF Snowflake Ball||align=&amp;quot;center&amp;quot;|Opening Soloist||[[Beverly Wilshire Hotel|Regent Beverly Wilshire]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2005|| ''[[Tight Quarters]]''||align=&amp;quot;center&amp;quot;|Lauren||Whitefire Theatre||Jules Aaron&lt;br /&gt;
|-&lt;br /&gt;
|2005||Kodak Christmas||align=&amp;quot;center&amp;quot;|Featured Soloist||[[Dolby Theatre|Kodak Theatre]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2006||''[[Teen Witch the Musical]]''||align=&amp;quot;center&amp;quot;|Shana the Rock Star|| [[Workshop production|workshop]] ||Alana Lambros&lt;br /&gt;
|-&lt;br /&gt;
|2008||[[New Music Weekly]] Awards||align=&amp;quot;center&amp;quot;|Featured Soloist||Avalon Theatre||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2009||''[[42nd Street (musical)|42nd Street]]'' ||align=&amp;quot;center&amp;quot;|Ensemble|| Moonlight Amphitheatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2010|| ''Once Upon A Wedding''||align=&amp;quot;center&amp;quot;|Daisy||Bahia Resort-Dinner Theatre||Laughing Tree Prod.&lt;br /&gt;
|-&lt;br /&gt;
|2010-12|| ''Journey To The Lost Temple''||align=&amp;quot;center&amp;quot;|Pippin||[[Legoland]]-California||Shawn Griener&lt;br /&gt;
|-&lt;br /&gt;
|2012||''[[American Idol]]'' Season 11||align=&amp;quot;center&amp;quot;|Contestant|| [[USS Midway Museum]]|| [[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2012||''American Idol'' Season 11||align=&amp;quot;center&amp;quot;|Hollywood Week||[[Pasadena Civic Auditorium]]||[[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2019||Jason Robert Brown In Concert||align=&amp;quot;center&amp;quot;|Lead singer||Cabaret at the Merc||Gerald Sternbach &lt;br /&gt;
|-&lt;br /&gt;
|2019||Evita In Concert||align=&amp;quot;center&amp;quot;|Ensemble||PVPA||Richard Israel &lt;br /&gt;
|-&lt;br /&gt;
|2020||HAIR||align=&amp;quot;center&amp;quot;|Suzannah 1000-Year-Old Monk||LGBT Center LA||Kate Sullivan Jared Stein&lt;br /&gt;
|-&lt;br /&gt;
|2020||New Year's Eve, National Anthem Singer||align=&amp;quot;center&amp;quot;|Soloist||Staples Center||LA Kings &amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;/&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Recorded and broadcast ===&lt;br /&gt;
&amp;lt;s&amp;gt;In addition to performing in nationally televised commercials, Youmans has been involved in several cutting-edge media projects.&amp;lt;/s&amp;gt;  In 2005, Youmans played the part of Becky Thatcher in Disney's [[Tom Sawyer's Island]], a voice-over project.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  The performance was delivered via hand-held computers issued to visitors on [[Disneyland|Disneyland's]] Tom Sawyer's Island. A pilot project, titled &amp;quot;Available Light&amp;quot;, was one of the first to test Sony Blu-ray camera technology.&lt;br /&gt;
&lt;br /&gt;
==== Soundtracks ====&lt;br /&gt;
* ''[[Teen Witch the Musical]]'' (2007) original cast recording, Weir Brothers Entertainment.&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Moondance Alexander]]'' (2007) starring [[Kay Panabaker]], [[Don Johnson]] and [[Lori Loughlin]], [[20th Century Fox|20th Century Fox Home Entertainment]]&lt;br /&gt;
* ''[[Flicka 2]]'' (2010) starring [[Patrick Warburton]], [[Tammin Sursok]] and [[Clint Black]], [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011) starring [[Travis Turner]] and [[Donnelly Rhodes]],  [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''Love by Design'' (2014) starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]], Gold Line Prod. Int.&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Newport Beach FF&amp;quot;&amp;gt;{{cite web|title=Newport Beach Film Festival|url=https://www.imdb.com/event/ev0000491/2014?ref_=ttawd_ev_1|website=[[IMDb]]|accessdate=1 February 2015|date=2 February 2014|quote=First-time Filmmaker: Winner}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*''High Strung'' (2016) starring [[Keenan Kampa]], Nicholas Galitzine, [[Jane Seymour (actress)|Jane Seymour]], Riviera Films.&amp;lt;ref name=&amp;quot;High Strung&amp;quot;&amp;gt;{{cite web|title=''High Strung''|url=http://www.soundtrack.net/album/high-strung/|website=Soundtrack.net|accessdate=30 March 2016|date=8 April 2016}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Singles ====&lt;br /&gt;
&amp;lt;!--* &amp;quot;Never Gonna Be The Same Again&amp;quot; (2007)&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt;--&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World&amp;quot; (2011)&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World - The Remixes&amp;quot; (2011)&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;In My Arms&amp;quot; (2012)&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;My Kind of Trouble LIVE at the Recordium&amp;quot; (2019)&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Is It Just Me LIVE at the Recordium&amp;quot; (2019)&lt;br /&gt;
* &amp;quot;Shine&amp;quot; (2019)&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;You Made Me Hate Love Songs LIVE at YouTube Space&amp;quot; (2020)&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;A Little Closer To Happy&amp;quot; (2021)&lt;br /&gt;
* &amp;quot;Worth It&amp;quot; (2021)&lt;br /&gt;
&lt;br /&gt;
=== Journalism ===&lt;br /&gt;
Youmans writes about entertainment topics, specifically dance, music, theatre and film. Her Southern California beat includes covering venues, such as the [[Orange County Fair (California)|Orange County Fair]], the Newport Beach Jazz Festival, the [[Playboy Jazz Festival]], Sunset Jazz at Newport, the [[Hollywood Bowl]] and [[Segerstrom Center for the Arts]]. Her freelance position with [[Freedom Communications]] has afforded interviews with: [[George Lopez]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Drew Carey]] and [[Brooke Shields]],&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt;  Grammy Award-winning musicians [[David Sanborn]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Jeff Hamilton (drummer)|Jeff Hamilton]]&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;/&amp;gt; for the ''[[Orange County Register]]'', and her interview with Grammy nominee [[Brian McKnight]] was additionally published in the ''Los Angeles Register''.&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;/&amp;gt; Earlier interviews include, [[Chita Rivera]] for the ''[[Los Angeles Times]]''&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and interviews with [[Ann Wilson]]&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt; and  [[Martina McBride]]&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt; for the [[Los Angeles Times suburban sections|Los Angeles Times Media Group's]] ''Daily Pilot''.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;!--- See http://en.wikipedia.org/wiki/Wikipedia:Footnotes on how to create references using &amp;lt;ref&amp;gt;&amp;lt;/ref&amp;gt; tags which will then appear here automatically --&amp;gt;&lt;br /&gt;
{{Reflist|2| refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student gets golden ticket on 'American Idol'|url=http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|publisher=Daily 49er|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821011818/http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|archivedate=21 August 2014|date=24 January 2012}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;&amp;gt;{{cite web|author1=Giulia Nahmany|title=Giulia Nahmany Love by Design Premiere at Newport Beach Film Festival|url=https://www.youtube.com/watch?v=et6kw-AH0ZA|publisher=Giulia Nahmany YouTube Channel|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821015154/https://www.youtube.com/watch?v=et6kw-AH0ZA|archivedate=21 August 2014|date=20 May 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=TWTM&amp;gt;{{cite web|title=Teen Witch The Musical|url=http://weirbrothersentertainment.com/releases/teen-witch|publisher=Weir Brothers Entertainment|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822014020/http://weirbrothersentertainment.com/releases/teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;&amp;gt;{{cite web|title=Heather Youmans: Credits|url=http://www.allmusic.com/artist/heather-youmans-mn0000643210/credits|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=DelMarTV&amp;gt;{{cite web|title=Del Mar TV Idol Contest 2004|url=http://www.delmartv.com/idol/idol04.html|publisher=Del Mar TV Foundation|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822011402/http://www.delmartv.com/idol/idol04.html|archivedate=22 August 2014|date=10 October 2004|quote=Heather Youmans (1st place)}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;&amp;gt;{{cite web|title=Moondance Alexander Soundtrack|url=http://www.allmusic.com/album/moondance-alexander-mw0000493713|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;&amp;gt;{{cite web|title=2010 MACY Award Winners|url=http://macyawards.com/news/67-news/132-2010-macy-award-winners|publisher=MACY Awards|accessdate=22 August 2014|date=22 May 2010|url-status=dead|archiveurl=https://web.archive.org/web/20140903125715/http://macyawards.com/news/67-news/132-2010-macy-award-winners|archivedate=3 September 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;&amp;gt;{{cite web|title=2009 MACY Award Winners|url=http://macyawards.com/news/67-news/122-2009-macy-award-winners|accessdate=22 August 2014|url-status=dead|archiveurl=https://web.archive.org/web/20140822022545/http://macyawards.com/news/67-news/122-2009-macy-award-winners|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;&amp;gt;{{cite news|last1=Krugen|first1=Pam|title=Strong leads, chemistry make Welk's 'Get Your Gun' a winner|url=http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|newspaper=The San Diego Union-Tribune|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822042246/http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|archivedate=22 August 2014|date=3 September 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=Annie Get Your Gun|url=http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822044216/http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|archivedate=22 August 2014|year=2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=The Sound of Music|url=http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822045133/http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;&amp;gt;{{cite web|last1=Wood|first1=Jennifer M.|title=18 Fun Facts About 'Teen Witch'|url=http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|publisher=mental_floss|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822193830/http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;&amp;gt;{{cite web|title=Girl to Change Your World: Releases|url=http://www.allmusic.com/album/girl-to-change-your-world-mw0002363250/releases|website=[[AllMusic]]|accessdate=23 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - Girl To Change Your World|url=https://www.youtube.com/watch?v=lYU6FLZm9nQ|publisher=Caption Records YouTube Channel|accessdate=23 August 2014|date=7 February 2010}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student loses shot at 'Idol' fame|url=http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|publisher=Daily 49er|accessdate=23 August 2014|archiveurl=https://web.archive.org/web/20140823012031/http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|archivedate=23 August 2014|date=12 February 2012|quote=Still, she said she’s not ashamed of the footage. “Yeah, it sucks,” she said. “Everybody has a bad day. Yeah, it’s unfortunate that they showed me having a bad day, but what can you do?”}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Newport Jazz Festival goes down smooth|url=http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|newspaper=[[Orange County Register]]|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826092910/http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|archivedate=26 August 2014|date=29 May 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;&amp;gt;{{cite web|last1=Schnaidt|first1=Joe|title=Lighting The Way To Hope On Rodeo Drive|url=http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|publisher=Canyon News|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826100957/http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|archivedate=26 August 2014|date=4 December 2005|quote=BEVERLY HILLS — Wednesday, November 30 illuminated Rodeo Drive at Wilshire Boulevard for the annual holiday lighting ceremony with celebrities, sponsors and a ray of hope for children facing poverty, health risks and poor education.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 9 August 2011 | title = Marley &amp;amp; Me The Puppy Years music from and inspired by the motion picture | medium = MP3 &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B005JBC14S&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 4 May 2010 | title = Flicka 2 Original Motion Picture Soundtrack | medium = MP3/CD &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B003JE2EIU&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;JRAY Nom&amp;quot;&amp;gt;{{cite web|title=2009 JRAY Awards|url=http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|publisher=Fulerton Civic Light Opera|accessdate=28 August 2014|archiveurl=https://web.archive.org/web/20140828012354/http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|archivedate=28 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;&amp;gt;{{cite news|last1=Malik|first1=Abhay|title=Alumnus Jon MacLennan's iBook 'Melodic Expressions' advances guitar instruction |url=http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|newspaper=[[Daily Bruin]]|accessdate=8 August 2014|archiveurl=https://web.archive.org/web/20140808121825/http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|archivedate=8 August 2014|date=8 May 2012|quote=Heather Youmans, an “American Idol” contestant and freelance journalist, helped edit the iBook and has expressed excitement over the finished product as well.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;&amp;gt;{{cite web|last1=MacLennan|first1=Jon|title=In My Arms Jon MacLennan (feat. Heather Youmans)|url=https://www.youtube.com/watch?v=G8QJ5aToHxw|publisher=Jon MacLennan YouTube Channel|accessdate=28 August 2014|date=16 July 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - &amp;quot;Never Gonna Be the Same Again&amp;quot; Studio City Sound LIVE|url=https://www.youtube.com/watch?v=rYhEtU1EgUM|publisher=[[Studio City Sound]]|accessdate=28 August 2014|date=3 October 2011}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;iBook Press Release&amp;quot;&amp;gt;{{cite press release|title=Melodic Expressions: The Art of the Line|url=http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|website=www.heatheryoumansmusic.com/|publisher=Jon MacLennan|accessdate=28 August 2014|date=3 May 2013|archiveurl=https://web.archive.org/web/20140828221739/http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|archivedate=28 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Change in tempo for Playboy Jazz Festival&lt;br /&gt;
|url=http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=21 August 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829013440/http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Brooke Shields takes the helm of 'Chicago'&lt;br /&gt;
|url=http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=17 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829014021/http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Sunset Jazz series kicks off in Newport&lt;br /&gt;
|url=http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|accessdate=29 August 2014|newspaper=[[The Orange County Register]]|date=9 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829015132/http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;&amp;gt;{{cite web|title=Weir Brothers Entertainment: Albums|url=http://www.last.fm/label/Weir+Brothers+Entertainment/albums|website=last.fm|publisher=Weir Brothers Entertainment|accessdate=29 August 2014|archiveurl=https://web.archive.org/web/20140829023539/http://www.last.fm/label/Weir+Brothers+Entertainment/albums|archivedate=29 August 2014|year=2011|quote=Girl to Change Your World singles}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Music for most every taste|url=http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|accessdate=29 August 2014|newspaper=Daily Pilot|archiveurl=https://web.archive.org/web/20140829225029/http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=O.C. Fair gets some Heart|url=http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|accessdate=29 August 2014|newspaper=Daily Pilot|date=2 August 2012|archiveurl=https://web.archive.org/web/20140829224632/http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Youmans: Chita Rivera to perform hits from a storied career|url=http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|accessdate=29 August 2014|newspaper=[[The Los Angeles Times]]|date=10 November 2011|archiveurl=https://web.archive.org/web/20140829220754/http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival|url=http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|accessdate=29 August 2014|newspaper=[[Orange County Register]]|date=28 May 2014|archiveurl=https://web.archive.org/web/20140829215845/http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival&lt;br /&gt;
|publisher=Los Angeles Register|date=29 May 2014&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;&amp;gt;{{cite news|title='High Strung' Soundtrack Announced|url=http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|accessdate=3 May 2016|publisher=FILM MUSIC REPORTER|date=9 March 2016|archiveurl=https://web.archive.org/web/20160503051828/http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|archivedate=3 May 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;&amp;gt;{{cite web|author1=Kristyn Burtt|title=Heather Youmans at the Red Carpet Premiere for &amp;quot;High Strung&amp;quot; #HighStrungMovie|url=https://www.youtube.com/watch?v=YOlN1Zt4_I8|website=YouTube.com|publisher=Mingle Media TV|accessdate=3 May 2016|date=30 March 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=Meet This Week's She Rocks Spotlight Series Artists, Including Grammy-Nominated Headliner Mindi Abair | website=Parade | date=2020-04-22 | url=https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-url=https://web.archive.org/web/20200427002753/https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-date=2020-04-27 | url-status=dead | access-date=2020-04-27}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;&amp;gt;{{cite web | title=Daily Discovery: Heather Youmans, &amp;quot;Shine&amp;quot; « American Songwriter | website=American Songwriter | date=2019-11-13 | url=https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200316151706/https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-date=2020-03-16 | url-status=live | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;&amp;gt;{{cite web | last=Buttonow | first=Leslie | title=Front and Center: Heather Youmans, PR &amp;amp; Communications Manager, Fender Musical Instruments Corporation – the WiMN - The Women's International Music Network | website=thewimn.com | date=2019-05-01 | url=https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-url=https://web.archive.org/web/20200426083920/https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-date=2020-04-26 | url-status=unfit | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;&amp;gt;{{cite web | title=Premiere: Singer-Songwriter Heather Youmans Reveals Latest Single &amp;quot;Shine&amp;quot; + Music Video | website=Elicit Magazine | date=2019-10-18 | url=http://www.elicitmagazine.com/heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200428035459/http://www.elicitmagazine.com/heather-youmans-shine/ | archive-date=2020-04-28 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;&amp;gt;{{cite web |url= https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble |title= Heather Youmans Gets Honest And Real In &amp;quot;My Kind Of Trouble&amp;quot; |date= 2019-08-13 |website= BuzzMusic |access-date= 2020-04-27 |archive-date= 2020-04-28 |archive-url= https://web.archive.org/web/20200428034603/https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;&amp;gt;{{cite web | title=Emerging Headliner: Heather Youmans | website=Headliner Magazine | date=2020-02-25 | url=https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-url=https://web.archive.org/web/20200225061919/https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-date=2020-02-25 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;&amp;gt;{{cite web | last=Brunner | first=Jeryl | title=Why This Successful Singer-Songwriter Won't Give Up Her Day Job | website=Forbes | date=2020-09-30 | url=https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/ | access-date=2020-10-01 |archive-url=https://web.archive.org/web/20201001011624if_/https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/?fbclid=IwAR3q2uGBNQP6MO-2pr57Mopo6AM0b_lktTAEhvQKHD6XhTNH5jSQoOQpiT4#5d2b64a67b7e|archive-date=2020-10-01}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=You're Gonna Feel the Joy of Heather Youmans' Video for 'Shine' | website=Parade: Entertainment, Recipes, Health, Life, Holidays | date=2020-10-06 | url=https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-url=https://web.archive.org/web/20201007032747/https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-date=2020-10-07 | url-status=dead | access-date=2020-10-07}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;&amp;gt;{{cite web | title=Heather Youmans Releases 'Shine' As Love Letter To Younger Self | website=Headliner Magazine | url=https://headlinermagazine.net/blog/heather-youmans-releases-shine-as-love-letter-to-younger-self.html | access-date=2020-10-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;&amp;gt;{{cite AV media  | people = Heather Youmans  | date = 2020-10-28  | title = The Tap Dancer Performs &amp;quot;Youngblood&amp;quot; By 5 Seconds Of Summer - Season 1 Ep. 4 - I CAN SEE YOUR VOICE  | language = en  | url = https://www.youtube.com/watch?v=Z5rghUxRero  | access-date = 2020-10-31  | publisher = FOX }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot;&amp;gt;{{cite web | title=Column: Singer from Vista stuns panel in new Fox reality series | website=San Diego Union-Tribune | date=2020-11-14 | url=https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-url=https://web.archive.org/web/20201118211051/https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-date=2020-11-18 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot;&amp;gt;{{cite web | last=Upadhyay | first=Nayna | title=EXCLUSIVE - Heather Youmans says 'I Can See Your Voice' is all about finding 'singers that America needs to know' | website=MEAWW | date=2020-11-16 | url=https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-url=https://web.archive.org/web/20201116192203/https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-date=2020-11-16 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.heatheryoumans.com Official website]&lt;br /&gt;
* {{YouTube|user=HeatherYoumans|Heather Youmans}}&lt;br /&gt;
* {{Facebook|HeatherYoumansOfficial|Heather Youmans}}&lt;br /&gt;
&amp;lt;!--* {{itunes|us/artist/heather-youmans/id219552589|Heather Youmans}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Youmans, Heather}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Categories &lt;br /&gt;
[[Category:Articles created via the Article Wizard]]---&amp;gt;&lt;br /&gt;
[[Category:1992 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:American stage actresses]]&lt;br /&gt;
[[Category:American women singer-songwriters]]&lt;br /&gt;
[[Category:American musical theatre actresses]]&lt;br /&gt;
[[Category:21st-century American actresses]]&lt;br /&gt;
[[Category:21st-century American singers]]&lt;br /&gt;
[[Category:Musicians from San Diego]]&lt;br /&gt;
[[Category:Musicians from Vista, California]]&lt;br /&gt;
[[Category:American music journalists]]&lt;br /&gt;
[[Category:American women journalists]]&lt;br /&gt;
[[Category:Journalists from California]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--[[Category:American film actresses]]&lt;br /&gt;
[[Category:American television actresses]]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Women writers about music]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Singer-songwriters from California]]&lt;br /&gt;
{{authority control}}&lt;br /&gt;
[[Category:21st-century American women singers]]&lt;br /&gt;
[[Category:21st-century American journalists]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6289</id>
		<title>Draft: Heather Youmans</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6289"/>
		<updated>2024-02-29T02:06:04Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: draft lead&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{short description|American singer-songwriter}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox musical artist&lt;br /&gt;
| name             = Heather Youmans&lt;br /&gt;
| image            = File:Heather_Youmans.jpg&lt;br /&gt;
| image_size       =&lt;br /&gt;
| landscape        = &amp;lt;!-- yes, if wide image, otherwise leave blank --&amp;gt;&lt;br /&gt;
| alt              = Heather Youmans sings at 2011 Relay For Life in San Diego, California&lt;br /&gt;
| caption          =&lt;br /&gt;
| birth_name       = Heather Anne Youmans&lt;br /&gt;
| native_name      =&lt;br /&gt;
| native_name_lang =&lt;br /&gt;
| alias            =&lt;br /&gt;
| birth_date       = {{birth date and age|1992|05|16}}&lt;br /&gt;
| birth_place      = [[Vista, California]], U.S.&lt;br /&gt;
| origin           =&lt;br /&gt;
| death_date       = &amp;lt;!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) --&amp;gt;&lt;br /&gt;
| death_place      =&lt;br /&gt;
| genre            = Rock, pop, country, soul&lt;br /&gt;
| occupation       = Singer-songwriter, actor, journalist&lt;br /&gt;
| instrument       = vocals, bass&lt;br /&gt;
| years_active     = 2002–present&lt;br /&gt;
| label            = {{plainlist| &lt;br /&gt;
* Caption Records&lt;br /&gt;
* Weir Brothers Entertainment&lt;br /&gt;
* Suspicious Love Productions}}&lt;br /&gt;
| associated_acts  =&lt;br /&gt;
| website          = {{URL|www.heatheryoumans.com}}&lt;br /&gt;
| module =&lt;br /&gt;
&lt;br /&gt;
  {{Infobox person&lt;br /&gt;
    | education	= {{highlight|[[Master of Business Administration| MBA]]}}&lt;br /&gt;
    | alma_mater = {{highlight|[[California State University, Long Beach]] (2013)}}&lt;br /&gt;
    | television = {{plainlist| [[I Can See Your Voice (American TV series)| ''I Can See Your Voice'' ]]}}&lt;br /&gt;
  }}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color: moccasin&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Heather Youmans is an American principal and session singer. Opening for a UNICEF benefit concert in 2005, featuring Sting and Natalie Cole, cemented Youmans' future goals for the stage.  Opportunities arose with 20th Century Fox motion pictures, both as a singer and songwriter, and Youmans has had a long running association with Disney since 2005. Youmans completed a tour of China, ''Disney 100 Wonderland'' in 2024, and enjoys singing the national anthem for professional sports teams (MLB and NHL). Video footage of Youmans' anthem performances have gone viral twice.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
'''Heather Youmans''' is an American singer-songwriter, actress, tap dancer and journalist, her work has been featured in ''American Songwriter'' magazine,&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt; [[Forbes|''Forbes Women'']] and ''Parade'' magazine profiled her career and music in 2020.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans tap dancing on [[I Can See Your Voice (American TV series)|''I Can See Your Voice'']] episode 4 (FOX),&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; convinced the judges that she is a professional dancer,&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
a video depicting her delivery of the national anthem and dealing with acoustic delay effect of a large stadium (Oakland Coliseum) went viral on social media in 2021.&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Early life ==&lt;br /&gt;
Youmans began landing theatre roles at age ten, such as Amarylis in ''[[The Music Man]]'',  Marta in ''[[The Sound of Music]]'' in 2003,&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;/&amp;gt; as well as Nellie in ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]'' in 2004 at the [[Lawrence Welk|Welk]] Resort Theatre.&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;/&amp;gt;  In 2004, she won first place in the Del Mar TV Idol Contest, Junior Division, at age twelve.&amp;lt;ref name=DelMarTV/&amp;gt; On November 30, 2005, Youmans performed an opening solo at the [[UNICEF]] Snowflake Ball at the [[Beverly Wilshire Hotel|Regent Beverly Wilshire]]. Headlining acts for the evening included, [[Sting (musician)|Sting]], [[Chris Botti]] and [[Natalie Cole]].&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans attended [[Rancho Buena Vista High School]] and was active in the Associated Student Body, dance and drama programs. In 2009, she won the MACY Award for Highest Achievement and Best Supporting Vocal-Female for her role as Rusty in [[Footloose (musical)|''Footloose'']],&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;/&amp;gt; and Best Vocal Female in 2010 for her role as Jo in ''[[Little Women]]''.&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Education ==&lt;br /&gt;
Youmans holds a B.A. in Journalism and Mass Communication with a music minor (classical and jazz vocal at [[Bob Cole Conservatory of Music]]). She graduated [[magna cum laude]] from [[California State University, Long Beach]] (CSULB) in 2013, and graduated with an MBA at CSULB with an emphasis in marketing. During her undergraduate studies, Youmans created and hosted ''Heartbreakers: The Women of Rock'', a radio format program on [[Kbeach#22 West Radio|KBeach.org]] (2011-2013).  {{Highlight|While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Career ==&lt;br /&gt;
In 2005, Youmans earned a voice-over part, playing Becky Thatcher in Disney's ''[[Tom Sawyer's Island]]'' and the following year, won the part of Shana the Rock Star in a pre-production musical ''[[Teen Witch the Musical]]'' (2007).&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt; These accomplishments led to featured artist performances on the soundtrack for [[Moondance Alexander]] (2007).&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;/&amp;gt; Youmans' single, &amp;quot;Girl to Change Your World&amp;quot;, was a (2011) hit on [[Radio Disney]],&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; and it is one of the two Youmans songs included in the film ''Love by Design'' (2014), starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]].&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;The [[Teen Witch the Musical]] project was successful in its primary goal of reproducing the missing soundtrack for the Halloween classic film [[Teen Witch]] (1989).&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt; The musical stage-play never made it out of [[Workshop production|workshop]] and has yet to achieve the secondary goal of becoming a viable [[Broadway theatre|Broadway]] offering.&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;/&amp;gt; This association with Weir Brothers Productions led to additional soundtrack features in the films ''[[Moondance Alexander]]'' (2007), ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
While concurrently studying journalism and music, Youmans auditioned and stacked up credits in Southern California regional theater and wrote for national and regional newspapers on entertainment topics. &amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; She has produced and hosted an entertainment format radio show,&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; interviewed entertainment industry legends,&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt; and ran a marketing campaign for [[Jon MacLennan|Jon MacLennan's]] iBook, ''Melodic Expressions: The Art of the Line'' (2012).&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;/&amp;gt; She works as a communications professional in [[Los Angeles]].&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Theatre and live performances ===&lt;br /&gt;
==== Beverly Hills opener  ====&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;&lt;br /&gt;
==== American Idol ====&lt;br /&gt;
In 2012, Youmans performed &amp;quot;[[Some Kind of Wonderful (The Drifters song)|Some Kind of Wonderful]]&amp;quot; at the [[American Idol]] San Diego competition and won a golden ticket after a unanimous decision from the judges ([[Steven Tyler]], [[Jennifer Lopez]] and [[Randy Jackson]]), which advanced her to the [[American Idol (season 11)#Hollywood week and Vegas rounds|''Hollywood Week'']] competition.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  Youmans was eliminated during ''Hollywood Week'' in Season 11. She attributes the elimination to nerves and an ambitious music selection, [[Heart (band)|Heart]]’s &amp;quot;[[Crazy on You]]&amp;quot;.&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable sortable collapsed collapsible&amp;quot; style=&amp;quot;width:98%; margin-right:0; text-align:center;&amp;quot;&lt;br /&gt;
|+ Professional performances and theatre roles&lt;br /&gt;
|-&lt;br /&gt;
! Year&lt;br /&gt;
! Title&lt;br /&gt;
! Role&lt;br /&gt;
! Venue&lt;br /&gt;
! Director/Producer&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[The Music Man]]''||align=&amp;quot;center&amp;quot;|Amarylis||Welk Resort Theatre||Lewis Wilkenfeld&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[Sound of Music]]''||align=&amp;quot;center&amp;quot;|Marta||Welk Resort Theatre||Joshua Carr&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Nellie||Welk Resort Theatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie (musical)|Annie]]''||align=&amp;quot;center&amp;quot;|Orphan Sadie||La Mirada Theatre for the Performing Arts||McCoy Rigby Ent. Glenn Casale&lt;br /&gt;
|-&lt;br /&gt;
|2004||''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Jessie||Saddleback Civic Light Opera||Sheryl Donchey&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[To Kill a Mockingbird]]''||align=&amp;quot;center&amp;quot;|Scout||West Coast Ensemble|| {{sic|hide=y|C. Jaffe/R. Israel}}&lt;br /&gt;
|-&lt;br /&gt;
|2005||UNICEF Snowflake Ball||align=&amp;quot;center&amp;quot;|Opening Soloist||[[Beverly Wilshire Hotel|Regent Beverly Wilshire]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2005|| ''[[Tight Quarters]]''||align=&amp;quot;center&amp;quot;|Lauren||Whitefire Theatre||Jules Aaron&lt;br /&gt;
|-&lt;br /&gt;
|2005||Kodak Christmas||align=&amp;quot;center&amp;quot;|Featured Soloist||[[Dolby Theatre|Kodak Theatre]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2006||''[[Teen Witch the Musical]]''||align=&amp;quot;center&amp;quot;|Shana the Rock Star|| [[Workshop production|workshop]] ||Alana Lambros&lt;br /&gt;
|-&lt;br /&gt;
|2008||[[New Music Weekly]] Awards||align=&amp;quot;center&amp;quot;|Featured Soloist||Avalon Theatre||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2009||''[[42nd Street (musical)|42nd Street]]'' ||align=&amp;quot;center&amp;quot;|Ensemble|| Moonlight Amphitheatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2010|| ''Once Upon A Wedding''||align=&amp;quot;center&amp;quot;|Daisy||Bahia Resort-Dinner Theatre||Laughing Tree Prod.&lt;br /&gt;
|-&lt;br /&gt;
|2010-12|| ''Journey To The Lost Temple''||align=&amp;quot;center&amp;quot;|Pippin||[[Legoland]]-California||Shawn Griener&lt;br /&gt;
|-&lt;br /&gt;
|2012||''[[American Idol]]'' Season 11||align=&amp;quot;center&amp;quot;|Contestant|| [[USS Midway Museum]]|| [[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2012||''American Idol'' Season 11||align=&amp;quot;center&amp;quot;|Hollywood Week||[[Pasadena Civic Auditorium]]||[[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2019||Jason Robert Brown In Concert||align=&amp;quot;center&amp;quot;|Lead singer||Cabaret at the Merc||Gerald Sternbach &lt;br /&gt;
|-&lt;br /&gt;
|2019||Evita In Concert||align=&amp;quot;center&amp;quot;|Ensemble||PVPA||Richard Israel &lt;br /&gt;
|-&lt;br /&gt;
|2020||HAIR||align=&amp;quot;center&amp;quot;|Suzannah 1000-Year-Old Monk||LGBT Center LA||Kate Sullivan Jared Stein&lt;br /&gt;
|-&lt;br /&gt;
|2020||New Year's Eve, National Anthem Singer||align=&amp;quot;center&amp;quot;|Soloist||Staples Center||LA Kings &amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;/&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Recorded and broadcast ===&lt;br /&gt;
&amp;lt;s&amp;gt;In addition to performing in nationally televised commercials, Youmans has been involved in several cutting-edge media projects.&amp;lt;/s&amp;gt;  In 2005, Youmans played the part of Becky Thatcher in Disney's [[Tom Sawyer's Island]], a voice-over project.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  The performance was delivered via hand-held computers issued to visitors on [[Disneyland|Disneyland's]] Tom Sawyer's Island. A pilot project, titled &amp;quot;Available Light&amp;quot;, was one of the first to test Sony Blu-ray camera technology.&lt;br /&gt;
&lt;br /&gt;
==== Soundtracks ====&lt;br /&gt;
* ''[[Teen Witch the Musical]]'' (2007) original cast recording, Weir Brothers Entertainment.&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Moondance Alexander]]'' (2007) starring [[Kay Panabaker]], [[Don Johnson]] and [[Lori Loughlin]], [[20th Century Fox|20th Century Fox Home Entertainment]]&lt;br /&gt;
* ''[[Flicka 2]]'' (2010) starring [[Patrick Warburton]], [[Tammin Sursok]] and [[Clint Black]], [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011) starring [[Travis Turner]] and [[Donnelly Rhodes]],  [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''Love by Design'' (2014) starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]], Gold Line Prod. Int.&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Newport Beach FF&amp;quot;&amp;gt;{{cite web|title=Newport Beach Film Festival|url=https://www.imdb.com/event/ev0000491/2014?ref_=ttawd_ev_1|website=[[IMDb]]|accessdate=1 February 2015|date=2 February 2014|quote=First-time Filmmaker: Winner}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*''High Strung'' (2016) starring [[Keenan Kampa]], Nicholas Galitzine, [[Jane Seymour (actress)|Jane Seymour]], Riviera Films.&amp;lt;ref name=&amp;quot;High Strung&amp;quot;&amp;gt;{{cite web|title=''High Strung''|url=http://www.soundtrack.net/album/high-strung/|website=Soundtrack.net|accessdate=30 March 2016|date=8 April 2016}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Singles ====&lt;br /&gt;
&amp;lt;!--* &amp;quot;Never Gonna Be The Same Again&amp;quot; (2007)&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt;--&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World&amp;quot; (2011)&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World - The Remixes&amp;quot; (2011)&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;In My Arms&amp;quot; (2012)&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;My Kind of Trouble LIVE at the Recordium&amp;quot; (2019)&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Is It Just Me LIVE at the Recordium&amp;quot; (2019)&lt;br /&gt;
* &amp;quot;Shine&amp;quot; (2019)&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;You Made Me Hate Love Songs LIVE at YouTube Space&amp;quot; (2020)&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;A Little Closer To Happy&amp;quot; (2021)&lt;br /&gt;
* &amp;quot;Worth It&amp;quot; (2021)&lt;br /&gt;
&lt;br /&gt;
=== Journalism ===&lt;br /&gt;
Youmans writes about entertainment topics, specifically dance, music, theatre and film. Her Southern California beat includes covering venues, such as the [[Orange County Fair (California)|Orange County Fair]], the Newport Beach Jazz Festival, the [[Playboy Jazz Festival]], Sunset Jazz at Newport, the [[Hollywood Bowl]] and [[Segerstrom Center for the Arts]]. Her freelance position with [[Freedom Communications]] has afforded interviews with: [[George Lopez]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Drew Carey]] and [[Brooke Shields]],&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt;  Grammy Award-winning musicians [[David Sanborn]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Jeff Hamilton (drummer)|Jeff Hamilton]]&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;/&amp;gt; for the ''[[Orange County Register]]'', and her interview with Grammy nominee [[Brian McKnight]] was additionally published in the ''Los Angeles Register''.&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;/&amp;gt; Earlier interviews include, [[Chita Rivera]] for the ''[[Los Angeles Times]]''&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and interviews with [[Ann Wilson]]&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt; and  [[Martina McBride]]&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt; for the [[Los Angeles Times suburban sections|Los Angeles Times Media Group's]] ''Daily Pilot''.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;!--- See http://en.wikipedia.org/wiki/Wikipedia:Footnotes on how to create references using &amp;lt;ref&amp;gt;&amp;lt;/ref&amp;gt; tags which will then appear here automatically --&amp;gt;&lt;br /&gt;
{{Reflist|2| refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student gets golden ticket on 'American Idol'|url=http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|publisher=Daily 49er|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821011818/http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|archivedate=21 August 2014|date=24 January 2012}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;&amp;gt;{{cite web|author1=Giulia Nahmany|title=Giulia Nahmany Love by Design Premiere at Newport Beach Film Festival|url=https://www.youtube.com/watch?v=et6kw-AH0ZA|publisher=Giulia Nahmany YouTube Channel|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821015154/https://www.youtube.com/watch?v=et6kw-AH0ZA|archivedate=21 August 2014|date=20 May 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=TWTM&amp;gt;{{cite web|title=Teen Witch The Musical|url=http://weirbrothersentertainment.com/releases/teen-witch|publisher=Weir Brothers Entertainment|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822014020/http://weirbrothersentertainment.com/releases/teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;&amp;gt;{{cite web|title=Heather Youmans: Credits|url=http://www.allmusic.com/artist/heather-youmans-mn0000643210/credits|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=DelMarTV&amp;gt;{{cite web|title=Del Mar TV Idol Contest 2004|url=http://www.delmartv.com/idol/idol04.html|publisher=Del Mar TV Foundation|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822011402/http://www.delmartv.com/idol/idol04.html|archivedate=22 August 2014|date=10 October 2004|quote=Heather Youmans (1st place)}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;&amp;gt;{{cite web|title=Moondance Alexander Soundtrack|url=http://www.allmusic.com/album/moondance-alexander-mw0000493713|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;&amp;gt;{{cite web|title=2010 MACY Award Winners|url=http://macyawards.com/news/67-news/132-2010-macy-award-winners|publisher=MACY Awards|accessdate=22 August 2014|date=22 May 2010|url-status=dead|archiveurl=https://web.archive.org/web/20140903125715/http://macyawards.com/news/67-news/132-2010-macy-award-winners|archivedate=3 September 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;&amp;gt;{{cite web|title=2009 MACY Award Winners|url=http://macyawards.com/news/67-news/122-2009-macy-award-winners|accessdate=22 August 2014|url-status=dead|archiveurl=https://web.archive.org/web/20140822022545/http://macyawards.com/news/67-news/122-2009-macy-award-winners|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;&amp;gt;{{cite news|last1=Krugen|first1=Pam|title=Strong leads, chemistry make Welk's 'Get Your Gun' a winner|url=http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|newspaper=The San Diego Union-Tribune|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822042246/http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|archivedate=22 August 2014|date=3 September 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=Annie Get Your Gun|url=http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822044216/http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|archivedate=22 August 2014|year=2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=The Sound of Music|url=http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822045133/http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;&amp;gt;{{cite web|last1=Wood|first1=Jennifer M.|title=18 Fun Facts About 'Teen Witch'|url=http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|publisher=mental_floss|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822193830/http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;&amp;gt;{{cite web|title=Girl to Change Your World: Releases|url=http://www.allmusic.com/album/girl-to-change-your-world-mw0002363250/releases|website=[[AllMusic]]|accessdate=23 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - Girl To Change Your World|url=https://www.youtube.com/watch?v=lYU6FLZm9nQ|publisher=Caption Records YouTube Channel|accessdate=23 August 2014|date=7 February 2010}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student loses shot at 'Idol' fame|url=http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|publisher=Daily 49er|accessdate=23 August 2014|archiveurl=https://web.archive.org/web/20140823012031/http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|archivedate=23 August 2014|date=12 February 2012|quote=Still, she said she’s not ashamed of the footage. “Yeah, it sucks,” she said. “Everybody has a bad day. Yeah, it’s unfortunate that they showed me having a bad day, but what can you do?”}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Newport Jazz Festival goes down smooth|url=http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|newspaper=[[Orange County Register]]|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826092910/http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|archivedate=26 August 2014|date=29 May 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;&amp;gt;{{cite web|last1=Schnaidt|first1=Joe|title=Lighting The Way To Hope On Rodeo Drive|url=http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|publisher=Canyon News|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826100957/http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|archivedate=26 August 2014|date=4 December 2005|quote=BEVERLY HILLS — Wednesday, November 30 illuminated Rodeo Drive at Wilshire Boulevard for the annual holiday lighting ceremony with celebrities, sponsors and a ray of hope for children facing poverty, health risks and poor education.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 9 August 2011 | title = Marley &amp;amp; Me The Puppy Years music from and inspired by the motion picture | medium = MP3 &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B005JBC14S&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 4 May 2010 | title = Flicka 2 Original Motion Picture Soundtrack | medium = MP3/CD &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B003JE2EIU&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;JRAY Nom&amp;quot;&amp;gt;{{cite web|title=2009 JRAY Awards|url=http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|publisher=Fulerton Civic Light Opera|accessdate=28 August 2014|archiveurl=https://web.archive.org/web/20140828012354/http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|archivedate=28 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;&amp;gt;{{cite news|last1=Malik|first1=Abhay|title=Alumnus Jon MacLennan's iBook 'Melodic Expressions' advances guitar instruction |url=http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|newspaper=[[Daily Bruin]]|accessdate=8 August 2014|archiveurl=https://web.archive.org/web/20140808121825/http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|archivedate=8 August 2014|date=8 May 2012|quote=Heather Youmans, an “American Idol” contestant and freelance journalist, helped edit the iBook and has expressed excitement over the finished product as well.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;&amp;gt;{{cite web|last1=MacLennan|first1=Jon|title=In My Arms Jon MacLennan (feat. Heather Youmans)|url=https://www.youtube.com/watch?v=G8QJ5aToHxw|publisher=Jon MacLennan YouTube Channel|accessdate=28 August 2014|date=16 July 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - &amp;quot;Never Gonna Be the Same Again&amp;quot; Studio City Sound LIVE|url=https://www.youtube.com/watch?v=rYhEtU1EgUM|publisher=[[Studio City Sound]]|accessdate=28 August 2014|date=3 October 2011}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;iBook Press Release&amp;quot;&amp;gt;{{cite press release|title=Melodic Expressions: The Art of the Line|url=http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|website=www.heatheryoumansmusic.com/|publisher=Jon MacLennan|accessdate=28 August 2014|date=3 May 2013|archiveurl=https://web.archive.org/web/20140828221739/http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|archivedate=28 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Change in tempo for Playboy Jazz Festival&lt;br /&gt;
|url=http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=21 August 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829013440/http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Brooke Shields takes the helm of 'Chicago'&lt;br /&gt;
|url=http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=17 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829014021/http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Sunset Jazz series kicks off in Newport&lt;br /&gt;
|url=http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|accessdate=29 August 2014|newspaper=[[The Orange County Register]]|date=9 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829015132/http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;&amp;gt;{{cite web|title=Weir Brothers Entertainment: Albums|url=http://www.last.fm/label/Weir+Brothers+Entertainment/albums|website=last.fm|publisher=Weir Brothers Entertainment|accessdate=29 August 2014|archiveurl=https://web.archive.org/web/20140829023539/http://www.last.fm/label/Weir+Brothers+Entertainment/albums|archivedate=29 August 2014|year=2011|quote=Girl to Change Your World singles}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Music for most every taste|url=http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|accessdate=29 August 2014|newspaper=Daily Pilot|archiveurl=https://web.archive.org/web/20140829225029/http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=O.C. Fair gets some Heart|url=http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|accessdate=29 August 2014|newspaper=Daily Pilot|date=2 August 2012|archiveurl=https://web.archive.org/web/20140829224632/http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Youmans: Chita Rivera to perform hits from a storied career|url=http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|accessdate=29 August 2014|newspaper=[[The Los Angeles Times]]|date=10 November 2011|archiveurl=https://web.archive.org/web/20140829220754/http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival|url=http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|accessdate=29 August 2014|newspaper=[[Orange County Register]]|date=28 May 2014|archiveurl=https://web.archive.org/web/20140829215845/http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival&lt;br /&gt;
|publisher=Los Angeles Register|date=29 May 2014&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;&amp;gt;{{cite news|title='High Strung' Soundtrack Announced|url=http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|accessdate=3 May 2016|publisher=FILM MUSIC REPORTER|date=9 March 2016|archiveurl=https://web.archive.org/web/20160503051828/http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|archivedate=3 May 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;&amp;gt;{{cite web|author1=Kristyn Burtt|title=Heather Youmans at the Red Carpet Premiere for &amp;quot;High Strung&amp;quot; #HighStrungMovie|url=https://www.youtube.com/watch?v=YOlN1Zt4_I8|website=YouTube.com|publisher=Mingle Media TV|accessdate=3 May 2016|date=30 March 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=Meet This Week's She Rocks Spotlight Series Artists, Including Grammy-Nominated Headliner Mindi Abair | website=Parade | date=2020-04-22 | url=https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-url=https://web.archive.org/web/20200427002753/https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-date=2020-04-27 | url-status=dead | access-date=2020-04-27}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;&amp;gt;{{cite web | title=Daily Discovery: Heather Youmans, &amp;quot;Shine&amp;quot; « American Songwriter | website=American Songwriter | date=2019-11-13 | url=https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200316151706/https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-date=2020-03-16 | url-status=live | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;&amp;gt;{{cite web | last=Buttonow | first=Leslie | title=Front and Center: Heather Youmans, PR &amp;amp; Communications Manager, Fender Musical Instruments Corporation – the WiMN - The Women's International Music Network | website=thewimn.com | date=2019-05-01 | url=https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-url=https://web.archive.org/web/20200426083920/https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-date=2020-04-26 | url-status=unfit | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;&amp;gt;{{cite web | title=Premiere: Singer-Songwriter Heather Youmans Reveals Latest Single &amp;quot;Shine&amp;quot; + Music Video | website=Elicit Magazine | date=2019-10-18 | url=http://www.elicitmagazine.com/heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200428035459/http://www.elicitmagazine.com/heather-youmans-shine/ | archive-date=2020-04-28 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;&amp;gt;{{cite web |url= https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble |title= Heather Youmans Gets Honest And Real In &amp;quot;My Kind Of Trouble&amp;quot; |date= 2019-08-13 |website= BuzzMusic |access-date= 2020-04-27 |archive-date= 2020-04-28 |archive-url= https://web.archive.org/web/20200428034603/https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;&amp;gt;{{cite web | title=Emerging Headliner: Heather Youmans | website=Headliner Magazine | date=2020-02-25 | url=https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-url=https://web.archive.org/web/20200225061919/https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-date=2020-02-25 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;&amp;gt;{{cite web | last=Brunner | first=Jeryl | title=Why This Successful Singer-Songwriter Won't Give Up Her Day Job | website=Forbes | date=2020-09-30 | url=https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/ | access-date=2020-10-01 |archive-url=https://web.archive.org/web/20201001011624if_/https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/?fbclid=IwAR3q2uGBNQP6MO-2pr57Mopo6AM0b_lktTAEhvQKHD6XhTNH5jSQoOQpiT4#5d2b64a67b7e|archive-date=2020-10-01}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=You're Gonna Feel the Joy of Heather Youmans' Video for 'Shine' | website=Parade: Entertainment, Recipes, Health, Life, Holidays | date=2020-10-06 | url=https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-url=https://web.archive.org/web/20201007032747/https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-date=2020-10-07 | url-status=dead | access-date=2020-10-07}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;&amp;gt;{{cite web | title=Heather Youmans Releases 'Shine' As Love Letter To Younger Self | website=Headliner Magazine | url=https://headlinermagazine.net/blog/heather-youmans-releases-shine-as-love-letter-to-younger-self.html | access-date=2020-10-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;&amp;gt;{{cite AV media  | people = Heather Youmans  | date = 2020-10-28  | title = The Tap Dancer Performs &amp;quot;Youngblood&amp;quot; By 5 Seconds Of Summer - Season 1 Ep. 4 - I CAN SEE YOUR VOICE  | language = en  | url = https://www.youtube.com/watch?v=Z5rghUxRero  | access-date = 2020-10-31  | publisher = FOX }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot;&amp;gt;{{cite web | title=Column: Singer from Vista stuns panel in new Fox reality series | website=San Diego Union-Tribune | date=2020-11-14 | url=https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-url=https://web.archive.org/web/20201118211051/https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-date=2020-11-18 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot;&amp;gt;{{cite web | last=Upadhyay | first=Nayna | title=EXCLUSIVE - Heather Youmans says 'I Can See Your Voice' is all about finding 'singers that America needs to know' | website=MEAWW | date=2020-11-16 | url=https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-url=https://web.archive.org/web/20201116192203/https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-date=2020-11-16 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.heatheryoumans.com Official website]&lt;br /&gt;
* {{YouTube|user=HeatherYoumans|Heather Youmans}}&lt;br /&gt;
* {{Facebook|HeatherYoumansOfficial|Heather Youmans}}&lt;br /&gt;
&amp;lt;!--* {{itunes|us/artist/heather-youmans/id219552589|Heather Youmans}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Youmans, Heather}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Categories &lt;br /&gt;
[[Category:Articles created via the Article Wizard]]---&amp;gt;&lt;br /&gt;
[[Category:1992 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:American stage actresses]]&lt;br /&gt;
[[Category:American women singer-songwriters]]&lt;br /&gt;
[[Category:American musical theatre actresses]]&lt;br /&gt;
[[Category:21st-century American actresses]]&lt;br /&gt;
[[Category:21st-century American singers]]&lt;br /&gt;
[[Category:Musicians from San Diego]]&lt;br /&gt;
[[Category:Musicians from Vista, California]]&lt;br /&gt;
[[Category:American music journalists]]&lt;br /&gt;
[[Category:American women journalists]]&lt;br /&gt;
[[Category:Journalists from California]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--[[Category:American film actresses]]&lt;br /&gt;
[[Category:American television actresses]]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Women writers about music]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Singer-songwriters from California]]&lt;br /&gt;
{{authority control}}&lt;br /&gt;
[[Category:21st-century American women singers]]&lt;br /&gt;
[[Category:21st-century American journalists]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6288</id>
		<title>Draft: Heather Youmans</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6288"/>
		<updated>2024-02-29T02:02:40Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{short description|American singer-songwriter}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox musical artist&lt;br /&gt;
| name             = Heather Youmans&lt;br /&gt;
| image            = File:Heather_Youmans.jpg&lt;br /&gt;
| image_size       =&lt;br /&gt;
| landscape        = &amp;lt;!-- yes, if wide image, otherwise leave blank --&amp;gt;&lt;br /&gt;
| alt              = Heather Youmans sings at 2011 Relay For Life in San Diego, California&lt;br /&gt;
| caption          =&lt;br /&gt;
| birth_name       = Heather Anne Youmans&lt;br /&gt;
| native_name      =&lt;br /&gt;
| native_name_lang =&lt;br /&gt;
| alias            =&lt;br /&gt;
| birth_date       = {{birth date and age|1992|05|16}}&lt;br /&gt;
| birth_place      = [[Vista, California]], U.S.&lt;br /&gt;
| origin           =&lt;br /&gt;
| death_date       = &amp;lt;!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) --&amp;gt;&lt;br /&gt;
| death_place      =&lt;br /&gt;
| genre            = Rock, pop, country, soul&lt;br /&gt;
| occupation       = Singer-songwriter, actor, journalist&lt;br /&gt;
| instrument       = vocals, bass&lt;br /&gt;
| years_active     = 2002–present&lt;br /&gt;
| label            = {{plainlist| &lt;br /&gt;
* Caption Records&lt;br /&gt;
* Weir Brothers Entertainment&lt;br /&gt;
* Suspicious Love Productions}}&lt;br /&gt;
| associated_acts  =&lt;br /&gt;
| website          = {{URL|www.heatheryoumans.com}}&lt;br /&gt;
| module =&lt;br /&gt;
&lt;br /&gt;
  {{Infobox person&lt;br /&gt;
    | education	= {{highlight|[[Master of Business Administration| MBA]]}}&lt;br /&gt;
    | alma_mater = {{highlight|[[California State University, Long Beach]] (2013)}}&lt;br /&gt;
    | television = {{plainlist| [[I Can See Your Voice (American TV series)| ''I Can See Your Voice'' ]]}}&lt;br /&gt;
  }}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color: moccasin&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Heather Youmans is an American principal and session singer. Opening for a UNICEF benefit concert in 2005, featuring Sting and Natalie Cole, cemented Youmans' future goals for the stage.  Opportunities arose with 20th Century Fox motion pictures, both as a singer and songwriter, and Youmans has had a long running association with Disney (since 2005). Youmans completed a tour of China, ''Disney 100 Wonderland'' in 2024, and enjoys singing the national anthem for professional sports teams (MLB and NHL); video footage of her anthem performances have gone viral twice.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Heather Youmans''' is an American singer-songwriter, actress, tap dancer and journalist, her work has been featured in ''American Songwriter'' magazine,&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt; [[Forbes|''Forbes Women'']] and ''Parade'' magazine profiled her career and music in 2020.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans tap dancing on [[I Can See Your Voice (American TV series)|''I Can See Your Voice'']] episode 4 (FOX),&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; convinced the judges that she is a professional dancer,&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
a video depicting her delivery of the national anthem and dealing with acoustic delay effect of a large stadium (Oakland Coliseum) went viral on social media in 2021.&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Early life ==&lt;br /&gt;
Youmans began landing theatre roles at age ten, such as Amarylis in ''[[The Music Man]]'',  Marta in ''[[The Sound of Music]]'' in 2003,&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;/&amp;gt; as well as Nellie in ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]'' in 2004 at the [[Lawrence Welk|Welk]] Resort Theatre.&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;/&amp;gt;  In 2004, she won first place in the Del Mar TV Idol Contest, Junior Division, at age twelve.&amp;lt;ref name=DelMarTV/&amp;gt; On November 30, 2005, Youmans performed an opening solo at the [[UNICEF]] Snowflake Ball at the [[Beverly Wilshire Hotel|Regent Beverly Wilshire]]. Headlining acts for the evening included, [[Sting (musician)|Sting]], [[Chris Botti]] and [[Natalie Cole]].&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans attended [[Rancho Buena Vista High School]] and was active in the Associated Student Body, dance and drama programs. In 2009, she won the MACY Award for Highest Achievement and Best Supporting Vocal-Female for her role as Rusty in [[Footloose (musical)|''Footloose'']],&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;/&amp;gt; and Best Vocal Female in 2010 for her role as Jo in ''[[Little Women]]''.&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Education ==&lt;br /&gt;
Youmans holds a B.A. in Journalism and Mass Communication with a music minor (classical and jazz vocal at [[Bob Cole Conservatory of Music]]). She graduated [[magna cum laude]] from [[California State University, Long Beach]] (CSULB) in 2013, and graduated with an MBA at CSULB with an emphasis in marketing. During her undergraduate studies, Youmans created and hosted ''Heartbreakers: The Women of Rock'', a radio format program on [[Kbeach#22 West Radio|KBeach.org]] (2011-2013).  {{Highlight|While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Career ==&lt;br /&gt;
In 2005, Youmans earned a voice-over part, playing Becky Thatcher in Disney's ''[[Tom Sawyer's Island]]'' and the following year, won the part of Shana the Rock Star in a pre-production musical ''[[Teen Witch the Musical]]'' (2007).&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt; These accomplishments led to featured artist performances on the soundtrack for [[Moondance Alexander]] (2007).&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;/&amp;gt; Youmans' single, &amp;quot;Girl to Change Your World&amp;quot;, was a (2011) hit on [[Radio Disney]],&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; and it is one of the two Youmans songs included in the film ''Love by Design'' (2014), starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]].&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;The [[Teen Witch the Musical]] project was successful in its primary goal of reproducing the missing soundtrack for the Halloween classic film [[Teen Witch]] (1989).&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt; The musical stage-play never made it out of [[Workshop production|workshop]] and has yet to achieve the secondary goal of becoming a viable [[Broadway theatre|Broadway]] offering.&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;/&amp;gt; This association with Weir Brothers Productions led to additional soundtrack features in the films ''[[Moondance Alexander]]'' (2007), ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
While concurrently studying journalism and music, Youmans auditioned and stacked up credits in Southern California regional theater and wrote for national and regional newspapers on entertainment topics. &amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; She has produced and hosted an entertainment format radio show,&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; interviewed entertainment industry legends,&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt; and ran a marketing campaign for [[Jon MacLennan|Jon MacLennan's]] iBook, ''Melodic Expressions: The Art of the Line'' (2012).&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;/&amp;gt; She works as a communications professional in [[Los Angeles]].&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Theatre and live performances ===&lt;br /&gt;
==== Beverly Hills opener  ====&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;&lt;br /&gt;
==== American Idol ====&lt;br /&gt;
In 2012, Youmans performed &amp;quot;[[Some Kind of Wonderful (The Drifters song)|Some Kind of Wonderful]]&amp;quot; at the [[American Idol]] San Diego competition and won a golden ticket after a unanimous decision from the judges ([[Steven Tyler]], [[Jennifer Lopez]] and [[Randy Jackson]]), which advanced her to the [[American Idol (season 11)#Hollywood week and Vegas rounds|''Hollywood Week'']] competition.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  Youmans was eliminated during ''Hollywood Week'' in Season 11. She attributes the elimination to nerves and an ambitious music selection, [[Heart (band)|Heart]]’s &amp;quot;[[Crazy on You]]&amp;quot;.&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable sortable collapsed collapsible&amp;quot; style=&amp;quot;width:98%; margin-right:0; text-align:center;&amp;quot;&lt;br /&gt;
|+ Professional performances and theatre roles&lt;br /&gt;
|-&lt;br /&gt;
! Year&lt;br /&gt;
! Title&lt;br /&gt;
! Role&lt;br /&gt;
! Venue&lt;br /&gt;
! Director/Producer&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[The Music Man]]''||align=&amp;quot;center&amp;quot;|Amarylis||Welk Resort Theatre||Lewis Wilkenfeld&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[Sound of Music]]''||align=&amp;quot;center&amp;quot;|Marta||Welk Resort Theatre||Joshua Carr&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Nellie||Welk Resort Theatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie (musical)|Annie]]''||align=&amp;quot;center&amp;quot;|Orphan Sadie||La Mirada Theatre for the Performing Arts||McCoy Rigby Ent. Glenn Casale&lt;br /&gt;
|-&lt;br /&gt;
|2004||''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Jessie||Saddleback Civic Light Opera||Sheryl Donchey&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[To Kill a Mockingbird]]''||align=&amp;quot;center&amp;quot;|Scout||West Coast Ensemble|| {{sic|hide=y|C. Jaffe/R. Israel}}&lt;br /&gt;
|-&lt;br /&gt;
|2005||UNICEF Snowflake Ball||align=&amp;quot;center&amp;quot;|Opening Soloist||[[Beverly Wilshire Hotel|Regent Beverly Wilshire]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2005|| ''[[Tight Quarters]]''||align=&amp;quot;center&amp;quot;|Lauren||Whitefire Theatre||Jules Aaron&lt;br /&gt;
|-&lt;br /&gt;
|2005||Kodak Christmas||align=&amp;quot;center&amp;quot;|Featured Soloist||[[Dolby Theatre|Kodak Theatre]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2006||''[[Teen Witch the Musical]]''||align=&amp;quot;center&amp;quot;|Shana the Rock Star|| [[Workshop production|workshop]] ||Alana Lambros&lt;br /&gt;
|-&lt;br /&gt;
|2008||[[New Music Weekly]] Awards||align=&amp;quot;center&amp;quot;|Featured Soloist||Avalon Theatre||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2009||''[[42nd Street (musical)|42nd Street]]'' ||align=&amp;quot;center&amp;quot;|Ensemble|| Moonlight Amphitheatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2010|| ''Once Upon A Wedding''||align=&amp;quot;center&amp;quot;|Daisy||Bahia Resort-Dinner Theatre||Laughing Tree Prod.&lt;br /&gt;
|-&lt;br /&gt;
|2010-12|| ''Journey To The Lost Temple''||align=&amp;quot;center&amp;quot;|Pippin||[[Legoland]]-California||Shawn Griener&lt;br /&gt;
|-&lt;br /&gt;
|2012||''[[American Idol]]'' Season 11||align=&amp;quot;center&amp;quot;|Contestant|| [[USS Midway Museum]]|| [[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2012||''American Idol'' Season 11||align=&amp;quot;center&amp;quot;|Hollywood Week||[[Pasadena Civic Auditorium]]||[[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2019||Jason Robert Brown In Concert||align=&amp;quot;center&amp;quot;|Lead singer||Cabaret at the Merc||Gerald Sternbach &lt;br /&gt;
|-&lt;br /&gt;
|2019||Evita In Concert||align=&amp;quot;center&amp;quot;|Ensemble||PVPA||Richard Israel &lt;br /&gt;
|-&lt;br /&gt;
|2020||HAIR||align=&amp;quot;center&amp;quot;|Suzannah 1000-Year-Old Monk||LGBT Center LA||Kate Sullivan Jared Stein&lt;br /&gt;
|-&lt;br /&gt;
|2020||New Year's Eve, National Anthem Singer||align=&amp;quot;center&amp;quot;|Soloist||Staples Center||LA Kings &amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;/&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Recorded and broadcast ===&lt;br /&gt;
&amp;lt;s&amp;gt;In addition to performing in nationally televised commercials, Youmans has been involved in several cutting-edge media projects.&amp;lt;/s&amp;gt;  In 2005, Youmans played the part of Becky Thatcher in Disney's [[Tom Sawyer's Island]], a voice-over project.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  The performance was delivered via hand-held computers issued to visitors on [[Disneyland|Disneyland's]] Tom Sawyer's Island. A pilot project, titled &amp;quot;Available Light&amp;quot;, was one of the first to test Sony Blu-ray camera technology.&lt;br /&gt;
&lt;br /&gt;
==== Soundtracks ====&lt;br /&gt;
* ''[[Teen Witch the Musical]]'' (2007) original cast recording, Weir Brothers Entertainment.&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Moondance Alexander]]'' (2007) starring [[Kay Panabaker]], [[Don Johnson]] and [[Lori Loughlin]], [[20th Century Fox|20th Century Fox Home Entertainment]]&lt;br /&gt;
* ''[[Flicka 2]]'' (2010) starring [[Patrick Warburton]], [[Tammin Sursok]] and [[Clint Black]], [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011) starring [[Travis Turner]] and [[Donnelly Rhodes]],  [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''Love by Design'' (2014) starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]], Gold Line Prod. Int.&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Newport Beach FF&amp;quot;&amp;gt;{{cite web|title=Newport Beach Film Festival|url=https://www.imdb.com/event/ev0000491/2014?ref_=ttawd_ev_1|website=[[IMDb]]|accessdate=1 February 2015|date=2 February 2014|quote=First-time Filmmaker: Winner}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*''High Strung'' (2016) starring [[Keenan Kampa]], Nicholas Galitzine, [[Jane Seymour (actress)|Jane Seymour]], Riviera Films.&amp;lt;ref name=&amp;quot;High Strung&amp;quot;&amp;gt;{{cite web|title=''High Strung''|url=http://www.soundtrack.net/album/high-strung/|website=Soundtrack.net|accessdate=30 March 2016|date=8 April 2016}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Singles ====&lt;br /&gt;
&amp;lt;!--* &amp;quot;Never Gonna Be The Same Again&amp;quot; (2007)&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt;--&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World&amp;quot; (2011)&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World - The Remixes&amp;quot; (2011)&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;In My Arms&amp;quot; (2012)&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;My Kind of Trouble LIVE at the Recordium&amp;quot; (2019)&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Is It Just Me LIVE at the Recordium&amp;quot; (2019)&lt;br /&gt;
* &amp;quot;Shine&amp;quot; (2019)&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;You Made Me Hate Love Songs LIVE at YouTube Space&amp;quot; (2020)&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;A Little Closer To Happy&amp;quot; (2021)&lt;br /&gt;
* &amp;quot;Worth It&amp;quot; (2021)&lt;br /&gt;
&lt;br /&gt;
=== Journalism ===&lt;br /&gt;
Youmans writes about entertainment topics, specifically dance, music, theatre and film. Her Southern California beat includes covering venues, such as the [[Orange County Fair (California)|Orange County Fair]], the Newport Beach Jazz Festival, the [[Playboy Jazz Festival]], Sunset Jazz at Newport, the [[Hollywood Bowl]] and [[Segerstrom Center for the Arts]]. Her freelance position with [[Freedom Communications]] has afforded interviews with: [[George Lopez]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Drew Carey]] and [[Brooke Shields]],&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt;  Grammy Award-winning musicians [[David Sanborn]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Jeff Hamilton (drummer)|Jeff Hamilton]]&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;/&amp;gt; for the ''[[Orange County Register]]'', and her interview with Grammy nominee [[Brian McKnight]] was additionally published in the ''Los Angeles Register''.&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;/&amp;gt; Earlier interviews include, [[Chita Rivera]] for the ''[[Los Angeles Times]]''&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and interviews with [[Ann Wilson]]&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt; and  [[Martina McBride]]&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt; for the [[Los Angeles Times suburban sections|Los Angeles Times Media Group's]] ''Daily Pilot''.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;!--- See http://en.wikipedia.org/wiki/Wikipedia:Footnotes on how to create references using &amp;lt;ref&amp;gt;&amp;lt;/ref&amp;gt; tags which will then appear here automatically --&amp;gt;&lt;br /&gt;
{{Reflist|2| refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student gets golden ticket on 'American Idol'|url=http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|publisher=Daily 49er|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821011818/http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|archivedate=21 August 2014|date=24 January 2012}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;&amp;gt;{{cite web|author1=Giulia Nahmany|title=Giulia Nahmany Love by Design Premiere at Newport Beach Film Festival|url=https://www.youtube.com/watch?v=et6kw-AH0ZA|publisher=Giulia Nahmany YouTube Channel|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821015154/https://www.youtube.com/watch?v=et6kw-AH0ZA|archivedate=21 August 2014|date=20 May 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=TWTM&amp;gt;{{cite web|title=Teen Witch The Musical|url=http://weirbrothersentertainment.com/releases/teen-witch|publisher=Weir Brothers Entertainment|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822014020/http://weirbrothersentertainment.com/releases/teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;&amp;gt;{{cite web|title=Heather Youmans: Credits|url=http://www.allmusic.com/artist/heather-youmans-mn0000643210/credits|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=DelMarTV&amp;gt;{{cite web|title=Del Mar TV Idol Contest 2004|url=http://www.delmartv.com/idol/idol04.html|publisher=Del Mar TV Foundation|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822011402/http://www.delmartv.com/idol/idol04.html|archivedate=22 August 2014|date=10 October 2004|quote=Heather Youmans (1st place)}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;&amp;gt;{{cite web|title=Moondance Alexander Soundtrack|url=http://www.allmusic.com/album/moondance-alexander-mw0000493713|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;&amp;gt;{{cite web|title=2010 MACY Award Winners|url=http://macyawards.com/news/67-news/132-2010-macy-award-winners|publisher=MACY Awards|accessdate=22 August 2014|date=22 May 2010|url-status=dead|archiveurl=https://web.archive.org/web/20140903125715/http://macyawards.com/news/67-news/132-2010-macy-award-winners|archivedate=3 September 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;&amp;gt;{{cite web|title=2009 MACY Award Winners|url=http://macyawards.com/news/67-news/122-2009-macy-award-winners|accessdate=22 August 2014|url-status=dead|archiveurl=https://web.archive.org/web/20140822022545/http://macyawards.com/news/67-news/122-2009-macy-award-winners|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;&amp;gt;{{cite news|last1=Krugen|first1=Pam|title=Strong leads, chemistry make Welk's 'Get Your Gun' a winner|url=http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|newspaper=The San Diego Union-Tribune|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822042246/http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|archivedate=22 August 2014|date=3 September 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=Annie Get Your Gun|url=http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822044216/http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|archivedate=22 August 2014|year=2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=The Sound of Music|url=http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822045133/http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;&amp;gt;{{cite web|last1=Wood|first1=Jennifer M.|title=18 Fun Facts About 'Teen Witch'|url=http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|publisher=mental_floss|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822193830/http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;&amp;gt;{{cite web|title=Girl to Change Your World: Releases|url=http://www.allmusic.com/album/girl-to-change-your-world-mw0002363250/releases|website=[[AllMusic]]|accessdate=23 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - Girl To Change Your World|url=https://www.youtube.com/watch?v=lYU6FLZm9nQ|publisher=Caption Records YouTube Channel|accessdate=23 August 2014|date=7 February 2010}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student loses shot at 'Idol' fame|url=http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|publisher=Daily 49er|accessdate=23 August 2014|archiveurl=https://web.archive.org/web/20140823012031/http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|archivedate=23 August 2014|date=12 February 2012|quote=Still, she said she’s not ashamed of the footage. “Yeah, it sucks,” she said. “Everybody has a bad day. Yeah, it’s unfortunate that they showed me having a bad day, but what can you do?”}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Newport Jazz Festival goes down smooth|url=http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|newspaper=[[Orange County Register]]|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826092910/http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|archivedate=26 August 2014|date=29 May 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;&amp;gt;{{cite web|last1=Schnaidt|first1=Joe|title=Lighting The Way To Hope On Rodeo Drive|url=http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|publisher=Canyon News|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826100957/http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|archivedate=26 August 2014|date=4 December 2005|quote=BEVERLY HILLS — Wednesday, November 30 illuminated Rodeo Drive at Wilshire Boulevard for the annual holiday lighting ceremony with celebrities, sponsors and a ray of hope for children facing poverty, health risks and poor education.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 9 August 2011 | title = Marley &amp;amp; Me The Puppy Years music from and inspired by the motion picture | medium = MP3 &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B005JBC14S&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 4 May 2010 | title = Flicka 2 Original Motion Picture Soundtrack | medium = MP3/CD &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B003JE2EIU&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;JRAY Nom&amp;quot;&amp;gt;{{cite web|title=2009 JRAY Awards|url=http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|publisher=Fulerton Civic Light Opera|accessdate=28 August 2014|archiveurl=https://web.archive.org/web/20140828012354/http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|archivedate=28 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;&amp;gt;{{cite news|last1=Malik|first1=Abhay|title=Alumnus Jon MacLennan's iBook 'Melodic Expressions' advances guitar instruction |url=http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|newspaper=[[Daily Bruin]]|accessdate=8 August 2014|archiveurl=https://web.archive.org/web/20140808121825/http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|archivedate=8 August 2014|date=8 May 2012|quote=Heather Youmans, an “American Idol” contestant and freelance journalist, helped edit the iBook and has expressed excitement over the finished product as well.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;&amp;gt;{{cite web|last1=MacLennan|first1=Jon|title=In My Arms Jon MacLennan (feat. Heather Youmans)|url=https://www.youtube.com/watch?v=G8QJ5aToHxw|publisher=Jon MacLennan YouTube Channel|accessdate=28 August 2014|date=16 July 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - &amp;quot;Never Gonna Be the Same Again&amp;quot; Studio City Sound LIVE|url=https://www.youtube.com/watch?v=rYhEtU1EgUM|publisher=[[Studio City Sound]]|accessdate=28 August 2014|date=3 October 2011}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;iBook Press Release&amp;quot;&amp;gt;{{cite press release|title=Melodic Expressions: The Art of the Line|url=http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|website=www.heatheryoumansmusic.com/|publisher=Jon MacLennan|accessdate=28 August 2014|date=3 May 2013|archiveurl=https://web.archive.org/web/20140828221739/http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|archivedate=28 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Change in tempo for Playboy Jazz Festival&lt;br /&gt;
|url=http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=21 August 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829013440/http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Brooke Shields takes the helm of 'Chicago'&lt;br /&gt;
|url=http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=17 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829014021/http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Sunset Jazz series kicks off in Newport&lt;br /&gt;
|url=http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|accessdate=29 August 2014|newspaper=[[The Orange County Register]]|date=9 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829015132/http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;&amp;gt;{{cite web|title=Weir Brothers Entertainment: Albums|url=http://www.last.fm/label/Weir+Brothers+Entertainment/albums|website=last.fm|publisher=Weir Brothers Entertainment|accessdate=29 August 2014|archiveurl=https://web.archive.org/web/20140829023539/http://www.last.fm/label/Weir+Brothers+Entertainment/albums|archivedate=29 August 2014|year=2011|quote=Girl to Change Your World singles}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Music for most every taste|url=http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|accessdate=29 August 2014|newspaper=Daily Pilot|archiveurl=https://web.archive.org/web/20140829225029/http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=O.C. Fair gets some Heart|url=http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|accessdate=29 August 2014|newspaper=Daily Pilot|date=2 August 2012|archiveurl=https://web.archive.org/web/20140829224632/http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Youmans: Chita Rivera to perform hits from a storied career|url=http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|accessdate=29 August 2014|newspaper=[[The Los Angeles Times]]|date=10 November 2011|archiveurl=https://web.archive.org/web/20140829220754/http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival|url=http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|accessdate=29 August 2014|newspaper=[[Orange County Register]]|date=28 May 2014|archiveurl=https://web.archive.org/web/20140829215845/http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival&lt;br /&gt;
|publisher=Los Angeles Register|date=29 May 2014&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;&amp;gt;{{cite news|title='High Strung' Soundtrack Announced|url=http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|accessdate=3 May 2016|publisher=FILM MUSIC REPORTER|date=9 March 2016|archiveurl=https://web.archive.org/web/20160503051828/http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|archivedate=3 May 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;&amp;gt;{{cite web|author1=Kristyn Burtt|title=Heather Youmans at the Red Carpet Premiere for &amp;quot;High Strung&amp;quot; #HighStrungMovie|url=https://www.youtube.com/watch?v=YOlN1Zt4_I8|website=YouTube.com|publisher=Mingle Media TV|accessdate=3 May 2016|date=30 March 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=Meet This Week's She Rocks Spotlight Series Artists, Including Grammy-Nominated Headliner Mindi Abair | website=Parade | date=2020-04-22 | url=https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-url=https://web.archive.org/web/20200427002753/https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-date=2020-04-27 | url-status=dead | access-date=2020-04-27}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;&amp;gt;{{cite web | title=Daily Discovery: Heather Youmans, &amp;quot;Shine&amp;quot; « American Songwriter | website=American Songwriter | date=2019-11-13 | url=https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200316151706/https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-date=2020-03-16 | url-status=live | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;&amp;gt;{{cite web | last=Buttonow | first=Leslie | title=Front and Center: Heather Youmans, PR &amp;amp; Communications Manager, Fender Musical Instruments Corporation – the WiMN - The Women's International Music Network | website=thewimn.com | date=2019-05-01 | url=https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-url=https://web.archive.org/web/20200426083920/https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-date=2020-04-26 | url-status=unfit | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;&amp;gt;{{cite web | title=Premiere: Singer-Songwriter Heather Youmans Reveals Latest Single &amp;quot;Shine&amp;quot; + Music Video | website=Elicit Magazine | date=2019-10-18 | url=http://www.elicitmagazine.com/heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200428035459/http://www.elicitmagazine.com/heather-youmans-shine/ | archive-date=2020-04-28 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;&amp;gt;{{cite web |url= https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble |title= Heather Youmans Gets Honest And Real In &amp;quot;My Kind Of Trouble&amp;quot; |date= 2019-08-13 |website= BuzzMusic |access-date= 2020-04-27 |archive-date= 2020-04-28 |archive-url= https://web.archive.org/web/20200428034603/https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;&amp;gt;{{cite web | title=Emerging Headliner: Heather Youmans | website=Headliner Magazine | date=2020-02-25 | url=https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-url=https://web.archive.org/web/20200225061919/https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-date=2020-02-25 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;&amp;gt;{{cite web | last=Brunner | first=Jeryl | title=Why This Successful Singer-Songwriter Won't Give Up Her Day Job | website=Forbes | date=2020-09-30 | url=https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/ | access-date=2020-10-01 |archive-url=https://web.archive.org/web/20201001011624if_/https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/?fbclid=IwAR3q2uGBNQP6MO-2pr57Mopo6AM0b_lktTAEhvQKHD6XhTNH5jSQoOQpiT4#5d2b64a67b7e|archive-date=2020-10-01}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=You're Gonna Feel the Joy of Heather Youmans' Video for 'Shine' | website=Parade: Entertainment, Recipes, Health, Life, Holidays | date=2020-10-06 | url=https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-url=https://web.archive.org/web/20201007032747/https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-date=2020-10-07 | url-status=dead | access-date=2020-10-07}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;&amp;gt;{{cite web | title=Heather Youmans Releases 'Shine' As Love Letter To Younger Self | website=Headliner Magazine | url=https://headlinermagazine.net/blog/heather-youmans-releases-shine-as-love-letter-to-younger-self.html | access-date=2020-10-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;&amp;gt;{{cite AV media  | people = Heather Youmans  | date = 2020-10-28  | title = The Tap Dancer Performs &amp;quot;Youngblood&amp;quot; By 5 Seconds Of Summer - Season 1 Ep. 4 - I CAN SEE YOUR VOICE  | language = en  | url = https://www.youtube.com/watch?v=Z5rghUxRero  | access-date = 2020-10-31  | publisher = FOX }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot;&amp;gt;{{cite web | title=Column: Singer from Vista stuns panel in new Fox reality series | website=San Diego Union-Tribune | date=2020-11-14 | url=https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-url=https://web.archive.org/web/20201118211051/https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-date=2020-11-18 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot;&amp;gt;{{cite web | last=Upadhyay | first=Nayna | title=EXCLUSIVE - Heather Youmans says 'I Can See Your Voice' is all about finding 'singers that America needs to know' | website=MEAWW | date=2020-11-16 | url=https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-url=https://web.archive.org/web/20201116192203/https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-date=2020-11-16 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.heatheryoumans.com Official website]&lt;br /&gt;
* {{YouTube|user=HeatherYoumans|Heather Youmans}}&lt;br /&gt;
* {{Facebook|HeatherYoumansOfficial|Heather Youmans}}&lt;br /&gt;
&amp;lt;!--* {{itunes|us/artist/heather-youmans/id219552589|Heather Youmans}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Youmans, Heather}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Categories &lt;br /&gt;
[[Category:Articles created via the Article Wizard]]---&amp;gt;&lt;br /&gt;
[[Category:1992 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:American stage actresses]]&lt;br /&gt;
[[Category:American women singer-songwriters]]&lt;br /&gt;
[[Category:American musical theatre actresses]]&lt;br /&gt;
[[Category:21st-century American actresses]]&lt;br /&gt;
[[Category:21st-century American singers]]&lt;br /&gt;
[[Category:Musicians from San Diego]]&lt;br /&gt;
[[Category:Musicians from Vista, California]]&lt;br /&gt;
[[Category:American music journalists]]&lt;br /&gt;
[[Category:American women journalists]]&lt;br /&gt;
[[Category:Journalists from California]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--[[Category:American film actresses]]&lt;br /&gt;
[[Category:American television actresses]]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Women writers about music]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Singer-songwriters from California]]&lt;br /&gt;
{{authority control}}&lt;br /&gt;
[[Category:21st-century American women singers]]&lt;br /&gt;
[[Category:21st-century American journalists]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6287</id>
		<title>Draft: Heather Youmans</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6287"/>
		<updated>2024-02-29T02:02:05Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{short description|American singer-songwriter}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox musical artist&lt;br /&gt;
| name             = Heather Youmans&lt;br /&gt;
| image            = File:Heather_Youmans.jpg&lt;br /&gt;
| image_size       =&lt;br /&gt;
| landscape        = &amp;lt;!-- yes, if wide image, otherwise leave blank --&amp;gt;&lt;br /&gt;
| alt              = Heather Youmans sings at 2011 Relay For Life in San Diego, California&lt;br /&gt;
| caption          =&lt;br /&gt;
| birth_name       = Heather Anne Youmans&lt;br /&gt;
| native_name      =&lt;br /&gt;
| native_name_lang =&lt;br /&gt;
| alias            =&lt;br /&gt;
| birth_date       = {{birth date and age|1992|05|16}}&lt;br /&gt;
| birth_place      = [[Vista, California]], U.S.&lt;br /&gt;
| origin           =&lt;br /&gt;
| death_date       = &amp;lt;!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) --&amp;gt;&lt;br /&gt;
| death_place      =&lt;br /&gt;
| genre            = Rock, pop, country, soul&lt;br /&gt;
| occupation       = Singer-songwriter, actor, journalist&lt;br /&gt;
| instrument       = vocals, bass&lt;br /&gt;
| years_active     = 2002–present&lt;br /&gt;
| label            = {{plainlist| &lt;br /&gt;
* Caption Records&lt;br /&gt;
* Weir Brothers Entertainment&lt;br /&gt;
* Suspicious Love Productions}}&lt;br /&gt;
| associated_acts  =&lt;br /&gt;
| website          = {{URL|www.heatheryoumans.com}}&lt;br /&gt;
| module =&lt;br /&gt;
&lt;br /&gt;
  {{Infobox person&lt;br /&gt;
    | education	= {{highlight|[[Master of Business Administration| MBA]]}}&lt;br /&gt;
    | alma_mater = {{highlight|[[California State University, Long Beach]] (2013)}}&lt;br /&gt;
    | television = {{plainlist| [[I Can See Your Voice (American TV series)| ''I Can See Your Voice'' ]]}}&lt;br /&gt;
  }}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color: moccasin&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Heather Youmans is an American principal and session singer. Opening for a UNICEF benefit concert in 2005, featuring Sting and Natalie Cole, cemented Youmans' future goals for the stage.  Opportunities arose with 20th Century Fox motion pictures, both as a singer and songwriter, and Youmans has had a long running association with Disney (since 2005). Youmans completed a tour of China, ''Disney 100 Wonderland'' in 2024, and enjoys singing the national anthem for professional sports teams (MLB and NHL); video footage of her anthem performances have gone viral twice.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Heather Youmans is an American &amp;lt;s&amp;gt;entertainer, specifically a&amp;lt;/s&amp;gt; principal and session singer. &amp;lt;s&amp;gt;Youmans performed an opener&amp;lt;/s&amp;gt; Opening for a UNICEF benefit concert, featuring Sting and Natalie Cole, &amp;lt;s&amp;gt;which&amp;lt;/s&amp;gt; cemented her future goals for the stage in 2005.  Opportunities arose with 20th Century Fox motion pictures as a singer and songwriter and Youmans has had a long running association with Disney (since 2005). Youmans completed a tour, Disney 100 Wonderland, in China in 2024, and enjoys singing the national anthem for professional sports teams (MLB and NHL); video footage of her performances have gone viral twice.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Heather Youmans''' is an American singer-songwriter, actress, tap dancer and journalist, her work has been featured in ''American Songwriter'' magazine,&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt; [[Forbes|''Forbes Women'']] and ''Parade'' magazine profiled her career and music in 2020.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans tap dancing on [[I Can See Your Voice (American TV series)|''I Can See Your Voice'']] episode 4 (FOX),&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; convinced the judges that she is a professional dancer,&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
a video depicting her delivery of the national anthem and dealing with acoustic delay effect of a large stadium (Oakland Coliseum) went viral on social media in 2021.&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Early life ==&lt;br /&gt;
Youmans began landing theatre roles at age ten, such as Amarylis in ''[[The Music Man]]'',  Marta in ''[[The Sound of Music]]'' in 2003,&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;/&amp;gt; as well as Nellie in ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]'' in 2004 at the [[Lawrence Welk|Welk]] Resort Theatre.&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;/&amp;gt;  In 2004, she won first place in the Del Mar TV Idol Contest, Junior Division, at age twelve.&amp;lt;ref name=DelMarTV/&amp;gt; On November 30, 2005, Youmans performed an opening solo at the [[UNICEF]] Snowflake Ball at the [[Beverly Wilshire Hotel|Regent Beverly Wilshire]]. Headlining acts for the evening included, [[Sting (musician)|Sting]], [[Chris Botti]] and [[Natalie Cole]].&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans attended [[Rancho Buena Vista High School]] and was active in the Associated Student Body, dance and drama programs. In 2009, she won the MACY Award for Highest Achievement and Best Supporting Vocal-Female for her role as Rusty in [[Footloose (musical)|''Footloose'']],&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;/&amp;gt; and Best Vocal Female in 2010 for her role as Jo in ''[[Little Women]]''.&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Education ==&lt;br /&gt;
Youmans holds a B.A. in Journalism and Mass Communication with a music minor (classical and jazz vocal at [[Bob Cole Conservatory of Music]]). She graduated [[magna cum laude]] from [[California State University, Long Beach]] (CSULB) in 2013, and graduated with an MBA at CSULB with an emphasis in marketing. During her undergraduate studies, Youmans created and hosted ''Heartbreakers: The Women of Rock'', a radio format program on [[Kbeach#22 West Radio|KBeach.org]] (2011-2013).  {{Highlight|While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Career ==&lt;br /&gt;
In 2005, Youmans earned a voice-over part, playing Becky Thatcher in Disney's ''[[Tom Sawyer's Island]]'' and the following year, won the part of Shana the Rock Star in a pre-production musical ''[[Teen Witch the Musical]]'' (2007).&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt; These accomplishments led to featured artist performances on the soundtrack for [[Moondance Alexander]] (2007).&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;/&amp;gt; Youmans' single, &amp;quot;Girl to Change Your World&amp;quot;, was a (2011) hit on [[Radio Disney]],&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; and it is one of the two Youmans songs included in the film ''Love by Design'' (2014), starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]].&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;The [[Teen Witch the Musical]] project was successful in its primary goal of reproducing the missing soundtrack for the Halloween classic film [[Teen Witch]] (1989).&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt; The musical stage-play never made it out of [[Workshop production|workshop]] and has yet to achieve the secondary goal of becoming a viable [[Broadway theatre|Broadway]] offering.&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;/&amp;gt; This association with Weir Brothers Productions led to additional soundtrack features in the films ''[[Moondance Alexander]]'' (2007), ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
While concurrently studying journalism and music, Youmans auditioned and stacked up credits in Southern California regional theater and wrote for national and regional newspapers on entertainment topics. &amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; She has produced and hosted an entertainment format radio show,&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; interviewed entertainment industry legends,&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt; and ran a marketing campaign for [[Jon MacLennan|Jon MacLennan's]] iBook, ''Melodic Expressions: The Art of the Line'' (2012).&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;/&amp;gt; She works as a communications professional in [[Los Angeles]].&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Theatre and live performances ===&lt;br /&gt;
==== Beverly Hills opener  ====&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;&lt;br /&gt;
==== American Idol ====&lt;br /&gt;
In 2012, Youmans performed &amp;quot;[[Some Kind of Wonderful (The Drifters song)|Some Kind of Wonderful]]&amp;quot; at the [[American Idol]] San Diego competition and won a golden ticket after a unanimous decision from the judges ([[Steven Tyler]], [[Jennifer Lopez]] and [[Randy Jackson]]), which advanced her to the [[American Idol (season 11)#Hollywood week and Vegas rounds|''Hollywood Week'']] competition.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  Youmans was eliminated during ''Hollywood Week'' in Season 11. She attributes the elimination to nerves and an ambitious music selection, [[Heart (band)|Heart]]’s &amp;quot;[[Crazy on You]]&amp;quot;.&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable sortable collapsed collapsible&amp;quot; style=&amp;quot;width:98%; margin-right:0; text-align:center;&amp;quot;&lt;br /&gt;
|+ Professional performances and theatre roles&lt;br /&gt;
|-&lt;br /&gt;
! Year&lt;br /&gt;
! Title&lt;br /&gt;
! Role&lt;br /&gt;
! Venue&lt;br /&gt;
! Director/Producer&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[The Music Man]]''||align=&amp;quot;center&amp;quot;|Amarylis||Welk Resort Theatre||Lewis Wilkenfeld&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[Sound of Music]]''||align=&amp;quot;center&amp;quot;|Marta||Welk Resort Theatre||Joshua Carr&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Nellie||Welk Resort Theatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie (musical)|Annie]]''||align=&amp;quot;center&amp;quot;|Orphan Sadie||La Mirada Theatre for the Performing Arts||McCoy Rigby Ent. Glenn Casale&lt;br /&gt;
|-&lt;br /&gt;
|2004||''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Jessie||Saddleback Civic Light Opera||Sheryl Donchey&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[To Kill a Mockingbird]]''||align=&amp;quot;center&amp;quot;|Scout||West Coast Ensemble|| {{sic|hide=y|C. Jaffe/R. Israel}}&lt;br /&gt;
|-&lt;br /&gt;
|2005||UNICEF Snowflake Ball||align=&amp;quot;center&amp;quot;|Opening Soloist||[[Beverly Wilshire Hotel|Regent Beverly Wilshire]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2005|| ''[[Tight Quarters]]''||align=&amp;quot;center&amp;quot;|Lauren||Whitefire Theatre||Jules Aaron&lt;br /&gt;
|-&lt;br /&gt;
|2005||Kodak Christmas||align=&amp;quot;center&amp;quot;|Featured Soloist||[[Dolby Theatre|Kodak Theatre]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2006||''[[Teen Witch the Musical]]''||align=&amp;quot;center&amp;quot;|Shana the Rock Star|| [[Workshop production|workshop]] ||Alana Lambros&lt;br /&gt;
|-&lt;br /&gt;
|2008||[[New Music Weekly]] Awards||align=&amp;quot;center&amp;quot;|Featured Soloist||Avalon Theatre||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2009||''[[42nd Street (musical)|42nd Street]]'' ||align=&amp;quot;center&amp;quot;|Ensemble|| Moonlight Amphitheatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2010|| ''Once Upon A Wedding''||align=&amp;quot;center&amp;quot;|Daisy||Bahia Resort-Dinner Theatre||Laughing Tree Prod.&lt;br /&gt;
|-&lt;br /&gt;
|2010-12|| ''Journey To The Lost Temple''||align=&amp;quot;center&amp;quot;|Pippin||[[Legoland]]-California||Shawn Griener&lt;br /&gt;
|-&lt;br /&gt;
|2012||''[[American Idol]]'' Season 11||align=&amp;quot;center&amp;quot;|Contestant|| [[USS Midway Museum]]|| [[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2012||''American Idol'' Season 11||align=&amp;quot;center&amp;quot;|Hollywood Week||[[Pasadena Civic Auditorium]]||[[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2019||Jason Robert Brown In Concert||align=&amp;quot;center&amp;quot;|Lead singer||Cabaret at the Merc||Gerald Sternbach &lt;br /&gt;
|-&lt;br /&gt;
|2019||Evita In Concert||align=&amp;quot;center&amp;quot;|Ensemble||PVPA||Richard Israel &lt;br /&gt;
|-&lt;br /&gt;
|2020||HAIR||align=&amp;quot;center&amp;quot;|Suzannah 1000-Year-Old Monk||LGBT Center LA||Kate Sullivan Jared Stein&lt;br /&gt;
|-&lt;br /&gt;
|2020||New Year's Eve, National Anthem Singer||align=&amp;quot;center&amp;quot;|Soloist||Staples Center||LA Kings &amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;/&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Recorded and broadcast ===&lt;br /&gt;
&amp;lt;s&amp;gt;In addition to performing in nationally televised commercials, Youmans has been involved in several cutting-edge media projects.&amp;lt;/s&amp;gt;  In 2005, Youmans played the part of Becky Thatcher in Disney's [[Tom Sawyer's Island]], a voice-over project.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  The performance was delivered via hand-held computers issued to visitors on [[Disneyland|Disneyland's]] Tom Sawyer's Island. A pilot project, titled &amp;quot;Available Light&amp;quot;, was one of the first to test Sony Blu-ray camera technology.&lt;br /&gt;
&lt;br /&gt;
==== Soundtracks ====&lt;br /&gt;
* ''[[Teen Witch the Musical]]'' (2007) original cast recording, Weir Brothers Entertainment.&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Moondance Alexander]]'' (2007) starring [[Kay Panabaker]], [[Don Johnson]] and [[Lori Loughlin]], [[20th Century Fox|20th Century Fox Home Entertainment]]&lt;br /&gt;
* ''[[Flicka 2]]'' (2010) starring [[Patrick Warburton]], [[Tammin Sursok]] and [[Clint Black]], [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011) starring [[Travis Turner]] and [[Donnelly Rhodes]],  [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''Love by Design'' (2014) starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]], Gold Line Prod. Int.&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Newport Beach FF&amp;quot;&amp;gt;{{cite web|title=Newport Beach Film Festival|url=https://www.imdb.com/event/ev0000491/2014?ref_=ttawd_ev_1|website=[[IMDb]]|accessdate=1 February 2015|date=2 February 2014|quote=First-time Filmmaker: Winner}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*''High Strung'' (2016) starring [[Keenan Kampa]], Nicholas Galitzine, [[Jane Seymour (actress)|Jane Seymour]], Riviera Films.&amp;lt;ref name=&amp;quot;High Strung&amp;quot;&amp;gt;{{cite web|title=''High Strung''|url=http://www.soundtrack.net/album/high-strung/|website=Soundtrack.net|accessdate=30 March 2016|date=8 April 2016}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Singles ====&lt;br /&gt;
&amp;lt;!--* &amp;quot;Never Gonna Be The Same Again&amp;quot; (2007)&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt;--&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World&amp;quot; (2011)&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World - The Remixes&amp;quot; (2011)&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;In My Arms&amp;quot; (2012)&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;My Kind of Trouble LIVE at the Recordium&amp;quot; (2019)&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Is It Just Me LIVE at the Recordium&amp;quot; (2019)&lt;br /&gt;
* &amp;quot;Shine&amp;quot; (2019)&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;You Made Me Hate Love Songs LIVE at YouTube Space&amp;quot; (2020)&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;A Little Closer To Happy&amp;quot; (2021)&lt;br /&gt;
* &amp;quot;Worth It&amp;quot; (2021)&lt;br /&gt;
&lt;br /&gt;
=== Journalism ===&lt;br /&gt;
Youmans writes about entertainment topics, specifically dance, music, theatre and film. Her Southern California beat includes covering venues, such as the [[Orange County Fair (California)|Orange County Fair]], the Newport Beach Jazz Festival, the [[Playboy Jazz Festival]], Sunset Jazz at Newport, the [[Hollywood Bowl]] and [[Segerstrom Center for the Arts]]. Her freelance position with [[Freedom Communications]] has afforded interviews with: [[George Lopez]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Drew Carey]] and [[Brooke Shields]],&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt;  Grammy Award-winning musicians [[David Sanborn]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Jeff Hamilton (drummer)|Jeff Hamilton]]&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;/&amp;gt; for the ''[[Orange County Register]]'', and her interview with Grammy nominee [[Brian McKnight]] was additionally published in the ''Los Angeles Register''.&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;/&amp;gt; Earlier interviews include, [[Chita Rivera]] for the ''[[Los Angeles Times]]''&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and interviews with [[Ann Wilson]]&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt; and  [[Martina McBride]]&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt; for the [[Los Angeles Times suburban sections|Los Angeles Times Media Group's]] ''Daily Pilot''.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;!--- See http://en.wikipedia.org/wiki/Wikipedia:Footnotes on how to create references using &amp;lt;ref&amp;gt;&amp;lt;/ref&amp;gt; tags which will then appear here automatically --&amp;gt;&lt;br /&gt;
{{Reflist|2| refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student gets golden ticket on 'American Idol'|url=http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|publisher=Daily 49er|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821011818/http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|archivedate=21 August 2014|date=24 January 2012}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;&amp;gt;{{cite web|author1=Giulia Nahmany|title=Giulia Nahmany Love by Design Premiere at Newport Beach Film Festival|url=https://www.youtube.com/watch?v=et6kw-AH0ZA|publisher=Giulia Nahmany YouTube Channel|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821015154/https://www.youtube.com/watch?v=et6kw-AH0ZA|archivedate=21 August 2014|date=20 May 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=TWTM&amp;gt;{{cite web|title=Teen Witch The Musical|url=http://weirbrothersentertainment.com/releases/teen-witch|publisher=Weir Brothers Entertainment|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822014020/http://weirbrothersentertainment.com/releases/teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;&amp;gt;{{cite web|title=Heather Youmans: Credits|url=http://www.allmusic.com/artist/heather-youmans-mn0000643210/credits|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=DelMarTV&amp;gt;{{cite web|title=Del Mar TV Idol Contest 2004|url=http://www.delmartv.com/idol/idol04.html|publisher=Del Mar TV Foundation|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822011402/http://www.delmartv.com/idol/idol04.html|archivedate=22 August 2014|date=10 October 2004|quote=Heather Youmans (1st place)}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;&amp;gt;{{cite web|title=Moondance Alexander Soundtrack|url=http://www.allmusic.com/album/moondance-alexander-mw0000493713|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;&amp;gt;{{cite web|title=2010 MACY Award Winners|url=http://macyawards.com/news/67-news/132-2010-macy-award-winners|publisher=MACY Awards|accessdate=22 August 2014|date=22 May 2010|url-status=dead|archiveurl=https://web.archive.org/web/20140903125715/http://macyawards.com/news/67-news/132-2010-macy-award-winners|archivedate=3 September 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;&amp;gt;{{cite web|title=2009 MACY Award Winners|url=http://macyawards.com/news/67-news/122-2009-macy-award-winners|accessdate=22 August 2014|url-status=dead|archiveurl=https://web.archive.org/web/20140822022545/http://macyawards.com/news/67-news/122-2009-macy-award-winners|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;&amp;gt;{{cite news|last1=Krugen|first1=Pam|title=Strong leads, chemistry make Welk's 'Get Your Gun' a winner|url=http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|newspaper=The San Diego Union-Tribune|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822042246/http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|archivedate=22 August 2014|date=3 September 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=Annie Get Your Gun|url=http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822044216/http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|archivedate=22 August 2014|year=2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=The Sound of Music|url=http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822045133/http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;&amp;gt;{{cite web|last1=Wood|first1=Jennifer M.|title=18 Fun Facts About 'Teen Witch'|url=http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|publisher=mental_floss|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822193830/http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;&amp;gt;{{cite web|title=Girl to Change Your World: Releases|url=http://www.allmusic.com/album/girl-to-change-your-world-mw0002363250/releases|website=[[AllMusic]]|accessdate=23 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - Girl To Change Your World|url=https://www.youtube.com/watch?v=lYU6FLZm9nQ|publisher=Caption Records YouTube Channel|accessdate=23 August 2014|date=7 February 2010}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student loses shot at 'Idol' fame|url=http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|publisher=Daily 49er|accessdate=23 August 2014|archiveurl=https://web.archive.org/web/20140823012031/http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|archivedate=23 August 2014|date=12 February 2012|quote=Still, she said she’s not ashamed of the footage. “Yeah, it sucks,” she said. “Everybody has a bad day. Yeah, it’s unfortunate that they showed me having a bad day, but what can you do?”}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Newport Jazz Festival goes down smooth|url=http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|newspaper=[[Orange County Register]]|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826092910/http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|archivedate=26 August 2014|date=29 May 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;&amp;gt;{{cite web|last1=Schnaidt|first1=Joe|title=Lighting The Way To Hope On Rodeo Drive|url=http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|publisher=Canyon News|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826100957/http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|archivedate=26 August 2014|date=4 December 2005|quote=BEVERLY HILLS — Wednesday, November 30 illuminated Rodeo Drive at Wilshire Boulevard for the annual holiday lighting ceremony with celebrities, sponsors and a ray of hope for children facing poverty, health risks and poor education.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 9 August 2011 | title = Marley &amp;amp; Me The Puppy Years music from and inspired by the motion picture | medium = MP3 &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B005JBC14S&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 4 May 2010 | title = Flicka 2 Original Motion Picture Soundtrack | medium = MP3/CD &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B003JE2EIU&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;JRAY Nom&amp;quot;&amp;gt;{{cite web|title=2009 JRAY Awards|url=http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|publisher=Fulerton Civic Light Opera|accessdate=28 August 2014|archiveurl=https://web.archive.org/web/20140828012354/http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|archivedate=28 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;&amp;gt;{{cite news|last1=Malik|first1=Abhay|title=Alumnus Jon MacLennan's iBook 'Melodic Expressions' advances guitar instruction |url=http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|newspaper=[[Daily Bruin]]|accessdate=8 August 2014|archiveurl=https://web.archive.org/web/20140808121825/http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|archivedate=8 August 2014|date=8 May 2012|quote=Heather Youmans, an “American Idol” contestant and freelance journalist, helped edit the iBook and has expressed excitement over the finished product as well.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;&amp;gt;{{cite web|last1=MacLennan|first1=Jon|title=In My Arms Jon MacLennan (feat. Heather Youmans)|url=https://www.youtube.com/watch?v=G8QJ5aToHxw|publisher=Jon MacLennan YouTube Channel|accessdate=28 August 2014|date=16 July 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - &amp;quot;Never Gonna Be the Same Again&amp;quot; Studio City Sound LIVE|url=https://www.youtube.com/watch?v=rYhEtU1EgUM|publisher=[[Studio City Sound]]|accessdate=28 August 2014|date=3 October 2011}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;iBook Press Release&amp;quot;&amp;gt;{{cite press release|title=Melodic Expressions: The Art of the Line|url=http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|website=www.heatheryoumansmusic.com/|publisher=Jon MacLennan|accessdate=28 August 2014|date=3 May 2013|archiveurl=https://web.archive.org/web/20140828221739/http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|archivedate=28 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Change in tempo for Playboy Jazz Festival&lt;br /&gt;
|url=http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=21 August 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829013440/http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Brooke Shields takes the helm of 'Chicago'&lt;br /&gt;
|url=http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=17 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829014021/http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Sunset Jazz series kicks off in Newport&lt;br /&gt;
|url=http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|accessdate=29 August 2014|newspaper=[[The Orange County Register]]|date=9 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829015132/http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;&amp;gt;{{cite web|title=Weir Brothers Entertainment: Albums|url=http://www.last.fm/label/Weir+Brothers+Entertainment/albums|website=last.fm|publisher=Weir Brothers Entertainment|accessdate=29 August 2014|archiveurl=https://web.archive.org/web/20140829023539/http://www.last.fm/label/Weir+Brothers+Entertainment/albums|archivedate=29 August 2014|year=2011|quote=Girl to Change Your World singles}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Music for most every taste|url=http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|accessdate=29 August 2014|newspaper=Daily Pilot|archiveurl=https://web.archive.org/web/20140829225029/http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=O.C. Fair gets some Heart|url=http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|accessdate=29 August 2014|newspaper=Daily Pilot|date=2 August 2012|archiveurl=https://web.archive.org/web/20140829224632/http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Youmans: Chita Rivera to perform hits from a storied career|url=http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|accessdate=29 August 2014|newspaper=[[The Los Angeles Times]]|date=10 November 2011|archiveurl=https://web.archive.org/web/20140829220754/http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival|url=http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|accessdate=29 August 2014|newspaper=[[Orange County Register]]|date=28 May 2014|archiveurl=https://web.archive.org/web/20140829215845/http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival&lt;br /&gt;
|publisher=Los Angeles Register|date=29 May 2014&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;&amp;gt;{{cite news|title='High Strung' Soundtrack Announced|url=http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|accessdate=3 May 2016|publisher=FILM MUSIC REPORTER|date=9 March 2016|archiveurl=https://web.archive.org/web/20160503051828/http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|archivedate=3 May 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;&amp;gt;{{cite web|author1=Kristyn Burtt|title=Heather Youmans at the Red Carpet Premiere for &amp;quot;High Strung&amp;quot; #HighStrungMovie|url=https://www.youtube.com/watch?v=YOlN1Zt4_I8|website=YouTube.com|publisher=Mingle Media TV|accessdate=3 May 2016|date=30 March 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=Meet This Week's She Rocks Spotlight Series Artists, Including Grammy-Nominated Headliner Mindi Abair | website=Parade | date=2020-04-22 | url=https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-url=https://web.archive.org/web/20200427002753/https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-date=2020-04-27 | url-status=dead | access-date=2020-04-27}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;&amp;gt;{{cite web | title=Daily Discovery: Heather Youmans, &amp;quot;Shine&amp;quot; « American Songwriter | website=American Songwriter | date=2019-11-13 | url=https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200316151706/https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-date=2020-03-16 | url-status=live | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;&amp;gt;{{cite web | last=Buttonow | first=Leslie | title=Front and Center: Heather Youmans, PR &amp;amp; Communications Manager, Fender Musical Instruments Corporation – the WiMN - The Women's International Music Network | website=thewimn.com | date=2019-05-01 | url=https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-url=https://web.archive.org/web/20200426083920/https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-date=2020-04-26 | url-status=unfit | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;&amp;gt;{{cite web | title=Premiere: Singer-Songwriter Heather Youmans Reveals Latest Single &amp;quot;Shine&amp;quot; + Music Video | website=Elicit Magazine | date=2019-10-18 | url=http://www.elicitmagazine.com/heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200428035459/http://www.elicitmagazine.com/heather-youmans-shine/ | archive-date=2020-04-28 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;&amp;gt;{{cite web |url= https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble |title= Heather Youmans Gets Honest And Real In &amp;quot;My Kind Of Trouble&amp;quot; |date= 2019-08-13 |website= BuzzMusic |access-date= 2020-04-27 |archive-date= 2020-04-28 |archive-url= https://web.archive.org/web/20200428034603/https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;&amp;gt;{{cite web | title=Emerging Headliner: Heather Youmans | website=Headliner Magazine | date=2020-02-25 | url=https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-url=https://web.archive.org/web/20200225061919/https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-date=2020-02-25 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;&amp;gt;{{cite web | last=Brunner | first=Jeryl | title=Why This Successful Singer-Songwriter Won't Give Up Her Day Job | website=Forbes | date=2020-09-30 | url=https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/ | access-date=2020-10-01 |archive-url=https://web.archive.org/web/20201001011624if_/https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/?fbclid=IwAR3q2uGBNQP6MO-2pr57Mopo6AM0b_lktTAEhvQKHD6XhTNH5jSQoOQpiT4#5d2b64a67b7e|archive-date=2020-10-01}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=You're Gonna Feel the Joy of Heather Youmans' Video for 'Shine' | website=Parade: Entertainment, Recipes, Health, Life, Holidays | date=2020-10-06 | url=https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-url=https://web.archive.org/web/20201007032747/https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-date=2020-10-07 | url-status=dead | access-date=2020-10-07}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;&amp;gt;{{cite web | title=Heather Youmans Releases 'Shine' As Love Letter To Younger Self | website=Headliner Magazine | url=https://headlinermagazine.net/blog/heather-youmans-releases-shine-as-love-letter-to-younger-self.html | access-date=2020-10-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;&amp;gt;{{cite AV media  | people = Heather Youmans  | date = 2020-10-28  | title = The Tap Dancer Performs &amp;quot;Youngblood&amp;quot; By 5 Seconds Of Summer - Season 1 Ep. 4 - I CAN SEE YOUR VOICE  | language = en  | url = https://www.youtube.com/watch?v=Z5rghUxRero  | access-date = 2020-10-31  | publisher = FOX }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot;&amp;gt;{{cite web | title=Column: Singer from Vista stuns panel in new Fox reality series | website=San Diego Union-Tribune | date=2020-11-14 | url=https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-url=https://web.archive.org/web/20201118211051/https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-date=2020-11-18 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot;&amp;gt;{{cite web | last=Upadhyay | first=Nayna | title=EXCLUSIVE - Heather Youmans says 'I Can See Your Voice' is all about finding 'singers that America needs to know' | website=MEAWW | date=2020-11-16 | url=https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-url=https://web.archive.org/web/20201116192203/https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-date=2020-11-16 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.heatheryoumans.com Official website]&lt;br /&gt;
* {{YouTube|user=HeatherYoumans|Heather Youmans}}&lt;br /&gt;
* {{Facebook|HeatherYoumansOfficial|Heather Youmans}}&lt;br /&gt;
&amp;lt;!--* {{itunes|us/artist/heather-youmans/id219552589|Heather Youmans}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Youmans, Heather}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Categories &lt;br /&gt;
[[Category:Articles created via the Article Wizard]]---&amp;gt;&lt;br /&gt;
[[Category:1992 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:American stage actresses]]&lt;br /&gt;
[[Category:American women singer-songwriters]]&lt;br /&gt;
[[Category:American musical theatre actresses]]&lt;br /&gt;
[[Category:21st-century American actresses]]&lt;br /&gt;
[[Category:21st-century American singers]]&lt;br /&gt;
[[Category:Musicians from San Diego]]&lt;br /&gt;
[[Category:Musicians from Vista, California]]&lt;br /&gt;
[[Category:American music journalists]]&lt;br /&gt;
[[Category:American women journalists]]&lt;br /&gt;
[[Category:Journalists from California]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--[[Category:American film actresses]]&lt;br /&gt;
[[Category:American television actresses]]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Women writers about music]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Singer-songwriters from California]]&lt;br /&gt;
{{authority control}}&lt;br /&gt;
[[Category:21st-century American women singers]]&lt;br /&gt;
[[Category:21st-century American journalists]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6286</id>
		<title>Draft: Heather Youmans</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6286"/>
		<updated>2024-02-29T02:00:07Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{short description|American singer-songwriter}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox musical artist&lt;br /&gt;
| name             = Heather Youmans&lt;br /&gt;
| image            = File:Heather_Youmans.jpg&lt;br /&gt;
| image_size       =&lt;br /&gt;
| landscape        = &amp;lt;!-- yes, if wide image, otherwise leave blank --&amp;gt;&lt;br /&gt;
| alt              = Heather Youmans sings at 2011 Relay For Life in San Diego, California&lt;br /&gt;
| caption          =&lt;br /&gt;
| birth_name       = Heather Anne Youmans&lt;br /&gt;
| native_name      =&lt;br /&gt;
| native_name_lang =&lt;br /&gt;
| alias            =&lt;br /&gt;
| birth_date       = {{birth date and age|1992|05|16}}&lt;br /&gt;
| birth_place      = [[Vista, California]], U.S.&lt;br /&gt;
| origin           =&lt;br /&gt;
| death_date       = &amp;lt;!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) --&amp;gt;&lt;br /&gt;
| death_place      =&lt;br /&gt;
| genre            = Rock, pop, country, soul&lt;br /&gt;
| occupation       = Singer-songwriter, actor, journalist&lt;br /&gt;
| instrument       = vocals, bass&lt;br /&gt;
| years_active     = 2002–present&lt;br /&gt;
| label            = {{plainlist| &lt;br /&gt;
* Caption Records&lt;br /&gt;
* Weir Brothers Entertainment&lt;br /&gt;
* Suspicious Love Productions}}&lt;br /&gt;
| associated_acts  =&lt;br /&gt;
| website          = {{URL|www.heatheryoumans.com}}&lt;br /&gt;
| module =&lt;br /&gt;
&lt;br /&gt;
  {{Infobox person&lt;br /&gt;
    | education	= {{highlight|[[Master of Business Administration| MBA]]}}&lt;br /&gt;
    | alma_mater = {{highlight|[[California State University, Long Beach]] (2013)}}&lt;br /&gt;
    | television = {{plainlist| [[I Can See Your Voice (American TV series)| ''I Can See Your Voice'' ]]}}&lt;br /&gt;
  }}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color: moccasin&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Heather Youmans is an American principal and session singer. Opening for a UNICEF benefit concert in 2005, featuring Sting and Natalie Cole, &amp;lt;s&amp;gt;which&amp;lt;/s&amp;gt; cemented her future goals for the stage.  Opportunities arose with 20th Century Fox motion pictures, both as a singer and songwriter, and Youmans has had a long running association with Disney (since 2005). Youmans completed a tour of China, ''Disney 100 Wonderland'' in 2024, and enjoys singing the national anthem for professional sports teams (MLB and NHL); video footage of her performances have gone viral twice.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Heather Youmans is an American &amp;lt;s&amp;gt;entertainer, specifically a&amp;lt;/s&amp;gt; principal and session singer. &amp;lt;s&amp;gt;Youmans performed an opener&amp;lt;/s&amp;gt; Opening for a UNICEF benefit concert, featuring Sting and Natalie Cole, &amp;lt;s&amp;gt;which&amp;lt;/s&amp;gt; cemented her future goals for the stage in 2005.  Opportunities arose with 20th Century Fox motion pictures as a singer and songwriter and Youmans has had a long running association with Disney (since 2005). Youmans completed a tour, Disney 100 Wonderland, in China in 2024, and enjoys singing the national anthem for professional sports teams (MLB and NHL); video footage of her performances have gone viral twice.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Heather Youmans''' is an American singer-songwriter, actress, tap dancer and journalist, her work has been featured in ''American Songwriter'' magazine,&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt; [[Forbes|''Forbes Women'']] and ''Parade'' magazine profiled her career and music in 2020.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans tap dancing on [[I Can See Your Voice (American TV series)|''I Can See Your Voice'']] episode 4 (FOX),&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; convinced the judges that she is a professional dancer,&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
a video depicting her delivery of the national anthem and dealing with acoustic delay effect of a large stadium (Oakland Coliseum) went viral on social media in 2021.&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Early life ==&lt;br /&gt;
Youmans began landing theatre roles at age ten, such as Amarylis in ''[[The Music Man]]'',  Marta in ''[[The Sound of Music]]'' in 2003,&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;/&amp;gt; as well as Nellie in ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]'' in 2004 at the [[Lawrence Welk|Welk]] Resort Theatre.&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;/&amp;gt;  In 2004, she won first place in the Del Mar TV Idol Contest, Junior Division, at age twelve.&amp;lt;ref name=DelMarTV/&amp;gt; On November 30, 2005, Youmans performed an opening solo at the [[UNICEF]] Snowflake Ball at the [[Beverly Wilshire Hotel|Regent Beverly Wilshire]]. Headlining acts for the evening included, [[Sting (musician)|Sting]], [[Chris Botti]] and [[Natalie Cole]].&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans attended [[Rancho Buena Vista High School]] and was active in the Associated Student Body, dance and drama programs. In 2009, she won the MACY Award for Highest Achievement and Best Supporting Vocal-Female for her role as Rusty in [[Footloose (musical)|''Footloose'']],&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;/&amp;gt; and Best Vocal Female in 2010 for her role as Jo in ''[[Little Women]]''.&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Education ==&lt;br /&gt;
Youmans holds a B.A. in Journalism and Mass Communication with a music minor (classical and jazz vocal at [[Bob Cole Conservatory of Music]]). She graduated [[magna cum laude]] from [[California State University, Long Beach]] (CSULB) in 2013, and graduated with an MBA at CSULB with an emphasis in marketing. During her undergraduate studies, Youmans created and hosted ''Heartbreakers: The Women of Rock'', a radio format program on [[Kbeach#22 West Radio|KBeach.org]] (2011-2013).  {{Highlight|While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Career ==&lt;br /&gt;
In 2005, Youmans earned a voice-over part, playing Becky Thatcher in Disney's ''[[Tom Sawyer's Island]]'' and the following year, won the part of Shana the Rock Star in a pre-production musical ''[[Teen Witch the Musical]]'' (2007).&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt; These accomplishments led to featured artist performances on the soundtrack for [[Moondance Alexander]] (2007).&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;/&amp;gt; Youmans' single, &amp;quot;Girl to Change Your World&amp;quot;, was a (2011) hit on [[Radio Disney]],&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; and it is one of the two Youmans songs included in the film ''Love by Design'' (2014), starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]].&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;The [[Teen Witch the Musical]] project was successful in its primary goal of reproducing the missing soundtrack for the Halloween classic film [[Teen Witch]] (1989).&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt; The musical stage-play never made it out of [[Workshop production|workshop]] and has yet to achieve the secondary goal of becoming a viable [[Broadway theatre|Broadway]] offering.&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;/&amp;gt; This association with Weir Brothers Productions led to additional soundtrack features in the films ''[[Moondance Alexander]]'' (2007), ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
While concurrently studying journalism and music, Youmans auditioned and stacked up credits in Southern California regional theater and wrote for national and regional newspapers on entertainment topics. &amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; She has produced and hosted an entertainment format radio show,&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; interviewed entertainment industry legends,&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt; and ran a marketing campaign for [[Jon MacLennan|Jon MacLennan's]] iBook, ''Melodic Expressions: The Art of the Line'' (2012).&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;/&amp;gt; She works as a communications professional in [[Los Angeles]].&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Theatre and live performances ===&lt;br /&gt;
==== Beverly Hills opener  ====&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;&lt;br /&gt;
==== American Idol ====&lt;br /&gt;
In 2012, Youmans performed &amp;quot;[[Some Kind of Wonderful (The Drifters song)|Some Kind of Wonderful]]&amp;quot; at the [[American Idol]] San Diego competition and won a golden ticket after a unanimous decision from the judges ([[Steven Tyler]], [[Jennifer Lopez]] and [[Randy Jackson]]), which advanced her to the [[American Idol (season 11)#Hollywood week and Vegas rounds|''Hollywood Week'']] competition.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  Youmans was eliminated during ''Hollywood Week'' in Season 11. She attributes the elimination to nerves and an ambitious music selection, [[Heart (band)|Heart]]’s &amp;quot;[[Crazy on You]]&amp;quot;.&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable sortable collapsed collapsible&amp;quot; style=&amp;quot;width:98%; margin-right:0; text-align:center;&amp;quot;&lt;br /&gt;
|+ Professional performances and theatre roles&lt;br /&gt;
|-&lt;br /&gt;
! Year&lt;br /&gt;
! Title&lt;br /&gt;
! Role&lt;br /&gt;
! Venue&lt;br /&gt;
! Director/Producer&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[The Music Man]]''||align=&amp;quot;center&amp;quot;|Amarylis||Welk Resort Theatre||Lewis Wilkenfeld&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[Sound of Music]]''||align=&amp;quot;center&amp;quot;|Marta||Welk Resort Theatre||Joshua Carr&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Nellie||Welk Resort Theatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie (musical)|Annie]]''||align=&amp;quot;center&amp;quot;|Orphan Sadie||La Mirada Theatre for the Performing Arts||McCoy Rigby Ent. Glenn Casale&lt;br /&gt;
|-&lt;br /&gt;
|2004||''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Jessie||Saddleback Civic Light Opera||Sheryl Donchey&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[To Kill a Mockingbird]]''||align=&amp;quot;center&amp;quot;|Scout||West Coast Ensemble|| {{sic|hide=y|C. Jaffe/R. Israel}}&lt;br /&gt;
|-&lt;br /&gt;
|2005||UNICEF Snowflake Ball||align=&amp;quot;center&amp;quot;|Opening Soloist||[[Beverly Wilshire Hotel|Regent Beverly Wilshire]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2005|| ''[[Tight Quarters]]''||align=&amp;quot;center&amp;quot;|Lauren||Whitefire Theatre||Jules Aaron&lt;br /&gt;
|-&lt;br /&gt;
|2005||Kodak Christmas||align=&amp;quot;center&amp;quot;|Featured Soloist||[[Dolby Theatre|Kodak Theatre]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2006||''[[Teen Witch the Musical]]''||align=&amp;quot;center&amp;quot;|Shana the Rock Star|| [[Workshop production|workshop]] ||Alana Lambros&lt;br /&gt;
|-&lt;br /&gt;
|2008||[[New Music Weekly]] Awards||align=&amp;quot;center&amp;quot;|Featured Soloist||Avalon Theatre||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2009||''[[42nd Street (musical)|42nd Street]]'' ||align=&amp;quot;center&amp;quot;|Ensemble|| Moonlight Amphitheatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2010|| ''Once Upon A Wedding''||align=&amp;quot;center&amp;quot;|Daisy||Bahia Resort-Dinner Theatre||Laughing Tree Prod.&lt;br /&gt;
|-&lt;br /&gt;
|2010-12|| ''Journey To The Lost Temple''||align=&amp;quot;center&amp;quot;|Pippin||[[Legoland]]-California||Shawn Griener&lt;br /&gt;
|-&lt;br /&gt;
|2012||''[[American Idol]]'' Season 11||align=&amp;quot;center&amp;quot;|Contestant|| [[USS Midway Museum]]|| [[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2012||''American Idol'' Season 11||align=&amp;quot;center&amp;quot;|Hollywood Week||[[Pasadena Civic Auditorium]]||[[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2019||Jason Robert Brown In Concert||align=&amp;quot;center&amp;quot;|Lead singer||Cabaret at the Merc||Gerald Sternbach &lt;br /&gt;
|-&lt;br /&gt;
|2019||Evita In Concert||align=&amp;quot;center&amp;quot;|Ensemble||PVPA||Richard Israel &lt;br /&gt;
|-&lt;br /&gt;
|2020||HAIR||align=&amp;quot;center&amp;quot;|Suzannah 1000-Year-Old Monk||LGBT Center LA||Kate Sullivan Jared Stein&lt;br /&gt;
|-&lt;br /&gt;
|2020||New Year's Eve, National Anthem Singer||align=&amp;quot;center&amp;quot;|Soloist||Staples Center||LA Kings &amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;/&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Recorded and broadcast ===&lt;br /&gt;
&amp;lt;s&amp;gt;In addition to performing in nationally televised commercials, Youmans has been involved in several cutting-edge media projects.&amp;lt;/s&amp;gt;  In 2005, Youmans played the part of Becky Thatcher in Disney's [[Tom Sawyer's Island]], a voice-over project.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  The performance was delivered via hand-held computers issued to visitors on [[Disneyland|Disneyland's]] Tom Sawyer's Island. A pilot project, titled &amp;quot;Available Light&amp;quot;, was one of the first to test Sony Blu-ray camera technology.&lt;br /&gt;
&lt;br /&gt;
==== Soundtracks ====&lt;br /&gt;
* ''[[Teen Witch the Musical]]'' (2007) original cast recording, Weir Brothers Entertainment.&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Moondance Alexander]]'' (2007) starring [[Kay Panabaker]], [[Don Johnson]] and [[Lori Loughlin]], [[20th Century Fox|20th Century Fox Home Entertainment]]&lt;br /&gt;
* ''[[Flicka 2]]'' (2010) starring [[Patrick Warburton]], [[Tammin Sursok]] and [[Clint Black]], [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011) starring [[Travis Turner]] and [[Donnelly Rhodes]],  [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''Love by Design'' (2014) starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]], Gold Line Prod. Int.&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Newport Beach FF&amp;quot;&amp;gt;{{cite web|title=Newport Beach Film Festival|url=https://www.imdb.com/event/ev0000491/2014?ref_=ttawd_ev_1|website=[[IMDb]]|accessdate=1 February 2015|date=2 February 2014|quote=First-time Filmmaker: Winner}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*''High Strung'' (2016) starring [[Keenan Kampa]], Nicholas Galitzine, [[Jane Seymour (actress)|Jane Seymour]], Riviera Films.&amp;lt;ref name=&amp;quot;High Strung&amp;quot;&amp;gt;{{cite web|title=''High Strung''|url=http://www.soundtrack.net/album/high-strung/|website=Soundtrack.net|accessdate=30 March 2016|date=8 April 2016}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Singles ====&lt;br /&gt;
&amp;lt;!--* &amp;quot;Never Gonna Be The Same Again&amp;quot; (2007)&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt;--&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World&amp;quot; (2011)&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World - The Remixes&amp;quot; (2011)&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;In My Arms&amp;quot; (2012)&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;My Kind of Trouble LIVE at the Recordium&amp;quot; (2019)&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Is It Just Me LIVE at the Recordium&amp;quot; (2019)&lt;br /&gt;
* &amp;quot;Shine&amp;quot; (2019)&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;You Made Me Hate Love Songs LIVE at YouTube Space&amp;quot; (2020)&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;A Little Closer To Happy&amp;quot; (2021)&lt;br /&gt;
* &amp;quot;Worth It&amp;quot; (2021)&lt;br /&gt;
&lt;br /&gt;
=== Journalism ===&lt;br /&gt;
Youmans writes about entertainment topics, specifically dance, music, theatre and film. Her Southern California beat includes covering venues, such as the [[Orange County Fair (California)|Orange County Fair]], the Newport Beach Jazz Festival, the [[Playboy Jazz Festival]], Sunset Jazz at Newport, the [[Hollywood Bowl]] and [[Segerstrom Center for the Arts]]. Her freelance position with [[Freedom Communications]] has afforded interviews with: [[George Lopez]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Drew Carey]] and [[Brooke Shields]],&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt;  Grammy Award-winning musicians [[David Sanborn]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Jeff Hamilton (drummer)|Jeff Hamilton]]&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;/&amp;gt; for the ''[[Orange County Register]]'', and her interview with Grammy nominee [[Brian McKnight]] was additionally published in the ''Los Angeles Register''.&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;/&amp;gt; Earlier interviews include, [[Chita Rivera]] for the ''[[Los Angeles Times]]''&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and interviews with [[Ann Wilson]]&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt; and  [[Martina McBride]]&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt; for the [[Los Angeles Times suburban sections|Los Angeles Times Media Group's]] ''Daily Pilot''.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;!--- See http://en.wikipedia.org/wiki/Wikipedia:Footnotes on how to create references using &amp;lt;ref&amp;gt;&amp;lt;/ref&amp;gt; tags which will then appear here automatically --&amp;gt;&lt;br /&gt;
{{Reflist|2| refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student gets golden ticket on 'American Idol'|url=http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|publisher=Daily 49er|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821011818/http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|archivedate=21 August 2014|date=24 January 2012}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;&amp;gt;{{cite web|author1=Giulia Nahmany|title=Giulia Nahmany Love by Design Premiere at Newport Beach Film Festival|url=https://www.youtube.com/watch?v=et6kw-AH0ZA|publisher=Giulia Nahmany YouTube Channel|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821015154/https://www.youtube.com/watch?v=et6kw-AH0ZA|archivedate=21 August 2014|date=20 May 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=TWTM&amp;gt;{{cite web|title=Teen Witch The Musical|url=http://weirbrothersentertainment.com/releases/teen-witch|publisher=Weir Brothers Entertainment|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822014020/http://weirbrothersentertainment.com/releases/teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;&amp;gt;{{cite web|title=Heather Youmans: Credits|url=http://www.allmusic.com/artist/heather-youmans-mn0000643210/credits|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=DelMarTV&amp;gt;{{cite web|title=Del Mar TV Idol Contest 2004|url=http://www.delmartv.com/idol/idol04.html|publisher=Del Mar TV Foundation|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822011402/http://www.delmartv.com/idol/idol04.html|archivedate=22 August 2014|date=10 October 2004|quote=Heather Youmans (1st place)}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;&amp;gt;{{cite web|title=Moondance Alexander Soundtrack|url=http://www.allmusic.com/album/moondance-alexander-mw0000493713|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;&amp;gt;{{cite web|title=2010 MACY Award Winners|url=http://macyawards.com/news/67-news/132-2010-macy-award-winners|publisher=MACY Awards|accessdate=22 August 2014|date=22 May 2010|url-status=dead|archiveurl=https://web.archive.org/web/20140903125715/http://macyawards.com/news/67-news/132-2010-macy-award-winners|archivedate=3 September 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;&amp;gt;{{cite web|title=2009 MACY Award Winners|url=http://macyawards.com/news/67-news/122-2009-macy-award-winners|accessdate=22 August 2014|url-status=dead|archiveurl=https://web.archive.org/web/20140822022545/http://macyawards.com/news/67-news/122-2009-macy-award-winners|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;&amp;gt;{{cite news|last1=Krugen|first1=Pam|title=Strong leads, chemistry make Welk's 'Get Your Gun' a winner|url=http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|newspaper=The San Diego Union-Tribune|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822042246/http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|archivedate=22 August 2014|date=3 September 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=Annie Get Your Gun|url=http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822044216/http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|archivedate=22 August 2014|year=2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=The Sound of Music|url=http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822045133/http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;&amp;gt;{{cite web|last1=Wood|first1=Jennifer M.|title=18 Fun Facts About 'Teen Witch'|url=http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|publisher=mental_floss|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822193830/http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;&amp;gt;{{cite web|title=Girl to Change Your World: Releases|url=http://www.allmusic.com/album/girl-to-change-your-world-mw0002363250/releases|website=[[AllMusic]]|accessdate=23 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - Girl To Change Your World|url=https://www.youtube.com/watch?v=lYU6FLZm9nQ|publisher=Caption Records YouTube Channel|accessdate=23 August 2014|date=7 February 2010}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student loses shot at 'Idol' fame|url=http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|publisher=Daily 49er|accessdate=23 August 2014|archiveurl=https://web.archive.org/web/20140823012031/http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|archivedate=23 August 2014|date=12 February 2012|quote=Still, she said she’s not ashamed of the footage. “Yeah, it sucks,” she said. “Everybody has a bad day. Yeah, it’s unfortunate that they showed me having a bad day, but what can you do?”}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Newport Jazz Festival goes down smooth|url=http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|newspaper=[[Orange County Register]]|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826092910/http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|archivedate=26 August 2014|date=29 May 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;&amp;gt;{{cite web|last1=Schnaidt|first1=Joe|title=Lighting The Way To Hope On Rodeo Drive|url=http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|publisher=Canyon News|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826100957/http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|archivedate=26 August 2014|date=4 December 2005|quote=BEVERLY HILLS — Wednesday, November 30 illuminated Rodeo Drive at Wilshire Boulevard for the annual holiday lighting ceremony with celebrities, sponsors and a ray of hope for children facing poverty, health risks and poor education.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 9 August 2011 | title = Marley &amp;amp; Me The Puppy Years music from and inspired by the motion picture | medium = MP3 &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B005JBC14S&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 4 May 2010 | title = Flicka 2 Original Motion Picture Soundtrack | medium = MP3/CD &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B003JE2EIU&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;JRAY Nom&amp;quot;&amp;gt;{{cite web|title=2009 JRAY Awards|url=http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|publisher=Fulerton Civic Light Opera|accessdate=28 August 2014|archiveurl=https://web.archive.org/web/20140828012354/http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|archivedate=28 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;&amp;gt;{{cite news|last1=Malik|first1=Abhay|title=Alumnus Jon MacLennan's iBook 'Melodic Expressions' advances guitar instruction |url=http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|newspaper=[[Daily Bruin]]|accessdate=8 August 2014|archiveurl=https://web.archive.org/web/20140808121825/http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|archivedate=8 August 2014|date=8 May 2012|quote=Heather Youmans, an “American Idol” contestant and freelance journalist, helped edit the iBook and has expressed excitement over the finished product as well.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;&amp;gt;{{cite web|last1=MacLennan|first1=Jon|title=In My Arms Jon MacLennan (feat. Heather Youmans)|url=https://www.youtube.com/watch?v=G8QJ5aToHxw|publisher=Jon MacLennan YouTube Channel|accessdate=28 August 2014|date=16 July 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - &amp;quot;Never Gonna Be the Same Again&amp;quot; Studio City Sound LIVE|url=https://www.youtube.com/watch?v=rYhEtU1EgUM|publisher=[[Studio City Sound]]|accessdate=28 August 2014|date=3 October 2011}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;iBook Press Release&amp;quot;&amp;gt;{{cite press release|title=Melodic Expressions: The Art of the Line|url=http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|website=www.heatheryoumansmusic.com/|publisher=Jon MacLennan|accessdate=28 August 2014|date=3 May 2013|archiveurl=https://web.archive.org/web/20140828221739/http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|archivedate=28 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Change in tempo for Playboy Jazz Festival&lt;br /&gt;
|url=http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=21 August 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829013440/http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Brooke Shields takes the helm of 'Chicago'&lt;br /&gt;
|url=http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=17 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829014021/http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Sunset Jazz series kicks off in Newport&lt;br /&gt;
|url=http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|accessdate=29 August 2014|newspaper=[[The Orange County Register]]|date=9 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829015132/http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;&amp;gt;{{cite web|title=Weir Brothers Entertainment: Albums|url=http://www.last.fm/label/Weir+Brothers+Entertainment/albums|website=last.fm|publisher=Weir Brothers Entertainment|accessdate=29 August 2014|archiveurl=https://web.archive.org/web/20140829023539/http://www.last.fm/label/Weir+Brothers+Entertainment/albums|archivedate=29 August 2014|year=2011|quote=Girl to Change Your World singles}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Music for most every taste|url=http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|accessdate=29 August 2014|newspaper=Daily Pilot|archiveurl=https://web.archive.org/web/20140829225029/http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=O.C. Fair gets some Heart|url=http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|accessdate=29 August 2014|newspaper=Daily Pilot|date=2 August 2012|archiveurl=https://web.archive.org/web/20140829224632/http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Youmans: Chita Rivera to perform hits from a storied career|url=http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|accessdate=29 August 2014|newspaper=[[The Los Angeles Times]]|date=10 November 2011|archiveurl=https://web.archive.org/web/20140829220754/http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival|url=http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|accessdate=29 August 2014|newspaper=[[Orange County Register]]|date=28 May 2014|archiveurl=https://web.archive.org/web/20140829215845/http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival&lt;br /&gt;
|publisher=Los Angeles Register|date=29 May 2014&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;&amp;gt;{{cite news|title='High Strung' Soundtrack Announced|url=http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|accessdate=3 May 2016|publisher=FILM MUSIC REPORTER|date=9 March 2016|archiveurl=https://web.archive.org/web/20160503051828/http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|archivedate=3 May 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;&amp;gt;{{cite web|author1=Kristyn Burtt|title=Heather Youmans at the Red Carpet Premiere for &amp;quot;High Strung&amp;quot; #HighStrungMovie|url=https://www.youtube.com/watch?v=YOlN1Zt4_I8|website=YouTube.com|publisher=Mingle Media TV|accessdate=3 May 2016|date=30 March 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=Meet This Week's She Rocks Spotlight Series Artists, Including Grammy-Nominated Headliner Mindi Abair | website=Parade | date=2020-04-22 | url=https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-url=https://web.archive.org/web/20200427002753/https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-date=2020-04-27 | url-status=dead | access-date=2020-04-27}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;&amp;gt;{{cite web | title=Daily Discovery: Heather Youmans, &amp;quot;Shine&amp;quot; « American Songwriter | website=American Songwriter | date=2019-11-13 | url=https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200316151706/https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-date=2020-03-16 | url-status=live | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;&amp;gt;{{cite web | last=Buttonow | first=Leslie | title=Front and Center: Heather Youmans, PR &amp;amp; Communications Manager, Fender Musical Instruments Corporation – the WiMN - The Women's International Music Network | website=thewimn.com | date=2019-05-01 | url=https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-url=https://web.archive.org/web/20200426083920/https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-date=2020-04-26 | url-status=unfit | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;&amp;gt;{{cite web | title=Premiere: Singer-Songwriter Heather Youmans Reveals Latest Single &amp;quot;Shine&amp;quot; + Music Video | website=Elicit Magazine | date=2019-10-18 | url=http://www.elicitmagazine.com/heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200428035459/http://www.elicitmagazine.com/heather-youmans-shine/ | archive-date=2020-04-28 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;&amp;gt;{{cite web |url= https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble |title= Heather Youmans Gets Honest And Real In &amp;quot;My Kind Of Trouble&amp;quot; |date= 2019-08-13 |website= BuzzMusic |access-date= 2020-04-27 |archive-date= 2020-04-28 |archive-url= https://web.archive.org/web/20200428034603/https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;&amp;gt;{{cite web | title=Emerging Headliner: Heather Youmans | website=Headliner Magazine | date=2020-02-25 | url=https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-url=https://web.archive.org/web/20200225061919/https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-date=2020-02-25 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;&amp;gt;{{cite web | last=Brunner | first=Jeryl | title=Why This Successful Singer-Songwriter Won't Give Up Her Day Job | website=Forbes | date=2020-09-30 | url=https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/ | access-date=2020-10-01 |archive-url=https://web.archive.org/web/20201001011624if_/https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/?fbclid=IwAR3q2uGBNQP6MO-2pr57Mopo6AM0b_lktTAEhvQKHD6XhTNH5jSQoOQpiT4#5d2b64a67b7e|archive-date=2020-10-01}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=You're Gonna Feel the Joy of Heather Youmans' Video for 'Shine' | website=Parade: Entertainment, Recipes, Health, Life, Holidays | date=2020-10-06 | url=https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-url=https://web.archive.org/web/20201007032747/https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-date=2020-10-07 | url-status=dead | access-date=2020-10-07}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;&amp;gt;{{cite web | title=Heather Youmans Releases 'Shine' As Love Letter To Younger Self | website=Headliner Magazine | url=https://headlinermagazine.net/blog/heather-youmans-releases-shine-as-love-letter-to-younger-self.html | access-date=2020-10-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;&amp;gt;{{cite AV media  | people = Heather Youmans  | date = 2020-10-28  | title = The Tap Dancer Performs &amp;quot;Youngblood&amp;quot; By 5 Seconds Of Summer - Season 1 Ep. 4 - I CAN SEE YOUR VOICE  | language = en  | url = https://www.youtube.com/watch?v=Z5rghUxRero  | access-date = 2020-10-31  | publisher = FOX }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot;&amp;gt;{{cite web | title=Column: Singer from Vista stuns panel in new Fox reality series | website=San Diego Union-Tribune | date=2020-11-14 | url=https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-url=https://web.archive.org/web/20201118211051/https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-date=2020-11-18 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot;&amp;gt;{{cite web | last=Upadhyay | first=Nayna | title=EXCLUSIVE - Heather Youmans says 'I Can See Your Voice' is all about finding 'singers that America needs to know' | website=MEAWW | date=2020-11-16 | url=https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-url=https://web.archive.org/web/20201116192203/https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-date=2020-11-16 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.heatheryoumans.com Official website]&lt;br /&gt;
* {{YouTube|user=HeatherYoumans|Heather Youmans}}&lt;br /&gt;
* {{Facebook|HeatherYoumansOfficial|Heather Youmans}}&lt;br /&gt;
&amp;lt;!--* {{itunes|us/artist/heather-youmans/id219552589|Heather Youmans}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Youmans, Heather}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Categories &lt;br /&gt;
[[Category:Articles created via the Article Wizard]]---&amp;gt;&lt;br /&gt;
[[Category:1992 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:American stage actresses]]&lt;br /&gt;
[[Category:American women singer-songwriters]]&lt;br /&gt;
[[Category:American musical theatre actresses]]&lt;br /&gt;
[[Category:21st-century American actresses]]&lt;br /&gt;
[[Category:21st-century American singers]]&lt;br /&gt;
[[Category:Musicians from San Diego]]&lt;br /&gt;
[[Category:Musicians from Vista, California]]&lt;br /&gt;
[[Category:American music journalists]]&lt;br /&gt;
[[Category:American women journalists]]&lt;br /&gt;
[[Category:Journalists from California]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--[[Category:American film actresses]]&lt;br /&gt;
[[Category:American television actresses]]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Women writers about music]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Singer-songwriters from California]]&lt;br /&gt;
{{authority control}}&lt;br /&gt;
[[Category:21st-century American women singers]]&lt;br /&gt;
[[Category:21st-century American journalists]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6285</id>
		<title>Draft: Heather Youmans</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6285"/>
		<updated>2024-02-29T01:56:48Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: cut clutter&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{short description|American singer-songwriter}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox musical artist&lt;br /&gt;
| name             = Heather Youmans&lt;br /&gt;
| image            = File:Heather_Youmans.jpg&lt;br /&gt;
| image_size       =&lt;br /&gt;
| landscape        = &amp;lt;!-- yes, if wide image, otherwise leave blank --&amp;gt;&lt;br /&gt;
| alt              = Heather Youmans sings at 2011 Relay For Life in San Diego, California&lt;br /&gt;
| caption          =&lt;br /&gt;
| birth_name       = Heather Anne Youmans&lt;br /&gt;
| native_name      =&lt;br /&gt;
| native_name_lang =&lt;br /&gt;
| alias            =&lt;br /&gt;
| birth_date       = {{birth date and age|1992|05|16}}&lt;br /&gt;
| birth_place      = [[Vista, California]], U.S.&lt;br /&gt;
| origin           =&lt;br /&gt;
| death_date       = &amp;lt;!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) --&amp;gt;&lt;br /&gt;
| death_place      =&lt;br /&gt;
| genre            = Rock, pop, country, soul&lt;br /&gt;
| occupation       = Singer-songwriter, actor, journalist&lt;br /&gt;
| instrument       = vocals, bass&lt;br /&gt;
| years_active     = 2002–present&lt;br /&gt;
| label            = {{plainlist| &lt;br /&gt;
* Caption Records&lt;br /&gt;
* Weir Brothers Entertainment&lt;br /&gt;
* Suspicious Love Productions}}&lt;br /&gt;
| associated_acts  =&lt;br /&gt;
| website          = {{URL|www.heatheryoumans.com}}&lt;br /&gt;
| module =&lt;br /&gt;
&lt;br /&gt;
  {{Infobox person&lt;br /&gt;
    | education	= {{highlight|[[Master of Business Administration| MBA]]}}&lt;br /&gt;
    | alma_mater = {{highlight|[[California State University, Long Beach]] (2013)}}&lt;br /&gt;
    | television = {{plainlist| [[I Can See Your Voice (American TV series)| ''I Can See Your Voice'' ]]}}&lt;br /&gt;
  }}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color: moccasin&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Heather Youmans is an American &amp;lt;s&amp;gt;entertainer, specifically a&amp;lt;/s&amp;gt; principal and session singer. &amp;lt;s&amp;gt;Youmans performed an opener&amp;lt;/s&amp;gt; Opening for a UNICEF benefit concert, featuring Sting and Natalie Cole, &amp;lt;s&amp;gt;which&amp;lt;/s&amp;gt; cemented her future goals for the stage in 2005.  Opportunities arose with 20th Century Fox motion pictures as a singer and songwriter and Youmans has had a long running association with Disney (since 2005). Youmans completed a tour, Disney 100 Wonderland, in China in 2024, and enjoys singing the national anthem for professional sports teams (MLB and NHL); video footage of her performances have gone viral twice.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Heather Youmans''' is an American singer-songwriter, actress, tap dancer and journalist, her work has been featured in ''American Songwriter'' magazine,&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt; [[Forbes|''Forbes Women'']] and ''Parade'' magazine profiled her career and music in 2020.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans tap dancing on [[I Can See Your Voice (American TV series)|''I Can See Your Voice'']] episode 4 (FOX),&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; convinced the judges that she is a professional dancer,&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
a video depicting her delivery of the national anthem and dealing with acoustic delay effect of a large stadium (Oakland Coliseum) went viral on social media in 2021.&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Early life ==&lt;br /&gt;
Youmans began landing theatre roles at age ten, such as Amarylis in ''[[The Music Man]]'',  Marta in ''[[The Sound of Music]]'' in 2003,&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;/&amp;gt; as well as Nellie in ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]'' in 2004 at the [[Lawrence Welk|Welk]] Resort Theatre.&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;/&amp;gt;  In 2004, she won first place in the Del Mar TV Idol Contest, Junior Division, at age twelve.&amp;lt;ref name=DelMarTV/&amp;gt; On November 30, 2005, Youmans performed an opening solo at the [[UNICEF]] Snowflake Ball at the [[Beverly Wilshire Hotel|Regent Beverly Wilshire]]. Headlining acts for the evening included, [[Sting (musician)|Sting]], [[Chris Botti]] and [[Natalie Cole]].&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans attended [[Rancho Buena Vista High School]] and was active in the Associated Student Body, dance and drama programs. In 2009, she won the MACY Award for Highest Achievement and Best Supporting Vocal-Female for her role as Rusty in [[Footloose (musical)|''Footloose'']],&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;/&amp;gt; and Best Vocal Female in 2010 for her role as Jo in ''[[Little Women]]''.&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Education ==&lt;br /&gt;
Youmans holds a B.A. in Journalism and Mass Communication with a music minor (classical and jazz vocal at [[Bob Cole Conservatory of Music]]). She graduated [[magna cum laude]] from [[California State University, Long Beach]] (CSULB) in 2013, and graduated with an MBA at CSULB with an emphasis in marketing. During her undergraduate studies, Youmans created and hosted ''Heartbreakers: The Women of Rock'', a radio format program on [[Kbeach#22 West Radio|KBeach.org]] (2011-2013).  {{Highlight|While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Career ==&lt;br /&gt;
In 2005, Youmans earned a voice-over part, playing Becky Thatcher in Disney's ''[[Tom Sawyer's Island]]'' and the following year, won the part of Shana the Rock Star in a pre-production musical ''[[Teen Witch the Musical]]'' (2007).&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt; These accomplishments led to featured artist performances on the soundtrack for [[Moondance Alexander]] (2007).&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;/&amp;gt; Youmans' single, &amp;quot;Girl to Change Your World&amp;quot;, was a (2011) hit on [[Radio Disney]],&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; and it is one of the two Youmans songs included in the film ''Love by Design'' (2014), starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]].&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;The [[Teen Witch the Musical]] project was successful in its primary goal of reproducing the missing soundtrack for the Halloween classic film [[Teen Witch]] (1989).&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt; The musical stage-play never made it out of [[Workshop production|workshop]] and has yet to achieve the secondary goal of becoming a viable [[Broadway theatre|Broadway]] offering.&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;/&amp;gt; This association with Weir Brothers Productions led to additional soundtrack features in the films ''[[Moondance Alexander]]'' (2007), ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
While concurrently studying journalism and music, Youmans auditioned and stacked up credits in Southern California regional theater and wrote for national and regional newspapers on entertainment topics. &amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; She has produced and hosted an entertainment format radio show,&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; interviewed entertainment industry legends,&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt; and ran a marketing campaign for [[Jon MacLennan|Jon MacLennan's]] iBook, ''Melodic Expressions: The Art of the Line'' (2012).&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;/&amp;gt; She works as a communications professional in [[Los Angeles]].&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Theatre and live performances ===&lt;br /&gt;
==== Beverly Hills opener  ====&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;&lt;br /&gt;
==== American Idol ====&lt;br /&gt;
In 2012, Youmans performed &amp;quot;[[Some Kind of Wonderful (The Drifters song)|Some Kind of Wonderful]]&amp;quot; at the [[American Idol]] San Diego competition and won a golden ticket after a unanimous decision from the judges ([[Steven Tyler]], [[Jennifer Lopez]] and [[Randy Jackson]]), which advanced her to the [[American Idol (season 11)#Hollywood week and Vegas rounds|''Hollywood Week'']] competition.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  Youmans was eliminated during ''Hollywood Week'' in Season 11. She attributes the elimination to nerves and an ambitious music selection, [[Heart (band)|Heart]]’s &amp;quot;[[Crazy on You]]&amp;quot;.&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable sortable collapsed collapsible&amp;quot; style=&amp;quot;width:98%; margin-right:0; text-align:center;&amp;quot;&lt;br /&gt;
|+ Professional performances and theatre roles&lt;br /&gt;
|-&lt;br /&gt;
! Year&lt;br /&gt;
! Title&lt;br /&gt;
! Role&lt;br /&gt;
! Venue&lt;br /&gt;
! Director/Producer&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[The Music Man]]''||align=&amp;quot;center&amp;quot;|Amarylis||Welk Resort Theatre||Lewis Wilkenfeld&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[Sound of Music]]''||align=&amp;quot;center&amp;quot;|Marta||Welk Resort Theatre||Joshua Carr&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Nellie||Welk Resort Theatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie (musical)|Annie]]''||align=&amp;quot;center&amp;quot;|Orphan Sadie||La Mirada Theatre for the Performing Arts||McCoy Rigby Ent. Glenn Casale&lt;br /&gt;
|-&lt;br /&gt;
|2004||''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Jessie||Saddleback Civic Light Opera||Sheryl Donchey&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[To Kill a Mockingbird]]''||align=&amp;quot;center&amp;quot;|Scout||West Coast Ensemble|| {{sic|hide=y|C. Jaffe/R. Israel}}&lt;br /&gt;
|-&lt;br /&gt;
|2005||UNICEF Snowflake Ball||align=&amp;quot;center&amp;quot;|Opening Soloist||[[Beverly Wilshire Hotel|Regent Beverly Wilshire]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2005|| ''[[Tight Quarters]]''||align=&amp;quot;center&amp;quot;|Lauren||Whitefire Theatre||Jules Aaron&lt;br /&gt;
|-&lt;br /&gt;
|2005||Kodak Christmas||align=&amp;quot;center&amp;quot;|Featured Soloist||[[Dolby Theatre|Kodak Theatre]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2006||''[[Teen Witch the Musical]]''||align=&amp;quot;center&amp;quot;|Shana the Rock Star|| [[Workshop production|workshop]] ||Alana Lambros&lt;br /&gt;
|-&lt;br /&gt;
|2008||[[New Music Weekly]] Awards||align=&amp;quot;center&amp;quot;|Featured Soloist||Avalon Theatre||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2009||''[[42nd Street (musical)|42nd Street]]'' ||align=&amp;quot;center&amp;quot;|Ensemble|| Moonlight Amphitheatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2010|| ''Once Upon A Wedding''||align=&amp;quot;center&amp;quot;|Daisy||Bahia Resort-Dinner Theatre||Laughing Tree Prod.&lt;br /&gt;
|-&lt;br /&gt;
|2010-12|| ''Journey To The Lost Temple''||align=&amp;quot;center&amp;quot;|Pippin||[[Legoland]]-California||Shawn Griener&lt;br /&gt;
|-&lt;br /&gt;
|2012||''[[American Idol]]'' Season 11||align=&amp;quot;center&amp;quot;|Contestant|| [[USS Midway Museum]]|| [[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2012||''American Idol'' Season 11||align=&amp;quot;center&amp;quot;|Hollywood Week||[[Pasadena Civic Auditorium]]||[[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2019||Jason Robert Brown In Concert||align=&amp;quot;center&amp;quot;|Lead singer||Cabaret at the Merc||Gerald Sternbach &lt;br /&gt;
|-&lt;br /&gt;
|2019||Evita In Concert||align=&amp;quot;center&amp;quot;|Ensemble||PVPA||Richard Israel &lt;br /&gt;
|-&lt;br /&gt;
|2020||HAIR||align=&amp;quot;center&amp;quot;|Suzannah 1000-Year-Old Monk||LGBT Center LA||Kate Sullivan Jared Stein&lt;br /&gt;
|-&lt;br /&gt;
|2020||New Year's Eve, National Anthem Singer||align=&amp;quot;center&amp;quot;|Soloist||Staples Center||LA Kings &amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;/&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Recorded and broadcast ===&lt;br /&gt;
&amp;lt;s&amp;gt;In addition to performing in nationally televised commercials, Youmans has been involved in several cutting-edge media projects.&amp;lt;/s&amp;gt;  In 2005, Youmans played the part of Becky Thatcher in Disney's [[Tom Sawyer's Island]], a voice-over project.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  The performance was delivered via hand-held computers issued to visitors on [[Disneyland|Disneyland's]] Tom Sawyer's Island. A pilot project, titled &amp;quot;Available Light&amp;quot;, was one of the first to test Sony Blu-ray camera technology.&lt;br /&gt;
&lt;br /&gt;
==== Soundtracks ====&lt;br /&gt;
* ''[[Teen Witch the Musical]]'' (2007) original cast recording, Weir Brothers Entertainment.&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Moondance Alexander]]'' (2007) starring [[Kay Panabaker]], [[Don Johnson]] and [[Lori Loughlin]], [[20th Century Fox|20th Century Fox Home Entertainment]]&lt;br /&gt;
* ''[[Flicka 2]]'' (2010) starring [[Patrick Warburton]], [[Tammin Sursok]] and [[Clint Black]], [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011) starring [[Travis Turner]] and [[Donnelly Rhodes]],  [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''Love by Design'' (2014) starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]], Gold Line Prod. Int.&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Newport Beach FF&amp;quot;&amp;gt;{{cite web|title=Newport Beach Film Festival|url=https://www.imdb.com/event/ev0000491/2014?ref_=ttawd_ev_1|website=[[IMDb]]|accessdate=1 February 2015|date=2 February 2014|quote=First-time Filmmaker: Winner}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*''High Strung'' (2016) starring [[Keenan Kampa]], Nicholas Galitzine, [[Jane Seymour (actress)|Jane Seymour]], Riviera Films.&amp;lt;ref name=&amp;quot;High Strung&amp;quot;&amp;gt;{{cite web|title=''High Strung''|url=http://www.soundtrack.net/album/high-strung/|website=Soundtrack.net|accessdate=30 March 2016|date=8 April 2016}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Singles ====&lt;br /&gt;
&amp;lt;!--* &amp;quot;Never Gonna Be The Same Again&amp;quot; (2007)&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt;--&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World&amp;quot; (2011)&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World - The Remixes&amp;quot; (2011)&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;In My Arms&amp;quot; (2012)&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;My Kind of Trouble LIVE at the Recordium&amp;quot; (2019)&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Is It Just Me LIVE at the Recordium&amp;quot; (2019)&lt;br /&gt;
* &amp;quot;Shine&amp;quot; (2019)&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;You Made Me Hate Love Songs LIVE at YouTube Space&amp;quot; (2020)&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;A Little Closer To Happy&amp;quot; (2021)&lt;br /&gt;
* &amp;quot;Worth It&amp;quot; (2021)&lt;br /&gt;
&lt;br /&gt;
=== Journalism ===&lt;br /&gt;
Youmans writes about entertainment topics, specifically dance, music, theatre and film. Her Southern California beat includes covering venues, such as the [[Orange County Fair (California)|Orange County Fair]], the Newport Beach Jazz Festival, the [[Playboy Jazz Festival]], Sunset Jazz at Newport, the [[Hollywood Bowl]] and [[Segerstrom Center for the Arts]]. Her freelance position with [[Freedom Communications]] has afforded interviews with: [[George Lopez]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Drew Carey]] and [[Brooke Shields]],&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt;  Grammy Award-winning musicians [[David Sanborn]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Jeff Hamilton (drummer)|Jeff Hamilton]]&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;/&amp;gt; for the ''[[Orange County Register]]'', and her interview with Grammy nominee [[Brian McKnight]] was additionally published in the ''Los Angeles Register''.&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;/&amp;gt; Earlier interviews include, [[Chita Rivera]] for the ''[[Los Angeles Times]]''&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and interviews with [[Ann Wilson]]&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt; and  [[Martina McBride]]&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt; for the [[Los Angeles Times suburban sections|Los Angeles Times Media Group's]] ''Daily Pilot''.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;!--- See http://en.wikipedia.org/wiki/Wikipedia:Footnotes on how to create references using &amp;lt;ref&amp;gt;&amp;lt;/ref&amp;gt; tags which will then appear here automatically --&amp;gt;&lt;br /&gt;
{{Reflist|2| refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student gets golden ticket on 'American Idol'|url=http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|publisher=Daily 49er|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821011818/http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|archivedate=21 August 2014|date=24 January 2012}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;&amp;gt;{{cite web|author1=Giulia Nahmany|title=Giulia Nahmany Love by Design Premiere at Newport Beach Film Festival|url=https://www.youtube.com/watch?v=et6kw-AH0ZA|publisher=Giulia Nahmany YouTube Channel|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821015154/https://www.youtube.com/watch?v=et6kw-AH0ZA|archivedate=21 August 2014|date=20 May 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=TWTM&amp;gt;{{cite web|title=Teen Witch The Musical|url=http://weirbrothersentertainment.com/releases/teen-witch|publisher=Weir Brothers Entertainment|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822014020/http://weirbrothersentertainment.com/releases/teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;&amp;gt;{{cite web|title=Heather Youmans: Credits|url=http://www.allmusic.com/artist/heather-youmans-mn0000643210/credits|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=DelMarTV&amp;gt;{{cite web|title=Del Mar TV Idol Contest 2004|url=http://www.delmartv.com/idol/idol04.html|publisher=Del Mar TV Foundation|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822011402/http://www.delmartv.com/idol/idol04.html|archivedate=22 August 2014|date=10 October 2004|quote=Heather Youmans (1st place)}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;&amp;gt;{{cite web|title=Moondance Alexander Soundtrack|url=http://www.allmusic.com/album/moondance-alexander-mw0000493713|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;&amp;gt;{{cite web|title=2010 MACY Award Winners|url=http://macyawards.com/news/67-news/132-2010-macy-award-winners|publisher=MACY Awards|accessdate=22 August 2014|date=22 May 2010|url-status=dead|archiveurl=https://web.archive.org/web/20140903125715/http://macyawards.com/news/67-news/132-2010-macy-award-winners|archivedate=3 September 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;&amp;gt;{{cite web|title=2009 MACY Award Winners|url=http://macyawards.com/news/67-news/122-2009-macy-award-winners|accessdate=22 August 2014|url-status=dead|archiveurl=https://web.archive.org/web/20140822022545/http://macyawards.com/news/67-news/122-2009-macy-award-winners|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;&amp;gt;{{cite news|last1=Krugen|first1=Pam|title=Strong leads, chemistry make Welk's 'Get Your Gun' a winner|url=http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|newspaper=The San Diego Union-Tribune|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822042246/http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|archivedate=22 August 2014|date=3 September 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=Annie Get Your Gun|url=http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822044216/http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|archivedate=22 August 2014|year=2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=The Sound of Music|url=http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822045133/http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;&amp;gt;{{cite web|last1=Wood|first1=Jennifer M.|title=18 Fun Facts About 'Teen Witch'|url=http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|publisher=mental_floss|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822193830/http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;&amp;gt;{{cite web|title=Girl to Change Your World: Releases|url=http://www.allmusic.com/album/girl-to-change-your-world-mw0002363250/releases|website=[[AllMusic]]|accessdate=23 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - Girl To Change Your World|url=https://www.youtube.com/watch?v=lYU6FLZm9nQ|publisher=Caption Records YouTube Channel|accessdate=23 August 2014|date=7 February 2010}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student loses shot at 'Idol' fame|url=http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|publisher=Daily 49er|accessdate=23 August 2014|archiveurl=https://web.archive.org/web/20140823012031/http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|archivedate=23 August 2014|date=12 February 2012|quote=Still, she said she’s not ashamed of the footage. “Yeah, it sucks,” she said. “Everybody has a bad day. Yeah, it’s unfortunate that they showed me having a bad day, but what can you do?”}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Newport Jazz Festival goes down smooth|url=http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|newspaper=[[Orange County Register]]|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826092910/http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|archivedate=26 August 2014|date=29 May 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;&amp;gt;{{cite web|last1=Schnaidt|first1=Joe|title=Lighting The Way To Hope On Rodeo Drive|url=http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|publisher=Canyon News|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826100957/http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|archivedate=26 August 2014|date=4 December 2005|quote=BEVERLY HILLS — Wednesday, November 30 illuminated Rodeo Drive at Wilshire Boulevard for the annual holiday lighting ceremony with celebrities, sponsors and a ray of hope for children facing poverty, health risks and poor education.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 9 August 2011 | title = Marley &amp;amp; Me The Puppy Years music from and inspired by the motion picture | medium = MP3 &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B005JBC14S&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 4 May 2010 | title = Flicka 2 Original Motion Picture Soundtrack | medium = MP3/CD &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B003JE2EIU&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;JRAY Nom&amp;quot;&amp;gt;{{cite web|title=2009 JRAY Awards|url=http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|publisher=Fulerton Civic Light Opera|accessdate=28 August 2014|archiveurl=https://web.archive.org/web/20140828012354/http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|archivedate=28 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;&amp;gt;{{cite news|last1=Malik|first1=Abhay|title=Alumnus Jon MacLennan's iBook 'Melodic Expressions' advances guitar instruction |url=http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|newspaper=[[Daily Bruin]]|accessdate=8 August 2014|archiveurl=https://web.archive.org/web/20140808121825/http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|archivedate=8 August 2014|date=8 May 2012|quote=Heather Youmans, an “American Idol” contestant and freelance journalist, helped edit the iBook and has expressed excitement over the finished product as well.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;&amp;gt;{{cite web|last1=MacLennan|first1=Jon|title=In My Arms Jon MacLennan (feat. Heather Youmans)|url=https://www.youtube.com/watch?v=G8QJ5aToHxw|publisher=Jon MacLennan YouTube Channel|accessdate=28 August 2014|date=16 July 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - &amp;quot;Never Gonna Be the Same Again&amp;quot; Studio City Sound LIVE|url=https://www.youtube.com/watch?v=rYhEtU1EgUM|publisher=[[Studio City Sound]]|accessdate=28 August 2014|date=3 October 2011}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;iBook Press Release&amp;quot;&amp;gt;{{cite press release|title=Melodic Expressions: The Art of the Line|url=http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|website=www.heatheryoumansmusic.com/|publisher=Jon MacLennan|accessdate=28 August 2014|date=3 May 2013|archiveurl=https://web.archive.org/web/20140828221739/http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|archivedate=28 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Change in tempo for Playboy Jazz Festival&lt;br /&gt;
|url=http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=21 August 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829013440/http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Brooke Shields takes the helm of 'Chicago'&lt;br /&gt;
|url=http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=17 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829014021/http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Sunset Jazz series kicks off in Newport&lt;br /&gt;
|url=http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|accessdate=29 August 2014|newspaper=[[The Orange County Register]]|date=9 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829015132/http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;&amp;gt;{{cite web|title=Weir Brothers Entertainment: Albums|url=http://www.last.fm/label/Weir+Brothers+Entertainment/albums|website=last.fm|publisher=Weir Brothers Entertainment|accessdate=29 August 2014|archiveurl=https://web.archive.org/web/20140829023539/http://www.last.fm/label/Weir+Brothers+Entertainment/albums|archivedate=29 August 2014|year=2011|quote=Girl to Change Your World singles}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Music for most every taste|url=http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|accessdate=29 August 2014|newspaper=Daily Pilot|archiveurl=https://web.archive.org/web/20140829225029/http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=O.C. Fair gets some Heart|url=http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|accessdate=29 August 2014|newspaper=Daily Pilot|date=2 August 2012|archiveurl=https://web.archive.org/web/20140829224632/http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Youmans: Chita Rivera to perform hits from a storied career|url=http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|accessdate=29 August 2014|newspaper=[[The Los Angeles Times]]|date=10 November 2011|archiveurl=https://web.archive.org/web/20140829220754/http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival|url=http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|accessdate=29 August 2014|newspaper=[[Orange County Register]]|date=28 May 2014|archiveurl=https://web.archive.org/web/20140829215845/http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival&lt;br /&gt;
|publisher=Los Angeles Register|date=29 May 2014&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;&amp;gt;{{cite news|title='High Strung' Soundtrack Announced|url=http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|accessdate=3 May 2016|publisher=FILM MUSIC REPORTER|date=9 March 2016|archiveurl=https://web.archive.org/web/20160503051828/http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|archivedate=3 May 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;&amp;gt;{{cite web|author1=Kristyn Burtt|title=Heather Youmans at the Red Carpet Premiere for &amp;quot;High Strung&amp;quot; #HighStrungMovie|url=https://www.youtube.com/watch?v=YOlN1Zt4_I8|website=YouTube.com|publisher=Mingle Media TV|accessdate=3 May 2016|date=30 March 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=Meet This Week's She Rocks Spotlight Series Artists, Including Grammy-Nominated Headliner Mindi Abair | website=Parade | date=2020-04-22 | url=https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-url=https://web.archive.org/web/20200427002753/https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-date=2020-04-27 | url-status=dead | access-date=2020-04-27}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;&amp;gt;{{cite web | title=Daily Discovery: Heather Youmans, &amp;quot;Shine&amp;quot; « American Songwriter | website=American Songwriter | date=2019-11-13 | url=https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200316151706/https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-date=2020-03-16 | url-status=live | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;&amp;gt;{{cite web | last=Buttonow | first=Leslie | title=Front and Center: Heather Youmans, PR &amp;amp; Communications Manager, Fender Musical Instruments Corporation – the WiMN - The Women's International Music Network | website=thewimn.com | date=2019-05-01 | url=https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-url=https://web.archive.org/web/20200426083920/https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-date=2020-04-26 | url-status=unfit | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;&amp;gt;{{cite web | title=Premiere: Singer-Songwriter Heather Youmans Reveals Latest Single &amp;quot;Shine&amp;quot; + Music Video | website=Elicit Magazine | date=2019-10-18 | url=http://www.elicitmagazine.com/heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200428035459/http://www.elicitmagazine.com/heather-youmans-shine/ | archive-date=2020-04-28 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;&amp;gt;{{cite web |url= https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble |title= Heather Youmans Gets Honest And Real In &amp;quot;My Kind Of Trouble&amp;quot; |date= 2019-08-13 |website= BuzzMusic |access-date= 2020-04-27 |archive-date= 2020-04-28 |archive-url= https://web.archive.org/web/20200428034603/https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;&amp;gt;{{cite web | title=Emerging Headliner: Heather Youmans | website=Headliner Magazine | date=2020-02-25 | url=https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-url=https://web.archive.org/web/20200225061919/https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-date=2020-02-25 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;&amp;gt;{{cite web | last=Brunner | first=Jeryl | title=Why This Successful Singer-Songwriter Won't Give Up Her Day Job | website=Forbes | date=2020-09-30 | url=https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/ | access-date=2020-10-01 |archive-url=https://web.archive.org/web/20201001011624if_/https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/?fbclid=IwAR3q2uGBNQP6MO-2pr57Mopo6AM0b_lktTAEhvQKHD6XhTNH5jSQoOQpiT4#5d2b64a67b7e|archive-date=2020-10-01}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=You're Gonna Feel the Joy of Heather Youmans' Video for 'Shine' | website=Parade: Entertainment, Recipes, Health, Life, Holidays | date=2020-10-06 | url=https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-url=https://web.archive.org/web/20201007032747/https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-date=2020-10-07 | url-status=dead | access-date=2020-10-07}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;&amp;gt;{{cite web | title=Heather Youmans Releases 'Shine' As Love Letter To Younger Self | website=Headliner Magazine | url=https://headlinermagazine.net/blog/heather-youmans-releases-shine-as-love-letter-to-younger-self.html | access-date=2020-10-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;&amp;gt;{{cite AV media  | people = Heather Youmans  | date = 2020-10-28  | title = The Tap Dancer Performs &amp;quot;Youngblood&amp;quot; By 5 Seconds Of Summer - Season 1 Ep. 4 - I CAN SEE YOUR VOICE  | language = en  | url = https://www.youtube.com/watch?v=Z5rghUxRero  | access-date = 2020-10-31  | publisher = FOX }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot;&amp;gt;{{cite web | title=Column: Singer from Vista stuns panel in new Fox reality series | website=San Diego Union-Tribune | date=2020-11-14 | url=https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-url=https://web.archive.org/web/20201118211051/https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-date=2020-11-18 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot;&amp;gt;{{cite web | last=Upadhyay | first=Nayna | title=EXCLUSIVE - Heather Youmans says 'I Can See Your Voice' is all about finding 'singers that America needs to know' | website=MEAWW | date=2020-11-16 | url=https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-url=https://web.archive.org/web/20201116192203/https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-date=2020-11-16 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.heatheryoumans.com Official website]&lt;br /&gt;
* {{YouTube|user=HeatherYoumans|Heather Youmans}}&lt;br /&gt;
* {{Facebook|HeatherYoumansOfficial|Heather Youmans}}&lt;br /&gt;
&amp;lt;!--* {{itunes|us/artist/heather-youmans/id219552589|Heather Youmans}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Youmans, Heather}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Categories &lt;br /&gt;
[[Category:Articles created via the Article Wizard]]---&amp;gt;&lt;br /&gt;
[[Category:1992 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:American stage actresses]]&lt;br /&gt;
[[Category:American women singer-songwriters]]&lt;br /&gt;
[[Category:American musical theatre actresses]]&lt;br /&gt;
[[Category:21st-century American actresses]]&lt;br /&gt;
[[Category:21st-century American singers]]&lt;br /&gt;
[[Category:Musicians from San Diego]]&lt;br /&gt;
[[Category:Musicians from Vista, California]]&lt;br /&gt;
[[Category:American music journalists]]&lt;br /&gt;
[[Category:American women journalists]]&lt;br /&gt;
[[Category:Journalists from California]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--[[Category:American film actresses]]&lt;br /&gt;
[[Category:American television actresses]]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Women writers about music]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Singer-songwriters from California]]&lt;br /&gt;
{{authority control}}&lt;br /&gt;
[[Category:21st-century American women singers]]&lt;br /&gt;
[[Category:21st-century American journalists]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6284</id>
		<title>Draft: Heather Youmans</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6284"/>
		<updated>2024-02-29T01:52:48Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{short description|American singer-songwriter}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox musical artist&lt;br /&gt;
| name             = Heather Youmans&lt;br /&gt;
| image            = File:Heather_Youmans.jpg&lt;br /&gt;
| image_size       =&lt;br /&gt;
| landscape        = &amp;lt;!-- yes, if wide image, otherwise leave blank --&amp;gt;&lt;br /&gt;
| alt              = Heather Youmans sings at 2011 Relay For Life in San Diego, California&lt;br /&gt;
| caption          =&lt;br /&gt;
| birth_name       = Heather Anne Youmans&lt;br /&gt;
| native_name      =&lt;br /&gt;
| native_name_lang =&lt;br /&gt;
| alias            =&lt;br /&gt;
| birth_date       = {{birth date and age|1992|05|16}}&lt;br /&gt;
| birth_place      = [[Vista, California]], U.S.&lt;br /&gt;
| origin           =&lt;br /&gt;
| death_date       = &amp;lt;!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) --&amp;gt;&lt;br /&gt;
| death_place      =&lt;br /&gt;
| genre            = Rock, pop, country, soul&lt;br /&gt;
| occupation       = Singer-songwriter, actor, journalist&lt;br /&gt;
| instrument       = vocals, bass&lt;br /&gt;
| years_active     = 2002–present&lt;br /&gt;
| label            = {{plainlist| &lt;br /&gt;
* Caption Records&lt;br /&gt;
* Weir Brothers Entertainment&lt;br /&gt;
* Suspicious Love Productions}}&lt;br /&gt;
| associated_acts  =&lt;br /&gt;
| website          = {{URL|www.heatheryoumans.com}}&lt;br /&gt;
| module =&lt;br /&gt;
&lt;br /&gt;
  {{Infobox person&lt;br /&gt;
    | education	= {{highlight|[[Master of Business Administration| MBA]]}}&lt;br /&gt;
    | alma_mater = {{highlight|[[California State University, Long Beach]] (2013)}}&lt;br /&gt;
    | television = {{plainlist| [[I Can See Your Voice (American TV series)| ''I Can See Your Voice'' ]]}}&lt;br /&gt;
  }}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color: moccasin&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Heather Youmans is an American &amp;lt;s&amp;gt;entertainer, specifically a&amp;lt;/s&amp;gt; principal and session singer. Youmans performed an opener for a UNICEF benefit concert, featuring Sting and Natalie Cole, which cemented her future goals for the stage in 2005.  Opportunities arose with 20th Century Fox major motion pictures as a singer and songwriter and Youmans has a long running association with Disney (since 2005). Youmans completed a tour, Disney 100 Wonderland, in China in 2024, and  enjoys singing the national anthem for professional sports teams (MLB and NHL); video footage of her performances have gone viral twice.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Heather Youmans''' is an American singer-songwriter, actress, tap dancer and journalist, her work has been featured in ''American Songwriter'' magazine,&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt; [[Forbes|''Forbes Women'']] and ''Parade'' magazine profiled her career and music in 2020.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans tap dancing on [[I Can See Your Voice (American TV series)|''I Can See Your Voice'']] episode 4 (FOX),&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; convinced the judges that she is a professional dancer,&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
a video depicting her delivery of the national anthem and dealing with acoustic delay effect of a large stadium (Oakland Coliseum) went viral on social media in 2021.&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Early life ==&lt;br /&gt;
Youmans began landing theatre roles at age ten, such as Amarylis in ''[[The Music Man]]'',  Marta in ''[[The Sound of Music]]'' in 2003,&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;/&amp;gt; as well as Nellie in ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]'' in 2004 at the [[Lawrence Welk|Welk]] Resort Theatre.&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;/&amp;gt;  In 2004, she won first place in the Del Mar TV Idol Contest, Junior Division, at age twelve.&amp;lt;ref name=DelMarTV/&amp;gt; On November 30, 2005, Youmans performed an opening solo at the [[UNICEF]] Snowflake Ball at the [[Beverly Wilshire Hotel|Regent Beverly Wilshire]]. Headlining acts for the evening included, [[Sting (musician)|Sting]], [[Chris Botti]] and [[Natalie Cole]].&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans attended [[Rancho Buena Vista High School]] and was active in the Associated Student Body, dance and drama programs. In 2009, she won the MACY Award for Highest Achievement and Best Supporting Vocal-Female for her role as Rusty in [[Footloose (musical)|''Footloose'']],&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;/&amp;gt; and Best Vocal Female in 2010 for her role as Jo in ''[[Little Women]]''.&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Education ==&lt;br /&gt;
Youmans holds a B.A. in Journalism and Mass Communication with a music minor (classical and jazz vocal at [[Bob Cole Conservatory of Music]]). She graduated [[magna cum laude]] from [[California State University, Long Beach]] (CSULB) in 2013, and graduated with an MBA at CSULB with an emphasis in marketing. During her undergraduate studies, Youmans created and hosted ''Heartbreakers: The Women of Rock'', a radio format program on [[Kbeach#22 West Radio|KBeach.org]] (2011-2013).  {{Highlight|While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Career ==&lt;br /&gt;
In 2005, Youmans earned a voice-over part, playing Becky Thatcher in Disney's ''[[Tom Sawyer's Island]]'' and the following year, won the part of Shana the Rock Star in a pre-production musical ''[[Teen Witch the Musical]]'' (2007).&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt; These accomplishments led to featured artist performances on the soundtrack for [[Moondance Alexander]] (2007).&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;/&amp;gt; Youmans' single, &amp;quot;Girl to Change Your World&amp;quot;, was a (2011) hit on [[Radio Disney]],&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; and it is one of the two Youmans songs included in the film ''Love by Design'' (2014), starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]].&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;The [[Teen Witch the Musical]] project was successful in its primary goal of reproducing the missing soundtrack for the Halloween classic film [[Teen Witch]] (1989).&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt; The musical stage-play never made it out of [[Workshop production|workshop]] and has yet to achieve the secondary goal of becoming a viable [[Broadway theatre|Broadway]] offering.&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;/&amp;gt; This association with Weir Brothers Productions led to additional soundtrack features in the films ''[[Moondance Alexander]]'' (2007), ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
While concurrently studying journalism and music, Youmans auditioned and stacked up credits in Southern California regional theater and wrote for national and regional newspapers on entertainment topics. &amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; She has produced and hosted an entertainment format radio show,&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; interviewed entertainment industry legends,&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt; and ran a marketing campaign for [[Jon MacLennan|Jon MacLennan's]] iBook, ''Melodic Expressions: The Art of the Line'' (2012).&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;/&amp;gt; She works as a communications professional in [[Los Angeles]].&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Theatre and live performances ===&lt;br /&gt;
==== Beverly Hills opener  ====&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;&lt;br /&gt;
==== American Idol ====&lt;br /&gt;
In 2012, Youmans performed &amp;quot;[[Some Kind of Wonderful (The Drifters song)|Some Kind of Wonderful]]&amp;quot; at the [[American Idol]] San Diego competition and won a golden ticket after a unanimous decision from the judges ([[Steven Tyler]], [[Jennifer Lopez]] and [[Randy Jackson]]), which advanced her to the [[American Idol (season 11)#Hollywood week and Vegas rounds|''Hollywood Week'']] competition.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  Youmans was eliminated during ''Hollywood Week'' in Season 11. She attributes the elimination to nerves and an ambitious music selection, [[Heart (band)|Heart]]’s &amp;quot;[[Crazy on You]]&amp;quot;.&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable sortable collapsed collapsible&amp;quot; style=&amp;quot;width:98%; margin-right:0; text-align:center;&amp;quot;&lt;br /&gt;
|+ Professional performances and theatre roles&lt;br /&gt;
|-&lt;br /&gt;
! Year&lt;br /&gt;
! Title&lt;br /&gt;
! Role&lt;br /&gt;
! Venue&lt;br /&gt;
! Director/Producer&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[The Music Man]]''||align=&amp;quot;center&amp;quot;|Amarylis||Welk Resort Theatre||Lewis Wilkenfeld&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[Sound of Music]]''||align=&amp;quot;center&amp;quot;|Marta||Welk Resort Theatre||Joshua Carr&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Nellie||Welk Resort Theatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie (musical)|Annie]]''||align=&amp;quot;center&amp;quot;|Orphan Sadie||La Mirada Theatre for the Performing Arts||McCoy Rigby Ent. Glenn Casale&lt;br /&gt;
|-&lt;br /&gt;
|2004||''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Jessie||Saddleback Civic Light Opera||Sheryl Donchey&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[To Kill a Mockingbird]]''||align=&amp;quot;center&amp;quot;|Scout||West Coast Ensemble|| {{sic|hide=y|C. Jaffe/R. Israel}}&lt;br /&gt;
|-&lt;br /&gt;
|2005||UNICEF Snowflake Ball||align=&amp;quot;center&amp;quot;|Opening Soloist||[[Beverly Wilshire Hotel|Regent Beverly Wilshire]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2005|| ''[[Tight Quarters]]''||align=&amp;quot;center&amp;quot;|Lauren||Whitefire Theatre||Jules Aaron&lt;br /&gt;
|-&lt;br /&gt;
|2005||Kodak Christmas||align=&amp;quot;center&amp;quot;|Featured Soloist||[[Dolby Theatre|Kodak Theatre]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2006||''[[Teen Witch the Musical]]''||align=&amp;quot;center&amp;quot;|Shana the Rock Star|| [[Workshop production|workshop]] ||Alana Lambros&lt;br /&gt;
|-&lt;br /&gt;
|2008||[[New Music Weekly]] Awards||align=&amp;quot;center&amp;quot;|Featured Soloist||Avalon Theatre||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2009||''[[42nd Street (musical)|42nd Street]]'' ||align=&amp;quot;center&amp;quot;|Ensemble|| Moonlight Amphitheatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2010|| ''Once Upon A Wedding''||align=&amp;quot;center&amp;quot;|Daisy||Bahia Resort-Dinner Theatre||Laughing Tree Prod.&lt;br /&gt;
|-&lt;br /&gt;
|2010-12|| ''Journey To The Lost Temple''||align=&amp;quot;center&amp;quot;|Pippin||[[Legoland]]-California||Shawn Griener&lt;br /&gt;
|-&lt;br /&gt;
|2012||''[[American Idol]]'' Season 11||align=&amp;quot;center&amp;quot;|Contestant|| [[USS Midway Museum]]|| [[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2012||''American Idol'' Season 11||align=&amp;quot;center&amp;quot;|Hollywood Week||[[Pasadena Civic Auditorium]]||[[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2019||Jason Robert Brown In Concert||align=&amp;quot;center&amp;quot;|Lead singer||Cabaret at the Merc||Gerald Sternbach &lt;br /&gt;
|-&lt;br /&gt;
|2019||Evita In Concert||align=&amp;quot;center&amp;quot;|Ensemble||PVPA||Richard Israel &lt;br /&gt;
|-&lt;br /&gt;
|2020||HAIR||align=&amp;quot;center&amp;quot;|Suzannah 1000-Year-Old Monk||LGBT Center LA||Kate Sullivan Jared Stein&lt;br /&gt;
|-&lt;br /&gt;
|2020||New Year's Eve, National Anthem Singer||align=&amp;quot;center&amp;quot;|Soloist||Staples Center||LA Kings &amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;/&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Recorded and broadcast ===&lt;br /&gt;
&amp;lt;s&amp;gt;In addition to performing in nationally televised commercials, Youmans has been involved in several cutting-edge media projects.&amp;lt;/s&amp;gt;  In 2005, Youmans played the part of Becky Thatcher in Disney's [[Tom Sawyer's Island]], a voice-over project.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  The performance was delivered via hand-held computers issued to visitors on [[Disneyland|Disneyland's]] Tom Sawyer's Island. A pilot project, titled &amp;quot;Available Light&amp;quot;, was one of the first to test Sony Blu-ray camera technology.&lt;br /&gt;
&lt;br /&gt;
==== Soundtracks ====&lt;br /&gt;
* ''[[Teen Witch the Musical]]'' (2007) original cast recording, Weir Brothers Entertainment.&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Moondance Alexander]]'' (2007) starring [[Kay Panabaker]], [[Don Johnson]] and [[Lori Loughlin]], [[20th Century Fox|20th Century Fox Home Entertainment]]&lt;br /&gt;
* ''[[Flicka 2]]'' (2010) starring [[Patrick Warburton]], [[Tammin Sursok]] and [[Clint Black]], [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011) starring [[Travis Turner]] and [[Donnelly Rhodes]],  [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''Love by Design'' (2014) starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]], Gold Line Prod. Int.&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Newport Beach FF&amp;quot;&amp;gt;{{cite web|title=Newport Beach Film Festival|url=https://www.imdb.com/event/ev0000491/2014?ref_=ttawd_ev_1|website=[[IMDb]]|accessdate=1 February 2015|date=2 February 2014|quote=First-time Filmmaker: Winner}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*''High Strung'' (2016) starring [[Keenan Kampa]], Nicholas Galitzine, [[Jane Seymour (actress)|Jane Seymour]], Riviera Films.&amp;lt;ref name=&amp;quot;High Strung&amp;quot;&amp;gt;{{cite web|title=''High Strung''|url=http://www.soundtrack.net/album/high-strung/|website=Soundtrack.net|accessdate=30 March 2016|date=8 April 2016}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Singles ====&lt;br /&gt;
&amp;lt;!--* &amp;quot;Never Gonna Be The Same Again&amp;quot; (2007)&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt;--&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World&amp;quot; (2011)&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World - The Remixes&amp;quot; (2011)&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;In My Arms&amp;quot; (2012)&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;My Kind of Trouble LIVE at the Recordium&amp;quot; (2019)&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Is It Just Me LIVE at the Recordium&amp;quot; (2019)&lt;br /&gt;
* &amp;quot;Shine&amp;quot; (2019)&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;You Made Me Hate Love Songs LIVE at YouTube Space&amp;quot; (2020)&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;A Little Closer To Happy&amp;quot; (2021)&lt;br /&gt;
* &amp;quot;Worth It&amp;quot; (2021)&lt;br /&gt;
&lt;br /&gt;
=== Journalism ===&lt;br /&gt;
Youmans writes about entertainment topics, specifically dance, music, theatre and film. Her Southern California beat includes covering venues, such as the [[Orange County Fair (California)|Orange County Fair]], the Newport Beach Jazz Festival, the [[Playboy Jazz Festival]], Sunset Jazz at Newport, the [[Hollywood Bowl]] and [[Segerstrom Center for the Arts]]. Her freelance position with [[Freedom Communications]] has afforded interviews with: [[George Lopez]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Drew Carey]] and [[Brooke Shields]],&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt;  Grammy Award-winning musicians [[David Sanborn]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Jeff Hamilton (drummer)|Jeff Hamilton]]&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;/&amp;gt; for the ''[[Orange County Register]]'', and her interview with Grammy nominee [[Brian McKnight]] was additionally published in the ''Los Angeles Register''.&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;/&amp;gt; Earlier interviews include, [[Chita Rivera]] for the ''[[Los Angeles Times]]''&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and interviews with [[Ann Wilson]]&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt; and  [[Martina McBride]]&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt; for the [[Los Angeles Times suburban sections|Los Angeles Times Media Group's]] ''Daily Pilot''.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;!--- See http://en.wikipedia.org/wiki/Wikipedia:Footnotes on how to create references using &amp;lt;ref&amp;gt;&amp;lt;/ref&amp;gt; tags which will then appear here automatically --&amp;gt;&lt;br /&gt;
{{Reflist|2| refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student gets golden ticket on 'American Idol'|url=http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|publisher=Daily 49er|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821011818/http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|archivedate=21 August 2014|date=24 January 2012}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;&amp;gt;{{cite web|author1=Giulia Nahmany|title=Giulia Nahmany Love by Design Premiere at Newport Beach Film Festival|url=https://www.youtube.com/watch?v=et6kw-AH0ZA|publisher=Giulia Nahmany YouTube Channel|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821015154/https://www.youtube.com/watch?v=et6kw-AH0ZA|archivedate=21 August 2014|date=20 May 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=TWTM&amp;gt;{{cite web|title=Teen Witch The Musical|url=http://weirbrothersentertainment.com/releases/teen-witch|publisher=Weir Brothers Entertainment|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822014020/http://weirbrothersentertainment.com/releases/teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;&amp;gt;{{cite web|title=Heather Youmans: Credits|url=http://www.allmusic.com/artist/heather-youmans-mn0000643210/credits|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=DelMarTV&amp;gt;{{cite web|title=Del Mar TV Idol Contest 2004|url=http://www.delmartv.com/idol/idol04.html|publisher=Del Mar TV Foundation|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822011402/http://www.delmartv.com/idol/idol04.html|archivedate=22 August 2014|date=10 October 2004|quote=Heather Youmans (1st place)}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;&amp;gt;{{cite web|title=Moondance Alexander Soundtrack|url=http://www.allmusic.com/album/moondance-alexander-mw0000493713|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;&amp;gt;{{cite web|title=2010 MACY Award Winners|url=http://macyawards.com/news/67-news/132-2010-macy-award-winners|publisher=MACY Awards|accessdate=22 August 2014|date=22 May 2010|url-status=dead|archiveurl=https://web.archive.org/web/20140903125715/http://macyawards.com/news/67-news/132-2010-macy-award-winners|archivedate=3 September 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;&amp;gt;{{cite web|title=2009 MACY Award Winners|url=http://macyawards.com/news/67-news/122-2009-macy-award-winners|accessdate=22 August 2014|url-status=dead|archiveurl=https://web.archive.org/web/20140822022545/http://macyawards.com/news/67-news/122-2009-macy-award-winners|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;&amp;gt;{{cite news|last1=Krugen|first1=Pam|title=Strong leads, chemistry make Welk's 'Get Your Gun' a winner|url=http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|newspaper=The San Diego Union-Tribune|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822042246/http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|archivedate=22 August 2014|date=3 September 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=Annie Get Your Gun|url=http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822044216/http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|archivedate=22 August 2014|year=2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=The Sound of Music|url=http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822045133/http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;&amp;gt;{{cite web|last1=Wood|first1=Jennifer M.|title=18 Fun Facts About 'Teen Witch'|url=http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|publisher=mental_floss|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822193830/http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;&amp;gt;{{cite web|title=Girl to Change Your World: Releases|url=http://www.allmusic.com/album/girl-to-change-your-world-mw0002363250/releases|website=[[AllMusic]]|accessdate=23 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - Girl To Change Your World|url=https://www.youtube.com/watch?v=lYU6FLZm9nQ|publisher=Caption Records YouTube Channel|accessdate=23 August 2014|date=7 February 2010}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student loses shot at 'Idol' fame|url=http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|publisher=Daily 49er|accessdate=23 August 2014|archiveurl=https://web.archive.org/web/20140823012031/http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|archivedate=23 August 2014|date=12 February 2012|quote=Still, she said she’s not ashamed of the footage. “Yeah, it sucks,” she said. “Everybody has a bad day. Yeah, it’s unfortunate that they showed me having a bad day, but what can you do?”}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Newport Jazz Festival goes down smooth|url=http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|newspaper=[[Orange County Register]]|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826092910/http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|archivedate=26 August 2014|date=29 May 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;&amp;gt;{{cite web|last1=Schnaidt|first1=Joe|title=Lighting The Way To Hope On Rodeo Drive|url=http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|publisher=Canyon News|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826100957/http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|archivedate=26 August 2014|date=4 December 2005|quote=BEVERLY HILLS — Wednesday, November 30 illuminated Rodeo Drive at Wilshire Boulevard for the annual holiday lighting ceremony with celebrities, sponsors and a ray of hope for children facing poverty, health risks and poor education.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 9 August 2011 | title = Marley &amp;amp; Me The Puppy Years music from and inspired by the motion picture | medium = MP3 &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B005JBC14S&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 4 May 2010 | title = Flicka 2 Original Motion Picture Soundtrack | medium = MP3/CD &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B003JE2EIU&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;JRAY Nom&amp;quot;&amp;gt;{{cite web|title=2009 JRAY Awards|url=http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|publisher=Fulerton Civic Light Opera|accessdate=28 August 2014|archiveurl=https://web.archive.org/web/20140828012354/http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|archivedate=28 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;&amp;gt;{{cite news|last1=Malik|first1=Abhay|title=Alumnus Jon MacLennan's iBook 'Melodic Expressions' advances guitar instruction |url=http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|newspaper=[[Daily Bruin]]|accessdate=8 August 2014|archiveurl=https://web.archive.org/web/20140808121825/http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|archivedate=8 August 2014|date=8 May 2012|quote=Heather Youmans, an “American Idol” contestant and freelance journalist, helped edit the iBook and has expressed excitement over the finished product as well.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;&amp;gt;{{cite web|last1=MacLennan|first1=Jon|title=In My Arms Jon MacLennan (feat. Heather Youmans)|url=https://www.youtube.com/watch?v=G8QJ5aToHxw|publisher=Jon MacLennan YouTube Channel|accessdate=28 August 2014|date=16 July 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - &amp;quot;Never Gonna Be the Same Again&amp;quot; Studio City Sound LIVE|url=https://www.youtube.com/watch?v=rYhEtU1EgUM|publisher=[[Studio City Sound]]|accessdate=28 August 2014|date=3 October 2011}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;iBook Press Release&amp;quot;&amp;gt;{{cite press release|title=Melodic Expressions: The Art of the Line|url=http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|website=www.heatheryoumansmusic.com/|publisher=Jon MacLennan|accessdate=28 August 2014|date=3 May 2013|archiveurl=https://web.archive.org/web/20140828221739/http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|archivedate=28 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Change in tempo for Playboy Jazz Festival&lt;br /&gt;
|url=http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=21 August 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829013440/http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Brooke Shields takes the helm of 'Chicago'&lt;br /&gt;
|url=http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=17 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829014021/http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Sunset Jazz series kicks off in Newport&lt;br /&gt;
|url=http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|accessdate=29 August 2014|newspaper=[[The Orange County Register]]|date=9 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829015132/http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;&amp;gt;{{cite web|title=Weir Brothers Entertainment: Albums|url=http://www.last.fm/label/Weir+Brothers+Entertainment/albums|website=last.fm|publisher=Weir Brothers Entertainment|accessdate=29 August 2014|archiveurl=https://web.archive.org/web/20140829023539/http://www.last.fm/label/Weir+Brothers+Entertainment/albums|archivedate=29 August 2014|year=2011|quote=Girl to Change Your World singles}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Music for most every taste|url=http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|accessdate=29 August 2014|newspaper=Daily Pilot|archiveurl=https://web.archive.org/web/20140829225029/http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=O.C. Fair gets some Heart|url=http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|accessdate=29 August 2014|newspaper=Daily Pilot|date=2 August 2012|archiveurl=https://web.archive.org/web/20140829224632/http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Youmans: Chita Rivera to perform hits from a storied career|url=http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|accessdate=29 August 2014|newspaper=[[The Los Angeles Times]]|date=10 November 2011|archiveurl=https://web.archive.org/web/20140829220754/http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival|url=http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|accessdate=29 August 2014|newspaper=[[Orange County Register]]|date=28 May 2014|archiveurl=https://web.archive.org/web/20140829215845/http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival&lt;br /&gt;
|publisher=Los Angeles Register|date=29 May 2014&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;&amp;gt;{{cite news|title='High Strung' Soundtrack Announced|url=http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|accessdate=3 May 2016|publisher=FILM MUSIC REPORTER|date=9 March 2016|archiveurl=https://web.archive.org/web/20160503051828/http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|archivedate=3 May 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;&amp;gt;{{cite web|author1=Kristyn Burtt|title=Heather Youmans at the Red Carpet Premiere for &amp;quot;High Strung&amp;quot; #HighStrungMovie|url=https://www.youtube.com/watch?v=YOlN1Zt4_I8|website=YouTube.com|publisher=Mingle Media TV|accessdate=3 May 2016|date=30 March 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=Meet This Week's She Rocks Spotlight Series Artists, Including Grammy-Nominated Headliner Mindi Abair | website=Parade | date=2020-04-22 | url=https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-url=https://web.archive.org/web/20200427002753/https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-date=2020-04-27 | url-status=dead | access-date=2020-04-27}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;&amp;gt;{{cite web | title=Daily Discovery: Heather Youmans, &amp;quot;Shine&amp;quot; « American Songwriter | website=American Songwriter | date=2019-11-13 | url=https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200316151706/https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-date=2020-03-16 | url-status=live | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;&amp;gt;{{cite web | last=Buttonow | first=Leslie | title=Front and Center: Heather Youmans, PR &amp;amp; Communications Manager, Fender Musical Instruments Corporation – the WiMN - The Women's International Music Network | website=thewimn.com | date=2019-05-01 | url=https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-url=https://web.archive.org/web/20200426083920/https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-date=2020-04-26 | url-status=unfit | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;&amp;gt;{{cite web | title=Premiere: Singer-Songwriter Heather Youmans Reveals Latest Single &amp;quot;Shine&amp;quot; + Music Video | website=Elicit Magazine | date=2019-10-18 | url=http://www.elicitmagazine.com/heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200428035459/http://www.elicitmagazine.com/heather-youmans-shine/ | archive-date=2020-04-28 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;&amp;gt;{{cite web |url= https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble |title= Heather Youmans Gets Honest And Real In &amp;quot;My Kind Of Trouble&amp;quot; |date= 2019-08-13 |website= BuzzMusic |access-date= 2020-04-27 |archive-date= 2020-04-28 |archive-url= https://web.archive.org/web/20200428034603/https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;&amp;gt;{{cite web | title=Emerging Headliner: Heather Youmans | website=Headliner Magazine | date=2020-02-25 | url=https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-url=https://web.archive.org/web/20200225061919/https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-date=2020-02-25 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;&amp;gt;{{cite web | last=Brunner | first=Jeryl | title=Why This Successful Singer-Songwriter Won't Give Up Her Day Job | website=Forbes | date=2020-09-30 | url=https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/ | access-date=2020-10-01 |archive-url=https://web.archive.org/web/20201001011624if_/https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/?fbclid=IwAR3q2uGBNQP6MO-2pr57Mopo6AM0b_lktTAEhvQKHD6XhTNH5jSQoOQpiT4#5d2b64a67b7e|archive-date=2020-10-01}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=You're Gonna Feel the Joy of Heather Youmans' Video for 'Shine' | website=Parade: Entertainment, Recipes, Health, Life, Holidays | date=2020-10-06 | url=https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-url=https://web.archive.org/web/20201007032747/https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-date=2020-10-07 | url-status=dead | access-date=2020-10-07}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;&amp;gt;{{cite web | title=Heather Youmans Releases 'Shine' As Love Letter To Younger Self | website=Headliner Magazine | url=https://headlinermagazine.net/blog/heather-youmans-releases-shine-as-love-letter-to-younger-self.html | access-date=2020-10-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;&amp;gt;{{cite AV media  | people = Heather Youmans  | date = 2020-10-28  | title = The Tap Dancer Performs &amp;quot;Youngblood&amp;quot; By 5 Seconds Of Summer - Season 1 Ep. 4 - I CAN SEE YOUR VOICE  | language = en  | url = https://www.youtube.com/watch?v=Z5rghUxRero  | access-date = 2020-10-31  | publisher = FOX }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot;&amp;gt;{{cite web | title=Column: Singer from Vista stuns panel in new Fox reality series | website=San Diego Union-Tribune | date=2020-11-14 | url=https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-url=https://web.archive.org/web/20201118211051/https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-date=2020-11-18 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot;&amp;gt;{{cite web | last=Upadhyay | first=Nayna | title=EXCLUSIVE - Heather Youmans says 'I Can See Your Voice' is all about finding 'singers that America needs to know' | website=MEAWW | date=2020-11-16 | url=https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-url=https://web.archive.org/web/20201116192203/https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-date=2020-11-16 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.heatheryoumans.com Official website]&lt;br /&gt;
* {{YouTube|user=HeatherYoumans|Heather Youmans}}&lt;br /&gt;
* {{Facebook|HeatherYoumansOfficial|Heather Youmans}}&lt;br /&gt;
&amp;lt;!--* {{itunes|us/artist/heather-youmans/id219552589|Heather Youmans}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Youmans, Heather}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Categories &lt;br /&gt;
[[Category:Articles created via the Article Wizard]]---&amp;gt;&lt;br /&gt;
[[Category:1992 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:American stage actresses]]&lt;br /&gt;
[[Category:American women singer-songwriters]]&lt;br /&gt;
[[Category:American musical theatre actresses]]&lt;br /&gt;
[[Category:21st-century American actresses]]&lt;br /&gt;
[[Category:21st-century American singers]]&lt;br /&gt;
[[Category:Musicians from San Diego]]&lt;br /&gt;
[[Category:Musicians from Vista, California]]&lt;br /&gt;
[[Category:American music journalists]]&lt;br /&gt;
[[Category:American women journalists]]&lt;br /&gt;
[[Category:Journalists from California]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--[[Category:American film actresses]]&lt;br /&gt;
[[Category:American television actresses]]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Women writers about music]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Singer-songwriters from California]]&lt;br /&gt;
{{authority control}}&lt;br /&gt;
[[Category:21st-century American women singers]]&lt;br /&gt;
[[Category:21st-century American journalists]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6283</id>
		<title>Draft: Heather Youmans</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6283"/>
		<updated>2024-02-24T06:10:56Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: draft lead&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{short description|American singer-songwriter}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox musical artist&lt;br /&gt;
| name             = Heather Youmans&lt;br /&gt;
| image            = File:Heather_Youmans.jpg&lt;br /&gt;
| image_size       =&lt;br /&gt;
| landscape        = &amp;lt;!-- yes, if wide image, otherwise leave blank --&amp;gt;&lt;br /&gt;
| alt              = Heather Youmans sings at 2011 Relay For Life in San Diego, California&lt;br /&gt;
| caption          =&lt;br /&gt;
| birth_name       = Heather Anne Youmans&lt;br /&gt;
| native_name      =&lt;br /&gt;
| native_name_lang =&lt;br /&gt;
| alias            =&lt;br /&gt;
| birth_date       = {{birth date and age|1992|05|16}}&lt;br /&gt;
| birth_place      = [[Vista, California]], U.S.&lt;br /&gt;
| origin           =&lt;br /&gt;
| death_date       = &amp;lt;!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) --&amp;gt;&lt;br /&gt;
| death_place      =&lt;br /&gt;
| genre            = Rock, pop, country, soul&lt;br /&gt;
| occupation       = Singer-songwriter, actor, journalist&lt;br /&gt;
| instrument       = vocals, bass&lt;br /&gt;
| years_active     = 2002–present&lt;br /&gt;
| label            = {{plainlist| &lt;br /&gt;
* Caption Records&lt;br /&gt;
* Weir Brothers Entertainment&lt;br /&gt;
* Suspicious Love Productions}}&lt;br /&gt;
| associated_acts  =&lt;br /&gt;
| website          = {{URL|www.heatheryoumans.com}}&lt;br /&gt;
| module =&lt;br /&gt;
&lt;br /&gt;
  {{Infobox person&lt;br /&gt;
    | education	= {{highlight|[[Master of Business Administration| MBA]]}}&lt;br /&gt;
    | alma_mater = {{highlight|[[California State University, Long Beach]] (2013)}}&lt;br /&gt;
    | television = {{plainlist| [[I Can See Your Voice (American TV series)| ''I Can See Your Voice'' ]]}}&lt;br /&gt;
  }}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color: moccasin&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Heather Youmans is an American entertainer, specifically a principal and session singer. Youmans performed an opener for a UNICEF benefit concert, featuring Sting and Natalie Cole, which cemented her future goals for the stage in 2005.  Opportunities arose with 20th Century Fox major motion pictures as a singer and songwriter and Youmans has a long running association with Disney (since 2005). Youmans completed a tour, Disney 100 Wonderland, in China in 2024, and  enjoys singing the national anthem for professional sports teams (MLB and NHL); video footage of her performances have gone viral twice.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Heather Youmans''' is an American singer-songwriter, actress, tap dancer and journalist, her work has been featured in ''American Songwriter'' magazine,&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt; [[Forbes|''Forbes Women'']] and ''Parade'' magazine profiled her career and music in 2020.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans tap dancing on [[I Can See Your Voice (American TV series)|''I Can See Your Voice'']] episode 4 (FOX),&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; convinced the judges that she is a professional dancer,&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
a video depicting her delivery of the national anthem and dealing with acoustic delay effect of a large stadium (Oakland Coliseum) went viral on social media in 2021.&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Early life ==&lt;br /&gt;
Youmans began landing theatre roles at age ten, such as Amarylis in ''[[The Music Man]]'',  Marta in ''[[The Sound of Music]]'' in 2003,&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;/&amp;gt; as well as Nellie in ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]'' in 2004 at the [[Lawrence Welk|Welk]] Resort Theatre.&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;/&amp;gt;  In 2004, she won first place in the Del Mar TV Idol Contest, Junior Division, at age twelve.&amp;lt;ref name=DelMarTV/&amp;gt; On November 30, 2005, Youmans performed an opening solo at the [[UNICEF]] Snowflake Ball at the [[Beverly Wilshire Hotel|Regent Beverly Wilshire]]. Headlining acts for the evening included, [[Sting (musician)|Sting]], [[Chris Botti]] and [[Natalie Cole]].&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans attended [[Rancho Buena Vista High School]] and was active in the Associated Student Body, dance and drama programs. In 2009, she won the MACY Award for Highest Achievement and Best Supporting Vocal-Female for her role as Rusty in [[Footloose (musical)|''Footloose'']],&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;/&amp;gt; and Best Vocal Female in 2010 for her role as Jo in ''[[Little Women]]''.&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Education ==&lt;br /&gt;
Youmans holds a B.A. in Journalism and Mass Communication with a music minor (classical and jazz vocal at [[Bob Cole Conservatory of Music]]). She graduated [[magna cum laude]] from [[California State University, Long Beach]] (CSULB) in 2013, and graduated with an MBA at CSULB with an emphasis in marketing. During her undergraduate studies, Youmans created and hosted ''Heartbreakers: The Women of Rock'', a radio format program on [[Kbeach#22 West Radio|KBeach.org]] (2011-2013).  {{Highlight|While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Career ==&lt;br /&gt;
In 2005, Youmans earned a voice-over part, playing Becky Thatcher in Disney's ''[[Tom Sawyer's Island]]'' and the following year, won the part of Shana the Rock Star in a pre-production musical ''[[Teen Witch the Musical]]'' (2007).&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt; These accomplishments led to featured artist performances on the soundtrack for [[Moondance Alexander]] (2007).&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;/&amp;gt; Youmans' single, &amp;quot;Girl to Change Your World&amp;quot;, was a (2011) hit on [[Radio Disney]],&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; and it is one of the two Youmans songs included in the film ''Love by Design'' (2014), starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]].&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;The [[Teen Witch the Musical]] project was successful in its primary goal of reproducing the missing soundtrack for the Halloween classic film [[Teen Witch]] (1989).&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt; The musical stage-play never made it out of [[Workshop production|workshop]] and has yet to achieve the secondary goal of becoming a viable [[Broadway theatre|Broadway]] offering.&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;/&amp;gt; This association with Weir Brothers Productions led to additional soundtrack features in the films ''[[Moondance Alexander]]'' (2007), ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
While concurrently studying journalism and music, Youmans auditioned and stacked up credits in Southern California regional theater and wrote for national and regional newspapers on entertainment topics. &amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; She has produced and hosted an entertainment format radio show,&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; interviewed entertainment industry legends,&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt; and ran a marketing campaign for [[Jon MacLennan|Jon MacLennan's]] iBook, ''Melodic Expressions: The Art of the Line'' (2012).&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;/&amp;gt; She works as a communications professional in [[Los Angeles]].&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Theatre and live performances ===&lt;br /&gt;
==== Beverly Hills opener  ====&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;&lt;br /&gt;
==== American Idol ====&lt;br /&gt;
In 2012, Youmans performed &amp;quot;[[Some Kind of Wonderful (The Drifters song)|Some Kind of Wonderful]]&amp;quot; at the [[American Idol]] San Diego competition and won a golden ticket after a unanimous decision from the judges ([[Steven Tyler]], [[Jennifer Lopez]] and [[Randy Jackson]]), which advanced her to the [[American Idol (season 11)#Hollywood week and Vegas rounds|''Hollywood Week'']] competition.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  Youmans was eliminated during ''Hollywood Week'' in Season 11. She attributes the elimination to nerves and an ambitious music selection, [[Heart (band)|Heart]]’s &amp;quot;[[Crazy on You]]&amp;quot;.&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable sortable collapsed collapsible&amp;quot; style=&amp;quot;width:98%; margin-right:0; text-align:center;&amp;quot;&lt;br /&gt;
|+ Professional performances and theatre roles&lt;br /&gt;
|-&lt;br /&gt;
! Year&lt;br /&gt;
! Title&lt;br /&gt;
! Role&lt;br /&gt;
! Venue&lt;br /&gt;
! Director/Producer&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[The Music Man]]''||align=&amp;quot;center&amp;quot;|Amarylis||Welk Resort Theatre||Lewis Wilkenfeld&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[Sound of Music]]''||align=&amp;quot;center&amp;quot;|Marta||Welk Resort Theatre||Joshua Carr&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Nellie||Welk Resort Theatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie (musical)|Annie]]''||align=&amp;quot;center&amp;quot;|Orphan Sadie||La Mirada Theatre for the Performing Arts||McCoy Rigby Ent. Glenn Casale&lt;br /&gt;
|-&lt;br /&gt;
|2004||''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Jessie||Saddleback Civic Light Opera||Sheryl Donchey&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[To Kill a Mockingbird]]''||align=&amp;quot;center&amp;quot;|Scout||West Coast Ensemble|| {{sic|hide=y|C. Jaffe/R. Israel}}&lt;br /&gt;
|-&lt;br /&gt;
|2005||UNICEF Snowflake Ball||align=&amp;quot;center&amp;quot;|Opening Soloist||[[Beverly Wilshire Hotel|Regent Beverly Wilshire]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2005|| ''[[Tight Quarters]]''||align=&amp;quot;center&amp;quot;|Lauren||Whitefire Theatre||Jules Aaron&lt;br /&gt;
|-&lt;br /&gt;
|2005||Kodak Christmas||align=&amp;quot;center&amp;quot;|Featured Soloist||[[Dolby Theatre|Kodak Theatre]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2006||''[[Teen Witch the Musical]]''||align=&amp;quot;center&amp;quot;|Shana the Rock Star|| [[Workshop production|workshop]] ||Alana Lambros&lt;br /&gt;
|-&lt;br /&gt;
|2008||[[New Music Weekly]] Awards||align=&amp;quot;center&amp;quot;|Featured Soloist||Avalon Theatre||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2009||''[[42nd Street (musical)|42nd Street]]'' ||align=&amp;quot;center&amp;quot;|Ensemble|| Moonlight Amphitheatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2010|| ''Once Upon A Wedding''||align=&amp;quot;center&amp;quot;|Daisy||Bahia Resort-Dinner Theatre||Laughing Tree Prod.&lt;br /&gt;
|-&lt;br /&gt;
|2010-12|| ''Journey To The Lost Temple''||align=&amp;quot;center&amp;quot;|Pippin||[[Legoland]]-California||Shawn Griener&lt;br /&gt;
|-&lt;br /&gt;
|2012||''[[American Idol]]'' Season 11||align=&amp;quot;center&amp;quot;|Contestant|| [[USS Midway Museum]]|| [[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2012||''American Idol'' Season 11||align=&amp;quot;center&amp;quot;|Hollywood Week||[[Pasadena Civic Auditorium]]||[[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2019||Jason Robert Brown In Concert||align=&amp;quot;center&amp;quot;|Lead singer||Cabaret at the Merc||Gerald Sternbach &lt;br /&gt;
|-&lt;br /&gt;
|2019||Evita In Concert||align=&amp;quot;center&amp;quot;|Ensemble||PVPA||Richard Israel &lt;br /&gt;
|-&lt;br /&gt;
|2020||HAIR||align=&amp;quot;center&amp;quot;|Suzannah 1000-Year-Old Monk||LGBT Center LA||Kate Sullivan Jared Stein&lt;br /&gt;
|-&lt;br /&gt;
|2020||New Year's Eve, National Anthem Singer||align=&amp;quot;center&amp;quot;|Soloist||Staples Center||LA Kings &amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;/&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Recorded and broadcast ===&lt;br /&gt;
&amp;lt;s&amp;gt;In addition to performing in nationally televised commercials, Youmans has been involved in several cutting-edge media projects.&amp;lt;/s&amp;gt;  In 2005, Youmans played the part of Becky Thatcher in Disney's [[Tom Sawyer's Island]], a voice-over project.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  The performance was delivered via hand-held computers issued to visitors on [[Disneyland|Disneyland's]] Tom Sawyer's Island. A pilot project, titled &amp;quot;Available Light&amp;quot;, was one of the first to test Sony Blu-ray camera technology.&lt;br /&gt;
&lt;br /&gt;
==== Soundtracks ====&lt;br /&gt;
* ''[[Teen Witch the Musical]]'' (2007) original cast recording, Weir Brothers Entertainment.&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Moondance Alexander]]'' (2007) starring [[Kay Panabaker]], [[Don Johnson]] and [[Lori Loughlin]], [[20th Century Fox|20th Century Fox Home Entertainment]]&lt;br /&gt;
* ''[[Flicka 2]]'' (2010) starring [[Patrick Warburton]], [[Tammin Sursok]] and [[Clint Black]], [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011) starring [[Travis Turner]] and [[Donnelly Rhodes]],  [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''Love by Design'' (2014) starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]], Gold Line Prod. Int.&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Newport Beach FF&amp;quot;&amp;gt;{{cite web|title=Newport Beach Film Festival|url=https://www.imdb.com/event/ev0000491/2014?ref_=ttawd_ev_1|website=[[IMDb]]|accessdate=1 February 2015|date=2 February 2014|quote=First-time Filmmaker: Winner}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*''High Strung'' (2016) starring [[Keenan Kampa]], Nicholas Galitzine, [[Jane Seymour (actress)|Jane Seymour]], Riviera Films.&amp;lt;ref name=&amp;quot;High Strung&amp;quot;&amp;gt;{{cite web|title=''High Strung''|url=http://www.soundtrack.net/album/high-strung/|website=Soundtrack.net|accessdate=30 March 2016|date=8 April 2016}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Singles ====&lt;br /&gt;
&amp;lt;!--* &amp;quot;Never Gonna Be The Same Again&amp;quot; (2007)&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt;--&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World&amp;quot; (2011)&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World - The Remixes&amp;quot; (2011)&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;In My Arms&amp;quot; (2012)&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;My Kind of Trouble LIVE at the Recordium&amp;quot; (2019)&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Is It Just Me LIVE at the Recordium&amp;quot; (2019)&lt;br /&gt;
* &amp;quot;Shine&amp;quot; (2019)&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;You Made Me Hate Love Songs LIVE at YouTube Space&amp;quot; (2020)&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;A Little Closer To Happy&amp;quot; (2021)&lt;br /&gt;
* &amp;quot;Worth It&amp;quot; (2021)&lt;br /&gt;
&lt;br /&gt;
=== Journalism ===&lt;br /&gt;
Youmans writes about entertainment topics, specifically dance, music, theatre and film. Her Southern California beat includes covering venues, such as the [[Orange County Fair (California)|Orange County Fair]], the Newport Beach Jazz Festival, the [[Playboy Jazz Festival]], Sunset Jazz at Newport, the [[Hollywood Bowl]] and [[Segerstrom Center for the Arts]]. Her freelance position with [[Freedom Communications]] has afforded interviews with: [[George Lopez]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Drew Carey]] and [[Brooke Shields]],&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt;  Grammy Award-winning musicians [[David Sanborn]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Jeff Hamilton (drummer)|Jeff Hamilton]]&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;/&amp;gt; for the ''[[Orange County Register]]'', and her interview with Grammy nominee [[Brian McKnight]] was additionally published in the ''Los Angeles Register''.&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;/&amp;gt; Earlier interviews include, [[Chita Rivera]] for the ''[[Los Angeles Times]]''&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and interviews with [[Ann Wilson]]&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt; and  [[Martina McBride]]&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt; for the [[Los Angeles Times suburban sections|Los Angeles Times Media Group's]] ''Daily Pilot''.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;!--- See http://en.wikipedia.org/wiki/Wikipedia:Footnotes on how to create references using &amp;lt;ref&amp;gt;&amp;lt;/ref&amp;gt; tags which will then appear here automatically --&amp;gt;&lt;br /&gt;
{{Reflist|2| refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student gets golden ticket on 'American Idol'|url=http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|publisher=Daily 49er|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821011818/http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|archivedate=21 August 2014|date=24 January 2012}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;&amp;gt;{{cite web|author1=Giulia Nahmany|title=Giulia Nahmany Love by Design Premiere at Newport Beach Film Festival|url=https://www.youtube.com/watch?v=et6kw-AH0ZA|publisher=Giulia Nahmany YouTube Channel|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821015154/https://www.youtube.com/watch?v=et6kw-AH0ZA|archivedate=21 August 2014|date=20 May 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=TWTM&amp;gt;{{cite web|title=Teen Witch The Musical|url=http://weirbrothersentertainment.com/releases/teen-witch|publisher=Weir Brothers Entertainment|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822014020/http://weirbrothersentertainment.com/releases/teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;&amp;gt;{{cite web|title=Heather Youmans: Credits|url=http://www.allmusic.com/artist/heather-youmans-mn0000643210/credits|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=DelMarTV&amp;gt;{{cite web|title=Del Mar TV Idol Contest 2004|url=http://www.delmartv.com/idol/idol04.html|publisher=Del Mar TV Foundation|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822011402/http://www.delmartv.com/idol/idol04.html|archivedate=22 August 2014|date=10 October 2004|quote=Heather Youmans (1st place)}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;&amp;gt;{{cite web|title=Moondance Alexander Soundtrack|url=http://www.allmusic.com/album/moondance-alexander-mw0000493713|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;&amp;gt;{{cite web|title=2010 MACY Award Winners|url=http://macyawards.com/news/67-news/132-2010-macy-award-winners|publisher=MACY Awards|accessdate=22 August 2014|date=22 May 2010|url-status=dead|archiveurl=https://web.archive.org/web/20140903125715/http://macyawards.com/news/67-news/132-2010-macy-award-winners|archivedate=3 September 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;&amp;gt;{{cite web|title=2009 MACY Award Winners|url=http://macyawards.com/news/67-news/122-2009-macy-award-winners|accessdate=22 August 2014|url-status=dead|archiveurl=https://web.archive.org/web/20140822022545/http://macyawards.com/news/67-news/122-2009-macy-award-winners|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;&amp;gt;{{cite news|last1=Krugen|first1=Pam|title=Strong leads, chemistry make Welk's 'Get Your Gun' a winner|url=http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|newspaper=The San Diego Union-Tribune|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822042246/http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|archivedate=22 August 2014|date=3 September 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=Annie Get Your Gun|url=http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822044216/http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|archivedate=22 August 2014|year=2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=The Sound of Music|url=http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822045133/http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;&amp;gt;{{cite web|last1=Wood|first1=Jennifer M.|title=18 Fun Facts About 'Teen Witch'|url=http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|publisher=mental_floss|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822193830/http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;&amp;gt;{{cite web|title=Girl to Change Your World: Releases|url=http://www.allmusic.com/album/girl-to-change-your-world-mw0002363250/releases|website=[[AllMusic]]|accessdate=23 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - Girl To Change Your World|url=https://www.youtube.com/watch?v=lYU6FLZm9nQ|publisher=Caption Records YouTube Channel|accessdate=23 August 2014|date=7 February 2010}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student loses shot at 'Idol' fame|url=http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|publisher=Daily 49er|accessdate=23 August 2014|archiveurl=https://web.archive.org/web/20140823012031/http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|archivedate=23 August 2014|date=12 February 2012|quote=Still, she said she’s not ashamed of the footage. “Yeah, it sucks,” she said. “Everybody has a bad day. Yeah, it’s unfortunate that they showed me having a bad day, but what can you do?”}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Newport Jazz Festival goes down smooth|url=http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|newspaper=[[Orange County Register]]|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826092910/http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|archivedate=26 August 2014|date=29 May 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;&amp;gt;{{cite web|last1=Schnaidt|first1=Joe|title=Lighting The Way To Hope On Rodeo Drive|url=http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|publisher=Canyon News|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826100957/http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|archivedate=26 August 2014|date=4 December 2005|quote=BEVERLY HILLS — Wednesday, November 30 illuminated Rodeo Drive at Wilshire Boulevard for the annual holiday lighting ceremony with celebrities, sponsors and a ray of hope for children facing poverty, health risks and poor education.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 9 August 2011 | title = Marley &amp;amp; Me The Puppy Years music from and inspired by the motion picture | medium = MP3 &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B005JBC14S&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 4 May 2010 | title = Flicka 2 Original Motion Picture Soundtrack | medium = MP3/CD &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B003JE2EIU&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;JRAY Nom&amp;quot;&amp;gt;{{cite web|title=2009 JRAY Awards|url=http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|publisher=Fulerton Civic Light Opera|accessdate=28 August 2014|archiveurl=https://web.archive.org/web/20140828012354/http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|archivedate=28 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;&amp;gt;{{cite news|last1=Malik|first1=Abhay|title=Alumnus Jon MacLennan's iBook 'Melodic Expressions' advances guitar instruction |url=http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|newspaper=[[Daily Bruin]]|accessdate=8 August 2014|archiveurl=https://web.archive.org/web/20140808121825/http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|archivedate=8 August 2014|date=8 May 2012|quote=Heather Youmans, an “American Idol” contestant and freelance journalist, helped edit the iBook and has expressed excitement over the finished product as well.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;&amp;gt;{{cite web|last1=MacLennan|first1=Jon|title=In My Arms Jon MacLennan (feat. Heather Youmans)|url=https://www.youtube.com/watch?v=G8QJ5aToHxw|publisher=Jon MacLennan YouTube Channel|accessdate=28 August 2014|date=16 July 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - &amp;quot;Never Gonna Be the Same Again&amp;quot; Studio City Sound LIVE|url=https://www.youtube.com/watch?v=rYhEtU1EgUM|publisher=[[Studio City Sound]]|accessdate=28 August 2014|date=3 October 2011}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;iBook Press Release&amp;quot;&amp;gt;{{cite press release|title=Melodic Expressions: The Art of the Line|url=http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|website=www.heatheryoumansmusic.com/|publisher=Jon MacLennan|accessdate=28 August 2014|date=3 May 2013|archiveurl=https://web.archive.org/web/20140828221739/http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|archivedate=28 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Change in tempo for Playboy Jazz Festival&lt;br /&gt;
|url=http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=21 August 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829013440/http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Brooke Shields takes the helm of 'Chicago'&lt;br /&gt;
|url=http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=17 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829014021/http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Sunset Jazz series kicks off in Newport&lt;br /&gt;
|url=http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|accessdate=29 August 2014|newspaper=[[The Orange County Register]]|date=9 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829015132/http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;&amp;gt;{{cite web|title=Weir Brothers Entertainment: Albums|url=http://www.last.fm/label/Weir+Brothers+Entertainment/albums|website=last.fm|publisher=Weir Brothers Entertainment|accessdate=29 August 2014|archiveurl=https://web.archive.org/web/20140829023539/http://www.last.fm/label/Weir+Brothers+Entertainment/albums|archivedate=29 August 2014|year=2011|quote=Girl to Change Your World singles}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Music for most every taste|url=http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|accessdate=29 August 2014|newspaper=Daily Pilot|archiveurl=https://web.archive.org/web/20140829225029/http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=O.C. Fair gets some Heart|url=http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|accessdate=29 August 2014|newspaper=Daily Pilot|date=2 August 2012|archiveurl=https://web.archive.org/web/20140829224632/http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Youmans: Chita Rivera to perform hits from a storied career|url=http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|accessdate=29 August 2014|newspaper=[[The Los Angeles Times]]|date=10 November 2011|archiveurl=https://web.archive.org/web/20140829220754/http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival|url=http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|accessdate=29 August 2014|newspaper=[[Orange County Register]]|date=28 May 2014|archiveurl=https://web.archive.org/web/20140829215845/http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival&lt;br /&gt;
|publisher=Los Angeles Register|date=29 May 2014&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;&amp;gt;{{cite news|title='High Strung' Soundtrack Announced|url=http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|accessdate=3 May 2016|publisher=FILM MUSIC REPORTER|date=9 March 2016|archiveurl=https://web.archive.org/web/20160503051828/http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|archivedate=3 May 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;&amp;gt;{{cite web|author1=Kristyn Burtt|title=Heather Youmans at the Red Carpet Premiere for &amp;quot;High Strung&amp;quot; #HighStrungMovie|url=https://www.youtube.com/watch?v=YOlN1Zt4_I8|website=YouTube.com|publisher=Mingle Media TV|accessdate=3 May 2016|date=30 March 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=Meet This Week's She Rocks Spotlight Series Artists, Including Grammy-Nominated Headliner Mindi Abair | website=Parade | date=2020-04-22 | url=https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-url=https://web.archive.org/web/20200427002753/https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-date=2020-04-27 | url-status=dead | access-date=2020-04-27}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;&amp;gt;{{cite web | title=Daily Discovery: Heather Youmans, &amp;quot;Shine&amp;quot; « American Songwriter | website=American Songwriter | date=2019-11-13 | url=https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200316151706/https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-date=2020-03-16 | url-status=live | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;&amp;gt;{{cite web | last=Buttonow | first=Leslie | title=Front and Center: Heather Youmans, PR &amp;amp; Communications Manager, Fender Musical Instruments Corporation – the WiMN - The Women's International Music Network | website=thewimn.com | date=2019-05-01 | url=https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-url=https://web.archive.org/web/20200426083920/https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-date=2020-04-26 | url-status=unfit | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;&amp;gt;{{cite web | title=Premiere: Singer-Songwriter Heather Youmans Reveals Latest Single &amp;quot;Shine&amp;quot; + Music Video | website=Elicit Magazine | date=2019-10-18 | url=http://www.elicitmagazine.com/heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200428035459/http://www.elicitmagazine.com/heather-youmans-shine/ | archive-date=2020-04-28 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;&amp;gt;{{cite web |url= https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble |title= Heather Youmans Gets Honest And Real In &amp;quot;My Kind Of Trouble&amp;quot; |date= 2019-08-13 |website= BuzzMusic |access-date= 2020-04-27 |archive-date= 2020-04-28 |archive-url= https://web.archive.org/web/20200428034603/https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;&amp;gt;{{cite web | title=Emerging Headliner: Heather Youmans | website=Headliner Magazine | date=2020-02-25 | url=https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-url=https://web.archive.org/web/20200225061919/https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-date=2020-02-25 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;&amp;gt;{{cite web | last=Brunner | first=Jeryl | title=Why This Successful Singer-Songwriter Won't Give Up Her Day Job | website=Forbes | date=2020-09-30 | url=https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/ | access-date=2020-10-01 |archive-url=https://web.archive.org/web/20201001011624if_/https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/?fbclid=IwAR3q2uGBNQP6MO-2pr57Mopo6AM0b_lktTAEhvQKHD6XhTNH5jSQoOQpiT4#5d2b64a67b7e|archive-date=2020-10-01}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=You're Gonna Feel the Joy of Heather Youmans' Video for 'Shine' | website=Parade: Entertainment, Recipes, Health, Life, Holidays | date=2020-10-06 | url=https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-url=https://web.archive.org/web/20201007032747/https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-date=2020-10-07 | url-status=dead | access-date=2020-10-07}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;&amp;gt;{{cite web | title=Heather Youmans Releases 'Shine' As Love Letter To Younger Self | website=Headliner Magazine | url=https://headlinermagazine.net/blog/heather-youmans-releases-shine-as-love-letter-to-younger-self.html | access-date=2020-10-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;&amp;gt;{{cite AV media  | people = Heather Youmans  | date = 2020-10-28  | title = The Tap Dancer Performs &amp;quot;Youngblood&amp;quot; By 5 Seconds Of Summer - Season 1 Ep. 4 - I CAN SEE YOUR VOICE  | language = en  | url = https://www.youtube.com/watch?v=Z5rghUxRero  | access-date = 2020-10-31  | publisher = FOX }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot;&amp;gt;{{cite web | title=Column: Singer from Vista stuns panel in new Fox reality series | website=San Diego Union-Tribune | date=2020-11-14 | url=https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-url=https://web.archive.org/web/20201118211051/https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-date=2020-11-18 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot;&amp;gt;{{cite web | last=Upadhyay | first=Nayna | title=EXCLUSIVE - Heather Youmans says 'I Can See Your Voice' is all about finding 'singers that America needs to know' | website=MEAWW | date=2020-11-16 | url=https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-url=https://web.archive.org/web/20201116192203/https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-date=2020-11-16 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.heatheryoumans.com Official website]&lt;br /&gt;
* {{YouTube|user=HeatherYoumans|Heather Youmans}}&lt;br /&gt;
* {{Facebook|HeatherYoumansOfficial|Heather Youmans}}&lt;br /&gt;
&amp;lt;!--* {{itunes|us/artist/heather-youmans/id219552589|Heather Youmans}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Youmans, Heather}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Categories &lt;br /&gt;
[[Category:Articles created via the Article Wizard]]---&amp;gt;&lt;br /&gt;
[[Category:1992 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:American stage actresses]]&lt;br /&gt;
[[Category:American women singer-songwriters]]&lt;br /&gt;
[[Category:American musical theatre actresses]]&lt;br /&gt;
[[Category:21st-century American actresses]]&lt;br /&gt;
[[Category:21st-century American singers]]&lt;br /&gt;
[[Category:Musicians from San Diego]]&lt;br /&gt;
[[Category:Musicians from Vista, California]]&lt;br /&gt;
[[Category:American music journalists]]&lt;br /&gt;
[[Category:American women journalists]]&lt;br /&gt;
[[Category:Journalists from California]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--[[Category:American film actresses]]&lt;br /&gt;
[[Category:American television actresses]]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Women writers about music]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Singer-songwriters from California]]&lt;br /&gt;
{{authority control}}&lt;br /&gt;
[[Category:21st-century American women singers]]&lt;br /&gt;
[[Category:21st-century American journalists]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6282</id>
		<title>Draft: Thriller</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6282"/>
		<updated>2024-02-24T02:03:12Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: ref Steven Ray&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= ''Thriller'' memorialized =&lt;br /&gt;
&lt;br /&gt;
In 2015, Marinelli sat for an interview with the [[BBC]], reflecting on his memories and contributions to Michael Jackson's ''Thriller''.&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;/&amp;gt;  [[Tom Bahler]] had introduced Marinelli to music producer [[Quincy Jones]]. Marinelli and business partner, Brian Banks, were hired as session musicians working at [[Westlake Recording Studios|Westlake Studios]] in West Hollywood for the creation of ''Thriller''.  In addition to bringing in three truckloads of synthesizer gear, preliminary duties consisted of briefing Michael Jackson on the capabilities of the emerging technologies, sound creation and programming.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
The BBC &amp;quot;Witness&amp;quot; radio podcast was followed by three ''How We Created It'' pilot vlog series. In the first episode, Marinelli demonstrates how to recreate the &amp;quot;falling star&amp;quot; sound that opens the &amp;quot;Thriller&amp;quot; song.&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;/&amp;gt; The following two-part series is called &amp;quot;Studio Stories&amp;quot;.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot; /&amp;gt; Quincy Jones' production assistant, Steven Ray,&amp;lt;ref name=&amp;quot;Rogerson 2023 Phillinganes recreate&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;/&amp;gt; joined Marinelli to reminisce in 2020.&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;/&amp;gt; Marinelli and Ray continued recording episodes and were approached by Audivita Studios for the creation of ''Stories In The Room:'' “Michael Jackson’s Thriller Album”,&amp;lt;ref name=&amp;quot;MusicTech 2023 SITR&amp;quot;/&amp;gt; with 72 episodes, posted as of February 2024.&amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;YouTube SITR 72 videos&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''Stories in The Room'' guest appearances include:&lt;br /&gt;
&lt;br /&gt;
* Matt Forger (sound engineer)&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;/&amp;gt;&lt;br /&gt;
* Lorraine Fields (&amp;quot;Thriller&amp;quot; zombie dancer)&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Larry Williams (jazz musician)|Larry Williams]] (keyboards and reeds)&lt;br /&gt;
* [[Greg Phillinganes]] (keyboards)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Phillinganes recreate&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;MusicTech 2023 SITR&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Steve Porcaro]] (keyboards, composer on &amp;quot;Human Nature&amp;quot;)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Paul Jackson Jr.]] (guitar, no relation to Michael Jackson)&lt;br /&gt;
* The Waters Family (vocal ensemble, [[Julia Waters Tillman]]. [[Oren Waters]], and [[Maxine Willard Waters]])&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
With ''Stories in The Room'' largely completed, Marinelli continues to discuss music topics like sound creation, musical gear and composing on his own Youtube channel. Episodes that have gained media attention include: &amp;quot;How I Programmed The Bass On Michael Jackson's PYT&amp;quot;,&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;/&amp;gt; &amp;quot;MJ's Billie Jean Bass - It’s 4 Instruments!&amp;quot; featuring Paul Jackson Jr., &amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt; and &amp;quot;The Billie Jean Chord Stack - It’s 4 Sounds!&amp;quot;.&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;/&amp;gt; Additional noteworthy topics include jams with Doctor Mix,&amp;lt;ref name=&amp;quot;MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 2004 f698&amp;quot;/&amp;gt; and a discussion of [[Giorgio Moroder]]'s work process with engineer Ross Hogarth,&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Marinelli appears in the film ''[[Thriller 40 (film)|Thriller 40]]'' (2023) (Showtime - Paramount+) from his studios.&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Image support for article not to be included ==&lt;br /&gt;
{{Wide image|File:Photo-of-Thriller-40-Credit-Roll.jpg|800|Photo of Thriller 40 (2023) Credit Roll|900|center|alt=Photo of Thriller 40 (2023) Credit Roll}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{Reflist|30em|refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;&amp;gt;{{cite web | title=Witness History, Michael Jackson's Thriller | website=BBC | date=2015-12-23 | url=https://www.bbc.co.uk/programmes/p039z0n4 | access-date=2024-02-02 | archive-date=2024-02-02 | archive-url=https://web.archive.org/web/20240202204125/https://www.bbc.co.uk/programmes/p039z0n4 | quote = In 1982 the world's best selling album was released. Thriller included hits such as Beat It, Billie Jean and Wanna Be Startin' Somethin' as well as the title track. Witness speaks to Anthony Marinelli who worked on the seminal album.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;&amp;gt;{{cite web | last=Carr | first=Dan | title=The synth sounds of Michael Jackson's Thriller (and how to recreate them in your DAW) | website=MusicRadar | date=2022-11-30 | url=https://www.musicradar.com/news/thriller-synth-sounds | access-date=2024-02-02 | archive-url= https://web.archive.org/web/20240117053822/https://www.musicradar.com/news/thriller-synth-sounds | archive-date=2024-01-17 | quote = Looking for a more ‘cinematic’ sound, Quincy Jones enlisted synthesizer programmers Anthony Marinelli and Brian Banks, who bought every synth available at the time and turned up to Westlake Studios with three trucks full of instruments.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;&amp;gt;{{cite web | title=Blog | website=(/\/\) Anthony Marinelli // Music Forever | date=2020-10-13 | url=https://www.anthonymarinelli.com/blog | access-date=2024-02-03  | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203012039/https://www.anthonymarinelli.com/blog}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;&amp;gt;{{cite web | title=Stories In The Room: Michael Jackson’s Thriller Album | website=MJVibe | date=2023-02-11 | url=https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/ | access-date=2024-02-03 | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203013207/https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;&amp;gt;{{cite web | title=Original programmer who worked on Michael Jackson’s Billie Jean reveals how he created its iconic four-chord stack | website=MusicTech | date=2023-12-22 | url=https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/ | access-date=2024-02-03  | archive-date=2024-01-06 | archive-url=https://web.archive.org/web/20240106023325/https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;&amp;gt;{{cite web | title=Monster budgets, visits from Jackie Onassis, and a very angry Vincent Price: how Michael Jackson made Thriller | website=The Telegraph | date=2018-08-29 | url=https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/ | access-date=2024-02-04 | archive-date=2022-12-06 | archive-url=https://web.archive.org/web/20221206012217/https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/| quote= This was before the internet, so I don't know how people found out. It was like dancing on stage, it was like doing a concert. We didn't start taping until the middle of the night. Every night it was like, he came out and people were screaming. It was like being in concert with Michael Jackson - it was very exciting.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;&amp;gt; {{AllMusic | id= steven-ray-mn0000038850 | tab= credits | title= Steven Ray Credits}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;&amp;gt;{{cite web | title=“Don’t think, just do”: Former Giorgio Moroder collaborator says the godfather of disco was “all about the melody” | website=MusicTech | date=2024-01-04 | url=https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | access-date=2024-02-05 | archive-url=https://web.archive.org/web/20240117200522/https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | archive-date=2024-02-05 }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;&amp;gt;{{cite web | last=George | first=Nelson | title=THRILLER 40 AIRS ON PARAMOUNT+ DEC. 2 | website=nelsongeorge.substack.com | date=2023-11-16 | url=https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207011919/https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;&amp;gt;{{cite web | title=Thriller 40: the documentary | website=BRICE NAJAR | date=2023-12-10 | url=https://bricenajar.com/en/thriller-40-the-documentary/ | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207013457/https://bricenajar.com/en/thriller-40-the-documentary/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=Here’s how the synth bass sound for Michael Jackson’s PYT was programmed on an ARP 2600 | website=Yahoo Entertainment | date=2023-05-24 | url=https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html | access-date=2024-02-10 | archive-url= https://web.archive.org/web/20240210215151/https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html  | archive-date=2024-02-10}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;&amp;gt;{{cite web | last=Wyeth | first=Stefan | title=Darkness Falls: How To Sound Like Michael Jackson | website=gearnews.com | date=2023-10-31 | url=https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/ | access-date=2024-02-10 | archive-date=2024-02-10 | archive-url=https://web.archive.org/web/20240210233745/https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;&amp;gt;{{cite web | title=How I Programmed The Bass On Michael Jackson's PYT | website=YouTube | url=https://www.youtube.com/watch?v=EVx9CnUqXGM | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;&amp;gt;{{cite web | title=MJ's Billie Jean Bass | website=YouTube | url=https://www.youtube.com/watch?v=zKzcR0sUvV0 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=It turns out that the Billie Jean chord stab sound is more complex than we thought: it needed 3 Yamaha CS-80 synth layers and vocal ‘oohs’ from Michael Jackson | website=MusicRadar | date=2023-12-18 | url=https://www.musicradar.com/news/billie-jean-chord-stack-synths | access-date=2024-02-11 | archive-date=2024-02-11 | archive-url=https://web.archive.org/web/20240211011143/https://www.musicradar.com/news/billie-jean-chord-stack-synths }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;&amp;gt;{{cite web | title=The Billie Jean Chord Stack | website=YouTube | url=https://www.youtube.com/watch?v=_mIYTG2hlT8 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 2004 f698&amp;quot;&amp;gt;{{cite web | title=CS80, 73 Moog Modular, FVS, ARP 2600 | website=MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 | date=2004-02-26 | url=https://www.matrixsynth.com/2023/11/anthony-marinelli-doctor-mix-synth-jam.html | access-date=2024-02-11 | archive-date=2023-11-30 | archive-url=https://web.archive.org/web/20231130041506/https://www.matrixsynth.com/2023/11/anthony-marinelli-doctor-mix-synth-jam.html}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Phillinganes recreate&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=Watch Greg Phillinganes recreate Michael Jackson’s Thriller using the original synths | website=MusicRadar | date=2023-12-31 | url=https://www.musicradar.com/news/watch-greg-phillinganes-recreate-michael-jacksons-thriller-using-the-original-synths | access-date=2024-02-11 | archive-date=2024-02-11 | archive-url= https://web.archive.org/web/20240211035711/https://www.musicradar.com/news/watch-greg-phillinganes-recreate-michael-jacksons-thriller-using-the-original-synths}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2023 SITR&amp;quot;&amp;gt;{{cite web | title=Greg Phillinganes recreates synth parts from Michael Jackson’s Thriller | website=MusicTech | date=2023-02-13 | url=https://musictech.com/news/music/greg-phillinganes-recreates-synth-parts-from-michael-jacksons-thriller/ | access-date=2024-02-11 | archive-date=2024-02-11 | archive-url=https://web.archive.org/web/20240211040308/https://musictech.com/news/music/greg-phillinganes-recreates-synth-parts-from-michael-jacksons-thriller/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube SITR 72 videos&amp;quot;&amp;gt;{{cite web | title=Michael Jackson Thriller Album Stories In the Room | website=YouTube | url=https://www.youtube.com/@storiesintheroom/videos | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6281</id>
		<title>Draft: Heather Youmans</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6281"/>
		<updated>2024-02-22T17:30:14Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: television&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{short description|American singer-songwriter}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox musical artist&lt;br /&gt;
| name             = Heather Youmans&lt;br /&gt;
| image            = File:Heather_Youmans.jpg&lt;br /&gt;
| image_size       =&lt;br /&gt;
| landscape        = &amp;lt;!-- yes, if wide image, otherwise leave blank --&amp;gt;&lt;br /&gt;
| alt              = Heather Youmans sings at 2011 Relay For Life in San Diego, California&lt;br /&gt;
| caption          =&lt;br /&gt;
| birth_name       = Heather Anne Youmans&lt;br /&gt;
| native_name      =&lt;br /&gt;
| native_name_lang =&lt;br /&gt;
| alias            =&lt;br /&gt;
| birth_date       = {{birth date and age|1992|05|16}}&lt;br /&gt;
| birth_place      = [[Vista, California]], U.S.&lt;br /&gt;
| origin           =&lt;br /&gt;
| death_date       = &amp;lt;!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) --&amp;gt;&lt;br /&gt;
| death_place      =&lt;br /&gt;
| genre            = Rock, pop, country, soul&lt;br /&gt;
| occupation       = Singer-songwriter, actor, journalist&lt;br /&gt;
| instrument       = vocals, bass&lt;br /&gt;
| years_active     = 2002–present&lt;br /&gt;
| label            = {{plainlist| &lt;br /&gt;
* Caption Records&lt;br /&gt;
* Weir Brothers Entertainment&lt;br /&gt;
* Suspicious Love Productions}}&lt;br /&gt;
| associated_acts  =&lt;br /&gt;
| website          = {{URL|www.heatheryoumans.com}}&lt;br /&gt;
| module =&lt;br /&gt;
&lt;br /&gt;
  {{Infobox person&lt;br /&gt;
    | education	= {{highlight|[[Master of Business Administration| MBA]]}}&lt;br /&gt;
    | alma_mater = {{highlight|[[California State University, Long Beach]] (2013)}}&lt;br /&gt;
    | television = {{plainlist| [[I Can See Your Voice (American TV series)| ''I Can See Your Voice'' ]]}}&lt;br /&gt;
  }}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color: moccasin&amp;quot;&amp;gt;&lt;br /&gt;
'''Heather Youmans''' is an American singer-songwriter, actress, tap dancer and journalist, her work has been featured in ''American Songwriter'' magazine,&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt; [[Forbes|''Forbes Women'']] and ''Parade'' magazine profiled her career and music in 2020.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans tap dancing on [[I Can See Your Voice (American TV series)|''I Can See Your Voice'']] episode 4 (FOX),&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; convinced the judges that she is a professional dancer,&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
a video depicting her delivery of the national anthem and dealing with acoustic delay effect of a large stadium (Oakland Coliseum) went viral on social media in 2021.&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Early life ==&lt;br /&gt;
Youmans began landing theatre roles at age ten, such as Amarylis in ''[[The Music Man]]'',  Marta in ''[[The Sound of Music]]'' in 2003,&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;/&amp;gt; as well as Nellie in ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]'' in 2004 at the [[Lawrence Welk|Welk]] Resort Theatre.&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;/&amp;gt;  In 2004, she won first place in the Del Mar TV Idol Contest, Junior Division, at age twelve.&amp;lt;ref name=DelMarTV/&amp;gt; On November 30, 2005, Youmans performed an opening solo at the [[UNICEF]] Snowflake Ball at the [[Beverly Wilshire Hotel|Regent Beverly Wilshire]]. Headlining acts for the evening included, [[Sting (musician)|Sting]], [[Chris Botti]] and [[Natalie Cole]].&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans attended [[Rancho Buena Vista High School]] and was active in the Associated Student Body, dance and drama programs. In 2009, she won the MACY Award for Highest Achievement and Best Supporting Vocal-Female for her role as Rusty in [[Footloose (musical)|''Footloose'']],&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;/&amp;gt; and Best Vocal Female in 2010 for her role as Jo in ''[[Little Women]]''.&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Education ==&lt;br /&gt;
Youmans holds a B.A. in Journalism and Mass Communication with a music minor (classical and jazz vocal at [[Bob Cole Conservatory of Music]]). She graduated [[magna cum laude]] from [[California State University, Long Beach]] (CSULB) in 2013, and graduated with an MBA at CSULB with an emphasis in marketing. During her undergraduate studies, Youmans created and hosted ''Heartbreakers: The Women of Rock'', a radio format program on [[Kbeach#22 West Radio|KBeach.org]] (2011-2013).  {{Highlight|While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Career ==&lt;br /&gt;
In 2005, Youmans earned a voice-over part, playing Becky Thatcher in Disney's ''[[Tom Sawyer's Island]]'' and the following year, won the part of Shana the Rock Star in a pre-production musical ''[[Teen Witch the Musical]]'' (2007).&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt; These accomplishments led to featured artist performances on the soundtrack for [[Moondance Alexander]] (2007).&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;/&amp;gt; Youmans' single, &amp;quot;Girl to Change Your World&amp;quot;, was a (2011) hit on [[Radio Disney]],&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; and it is one of the two Youmans songs included in the film ''Love by Design'' (2014), starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]].&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;The [[Teen Witch the Musical]] project was successful in its primary goal of reproducing the missing soundtrack for the Halloween classic film [[Teen Witch]] (1989).&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt; The musical stage-play never made it out of [[Workshop production|workshop]] and has yet to achieve the secondary goal of becoming a viable [[Broadway theatre|Broadway]] offering.&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;/&amp;gt; This association with Weir Brothers Productions led to additional soundtrack features in the films ''[[Moondance Alexander]]'' (2007), ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
While concurrently studying journalism and music, Youmans auditioned and stacked up credits in Southern California regional theater and wrote for national and regional newspapers on entertainment topics. &amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; She has produced and hosted an entertainment format radio show,&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; interviewed entertainment industry legends,&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt; and ran a marketing campaign for [[Jon MacLennan|Jon MacLennan's]] iBook, ''Melodic Expressions: The Art of the Line'' (2012).&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;/&amp;gt; She works as a communications professional in [[Los Angeles]].&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Theatre and live performances ===&lt;br /&gt;
==== Beverly Hills opener  ====&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;&lt;br /&gt;
==== American Idol ====&lt;br /&gt;
In 2012, Youmans performed &amp;quot;[[Some Kind of Wonderful (The Drifters song)|Some Kind of Wonderful]]&amp;quot; at the [[American Idol]] San Diego competition and won a golden ticket after a unanimous decision from the judges ([[Steven Tyler]], [[Jennifer Lopez]] and [[Randy Jackson]]), which advanced her to the [[American Idol (season 11)#Hollywood week and Vegas rounds|''Hollywood Week'']] competition.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  Youmans was eliminated during ''Hollywood Week'' in Season 11. She attributes the elimination to nerves and an ambitious music selection, [[Heart (band)|Heart]]’s &amp;quot;[[Crazy on You]]&amp;quot;.&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable sortable collapsed collapsible&amp;quot; style=&amp;quot;width:98%; margin-right:0; text-align:center;&amp;quot;&lt;br /&gt;
|+ Professional performances and theatre roles&lt;br /&gt;
|-&lt;br /&gt;
! Year&lt;br /&gt;
! Title&lt;br /&gt;
! Role&lt;br /&gt;
! Venue&lt;br /&gt;
! Director/Producer&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[The Music Man]]''||align=&amp;quot;center&amp;quot;|Amarylis||Welk Resort Theatre||Lewis Wilkenfeld&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[Sound of Music]]''||align=&amp;quot;center&amp;quot;|Marta||Welk Resort Theatre||Joshua Carr&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Nellie||Welk Resort Theatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie (musical)|Annie]]''||align=&amp;quot;center&amp;quot;|Orphan Sadie||La Mirada Theatre for the Performing Arts||McCoy Rigby Ent. Glenn Casale&lt;br /&gt;
|-&lt;br /&gt;
|2004||''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Jessie||Saddleback Civic Light Opera||Sheryl Donchey&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[To Kill a Mockingbird]]''||align=&amp;quot;center&amp;quot;|Scout||West Coast Ensemble|| {{sic|hide=y|C. Jaffe/R. Israel}}&lt;br /&gt;
|-&lt;br /&gt;
|2005||UNICEF Snowflake Ball||align=&amp;quot;center&amp;quot;|Opening Soloist||[[Beverly Wilshire Hotel|Regent Beverly Wilshire]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2005|| ''[[Tight Quarters]]''||align=&amp;quot;center&amp;quot;|Lauren||Whitefire Theatre||Jules Aaron&lt;br /&gt;
|-&lt;br /&gt;
|2005||Kodak Christmas||align=&amp;quot;center&amp;quot;|Featured Soloist||[[Dolby Theatre|Kodak Theatre]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2006||''[[Teen Witch the Musical]]''||align=&amp;quot;center&amp;quot;|Shana the Rock Star|| [[Workshop production|workshop]] ||Alana Lambros&lt;br /&gt;
|-&lt;br /&gt;
|2008||[[New Music Weekly]] Awards||align=&amp;quot;center&amp;quot;|Featured Soloist||Avalon Theatre||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2009||''[[42nd Street (musical)|42nd Street]]'' ||align=&amp;quot;center&amp;quot;|Ensemble|| Moonlight Amphitheatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2010|| ''Once Upon A Wedding''||align=&amp;quot;center&amp;quot;|Daisy||Bahia Resort-Dinner Theatre||Laughing Tree Prod.&lt;br /&gt;
|-&lt;br /&gt;
|2010-12|| ''Journey To The Lost Temple''||align=&amp;quot;center&amp;quot;|Pippin||[[Legoland]]-California||Shawn Griener&lt;br /&gt;
|-&lt;br /&gt;
|2012||''[[American Idol]]'' Season 11||align=&amp;quot;center&amp;quot;|Contestant|| [[USS Midway Museum]]|| [[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2012||''American Idol'' Season 11||align=&amp;quot;center&amp;quot;|Hollywood Week||[[Pasadena Civic Auditorium]]||[[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2019||Jason Robert Brown In Concert||align=&amp;quot;center&amp;quot;|Lead singer||Cabaret at the Merc||Gerald Sternbach &lt;br /&gt;
|-&lt;br /&gt;
|2019||Evita In Concert||align=&amp;quot;center&amp;quot;|Ensemble||PVPA||Richard Israel &lt;br /&gt;
|-&lt;br /&gt;
|2020||HAIR||align=&amp;quot;center&amp;quot;|Suzannah 1000-Year-Old Monk||LGBT Center LA||Kate Sullivan Jared Stein&lt;br /&gt;
|-&lt;br /&gt;
|2020||New Year's Eve, National Anthem Singer||align=&amp;quot;center&amp;quot;|Soloist||Staples Center||LA Kings &amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;/&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Recorded and broadcast ===&lt;br /&gt;
&amp;lt;s&amp;gt;In addition to performing in nationally televised commercials, Youmans has been involved in several cutting-edge media projects.&amp;lt;/s&amp;gt;  In 2005, Youmans played the part of Becky Thatcher in Disney's [[Tom Sawyer's Island]], a voice-over project.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  The performance was delivered via hand-held computers issued to visitors on [[Disneyland|Disneyland's]] Tom Sawyer's Island. A pilot project, titled &amp;quot;Available Light&amp;quot;, was one of the first to test Sony Blu-ray camera technology.&lt;br /&gt;
&lt;br /&gt;
==== Soundtracks ====&lt;br /&gt;
* ''[[Teen Witch the Musical]]'' (2007) original cast recording, Weir Brothers Entertainment.&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Moondance Alexander]]'' (2007) starring [[Kay Panabaker]], [[Don Johnson]] and [[Lori Loughlin]], [[20th Century Fox|20th Century Fox Home Entertainment]]&lt;br /&gt;
* ''[[Flicka 2]]'' (2010) starring [[Patrick Warburton]], [[Tammin Sursok]] and [[Clint Black]], [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011) starring [[Travis Turner]] and [[Donnelly Rhodes]],  [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''Love by Design'' (2014) starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]], Gold Line Prod. Int.&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Newport Beach FF&amp;quot;&amp;gt;{{cite web|title=Newport Beach Film Festival|url=https://www.imdb.com/event/ev0000491/2014?ref_=ttawd_ev_1|website=[[IMDb]]|accessdate=1 February 2015|date=2 February 2014|quote=First-time Filmmaker: Winner}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*''High Strung'' (2016) starring [[Keenan Kampa]], Nicholas Galitzine, [[Jane Seymour (actress)|Jane Seymour]], Riviera Films.&amp;lt;ref name=&amp;quot;High Strung&amp;quot;&amp;gt;{{cite web|title=''High Strung''|url=http://www.soundtrack.net/album/high-strung/|website=Soundtrack.net|accessdate=30 March 2016|date=8 April 2016}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Singles ====&lt;br /&gt;
&amp;lt;!--* &amp;quot;Never Gonna Be The Same Again&amp;quot; (2007)&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt;--&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World&amp;quot; (2011)&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World - The Remixes&amp;quot; (2011)&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;In My Arms&amp;quot; (2012)&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;My Kind of Trouble LIVE at the Recordium&amp;quot; (2019)&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Is It Just Me LIVE at the Recordium&amp;quot; (2019)&lt;br /&gt;
* &amp;quot;Shine&amp;quot; (2019)&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;You Made Me Hate Love Songs LIVE at YouTube Space&amp;quot; (2020)&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;A Little Closer To Happy&amp;quot; (2021)&lt;br /&gt;
* &amp;quot;Worth It&amp;quot; (2021)&lt;br /&gt;
&lt;br /&gt;
=== Journalism ===&lt;br /&gt;
Youmans writes about entertainment topics, specifically dance, music, theatre and film. Her Southern California beat includes covering venues, such as the [[Orange County Fair (California)|Orange County Fair]], the Newport Beach Jazz Festival, the [[Playboy Jazz Festival]], Sunset Jazz at Newport, the [[Hollywood Bowl]] and [[Segerstrom Center for the Arts]]. Her freelance position with [[Freedom Communications]] has afforded interviews with: [[George Lopez]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Drew Carey]] and [[Brooke Shields]],&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt;  Grammy Award-winning musicians [[David Sanborn]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Jeff Hamilton (drummer)|Jeff Hamilton]]&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;/&amp;gt; for the ''[[Orange County Register]]'', and her interview with Grammy nominee [[Brian McKnight]] was additionally published in the ''Los Angeles Register''.&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;/&amp;gt; Earlier interviews include, [[Chita Rivera]] for the ''[[Los Angeles Times]]''&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and interviews with [[Ann Wilson]]&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt; and  [[Martina McBride]]&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt; for the [[Los Angeles Times suburban sections|Los Angeles Times Media Group's]] ''Daily Pilot''.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;!--- See http://en.wikipedia.org/wiki/Wikipedia:Footnotes on how to create references using &amp;lt;ref&amp;gt;&amp;lt;/ref&amp;gt; tags which will then appear here automatically --&amp;gt;&lt;br /&gt;
{{Reflist|2| refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student gets golden ticket on 'American Idol'|url=http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|publisher=Daily 49er|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821011818/http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|archivedate=21 August 2014|date=24 January 2012}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;&amp;gt;{{cite web|author1=Giulia Nahmany|title=Giulia Nahmany Love by Design Premiere at Newport Beach Film Festival|url=https://www.youtube.com/watch?v=et6kw-AH0ZA|publisher=Giulia Nahmany YouTube Channel|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821015154/https://www.youtube.com/watch?v=et6kw-AH0ZA|archivedate=21 August 2014|date=20 May 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=TWTM&amp;gt;{{cite web|title=Teen Witch The Musical|url=http://weirbrothersentertainment.com/releases/teen-witch|publisher=Weir Brothers Entertainment|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822014020/http://weirbrothersentertainment.com/releases/teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;&amp;gt;{{cite web|title=Heather Youmans: Credits|url=http://www.allmusic.com/artist/heather-youmans-mn0000643210/credits|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=DelMarTV&amp;gt;{{cite web|title=Del Mar TV Idol Contest 2004|url=http://www.delmartv.com/idol/idol04.html|publisher=Del Mar TV Foundation|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822011402/http://www.delmartv.com/idol/idol04.html|archivedate=22 August 2014|date=10 October 2004|quote=Heather Youmans (1st place)}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;&amp;gt;{{cite web|title=Moondance Alexander Soundtrack|url=http://www.allmusic.com/album/moondance-alexander-mw0000493713|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;&amp;gt;{{cite web|title=2010 MACY Award Winners|url=http://macyawards.com/news/67-news/132-2010-macy-award-winners|publisher=MACY Awards|accessdate=22 August 2014|date=22 May 2010|url-status=dead|archiveurl=https://web.archive.org/web/20140903125715/http://macyawards.com/news/67-news/132-2010-macy-award-winners|archivedate=3 September 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;&amp;gt;{{cite web|title=2009 MACY Award Winners|url=http://macyawards.com/news/67-news/122-2009-macy-award-winners|accessdate=22 August 2014|url-status=dead|archiveurl=https://web.archive.org/web/20140822022545/http://macyawards.com/news/67-news/122-2009-macy-award-winners|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;&amp;gt;{{cite news|last1=Krugen|first1=Pam|title=Strong leads, chemistry make Welk's 'Get Your Gun' a winner|url=http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|newspaper=The San Diego Union-Tribune|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822042246/http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|archivedate=22 August 2014|date=3 September 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=Annie Get Your Gun|url=http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822044216/http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|archivedate=22 August 2014|year=2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=The Sound of Music|url=http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822045133/http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;&amp;gt;{{cite web|last1=Wood|first1=Jennifer M.|title=18 Fun Facts About 'Teen Witch'|url=http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|publisher=mental_floss|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822193830/http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;&amp;gt;{{cite web|title=Girl to Change Your World: Releases|url=http://www.allmusic.com/album/girl-to-change-your-world-mw0002363250/releases|website=[[AllMusic]]|accessdate=23 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - Girl To Change Your World|url=https://www.youtube.com/watch?v=lYU6FLZm9nQ|publisher=Caption Records YouTube Channel|accessdate=23 August 2014|date=7 February 2010}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student loses shot at 'Idol' fame|url=http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|publisher=Daily 49er|accessdate=23 August 2014|archiveurl=https://web.archive.org/web/20140823012031/http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|archivedate=23 August 2014|date=12 February 2012|quote=Still, she said she’s not ashamed of the footage. “Yeah, it sucks,” she said. “Everybody has a bad day. Yeah, it’s unfortunate that they showed me having a bad day, but what can you do?”}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Newport Jazz Festival goes down smooth|url=http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|newspaper=[[Orange County Register]]|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826092910/http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|archivedate=26 August 2014|date=29 May 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;&amp;gt;{{cite web|last1=Schnaidt|first1=Joe|title=Lighting The Way To Hope On Rodeo Drive|url=http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|publisher=Canyon News|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826100957/http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|archivedate=26 August 2014|date=4 December 2005|quote=BEVERLY HILLS — Wednesday, November 30 illuminated Rodeo Drive at Wilshire Boulevard for the annual holiday lighting ceremony with celebrities, sponsors and a ray of hope for children facing poverty, health risks and poor education.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 9 August 2011 | title = Marley &amp;amp; Me The Puppy Years music from and inspired by the motion picture | medium = MP3 &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B005JBC14S&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 4 May 2010 | title = Flicka 2 Original Motion Picture Soundtrack | medium = MP3/CD &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B003JE2EIU&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;JRAY Nom&amp;quot;&amp;gt;{{cite web|title=2009 JRAY Awards|url=http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|publisher=Fulerton Civic Light Opera|accessdate=28 August 2014|archiveurl=https://web.archive.org/web/20140828012354/http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|archivedate=28 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;&amp;gt;{{cite news|last1=Malik|first1=Abhay|title=Alumnus Jon MacLennan's iBook 'Melodic Expressions' advances guitar instruction |url=http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|newspaper=[[Daily Bruin]]|accessdate=8 August 2014|archiveurl=https://web.archive.org/web/20140808121825/http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|archivedate=8 August 2014|date=8 May 2012|quote=Heather Youmans, an “American Idol” contestant and freelance journalist, helped edit the iBook and has expressed excitement over the finished product as well.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;&amp;gt;{{cite web|last1=MacLennan|first1=Jon|title=In My Arms Jon MacLennan (feat. Heather Youmans)|url=https://www.youtube.com/watch?v=G8QJ5aToHxw|publisher=Jon MacLennan YouTube Channel|accessdate=28 August 2014|date=16 July 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - &amp;quot;Never Gonna Be the Same Again&amp;quot; Studio City Sound LIVE|url=https://www.youtube.com/watch?v=rYhEtU1EgUM|publisher=[[Studio City Sound]]|accessdate=28 August 2014|date=3 October 2011}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;iBook Press Release&amp;quot;&amp;gt;{{cite press release|title=Melodic Expressions: The Art of the Line|url=http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|website=www.heatheryoumansmusic.com/|publisher=Jon MacLennan|accessdate=28 August 2014|date=3 May 2013|archiveurl=https://web.archive.org/web/20140828221739/http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|archivedate=28 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Change in tempo for Playboy Jazz Festival&lt;br /&gt;
|url=http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=21 August 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829013440/http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Brooke Shields takes the helm of 'Chicago'&lt;br /&gt;
|url=http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=17 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829014021/http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Sunset Jazz series kicks off in Newport&lt;br /&gt;
|url=http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|accessdate=29 August 2014|newspaper=[[The Orange County Register]]|date=9 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829015132/http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;&amp;gt;{{cite web|title=Weir Brothers Entertainment: Albums|url=http://www.last.fm/label/Weir+Brothers+Entertainment/albums|website=last.fm|publisher=Weir Brothers Entertainment|accessdate=29 August 2014|archiveurl=https://web.archive.org/web/20140829023539/http://www.last.fm/label/Weir+Brothers+Entertainment/albums|archivedate=29 August 2014|year=2011|quote=Girl to Change Your World singles}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Music for most every taste|url=http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|accessdate=29 August 2014|newspaper=Daily Pilot|archiveurl=https://web.archive.org/web/20140829225029/http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=O.C. Fair gets some Heart|url=http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|accessdate=29 August 2014|newspaper=Daily Pilot|date=2 August 2012|archiveurl=https://web.archive.org/web/20140829224632/http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Youmans: Chita Rivera to perform hits from a storied career|url=http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|accessdate=29 August 2014|newspaper=[[The Los Angeles Times]]|date=10 November 2011|archiveurl=https://web.archive.org/web/20140829220754/http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival|url=http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|accessdate=29 August 2014|newspaper=[[Orange County Register]]|date=28 May 2014|archiveurl=https://web.archive.org/web/20140829215845/http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival&lt;br /&gt;
|publisher=Los Angeles Register|date=29 May 2014&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;&amp;gt;{{cite news|title='High Strung' Soundtrack Announced|url=http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|accessdate=3 May 2016|publisher=FILM MUSIC REPORTER|date=9 March 2016|archiveurl=https://web.archive.org/web/20160503051828/http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|archivedate=3 May 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;&amp;gt;{{cite web|author1=Kristyn Burtt|title=Heather Youmans at the Red Carpet Premiere for &amp;quot;High Strung&amp;quot; #HighStrungMovie|url=https://www.youtube.com/watch?v=YOlN1Zt4_I8|website=YouTube.com|publisher=Mingle Media TV|accessdate=3 May 2016|date=30 March 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=Meet This Week's She Rocks Spotlight Series Artists, Including Grammy-Nominated Headliner Mindi Abair | website=Parade | date=2020-04-22 | url=https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-url=https://web.archive.org/web/20200427002753/https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-date=2020-04-27 | url-status=dead | access-date=2020-04-27}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;&amp;gt;{{cite web | title=Daily Discovery: Heather Youmans, &amp;quot;Shine&amp;quot; « American Songwriter | website=American Songwriter | date=2019-11-13 | url=https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200316151706/https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-date=2020-03-16 | url-status=live | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;&amp;gt;{{cite web | last=Buttonow | first=Leslie | title=Front and Center: Heather Youmans, PR &amp;amp; Communications Manager, Fender Musical Instruments Corporation – the WiMN - The Women's International Music Network | website=thewimn.com | date=2019-05-01 | url=https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-url=https://web.archive.org/web/20200426083920/https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-date=2020-04-26 | url-status=unfit | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;&amp;gt;{{cite web | title=Premiere: Singer-Songwriter Heather Youmans Reveals Latest Single &amp;quot;Shine&amp;quot; + Music Video | website=Elicit Magazine | date=2019-10-18 | url=http://www.elicitmagazine.com/heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200428035459/http://www.elicitmagazine.com/heather-youmans-shine/ | archive-date=2020-04-28 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;&amp;gt;{{cite web |url= https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble |title= Heather Youmans Gets Honest And Real In &amp;quot;My Kind Of Trouble&amp;quot; |date= 2019-08-13 |website= BuzzMusic |access-date= 2020-04-27 |archive-date= 2020-04-28 |archive-url= https://web.archive.org/web/20200428034603/https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;&amp;gt;{{cite web | title=Emerging Headliner: Heather Youmans | website=Headliner Magazine | date=2020-02-25 | url=https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-url=https://web.archive.org/web/20200225061919/https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-date=2020-02-25 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;&amp;gt;{{cite web | last=Brunner | first=Jeryl | title=Why This Successful Singer-Songwriter Won't Give Up Her Day Job | website=Forbes | date=2020-09-30 | url=https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/ | access-date=2020-10-01 |archive-url=https://web.archive.org/web/20201001011624if_/https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/?fbclid=IwAR3q2uGBNQP6MO-2pr57Mopo6AM0b_lktTAEhvQKHD6XhTNH5jSQoOQpiT4#5d2b64a67b7e|archive-date=2020-10-01}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=You're Gonna Feel the Joy of Heather Youmans' Video for 'Shine' | website=Parade: Entertainment, Recipes, Health, Life, Holidays | date=2020-10-06 | url=https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-url=https://web.archive.org/web/20201007032747/https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-date=2020-10-07 | url-status=dead | access-date=2020-10-07}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;&amp;gt;{{cite web | title=Heather Youmans Releases 'Shine' As Love Letter To Younger Self | website=Headliner Magazine | url=https://headlinermagazine.net/blog/heather-youmans-releases-shine-as-love-letter-to-younger-self.html | access-date=2020-10-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;&amp;gt;{{cite AV media  | people = Heather Youmans  | date = 2020-10-28  | title = The Tap Dancer Performs &amp;quot;Youngblood&amp;quot; By 5 Seconds Of Summer - Season 1 Ep. 4 - I CAN SEE YOUR VOICE  | language = en  | url = https://www.youtube.com/watch?v=Z5rghUxRero  | access-date = 2020-10-31  | publisher = FOX }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot;&amp;gt;{{cite web | title=Column: Singer from Vista stuns panel in new Fox reality series | website=San Diego Union-Tribune | date=2020-11-14 | url=https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-url=https://web.archive.org/web/20201118211051/https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-date=2020-11-18 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot;&amp;gt;{{cite web | last=Upadhyay | first=Nayna | title=EXCLUSIVE - Heather Youmans says 'I Can See Your Voice' is all about finding 'singers that America needs to know' | website=MEAWW | date=2020-11-16 | url=https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-url=https://web.archive.org/web/20201116192203/https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-date=2020-11-16 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.heatheryoumans.com Official website]&lt;br /&gt;
* {{YouTube|user=HeatherYoumans|Heather Youmans}}&lt;br /&gt;
* {{Facebook|HeatherYoumansOfficial|Heather Youmans}}&lt;br /&gt;
&amp;lt;!--* {{itunes|us/artist/heather-youmans/id219552589|Heather Youmans}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Youmans, Heather}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Categories &lt;br /&gt;
[[Category:Articles created via the Article Wizard]]---&amp;gt;&lt;br /&gt;
[[Category:1992 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:American stage actresses]]&lt;br /&gt;
[[Category:American women singer-songwriters]]&lt;br /&gt;
[[Category:American musical theatre actresses]]&lt;br /&gt;
[[Category:21st-century American actresses]]&lt;br /&gt;
[[Category:21st-century American singers]]&lt;br /&gt;
[[Category:Musicians from San Diego]]&lt;br /&gt;
[[Category:Musicians from Vista, California]]&lt;br /&gt;
[[Category:American music journalists]]&lt;br /&gt;
[[Category:American women journalists]]&lt;br /&gt;
[[Category:Journalists from California]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--[[Category:American film actresses]]&lt;br /&gt;
[[Category:American television actresses]]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Women writers about music]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Singer-songwriters from California]]&lt;br /&gt;
{{authority control}}&lt;br /&gt;
[[Category:21st-century American women singers]]&lt;br /&gt;
[[Category:21st-century American journalists]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6280</id>
		<title>Draft: Heather Youmans</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6280"/>
		<updated>2024-02-21T04:49:07Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: /* Theatre and live performances */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{short description|American singer-songwriter}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox musical artist&lt;br /&gt;
| name             = Heather Youmans&lt;br /&gt;
| image            = File:Heather_Youmans.jpg&lt;br /&gt;
| image_size       =&lt;br /&gt;
| landscape        = &amp;lt;!-- yes, if wide image, otherwise leave blank --&amp;gt;&lt;br /&gt;
| alt              = Heather Youmans sings at 2011 Relay For Life in San Diego, California&lt;br /&gt;
| caption          =&lt;br /&gt;
| birth_name       = Heather Anne Youmans&lt;br /&gt;
| native_name      =&lt;br /&gt;
| native_name_lang =&lt;br /&gt;
| alias            =&lt;br /&gt;
| birth_date       = {{birth date and age|1992|05|16}}&lt;br /&gt;
| birth_place      = [[Vista, California]], U.S.&lt;br /&gt;
| origin           =&lt;br /&gt;
| death_date       = &amp;lt;!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) --&amp;gt;&lt;br /&gt;
| death_place      =&lt;br /&gt;
| genre            = Rock, pop, country, soul&lt;br /&gt;
| occupation       = Singer-songwriter, actor, journalist&lt;br /&gt;
| instrument       = vocals, bass&lt;br /&gt;
| years_active     = 2002–present&lt;br /&gt;
| label            = {{plainlist| &lt;br /&gt;
* Caption Records&lt;br /&gt;
* Weir Brothers Entertainment&lt;br /&gt;
* Suspicious Love Productions}}&lt;br /&gt;
| associated_acts  =&lt;br /&gt;
| website          = {{URL|www.heatheryoumans.com}}&lt;br /&gt;
| module =&lt;br /&gt;
&lt;br /&gt;
  {{Infobox person&lt;br /&gt;
    | education	= {{highlight|[[Master of Business Administration| MBA]]}}&lt;br /&gt;
    | alma_mater = {{highlight|[[California State University, Long Beach]] (2013)}}&lt;br /&gt;
  }}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color: moccasin&amp;quot;&amp;gt;&lt;br /&gt;
'''Heather Youmans''' is an American singer-songwriter, actress, tap dancer and journalist, her work has been featured in ''American Songwriter'' magazine,&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt; [[Forbes|''Forbes Women'']] and ''Parade'' magazine profiled her career and music in 2020.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans tap dancing on [[I Can See Your Voice (American TV series)|''I Can See Your Voice'']] episode 4 (FOX),&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; convinced the judges that she is a professional dancer,&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
a video depicting her delivery of the national anthem and dealing with acoustic delay effect of a large stadium (Oakland Coliseum) went viral on social media in 2021.&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Early life ==&lt;br /&gt;
Youmans began landing theatre roles at age ten, such as Amarylis in ''[[The Music Man]]'',  Marta in ''[[The Sound of Music]]'' in 2003,&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;/&amp;gt; as well as Nellie in ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]'' in 2004 at the [[Lawrence Welk|Welk]] Resort Theatre.&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;/&amp;gt;  In 2004, she won first place in the Del Mar TV Idol Contest, Junior Division, at age twelve.&amp;lt;ref name=DelMarTV/&amp;gt; On November 30, 2005, Youmans performed an opening solo at the [[UNICEF]] Snowflake Ball at the [[Beverly Wilshire Hotel|Regent Beverly Wilshire]]. Headlining acts for the evening included, [[Sting (musician)|Sting]], [[Chris Botti]] and [[Natalie Cole]].&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans attended [[Rancho Buena Vista High School]] and was active in the Associated Student Body, dance and drama programs. In 2009, she won the MACY Award for Highest Achievement and Best Supporting Vocal-Female for her role as Rusty in [[Footloose (musical)|''Footloose'']],&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;/&amp;gt; and Best Vocal Female in 2010 for her role as Jo in ''[[Little Women]]''.&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Education ==&lt;br /&gt;
Youmans holds a B.A. in Journalism and Mass Communication with a music minor (classical and jazz vocal at [[Bob Cole Conservatory of Music]]). She graduated [[magna cum laude]] from [[California State University, Long Beach]] (CSULB) in 2013, and graduated with an MBA at CSULB with an emphasis in marketing. During her undergraduate studies, Youmans created and hosted ''Heartbreakers: The Women of Rock'', a radio format program on [[Kbeach#22 West Radio|KBeach.org]] (2011-2013).  {{Highlight|While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Career ==&lt;br /&gt;
In 2005, Youmans earned a voice-over part, playing Becky Thatcher in Disney's ''[[Tom Sawyer's Island]]'' and the following year, won the part of Shana the Rock Star in a pre-production musical ''[[Teen Witch the Musical]]'' (2007).&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt; These accomplishments led to featured artist performances on the soundtrack for [[Moondance Alexander]] (2007).&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;/&amp;gt; Youmans' single, &amp;quot;Girl to Change Your World&amp;quot;, was a (2011) hit on [[Radio Disney]],&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; and it is one of the two Youmans songs included in the film ''Love by Design'' (2014), starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]].&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;The [[Teen Witch the Musical]] project was successful in its primary goal of reproducing the missing soundtrack for the Halloween classic film [[Teen Witch]] (1989).&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt; The musical stage-play never made it out of [[Workshop production|workshop]] and has yet to achieve the secondary goal of becoming a viable [[Broadway theatre|Broadway]] offering.&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;/&amp;gt; This association with Weir Brothers Productions led to additional soundtrack features in the films ''[[Moondance Alexander]]'' (2007), ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
While concurrently studying journalism and music, Youmans auditioned and stacked up credits in Southern California regional theater and wrote for national and regional newspapers on entertainment topics. &amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; She has produced and hosted an entertainment format radio show,&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; interviewed entertainment industry legends,&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt; and ran a marketing campaign for [[Jon MacLennan|Jon MacLennan's]] iBook, ''Melodic Expressions: The Art of the Line'' (2012).&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;/&amp;gt; She works as a communications professional in [[Los Angeles]].&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Theatre and live performances ===&lt;br /&gt;
==== Beverly Hills opener  ====&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;&lt;br /&gt;
==== American Idol ====&lt;br /&gt;
In 2012, Youmans performed &amp;quot;[[Some Kind of Wonderful (The Drifters song)|Some Kind of Wonderful]]&amp;quot; at the [[American Idol]] San Diego competition and won a golden ticket after a unanimous decision from the judges ([[Steven Tyler]], [[Jennifer Lopez]] and [[Randy Jackson]]), which advanced her to the [[American Idol (season 11)#Hollywood week and Vegas rounds|''Hollywood Week'']] competition.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  Youmans was eliminated during ''Hollywood Week'' in Season 11. She attributes the elimination to nerves and an ambitious music selection, [[Heart (band)|Heart]]’s &amp;quot;[[Crazy on You]]&amp;quot;.&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable sortable collapsed collapsible&amp;quot; style=&amp;quot;width:98%; margin-right:0; text-align:center;&amp;quot;&lt;br /&gt;
|+ Professional performances and theatre roles&lt;br /&gt;
|-&lt;br /&gt;
! Year&lt;br /&gt;
! Title&lt;br /&gt;
! Role&lt;br /&gt;
! Venue&lt;br /&gt;
! Director/Producer&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[The Music Man]]''||align=&amp;quot;center&amp;quot;|Amarylis||Welk Resort Theatre||Lewis Wilkenfeld&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[Sound of Music]]''||align=&amp;quot;center&amp;quot;|Marta||Welk Resort Theatre||Joshua Carr&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Nellie||Welk Resort Theatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie (musical)|Annie]]''||align=&amp;quot;center&amp;quot;|Orphan Sadie||La Mirada Theatre for the Performing Arts||McCoy Rigby Ent. Glenn Casale&lt;br /&gt;
|-&lt;br /&gt;
|2004||''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Jessie||Saddleback Civic Light Opera||Sheryl Donchey&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[To Kill a Mockingbird]]''||align=&amp;quot;center&amp;quot;|Scout||West Coast Ensemble|| {{sic|hide=y|C. Jaffe/R. Israel}}&lt;br /&gt;
|-&lt;br /&gt;
|2005||UNICEF Snowflake Ball||align=&amp;quot;center&amp;quot;|Opening Soloist||[[Beverly Wilshire Hotel|Regent Beverly Wilshire]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2005|| ''[[Tight Quarters]]''||align=&amp;quot;center&amp;quot;|Lauren||Whitefire Theatre||Jules Aaron&lt;br /&gt;
|-&lt;br /&gt;
|2005||Kodak Christmas||align=&amp;quot;center&amp;quot;|Featured Soloist||[[Dolby Theatre|Kodak Theatre]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2006||''[[Teen Witch the Musical]]''||align=&amp;quot;center&amp;quot;|Shana the Rock Star|| [[Workshop production|workshop]] ||Alana Lambros&lt;br /&gt;
|-&lt;br /&gt;
|2008||[[New Music Weekly]] Awards||align=&amp;quot;center&amp;quot;|Featured Soloist||Avalon Theatre||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2009||''[[42nd Street (musical)|42nd Street]]'' ||align=&amp;quot;center&amp;quot;|Ensemble|| Moonlight Amphitheatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2010|| ''Once Upon A Wedding''||align=&amp;quot;center&amp;quot;|Daisy||Bahia Resort-Dinner Theatre||Laughing Tree Prod.&lt;br /&gt;
|-&lt;br /&gt;
|2010-12|| ''Journey To The Lost Temple''||align=&amp;quot;center&amp;quot;|Pippin||[[Legoland]]-California||Shawn Griener&lt;br /&gt;
|-&lt;br /&gt;
|2012||''[[American Idol]]'' Season 11||align=&amp;quot;center&amp;quot;|Contestant|| [[USS Midway Museum]]|| [[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2012||''American Idol'' Season 11||align=&amp;quot;center&amp;quot;|Hollywood Week||[[Pasadena Civic Auditorium]]||[[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2019||Jason Robert Brown In Concert||align=&amp;quot;center&amp;quot;|Lead singer||Cabaret at the Merc||Gerald Sternbach &lt;br /&gt;
|-&lt;br /&gt;
|2019||Evita In Concert||align=&amp;quot;center&amp;quot;|Ensemble||PVPA||Richard Israel &lt;br /&gt;
|-&lt;br /&gt;
|2020||HAIR||align=&amp;quot;center&amp;quot;|Suzannah 1000-Year-Old Monk||LGBT Center LA||Kate Sullivan Jared Stein&lt;br /&gt;
|-&lt;br /&gt;
|2020||New Year's Eve, National Anthem Singer||align=&amp;quot;center&amp;quot;|Soloist||Staples Center||LA Kings &amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;/&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Recorded and broadcast ===&lt;br /&gt;
&amp;lt;s&amp;gt;In addition to performing in nationally televised commercials, Youmans has been involved in several cutting-edge media projects.&amp;lt;/s&amp;gt;  In 2005, Youmans played the part of Becky Thatcher in Disney's [[Tom Sawyer's Island]], a voice-over project.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  The performance was delivered via hand-held computers issued to visitors on [[Disneyland|Disneyland's]] Tom Sawyer's Island. A pilot project, titled &amp;quot;Available Light&amp;quot;, was one of the first to test Sony Blu-ray camera technology.&lt;br /&gt;
&lt;br /&gt;
==== Soundtracks ====&lt;br /&gt;
* ''[[Teen Witch the Musical]]'' (2007) original cast recording, Weir Brothers Entertainment.&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Moondance Alexander]]'' (2007) starring [[Kay Panabaker]], [[Don Johnson]] and [[Lori Loughlin]], [[20th Century Fox|20th Century Fox Home Entertainment]]&lt;br /&gt;
* ''[[Flicka 2]]'' (2010) starring [[Patrick Warburton]], [[Tammin Sursok]] and [[Clint Black]], [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011) starring [[Travis Turner]] and [[Donnelly Rhodes]],  [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''Love by Design'' (2014) starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]], Gold Line Prod. Int.&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Newport Beach FF&amp;quot;&amp;gt;{{cite web|title=Newport Beach Film Festival|url=https://www.imdb.com/event/ev0000491/2014?ref_=ttawd_ev_1|website=[[IMDb]]|accessdate=1 February 2015|date=2 February 2014|quote=First-time Filmmaker: Winner}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*''High Strung'' (2016) starring [[Keenan Kampa]], Nicholas Galitzine, [[Jane Seymour (actress)|Jane Seymour]], Riviera Films.&amp;lt;ref name=&amp;quot;High Strung&amp;quot;&amp;gt;{{cite web|title=''High Strung''|url=http://www.soundtrack.net/album/high-strung/|website=Soundtrack.net|accessdate=30 March 2016|date=8 April 2016}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Singles ====&lt;br /&gt;
&amp;lt;!--* &amp;quot;Never Gonna Be The Same Again&amp;quot; (2007)&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt;--&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World&amp;quot; (2011)&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World - The Remixes&amp;quot; (2011)&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;In My Arms&amp;quot; (2012)&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;My Kind of Trouble LIVE at the Recordium&amp;quot; (2019)&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Is It Just Me LIVE at the Recordium&amp;quot; (2019)&lt;br /&gt;
* &amp;quot;Shine&amp;quot; (2019)&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;You Made Me Hate Love Songs LIVE at YouTube Space&amp;quot; (2020)&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;A Little Closer To Happy&amp;quot; (2021)&lt;br /&gt;
* &amp;quot;Worth It&amp;quot; (2021)&lt;br /&gt;
&lt;br /&gt;
=== Journalism ===&lt;br /&gt;
Youmans writes about entertainment topics, specifically dance, music, theatre and film. Her Southern California beat includes covering venues, such as the [[Orange County Fair (California)|Orange County Fair]], the Newport Beach Jazz Festival, the [[Playboy Jazz Festival]], Sunset Jazz at Newport, the [[Hollywood Bowl]] and [[Segerstrom Center for the Arts]]. Her freelance position with [[Freedom Communications]] has afforded interviews with: [[George Lopez]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Drew Carey]] and [[Brooke Shields]],&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt;  Grammy Award-winning musicians [[David Sanborn]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Jeff Hamilton (drummer)|Jeff Hamilton]]&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;/&amp;gt; for the ''[[Orange County Register]]'', and her interview with Grammy nominee [[Brian McKnight]] was additionally published in the ''Los Angeles Register''.&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;/&amp;gt; Earlier interviews include, [[Chita Rivera]] for the ''[[Los Angeles Times]]''&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and interviews with [[Ann Wilson]]&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt; and  [[Martina McBride]]&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt; for the [[Los Angeles Times suburban sections|Los Angeles Times Media Group's]] ''Daily Pilot''.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;!--- See http://en.wikipedia.org/wiki/Wikipedia:Footnotes on how to create references using &amp;lt;ref&amp;gt;&amp;lt;/ref&amp;gt; tags which will then appear here automatically --&amp;gt;&lt;br /&gt;
{{Reflist|2| refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student gets golden ticket on 'American Idol'|url=http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|publisher=Daily 49er|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821011818/http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|archivedate=21 August 2014|date=24 January 2012}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;&amp;gt;{{cite web|author1=Giulia Nahmany|title=Giulia Nahmany Love by Design Premiere at Newport Beach Film Festival|url=https://www.youtube.com/watch?v=et6kw-AH0ZA|publisher=Giulia Nahmany YouTube Channel|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821015154/https://www.youtube.com/watch?v=et6kw-AH0ZA|archivedate=21 August 2014|date=20 May 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=TWTM&amp;gt;{{cite web|title=Teen Witch The Musical|url=http://weirbrothersentertainment.com/releases/teen-witch|publisher=Weir Brothers Entertainment|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822014020/http://weirbrothersentertainment.com/releases/teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;&amp;gt;{{cite web|title=Heather Youmans: Credits|url=http://www.allmusic.com/artist/heather-youmans-mn0000643210/credits|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=DelMarTV&amp;gt;{{cite web|title=Del Mar TV Idol Contest 2004|url=http://www.delmartv.com/idol/idol04.html|publisher=Del Mar TV Foundation|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822011402/http://www.delmartv.com/idol/idol04.html|archivedate=22 August 2014|date=10 October 2004|quote=Heather Youmans (1st place)}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;&amp;gt;{{cite web|title=Moondance Alexander Soundtrack|url=http://www.allmusic.com/album/moondance-alexander-mw0000493713|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;&amp;gt;{{cite web|title=2010 MACY Award Winners|url=http://macyawards.com/news/67-news/132-2010-macy-award-winners|publisher=MACY Awards|accessdate=22 August 2014|date=22 May 2010|url-status=dead|archiveurl=https://web.archive.org/web/20140903125715/http://macyawards.com/news/67-news/132-2010-macy-award-winners|archivedate=3 September 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;&amp;gt;{{cite web|title=2009 MACY Award Winners|url=http://macyawards.com/news/67-news/122-2009-macy-award-winners|accessdate=22 August 2014|url-status=dead|archiveurl=https://web.archive.org/web/20140822022545/http://macyawards.com/news/67-news/122-2009-macy-award-winners|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;&amp;gt;{{cite news|last1=Krugen|first1=Pam|title=Strong leads, chemistry make Welk's 'Get Your Gun' a winner|url=http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|newspaper=The San Diego Union-Tribune|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822042246/http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|archivedate=22 August 2014|date=3 September 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=Annie Get Your Gun|url=http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822044216/http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|archivedate=22 August 2014|year=2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=The Sound of Music|url=http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822045133/http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;&amp;gt;{{cite web|last1=Wood|first1=Jennifer M.|title=18 Fun Facts About 'Teen Witch'|url=http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|publisher=mental_floss|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822193830/http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;&amp;gt;{{cite web|title=Girl to Change Your World: Releases|url=http://www.allmusic.com/album/girl-to-change-your-world-mw0002363250/releases|website=[[AllMusic]]|accessdate=23 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - Girl To Change Your World|url=https://www.youtube.com/watch?v=lYU6FLZm9nQ|publisher=Caption Records YouTube Channel|accessdate=23 August 2014|date=7 February 2010}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student loses shot at 'Idol' fame|url=http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|publisher=Daily 49er|accessdate=23 August 2014|archiveurl=https://web.archive.org/web/20140823012031/http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|archivedate=23 August 2014|date=12 February 2012|quote=Still, she said she’s not ashamed of the footage. “Yeah, it sucks,” she said. “Everybody has a bad day. Yeah, it’s unfortunate that they showed me having a bad day, but what can you do?”}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Newport Jazz Festival goes down smooth|url=http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|newspaper=[[Orange County Register]]|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826092910/http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|archivedate=26 August 2014|date=29 May 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;&amp;gt;{{cite web|last1=Schnaidt|first1=Joe|title=Lighting The Way To Hope On Rodeo Drive|url=http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|publisher=Canyon News|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826100957/http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|archivedate=26 August 2014|date=4 December 2005|quote=BEVERLY HILLS — Wednesday, November 30 illuminated Rodeo Drive at Wilshire Boulevard for the annual holiday lighting ceremony with celebrities, sponsors and a ray of hope for children facing poverty, health risks and poor education.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 9 August 2011 | title = Marley &amp;amp; Me The Puppy Years music from and inspired by the motion picture | medium = MP3 &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B005JBC14S&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 4 May 2010 | title = Flicka 2 Original Motion Picture Soundtrack | medium = MP3/CD &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B003JE2EIU&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;JRAY Nom&amp;quot;&amp;gt;{{cite web|title=2009 JRAY Awards|url=http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|publisher=Fulerton Civic Light Opera|accessdate=28 August 2014|archiveurl=https://web.archive.org/web/20140828012354/http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|archivedate=28 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;&amp;gt;{{cite news|last1=Malik|first1=Abhay|title=Alumnus Jon MacLennan's iBook 'Melodic Expressions' advances guitar instruction |url=http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|newspaper=[[Daily Bruin]]|accessdate=8 August 2014|archiveurl=https://web.archive.org/web/20140808121825/http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|archivedate=8 August 2014|date=8 May 2012|quote=Heather Youmans, an “American Idol” contestant and freelance journalist, helped edit the iBook and has expressed excitement over the finished product as well.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;&amp;gt;{{cite web|last1=MacLennan|first1=Jon|title=In My Arms Jon MacLennan (feat. Heather Youmans)|url=https://www.youtube.com/watch?v=G8QJ5aToHxw|publisher=Jon MacLennan YouTube Channel|accessdate=28 August 2014|date=16 July 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - &amp;quot;Never Gonna Be the Same Again&amp;quot; Studio City Sound LIVE|url=https://www.youtube.com/watch?v=rYhEtU1EgUM|publisher=[[Studio City Sound]]|accessdate=28 August 2014|date=3 October 2011}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;iBook Press Release&amp;quot;&amp;gt;{{cite press release|title=Melodic Expressions: The Art of the Line|url=http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|website=www.heatheryoumansmusic.com/|publisher=Jon MacLennan|accessdate=28 August 2014|date=3 May 2013|archiveurl=https://web.archive.org/web/20140828221739/http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|archivedate=28 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Change in tempo for Playboy Jazz Festival&lt;br /&gt;
|url=http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=21 August 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829013440/http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Brooke Shields takes the helm of 'Chicago'&lt;br /&gt;
|url=http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=17 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829014021/http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Sunset Jazz series kicks off in Newport&lt;br /&gt;
|url=http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|accessdate=29 August 2014|newspaper=[[The Orange County Register]]|date=9 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829015132/http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;&amp;gt;{{cite web|title=Weir Brothers Entertainment: Albums|url=http://www.last.fm/label/Weir+Brothers+Entertainment/albums|website=last.fm|publisher=Weir Brothers Entertainment|accessdate=29 August 2014|archiveurl=https://web.archive.org/web/20140829023539/http://www.last.fm/label/Weir+Brothers+Entertainment/albums|archivedate=29 August 2014|year=2011|quote=Girl to Change Your World singles}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Music for most every taste|url=http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|accessdate=29 August 2014|newspaper=Daily Pilot|archiveurl=https://web.archive.org/web/20140829225029/http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=O.C. Fair gets some Heart|url=http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|accessdate=29 August 2014|newspaper=Daily Pilot|date=2 August 2012|archiveurl=https://web.archive.org/web/20140829224632/http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Youmans: Chita Rivera to perform hits from a storied career|url=http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|accessdate=29 August 2014|newspaper=[[The Los Angeles Times]]|date=10 November 2011|archiveurl=https://web.archive.org/web/20140829220754/http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival|url=http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|accessdate=29 August 2014|newspaper=[[Orange County Register]]|date=28 May 2014|archiveurl=https://web.archive.org/web/20140829215845/http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival&lt;br /&gt;
|publisher=Los Angeles Register|date=29 May 2014&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;&amp;gt;{{cite news|title='High Strung' Soundtrack Announced|url=http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|accessdate=3 May 2016|publisher=FILM MUSIC REPORTER|date=9 March 2016|archiveurl=https://web.archive.org/web/20160503051828/http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|archivedate=3 May 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;&amp;gt;{{cite web|author1=Kristyn Burtt|title=Heather Youmans at the Red Carpet Premiere for &amp;quot;High Strung&amp;quot; #HighStrungMovie|url=https://www.youtube.com/watch?v=YOlN1Zt4_I8|website=YouTube.com|publisher=Mingle Media TV|accessdate=3 May 2016|date=30 March 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=Meet This Week's She Rocks Spotlight Series Artists, Including Grammy-Nominated Headliner Mindi Abair | website=Parade | date=2020-04-22 | url=https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-url=https://web.archive.org/web/20200427002753/https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-date=2020-04-27 | url-status=dead | access-date=2020-04-27}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;&amp;gt;{{cite web | title=Daily Discovery: Heather Youmans, &amp;quot;Shine&amp;quot; « American Songwriter | website=American Songwriter | date=2019-11-13 | url=https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200316151706/https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-date=2020-03-16 | url-status=live | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;&amp;gt;{{cite web | last=Buttonow | first=Leslie | title=Front and Center: Heather Youmans, PR &amp;amp; Communications Manager, Fender Musical Instruments Corporation – the WiMN - The Women's International Music Network | website=thewimn.com | date=2019-05-01 | url=https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-url=https://web.archive.org/web/20200426083920/https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-date=2020-04-26 | url-status=unfit | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;&amp;gt;{{cite web | title=Premiere: Singer-Songwriter Heather Youmans Reveals Latest Single &amp;quot;Shine&amp;quot; + Music Video | website=Elicit Magazine | date=2019-10-18 | url=http://www.elicitmagazine.com/heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200428035459/http://www.elicitmagazine.com/heather-youmans-shine/ | archive-date=2020-04-28 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;&amp;gt;{{cite web |url= https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble |title= Heather Youmans Gets Honest And Real In &amp;quot;My Kind Of Trouble&amp;quot; |date= 2019-08-13 |website= BuzzMusic |access-date= 2020-04-27 |archive-date= 2020-04-28 |archive-url= https://web.archive.org/web/20200428034603/https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;&amp;gt;{{cite web | title=Emerging Headliner: Heather Youmans | website=Headliner Magazine | date=2020-02-25 | url=https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-url=https://web.archive.org/web/20200225061919/https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-date=2020-02-25 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;&amp;gt;{{cite web | last=Brunner | first=Jeryl | title=Why This Successful Singer-Songwriter Won't Give Up Her Day Job | website=Forbes | date=2020-09-30 | url=https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/ | access-date=2020-10-01 |archive-url=https://web.archive.org/web/20201001011624if_/https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/?fbclid=IwAR3q2uGBNQP6MO-2pr57Mopo6AM0b_lktTAEhvQKHD6XhTNH5jSQoOQpiT4#5d2b64a67b7e|archive-date=2020-10-01}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=You're Gonna Feel the Joy of Heather Youmans' Video for 'Shine' | website=Parade: Entertainment, Recipes, Health, Life, Holidays | date=2020-10-06 | url=https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-url=https://web.archive.org/web/20201007032747/https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-date=2020-10-07 | url-status=dead | access-date=2020-10-07}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;&amp;gt;{{cite web | title=Heather Youmans Releases 'Shine' As Love Letter To Younger Self | website=Headliner Magazine | url=https://headlinermagazine.net/blog/heather-youmans-releases-shine-as-love-letter-to-younger-self.html | access-date=2020-10-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;&amp;gt;{{cite AV media  | people = Heather Youmans  | date = 2020-10-28  | title = The Tap Dancer Performs &amp;quot;Youngblood&amp;quot; By 5 Seconds Of Summer - Season 1 Ep. 4 - I CAN SEE YOUR VOICE  | language = en  | url = https://www.youtube.com/watch?v=Z5rghUxRero  | access-date = 2020-10-31  | publisher = FOX }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot;&amp;gt;{{cite web | title=Column: Singer from Vista stuns panel in new Fox reality series | website=San Diego Union-Tribune | date=2020-11-14 | url=https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-url=https://web.archive.org/web/20201118211051/https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-date=2020-11-18 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot;&amp;gt;{{cite web | last=Upadhyay | first=Nayna | title=EXCLUSIVE - Heather Youmans says 'I Can See Your Voice' is all about finding 'singers that America needs to know' | website=MEAWW | date=2020-11-16 | url=https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-url=https://web.archive.org/web/20201116192203/https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-date=2020-11-16 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.heatheryoumans.com Official website]&lt;br /&gt;
* {{YouTube|user=HeatherYoumans|Heather Youmans}}&lt;br /&gt;
* {{Facebook|HeatherYoumansOfficial|Heather Youmans}}&lt;br /&gt;
&amp;lt;!--* {{itunes|us/artist/heather-youmans/id219552589|Heather Youmans}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Youmans, Heather}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Categories &lt;br /&gt;
[[Category:Articles created via the Article Wizard]]---&amp;gt;&lt;br /&gt;
[[Category:1992 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:American stage actresses]]&lt;br /&gt;
[[Category:American women singer-songwriters]]&lt;br /&gt;
[[Category:American musical theatre actresses]]&lt;br /&gt;
[[Category:21st-century American actresses]]&lt;br /&gt;
[[Category:21st-century American singers]]&lt;br /&gt;
[[Category:Musicians from San Diego]]&lt;br /&gt;
[[Category:Musicians from Vista, California]]&lt;br /&gt;
[[Category:American music journalists]]&lt;br /&gt;
[[Category:American women journalists]]&lt;br /&gt;
[[Category:Journalists from California]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--[[Category:American film actresses]]&lt;br /&gt;
[[Category:American television actresses]]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Women writers about music]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Singer-songwriters from California]]&lt;br /&gt;
{{authority control}}&lt;br /&gt;
[[Category:21st-century American women singers]]&lt;br /&gt;
[[Category:21st-century American journalists]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6279</id>
		<title>Draft: Heather Youmans</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6279"/>
		<updated>2024-02-21T04:48:18Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: sting &amp;amp; Cole&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{short description|American singer-songwriter}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox musical artist&lt;br /&gt;
| name             = Heather Youmans&lt;br /&gt;
| image            = File:Heather_Youmans.jpg&lt;br /&gt;
| image_size       =&lt;br /&gt;
| landscape        = &amp;lt;!-- yes, if wide image, otherwise leave blank --&amp;gt;&lt;br /&gt;
| alt              = Heather Youmans sings at 2011 Relay For Life in San Diego, California&lt;br /&gt;
| caption          =&lt;br /&gt;
| birth_name       = Heather Anne Youmans&lt;br /&gt;
| native_name      =&lt;br /&gt;
| native_name_lang =&lt;br /&gt;
| alias            =&lt;br /&gt;
| birth_date       = {{birth date and age|1992|05|16}}&lt;br /&gt;
| birth_place      = [[Vista, California]], U.S.&lt;br /&gt;
| origin           =&lt;br /&gt;
| death_date       = &amp;lt;!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) --&amp;gt;&lt;br /&gt;
| death_place      =&lt;br /&gt;
| genre            = Rock, pop, country, soul&lt;br /&gt;
| occupation       = Singer-songwriter, actor, journalist&lt;br /&gt;
| instrument       = vocals, bass&lt;br /&gt;
| years_active     = 2002–present&lt;br /&gt;
| label            = {{plainlist| &lt;br /&gt;
* Caption Records&lt;br /&gt;
* Weir Brothers Entertainment&lt;br /&gt;
* Suspicious Love Productions}}&lt;br /&gt;
| associated_acts  =&lt;br /&gt;
| website          = {{URL|www.heatheryoumans.com}}&lt;br /&gt;
| module =&lt;br /&gt;
&lt;br /&gt;
  {{Infobox person&lt;br /&gt;
    | education	= {{highlight|[[Master of Business Administration| MBA]]}}&lt;br /&gt;
    | alma_mater = {{highlight|[[California State University, Long Beach]] (2013)}}&lt;br /&gt;
  }}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color: moccasin&amp;quot;&amp;gt;&lt;br /&gt;
'''Heather Youmans''' is an American singer-songwriter, actress, tap dancer and journalist, her work has been featured in ''American Songwriter'' magazine,&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt; [[Forbes|''Forbes Women'']] and ''Parade'' magazine profiled her career and music in 2020.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans tap dancing on [[I Can See Your Voice (American TV series)|''I Can See Your Voice'']] episode 4 (FOX),&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; convinced the judges that she is a professional dancer,&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
a video depicting her delivery of the national anthem and dealing with acoustic delay effect of a large stadium (Oakland Coliseum) went viral on social media in 2021.&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Early life ==&lt;br /&gt;
Youmans began landing theatre roles at age ten, such as Amarylis in ''[[The Music Man]]'',  Marta in ''[[The Sound of Music]]'' in 2003,&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;/&amp;gt; as well as Nellie in ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]'' in 2004 at the [[Lawrence Welk|Welk]] Resort Theatre.&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;/&amp;gt;  In 2004, she won first place in the Del Mar TV Idol Contest, Junior Division, at age twelve.&amp;lt;ref name=DelMarTV/&amp;gt; On November 30, 2005, Youmans performed an opening solo at the [[UNICEF]] Snowflake Ball at the [[Beverly Wilshire Hotel|Regent Beverly Wilshire]]. Headlining acts for the evening included, [[Sting (musician)|Sting]], [[Chris Botti]] and [[Natalie Cole]].&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans attended [[Rancho Buena Vista High School]] and was active in the Associated Student Body, dance and drama programs. In 2009, she won the MACY Award for Highest Achievement and Best Supporting Vocal-Female for her role as Rusty in [[Footloose (musical)|''Footloose'']],&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;/&amp;gt; and Best Vocal Female in 2010 for her role as Jo in ''[[Little Women]]''.&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Education ==&lt;br /&gt;
Youmans holds a B.A. in Journalism and Mass Communication with a music minor (classical and jazz vocal at [[Bob Cole Conservatory of Music]]). She graduated [[magna cum laude]] from [[California State University, Long Beach]] (CSULB) in 2013, and graduated with an MBA at CSULB with an emphasis in marketing. During her undergraduate studies, Youmans created and hosted ''Heartbreakers: The Women of Rock'', a radio format program on [[Kbeach#22 West Radio|KBeach.org]] (2011-2013).  {{Highlight|While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Career ==&lt;br /&gt;
In 2005, Youmans earned a voice-over part, playing Becky Thatcher in Disney's ''[[Tom Sawyer's Island]]'' and the following year, won the part of Shana the Rock Star in a pre-production musical ''[[Teen Witch the Musical]]'' (2007).&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt; These accomplishments led to featured artist performances on the soundtrack for [[Moondance Alexander]] (2007).&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;/&amp;gt; Youmans' single, &amp;quot;Girl to Change Your World&amp;quot;, was a (2011) hit on [[Radio Disney]],&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; and it is one of the two Youmans songs included in the film ''Love by Design'' (2014), starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]].&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;The [[Teen Witch the Musical]] project was successful in its primary goal of reproducing the missing soundtrack for the Halloween classic film [[Teen Witch]] (1989).&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt; The musical stage-play never made it out of [[Workshop production|workshop]] and has yet to achieve the secondary goal of becoming a viable [[Broadway theatre|Broadway]] offering.&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;/&amp;gt; This association with Weir Brothers Productions led to additional soundtrack features in the films ''[[Moondance Alexander]]'' (2007), ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
While concurrently studying journalism and music, Youmans auditioned and stacked up credits in Southern California regional theater and wrote for national and regional newspapers on entertainment topics. &amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; She has produced and hosted an entertainment format radio show,&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; interviewed entertainment industry legends,&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt; and ran a marketing campaign for [[Jon MacLennan|Jon MacLennan's]] iBook, ''Melodic Expressions: The Art of the Line'' (2012).&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;/&amp;gt; She works as a communications professional in [[Los Angeles]].&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Theatre and live performances ===&lt;br /&gt;
====   ====&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;&lt;br /&gt;
==== American Idol ====&lt;br /&gt;
In 2012, Youmans performed &amp;quot;[[Some Kind of Wonderful (The Drifters song)|Some Kind of Wonderful]]&amp;quot; at the [[American Idol]] San Diego competition and won a golden ticket after a unanimous decision from the judges ([[Steven Tyler]], [[Jennifer Lopez]] and [[Randy Jackson]]), which advanced her to the [[American Idol (season 11)#Hollywood week and Vegas rounds|''Hollywood Week'']] competition.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  Youmans was eliminated during ''Hollywood Week'' in Season 11. She attributes the elimination to nerves and an ambitious music selection, [[Heart (band)|Heart]]’s &amp;quot;[[Crazy on You]]&amp;quot;.&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable sortable collapsed collapsible&amp;quot; style=&amp;quot;width:98%; margin-right:0; text-align:center;&amp;quot;&lt;br /&gt;
|+ Professional performances and theatre roles&lt;br /&gt;
|-&lt;br /&gt;
! Year&lt;br /&gt;
! Title&lt;br /&gt;
! Role&lt;br /&gt;
! Venue&lt;br /&gt;
! Director/Producer&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[The Music Man]]''||align=&amp;quot;center&amp;quot;|Amarylis||Welk Resort Theatre||Lewis Wilkenfeld&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[Sound of Music]]''||align=&amp;quot;center&amp;quot;|Marta||Welk Resort Theatre||Joshua Carr&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Nellie||Welk Resort Theatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie (musical)|Annie]]''||align=&amp;quot;center&amp;quot;|Orphan Sadie||La Mirada Theatre for the Performing Arts||McCoy Rigby Ent. Glenn Casale&lt;br /&gt;
|-&lt;br /&gt;
|2004||''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Jessie||Saddleback Civic Light Opera||Sheryl Donchey&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[To Kill a Mockingbird]]''||align=&amp;quot;center&amp;quot;|Scout||West Coast Ensemble|| {{sic|hide=y|C. Jaffe/R. Israel}}&lt;br /&gt;
|-&lt;br /&gt;
|2005||UNICEF Snowflake Ball||align=&amp;quot;center&amp;quot;|Opening Soloist||[[Beverly Wilshire Hotel|Regent Beverly Wilshire]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2005|| ''[[Tight Quarters]]''||align=&amp;quot;center&amp;quot;|Lauren||Whitefire Theatre||Jules Aaron&lt;br /&gt;
|-&lt;br /&gt;
|2005||Kodak Christmas||align=&amp;quot;center&amp;quot;|Featured Soloist||[[Dolby Theatre|Kodak Theatre]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2006||''[[Teen Witch the Musical]]''||align=&amp;quot;center&amp;quot;|Shana the Rock Star|| [[Workshop production|workshop]] ||Alana Lambros&lt;br /&gt;
|-&lt;br /&gt;
|2008||[[New Music Weekly]] Awards||align=&amp;quot;center&amp;quot;|Featured Soloist||Avalon Theatre||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2009||''[[42nd Street (musical)|42nd Street]]'' ||align=&amp;quot;center&amp;quot;|Ensemble|| Moonlight Amphitheatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2010|| ''Once Upon A Wedding''||align=&amp;quot;center&amp;quot;|Daisy||Bahia Resort-Dinner Theatre||Laughing Tree Prod.&lt;br /&gt;
|-&lt;br /&gt;
|2010-12|| ''Journey To The Lost Temple''||align=&amp;quot;center&amp;quot;|Pippin||[[Legoland]]-California||Shawn Griener&lt;br /&gt;
|-&lt;br /&gt;
|2012||''[[American Idol]]'' Season 11||align=&amp;quot;center&amp;quot;|Contestant|| [[USS Midway Museum]]|| [[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2012||''American Idol'' Season 11||align=&amp;quot;center&amp;quot;|Hollywood Week||[[Pasadena Civic Auditorium]]||[[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2019||Jason Robert Brown In Concert||align=&amp;quot;center&amp;quot;|Lead singer||Cabaret at the Merc||Gerald Sternbach &lt;br /&gt;
|-&lt;br /&gt;
|2019||Evita In Concert||align=&amp;quot;center&amp;quot;|Ensemble||PVPA||Richard Israel &lt;br /&gt;
|-&lt;br /&gt;
|2020||HAIR||align=&amp;quot;center&amp;quot;|Suzannah 1000-Year-Old Monk||LGBT Center LA||Kate Sullivan Jared Stein&lt;br /&gt;
|-&lt;br /&gt;
|2020||New Year's Eve, National Anthem Singer||align=&amp;quot;center&amp;quot;|Soloist||Staples Center||LA Kings &amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;/&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Recorded and broadcast ===&lt;br /&gt;
&amp;lt;s&amp;gt;In addition to performing in nationally televised commercials, Youmans has been involved in several cutting-edge media projects.&amp;lt;/s&amp;gt;  In 2005, Youmans played the part of Becky Thatcher in Disney's [[Tom Sawyer's Island]], a voice-over project.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  The performance was delivered via hand-held computers issued to visitors on [[Disneyland|Disneyland's]] Tom Sawyer's Island. A pilot project, titled &amp;quot;Available Light&amp;quot;, was one of the first to test Sony Blu-ray camera technology.&lt;br /&gt;
&lt;br /&gt;
==== Soundtracks ====&lt;br /&gt;
* ''[[Teen Witch the Musical]]'' (2007) original cast recording, Weir Brothers Entertainment.&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Moondance Alexander]]'' (2007) starring [[Kay Panabaker]], [[Don Johnson]] and [[Lori Loughlin]], [[20th Century Fox|20th Century Fox Home Entertainment]]&lt;br /&gt;
* ''[[Flicka 2]]'' (2010) starring [[Patrick Warburton]], [[Tammin Sursok]] and [[Clint Black]], [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011) starring [[Travis Turner]] and [[Donnelly Rhodes]],  [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''Love by Design'' (2014) starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]], Gold Line Prod. Int.&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Newport Beach FF&amp;quot;&amp;gt;{{cite web|title=Newport Beach Film Festival|url=https://www.imdb.com/event/ev0000491/2014?ref_=ttawd_ev_1|website=[[IMDb]]|accessdate=1 February 2015|date=2 February 2014|quote=First-time Filmmaker: Winner}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*''High Strung'' (2016) starring [[Keenan Kampa]], Nicholas Galitzine, [[Jane Seymour (actress)|Jane Seymour]], Riviera Films.&amp;lt;ref name=&amp;quot;High Strung&amp;quot;&amp;gt;{{cite web|title=''High Strung''|url=http://www.soundtrack.net/album/high-strung/|website=Soundtrack.net|accessdate=30 March 2016|date=8 April 2016}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Singles ====&lt;br /&gt;
&amp;lt;!--* &amp;quot;Never Gonna Be The Same Again&amp;quot; (2007)&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt;--&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World&amp;quot; (2011)&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World - The Remixes&amp;quot; (2011)&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;In My Arms&amp;quot; (2012)&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;My Kind of Trouble LIVE at the Recordium&amp;quot; (2019)&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Is It Just Me LIVE at the Recordium&amp;quot; (2019)&lt;br /&gt;
* &amp;quot;Shine&amp;quot; (2019)&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;You Made Me Hate Love Songs LIVE at YouTube Space&amp;quot; (2020)&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;A Little Closer To Happy&amp;quot; (2021)&lt;br /&gt;
* &amp;quot;Worth It&amp;quot; (2021)&lt;br /&gt;
&lt;br /&gt;
=== Journalism ===&lt;br /&gt;
Youmans writes about entertainment topics, specifically dance, music, theatre and film. Her Southern California beat includes covering venues, such as the [[Orange County Fair (California)|Orange County Fair]], the Newport Beach Jazz Festival, the [[Playboy Jazz Festival]], Sunset Jazz at Newport, the [[Hollywood Bowl]] and [[Segerstrom Center for the Arts]]. Her freelance position with [[Freedom Communications]] has afforded interviews with: [[George Lopez]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Drew Carey]] and [[Brooke Shields]],&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt;  Grammy Award-winning musicians [[David Sanborn]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Jeff Hamilton (drummer)|Jeff Hamilton]]&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;/&amp;gt; for the ''[[Orange County Register]]'', and her interview with Grammy nominee [[Brian McKnight]] was additionally published in the ''Los Angeles Register''.&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;/&amp;gt; Earlier interviews include, [[Chita Rivera]] for the ''[[Los Angeles Times]]''&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and interviews with [[Ann Wilson]]&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt; and  [[Martina McBride]]&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt; for the [[Los Angeles Times suburban sections|Los Angeles Times Media Group's]] ''Daily Pilot''.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;!--- See http://en.wikipedia.org/wiki/Wikipedia:Footnotes on how to create references using &amp;lt;ref&amp;gt;&amp;lt;/ref&amp;gt; tags which will then appear here automatically --&amp;gt;&lt;br /&gt;
{{Reflist|2| refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student gets golden ticket on 'American Idol'|url=http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|publisher=Daily 49er|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821011818/http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|archivedate=21 August 2014|date=24 January 2012}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;&amp;gt;{{cite web|author1=Giulia Nahmany|title=Giulia Nahmany Love by Design Premiere at Newport Beach Film Festival|url=https://www.youtube.com/watch?v=et6kw-AH0ZA|publisher=Giulia Nahmany YouTube Channel|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821015154/https://www.youtube.com/watch?v=et6kw-AH0ZA|archivedate=21 August 2014|date=20 May 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=TWTM&amp;gt;{{cite web|title=Teen Witch The Musical|url=http://weirbrothersentertainment.com/releases/teen-witch|publisher=Weir Brothers Entertainment|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822014020/http://weirbrothersentertainment.com/releases/teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;&amp;gt;{{cite web|title=Heather Youmans: Credits|url=http://www.allmusic.com/artist/heather-youmans-mn0000643210/credits|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=DelMarTV&amp;gt;{{cite web|title=Del Mar TV Idol Contest 2004|url=http://www.delmartv.com/idol/idol04.html|publisher=Del Mar TV Foundation|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822011402/http://www.delmartv.com/idol/idol04.html|archivedate=22 August 2014|date=10 October 2004|quote=Heather Youmans (1st place)}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;&amp;gt;{{cite web|title=Moondance Alexander Soundtrack|url=http://www.allmusic.com/album/moondance-alexander-mw0000493713|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;&amp;gt;{{cite web|title=2010 MACY Award Winners|url=http://macyawards.com/news/67-news/132-2010-macy-award-winners|publisher=MACY Awards|accessdate=22 August 2014|date=22 May 2010|url-status=dead|archiveurl=https://web.archive.org/web/20140903125715/http://macyawards.com/news/67-news/132-2010-macy-award-winners|archivedate=3 September 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;&amp;gt;{{cite web|title=2009 MACY Award Winners|url=http://macyawards.com/news/67-news/122-2009-macy-award-winners|accessdate=22 August 2014|url-status=dead|archiveurl=https://web.archive.org/web/20140822022545/http://macyawards.com/news/67-news/122-2009-macy-award-winners|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;&amp;gt;{{cite news|last1=Krugen|first1=Pam|title=Strong leads, chemistry make Welk's 'Get Your Gun' a winner|url=http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|newspaper=The San Diego Union-Tribune|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822042246/http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|archivedate=22 August 2014|date=3 September 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=Annie Get Your Gun|url=http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822044216/http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|archivedate=22 August 2014|year=2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=The Sound of Music|url=http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822045133/http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;&amp;gt;{{cite web|last1=Wood|first1=Jennifer M.|title=18 Fun Facts About 'Teen Witch'|url=http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|publisher=mental_floss|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822193830/http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;&amp;gt;{{cite web|title=Girl to Change Your World: Releases|url=http://www.allmusic.com/album/girl-to-change-your-world-mw0002363250/releases|website=[[AllMusic]]|accessdate=23 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - Girl To Change Your World|url=https://www.youtube.com/watch?v=lYU6FLZm9nQ|publisher=Caption Records YouTube Channel|accessdate=23 August 2014|date=7 February 2010}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student loses shot at 'Idol' fame|url=http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|publisher=Daily 49er|accessdate=23 August 2014|archiveurl=https://web.archive.org/web/20140823012031/http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|archivedate=23 August 2014|date=12 February 2012|quote=Still, she said she’s not ashamed of the footage. “Yeah, it sucks,” she said. “Everybody has a bad day. Yeah, it’s unfortunate that they showed me having a bad day, but what can you do?”}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Newport Jazz Festival goes down smooth|url=http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|newspaper=[[Orange County Register]]|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826092910/http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|archivedate=26 August 2014|date=29 May 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;&amp;gt;{{cite web|last1=Schnaidt|first1=Joe|title=Lighting The Way To Hope On Rodeo Drive|url=http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|publisher=Canyon News|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826100957/http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|archivedate=26 August 2014|date=4 December 2005|quote=BEVERLY HILLS — Wednesday, November 30 illuminated Rodeo Drive at Wilshire Boulevard for the annual holiday lighting ceremony with celebrities, sponsors and a ray of hope for children facing poverty, health risks and poor education.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 9 August 2011 | title = Marley &amp;amp; Me The Puppy Years music from and inspired by the motion picture | medium = MP3 &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B005JBC14S&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 4 May 2010 | title = Flicka 2 Original Motion Picture Soundtrack | medium = MP3/CD &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B003JE2EIU&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;JRAY Nom&amp;quot;&amp;gt;{{cite web|title=2009 JRAY Awards|url=http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|publisher=Fulerton Civic Light Opera|accessdate=28 August 2014|archiveurl=https://web.archive.org/web/20140828012354/http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|archivedate=28 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;&amp;gt;{{cite news|last1=Malik|first1=Abhay|title=Alumnus Jon MacLennan's iBook 'Melodic Expressions' advances guitar instruction |url=http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|newspaper=[[Daily Bruin]]|accessdate=8 August 2014|archiveurl=https://web.archive.org/web/20140808121825/http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|archivedate=8 August 2014|date=8 May 2012|quote=Heather Youmans, an “American Idol” contestant and freelance journalist, helped edit the iBook and has expressed excitement over the finished product as well.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;&amp;gt;{{cite web|last1=MacLennan|first1=Jon|title=In My Arms Jon MacLennan (feat. Heather Youmans)|url=https://www.youtube.com/watch?v=G8QJ5aToHxw|publisher=Jon MacLennan YouTube Channel|accessdate=28 August 2014|date=16 July 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - &amp;quot;Never Gonna Be the Same Again&amp;quot; Studio City Sound LIVE|url=https://www.youtube.com/watch?v=rYhEtU1EgUM|publisher=[[Studio City Sound]]|accessdate=28 August 2014|date=3 October 2011}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;iBook Press Release&amp;quot;&amp;gt;{{cite press release|title=Melodic Expressions: The Art of the Line|url=http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|website=www.heatheryoumansmusic.com/|publisher=Jon MacLennan|accessdate=28 August 2014|date=3 May 2013|archiveurl=https://web.archive.org/web/20140828221739/http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|archivedate=28 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Change in tempo for Playboy Jazz Festival&lt;br /&gt;
|url=http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=21 August 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829013440/http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Brooke Shields takes the helm of 'Chicago'&lt;br /&gt;
|url=http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=17 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829014021/http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Sunset Jazz series kicks off in Newport&lt;br /&gt;
|url=http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|accessdate=29 August 2014|newspaper=[[The Orange County Register]]|date=9 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829015132/http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;&amp;gt;{{cite web|title=Weir Brothers Entertainment: Albums|url=http://www.last.fm/label/Weir+Brothers+Entertainment/albums|website=last.fm|publisher=Weir Brothers Entertainment|accessdate=29 August 2014|archiveurl=https://web.archive.org/web/20140829023539/http://www.last.fm/label/Weir+Brothers+Entertainment/albums|archivedate=29 August 2014|year=2011|quote=Girl to Change Your World singles}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Music for most every taste|url=http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|accessdate=29 August 2014|newspaper=Daily Pilot|archiveurl=https://web.archive.org/web/20140829225029/http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=O.C. Fair gets some Heart|url=http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|accessdate=29 August 2014|newspaper=Daily Pilot|date=2 August 2012|archiveurl=https://web.archive.org/web/20140829224632/http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Youmans: Chita Rivera to perform hits from a storied career|url=http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|accessdate=29 August 2014|newspaper=[[The Los Angeles Times]]|date=10 November 2011|archiveurl=https://web.archive.org/web/20140829220754/http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival|url=http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|accessdate=29 August 2014|newspaper=[[Orange County Register]]|date=28 May 2014|archiveurl=https://web.archive.org/web/20140829215845/http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival&lt;br /&gt;
|publisher=Los Angeles Register|date=29 May 2014&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;&amp;gt;{{cite news|title='High Strung' Soundtrack Announced|url=http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|accessdate=3 May 2016|publisher=FILM MUSIC REPORTER|date=9 March 2016|archiveurl=https://web.archive.org/web/20160503051828/http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|archivedate=3 May 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;&amp;gt;{{cite web|author1=Kristyn Burtt|title=Heather Youmans at the Red Carpet Premiere for &amp;quot;High Strung&amp;quot; #HighStrungMovie|url=https://www.youtube.com/watch?v=YOlN1Zt4_I8|website=YouTube.com|publisher=Mingle Media TV|accessdate=3 May 2016|date=30 March 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=Meet This Week's She Rocks Spotlight Series Artists, Including Grammy-Nominated Headliner Mindi Abair | website=Parade | date=2020-04-22 | url=https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-url=https://web.archive.org/web/20200427002753/https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-date=2020-04-27 | url-status=dead | access-date=2020-04-27}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;&amp;gt;{{cite web | title=Daily Discovery: Heather Youmans, &amp;quot;Shine&amp;quot; « American Songwriter | website=American Songwriter | date=2019-11-13 | url=https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200316151706/https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-date=2020-03-16 | url-status=live | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;&amp;gt;{{cite web | last=Buttonow | first=Leslie | title=Front and Center: Heather Youmans, PR &amp;amp; Communications Manager, Fender Musical Instruments Corporation – the WiMN - The Women's International Music Network | website=thewimn.com | date=2019-05-01 | url=https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-url=https://web.archive.org/web/20200426083920/https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-date=2020-04-26 | url-status=unfit | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;&amp;gt;{{cite web | title=Premiere: Singer-Songwriter Heather Youmans Reveals Latest Single &amp;quot;Shine&amp;quot; + Music Video | website=Elicit Magazine | date=2019-10-18 | url=http://www.elicitmagazine.com/heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200428035459/http://www.elicitmagazine.com/heather-youmans-shine/ | archive-date=2020-04-28 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;&amp;gt;{{cite web |url= https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble |title= Heather Youmans Gets Honest And Real In &amp;quot;My Kind Of Trouble&amp;quot; |date= 2019-08-13 |website= BuzzMusic |access-date= 2020-04-27 |archive-date= 2020-04-28 |archive-url= https://web.archive.org/web/20200428034603/https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;&amp;gt;{{cite web | title=Emerging Headliner: Heather Youmans | website=Headliner Magazine | date=2020-02-25 | url=https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-url=https://web.archive.org/web/20200225061919/https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-date=2020-02-25 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;&amp;gt;{{cite web | last=Brunner | first=Jeryl | title=Why This Successful Singer-Songwriter Won't Give Up Her Day Job | website=Forbes | date=2020-09-30 | url=https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/ | access-date=2020-10-01 |archive-url=https://web.archive.org/web/20201001011624if_/https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/?fbclid=IwAR3q2uGBNQP6MO-2pr57Mopo6AM0b_lktTAEhvQKHD6XhTNH5jSQoOQpiT4#5d2b64a67b7e|archive-date=2020-10-01}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=You're Gonna Feel the Joy of Heather Youmans' Video for 'Shine' | website=Parade: Entertainment, Recipes, Health, Life, Holidays | date=2020-10-06 | url=https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-url=https://web.archive.org/web/20201007032747/https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-date=2020-10-07 | url-status=dead | access-date=2020-10-07}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;&amp;gt;{{cite web | title=Heather Youmans Releases 'Shine' As Love Letter To Younger Self | website=Headliner Magazine | url=https://headlinermagazine.net/blog/heather-youmans-releases-shine-as-love-letter-to-younger-self.html | access-date=2020-10-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;&amp;gt;{{cite AV media  | people = Heather Youmans  | date = 2020-10-28  | title = The Tap Dancer Performs &amp;quot;Youngblood&amp;quot; By 5 Seconds Of Summer - Season 1 Ep. 4 - I CAN SEE YOUR VOICE  | language = en  | url = https://www.youtube.com/watch?v=Z5rghUxRero  | access-date = 2020-10-31  | publisher = FOX }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot;&amp;gt;{{cite web | title=Column: Singer from Vista stuns panel in new Fox reality series | website=San Diego Union-Tribune | date=2020-11-14 | url=https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-url=https://web.archive.org/web/20201118211051/https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-date=2020-11-18 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot;&amp;gt;{{cite web | last=Upadhyay | first=Nayna | title=EXCLUSIVE - Heather Youmans says 'I Can See Your Voice' is all about finding 'singers that America needs to know' | website=MEAWW | date=2020-11-16 | url=https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-url=https://web.archive.org/web/20201116192203/https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-date=2020-11-16 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.heatheryoumans.com Official website]&lt;br /&gt;
* {{YouTube|user=HeatherYoumans|Heather Youmans}}&lt;br /&gt;
* {{Facebook|HeatherYoumansOfficial|Heather Youmans}}&lt;br /&gt;
&amp;lt;!--* {{itunes|us/artist/heather-youmans/id219552589|Heather Youmans}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Youmans, Heather}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Categories &lt;br /&gt;
[[Category:Articles created via the Article Wizard]]---&amp;gt;&lt;br /&gt;
[[Category:1992 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:American stage actresses]]&lt;br /&gt;
[[Category:American women singer-songwriters]]&lt;br /&gt;
[[Category:American musical theatre actresses]]&lt;br /&gt;
[[Category:21st-century American actresses]]&lt;br /&gt;
[[Category:21st-century American singers]]&lt;br /&gt;
[[Category:Musicians from San Diego]]&lt;br /&gt;
[[Category:Musicians from Vista, California]]&lt;br /&gt;
[[Category:American music journalists]]&lt;br /&gt;
[[Category:American women journalists]]&lt;br /&gt;
[[Category:Journalists from California]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--[[Category:American film actresses]]&lt;br /&gt;
[[Category:American television actresses]]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Women writers about music]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Singer-songwriters from California]]&lt;br /&gt;
{{authority control}}&lt;br /&gt;
[[Category:21st-century American women singers]]&lt;br /&gt;
[[Category:21st-century American journalists]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6278</id>
		<title>Draft: Heather Youmans</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6278"/>
		<updated>2024-02-21T04:45:01Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: /* Career */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{short description|American singer-songwriter}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox musical artist&lt;br /&gt;
| name             = Heather Youmans&lt;br /&gt;
| image            = File:Heather_Youmans.jpg&lt;br /&gt;
| image_size       =&lt;br /&gt;
| landscape        = &amp;lt;!-- yes, if wide image, otherwise leave blank --&amp;gt;&lt;br /&gt;
| alt              = Heather Youmans sings at 2011 Relay For Life in San Diego, California&lt;br /&gt;
| caption          =&lt;br /&gt;
| birth_name       = Heather Anne Youmans&lt;br /&gt;
| native_name      =&lt;br /&gt;
| native_name_lang =&lt;br /&gt;
| alias            =&lt;br /&gt;
| birth_date       = {{birth date and age|1992|05|16}}&lt;br /&gt;
| birth_place      = [[Vista, California]], U.S.&lt;br /&gt;
| origin           =&lt;br /&gt;
| death_date       = &amp;lt;!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) --&amp;gt;&lt;br /&gt;
| death_place      =&lt;br /&gt;
| genre            = Rock, pop, country, soul&lt;br /&gt;
| occupation       = Singer-songwriter, actor, journalist&lt;br /&gt;
| instrument       = vocals, bass&lt;br /&gt;
| years_active     = 2002–present&lt;br /&gt;
| label            = {{plainlist| &lt;br /&gt;
* Caption Records&lt;br /&gt;
* Weir Brothers Entertainment&lt;br /&gt;
* Suspicious Love Productions}}&lt;br /&gt;
| associated_acts  =&lt;br /&gt;
| website          = {{URL|www.heatheryoumans.com}}&lt;br /&gt;
| module =&lt;br /&gt;
&lt;br /&gt;
  {{Infobox person&lt;br /&gt;
    | education	= {{highlight|[[Master of Business Administration| MBA]]}}&lt;br /&gt;
    | alma_mater = {{highlight|[[California State University, Long Beach]] (2013)}}&lt;br /&gt;
  }}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color: moccasin&amp;quot;&amp;gt;&lt;br /&gt;
'''Heather Youmans''' is an American singer-songwriter, actress, tap dancer and journalist, her work has been featured in ''American Songwriter'' magazine,&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt; [[Forbes|''Forbes Women'']] and ''Parade'' magazine profiled her career and music in 2020.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans tap dancing on [[I Can See Your Voice (American TV series)|''I Can See Your Voice'']] episode 4 (FOX),&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; convinced the judges that she is a professional dancer,&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
a video depicting her delivery of the national anthem and dealing with acoustic delay effect of a large stadium (Oakland Coliseum) went viral on social media in 2021.&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Early life ==&lt;br /&gt;
Youmans began landing theatre roles at age ten, such as Amarylis in ''[[The Music Man]]'',  Marta in ''[[The Sound of Music]]'' in 2003,&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;/&amp;gt; as well as Nellie in ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]'' in 2004 at the [[Lawrence Welk|Welk]] Resort Theatre.&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;/&amp;gt;  In 2004, she won first place in the Del Mar TV Idol Contest, Junior Division, at age twelve.&amp;lt;ref name=DelMarTV/&amp;gt; On November 30, 2005, Youmans performed an opening solo at the [[UNICEF]] Snowflake Ball at the [[Beverly Wilshire Hotel|Regent Beverly Wilshire]]. Headlining acts for the evening included, [[Sting (musician)|Sting]], [[Chris Botti]] and [[Natalie Cole]].&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans attended [[Rancho Buena Vista High School]] and was active in the Associated Student Body, dance and drama programs. In 2009, she won the MACY Award for Highest Achievement and Best Supporting Vocal-Female for her role as Rusty in [[Footloose (musical)|''Footloose'']],&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;/&amp;gt; and Best Vocal Female in 2010 for her role as Jo in ''[[Little Women]]''.&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Education ==&lt;br /&gt;
Youmans holds a B.A. in Journalism and Mass Communication with a music minor (classical and jazz vocal at [[Bob Cole Conservatory of Music]]). She graduated [[magna cum laude]] from [[California State University, Long Beach]] (CSULB) in 2013, and graduated with an MBA at CSULB with an emphasis in marketing. During her undergraduate studies, Youmans created and hosted ''Heartbreakers: The Women of Rock'', a radio format program on [[Kbeach#22 West Radio|KBeach.org]] (2011-2013).  {{Highlight|While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Career ==&lt;br /&gt;
In 2005, Youmans earned a voice-over part, playing Becky Thatcher in Disney's ''[[Tom Sawyer's Island]]'' and the following year, won the part of Shana the Rock Star in a pre-production musical ''[[Teen Witch the Musical]]'' (2007).&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt; These accomplishments led to featured artist performances on the soundtrack for [[Moondance Alexander]] (2007).&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;/&amp;gt; Youmans' single, &amp;quot;Girl to Change Your World&amp;quot;, was a (2011) hit on [[Radio Disney]],&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; and it is one of the two Youmans songs included in the film ''Love by Design'' (2014), starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]].&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;The [[Teen Witch the Musical]] project was successful in its primary goal of reproducing the missing soundtrack for the Halloween classic film [[Teen Witch]] (1989).&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt; The musical stage-play never made it out of [[Workshop production|workshop]] and has yet to achieve the secondary goal of becoming a viable [[Broadway theatre|Broadway]] offering.&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;/&amp;gt; This association with Weir Brothers Productions led to additional soundtrack features in the films ''[[Moondance Alexander]]'' (2007), ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
While concurrently studying journalism and music, Youmans auditioned and stacked up credits in Southern California regional theater and wrote for national and regional newspapers on entertainment topics. &amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; She has produced and hosted an entertainment format radio show,&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; interviewed entertainment industry legends,&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt; and ran a marketing campaign for [[Jon MacLennan|Jon MacLennan's]] iBook, ''Melodic Expressions: The Art of the Line'' (2012).&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;/&amp;gt; She works as a communications professional in [[Los Angeles]].&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Theatre and live performances ===&lt;br /&gt;
&lt;br /&gt;
==== American Idol ====&lt;br /&gt;
In 2012, Youmans performed &amp;quot;[[Some Kind of Wonderful (The Drifters song)|Some Kind of Wonderful]]&amp;quot; at the [[American Idol]] San Diego competition and won a golden ticket after a unanimous decision from the judges ([[Steven Tyler]], [[Jennifer Lopez]] and [[Randy Jackson]]), which advanced her to the [[American Idol (season 11)#Hollywood week and Vegas rounds|''Hollywood Week'']] competition.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  Youmans was eliminated during ''Hollywood Week'' in Season 11. She attributes the elimination to nerves and an ambitious music selection, [[Heart (band)|Heart]]’s &amp;quot;[[Crazy on You]]&amp;quot;.&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable sortable collapsed collapsible&amp;quot; style=&amp;quot;width:98%; margin-right:0; text-align:center;&amp;quot;&lt;br /&gt;
|+ Professional performances and theatre roles&lt;br /&gt;
|-&lt;br /&gt;
! Year&lt;br /&gt;
! Title&lt;br /&gt;
! Role&lt;br /&gt;
! Venue&lt;br /&gt;
! Director/Producer&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[The Music Man]]''||align=&amp;quot;center&amp;quot;|Amarylis||Welk Resort Theatre||Lewis Wilkenfeld&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[Sound of Music]]''||align=&amp;quot;center&amp;quot;|Marta||Welk Resort Theatre||Joshua Carr&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Nellie||Welk Resort Theatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie (musical)|Annie]]''||align=&amp;quot;center&amp;quot;|Orphan Sadie||La Mirada Theatre for the Performing Arts||McCoy Rigby Ent. Glenn Casale&lt;br /&gt;
|-&lt;br /&gt;
|2004||''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Jessie||Saddleback Civic Light Opera||Sheryl Donchey&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[To Kill a Mockingbird]]''||align=&amp;quot;center&amp;quot;|Scout||West Coast Ensemble|| {{sic|hide=y|C. Jaffe/R. Israel}}&lt;br /&gt;
|-&lt;br /&gt;
|2005||UNICEF Snowflake Ball||align=&amp;quot;center&amp;quot;|Opening Soloist||[[Beverly Wilshire Hotel|Regent Beverly Wilshire]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2005|| ''[[Tight Quarters]]''||align=&amp;quot;center&amp;quot;|Lauren||Whitefire Theatre||Jules Aaron&lt;br /&gt;
|-&lt;br /&gt;
|2005||Kodak Christmas||align=&amp;quot;center&amp;quot;|Featured Soloist||[[Dolby Theatre|Kodak Theatre]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2006||''[[Teen Witch the Musical]]''||align=&amp;quot;center&amp;quot;|Shana the Rock Star|| [[Workshop production|workshop]] ||Alana Lambros&lt;br /&gt;
|-&lt;br /&gt;
|2008||[[New Music Weekly]] Awards||align=&amp;quot;center&amp;quot;|Featured Soloist||Avalon Theatre||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2009||''[[42nd Street (musical)|42nd Street]]'' ||align=&amp;quot;center&amp;quot;|Ensemble|| Moonlight Amphitheatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2010|| ''Once Upon A Wedding''||align=&amp;quot;center&amp;quot;|Daisy||Bahia Resort-Dinner Theatre||Laughing Tree Prod.&lt;br /&gt;
|-&lt;br /&gt;
|2010-12|| ''Journey To The Lost Temple''||align=&amp;quot;center&amp;quot;|Pippin||[[Legoland]]-California||Shawn Griener&lt;br /&gt;
|-&lt;br /&gt;
|2012||''[[American Idol]]'' Season 11||align=&amp;quot;center&amp;quot;|Contestant|| [[USS Midway Museum]]|| [[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2012||''American Idol'' Season 11||align=&amp;quot;center&amp;quot;|Hollywood Week||[[Pasadena Civic Auditorium]]||[[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2019||Jason Robert Brown In Concert||align=&amp;quot;center&amp;quot;|Lead singer||Cabaret at the Merc||Gerald Sternbach &lt;br /&gt;
|-&lt;br /&gt;
|2019||Evita In Concert||align=&amp;quot;center&amp;quot;|Ensemble||PVPA||Richard Israel &lt;br /&gt;
|-&lt;br /&gt;
|2020||HAIR||align=&amp;quot;center&amp;quot;|Suzannah 1000-Year-Old Monk||LGBT Center LA||Kate Sullivan Jared Stein&lt;br /&gt;
|-&lt;br /&gt;
|2020||New Year's Eve, National Anthem Singer||align=&amp;quot;center&amp;quot;|Soloist||Staples Center||LA Kings &amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;/&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Recorded and broadcast ===&lt;br /&gt;
&amp;lt;s&amp;gt;In addition to performing in nationally televised commercials, Youmans has been involved in several cutting-edge media projects.&amp;lt;/s&amp;gt;  In 2005, Youmans played the part of Becky Thatcher in Disney's [[Tom Sawyer's Island]], a voice-over project.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  The performance was delivered via hand-held computers issued to visitors on [[Disneyland|Disneyland's]] Tom Sawyer's Island. A pilot project, titled &amp;quot;Available Light&amp;quot;, was one of the first to test Sony Blu-ray camera technology.&lt;br /&gt;
&lt;br /&gt;
==== Soundtracks ====&lt;br /&gt;
* ''[[Teen Witch the Musical]]'' (2007) original cast recording, Weir Brothers Entertainment.&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Moondance Alexander]]'' (2007) starring [[Kay Panabaker]], [[Don Johnson]] and [[Lori Loughlin]], [[20th Century Fox|20th Century Fox Home Entertainment]]&lt;br /&gt;
* ''[[Flicka 2]]'' (2010) starring [[Patrick Warburton]], [[Tammin Sursok]] and [[Clint Black]], [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011) starring [[Travis Turner]] and [[Donnelly Rhodes]],  [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''Love by Design'' (2014) starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]], Gold Line Prod. Int.&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Newport Beach FF&amp;quot;&amp;gt;{{cite web|title=Newport Beach Film Festival|url=https://www.imdb.com/event/ev0000491/2014?ref_=ttawd_ev_1|website=[[IMDb]]|accessdate=1 February 2015|date=2 February 2014|quote=First-time Filmmaker: Winner}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*''High Strung'' (2016) starring [[Keenan Kampa]], Nicholas Galitzine, [[Jane Seymour (actress)|Jane Seymour]], Riviera Films.&amp;lt;ref name=&amp;quot;High Strung&amp;quot;&amp;gt;{{cite web|title=''High Strung''|url=http://www.soundtrack.net/album/high-strung/|website=Soundtrack.net|accessdate=30 March 2016|date=8 April 2016}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Singles ====&lt;br /&gt;
&amp;lt;!--* &amp;quot;Never Gonna Be The Same Again&amp;quot; (2007)&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt;--&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World&amp;quot; (2011)&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World - The Remixes&amp;quot; (2011)&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;In My Arms&amp;quot; (2012)&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;My Kind of Trouble LIVE at the Recordium&amp;quot; (2019)&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Is It Just Me LIVE at the Recordium&amp;quot; (2019)&lt;br /&gt;
* &amp;quot;Shine&amp;quot; (2019)&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;You Made Me Hate Love Songs LIVE at YouTube Space&amp;quot; (2020)&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;A Little Closer To Happy&amp;quot; (2021)&lt;br /&gt;
* &amp;quot;Worth It&amp;quot; (2021)&lt;br /&gt;
&lt;br /&gt;
=== Journalism ===&lt;br /&gt;
Youmans writes about entertainment topics, specifically dance, music, theatre and film. Her Southern California beat includes covering venues, such as the [[Orange County Fair (California)|Orange County Fair]], the Newport Beach Jazz Festival, the [[Playboy Jazz Festival]], Sunset Jazz at Newport, the [[Hollywood Bowl]] and [[Segerstrom Center for the Arts]]. Her freelance position with [[Freedom Communications]] has afforded interviews with: [[George Lopez]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Drew Carey]] and [[Brooke Shields]],&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt;  Grammy Award-winning musicians [[David Sanborn]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Jeff Hamilton (drummer)|Jeff Hamilton]]&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;/&amp;gt; for the ''[[Orange County Register]]'', and her interview with Grammy nominee [[Brian McKnight]] was additionally published in the ''Los Angeles Register''.&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;/&amp;gt; Earlier interviews include, [[Chita Rivera]] for the ''[[Los Angeles Times]]''&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and interviews with [[Ann Wilson]]&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt; and  [[Martina McBride]]&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt; for the [[Los Angeles Times suburban sections|Los Angeles Times Media Group's]] ''Daily Pilot''.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;!--- See http://en.wikipedia.org/wiki/Wikipedia:Footnotes on how to create references using &amp;lt;ref&amp;gt;&amp;lt;/ref&amp;gt; tags which will then appear here automatically --&amp;gt;&lt;br /&gt;
{{Reflist|2| refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student gets golden ticket on 'American Idol'|url=http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|publisher=Daily 49er|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821011818/http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|archivedate=21 August 2014|date=24 January 2012}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;&amp;gt;{{cite web|author1=Giulia Nahmany|title=Giulia Nahmany Love by Design Premiere at Newport Beach Film Festival|url=https://www.youtube.com/watch?v=et6kw-AH0ZA|publisher=Giulia Nahmany YouTube Channel|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821015154/https://www.youtube.com/watch?v=et6kw-AH0ZA|archivedate=21 August 2014|date=20 May 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=TWTM&amp;gt;{{cite web|title=Teen Witch The Musical|url=http://weirbrothersentertainment.com/releases/teen-witch|publisher=Weir Brothers Entertainment|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822014020/http://weirbrothersentertainment.com/releases/teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;&amp;gt;{{cite web|title=Heather Youmans: Credits|url=http://www.allmusic.com/artist/heather-youmans-mn0000643210/credits|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=DelMarTV&amp;gt;{{cite web|title=Del Mar TV Idol Contest 2004|url=http://www.delmartv.com/idol/idol04.html|publisher=Del Mar TV Foundation|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822011402/http://www.delmartv.com/idol/idol04.html|archivedate=22 August 2014|date=10 October 2004|quote=Heather Youmans (1st place)}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;&amp;gt;{{cite web|title=Moondance Alexander Soundtrack|url=http://www.allmusic.com/album/moondance-alexander-mw0000493713|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;&amp;gt;{{cite web|title=2010 MACY Award Winners|url=http://macyawards.com/news/67-news/132-2010-macy-award-winners|publisher=MACY Awards|accessdate=22 August 2014|date=22 May 2010|url-status=dead|archiveurl=https://web.archive.org/web/20140903125715/http://macyawards.com/news/67-news/132-2010-macy-award-winners|archivedate=3 September 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;&amp;gt;{{cite web|title=2009 MACY Award Winners|url=http://macyawards.com/news/67-news/122-2009-macy-award-winners|accessdate=22 August 2014|url-status=dead|archiveurl=https://web.archive.org/web/20140822022545/http://macyawards.com/news/67-news/122-2009-macy-award-winners|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;&amp;gt;{{cite news|last1=Krugen|first1=Pam|title=Strong leads, chemistry make Welk's 'Get Your Gun' a winner|url=http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|newspaper=The San Diego Union-Tribune|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822042246/http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|archivedate=22 August 2014|date=3 September 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=Annie Get Your Gun|url=http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822044216/http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|archivedate=22 August 2014|year=2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=The Sound of Music|url=http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822045133/http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;&amp;gt;{{cite web|last1=Wood|first1=Jennifer M.|title=18 Fun Facts About 'Teen Witch'|url=http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|publisher=mental_floss|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822193830/http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;&amp;gt;{{cite web|title=Girl to Change Your World: Releases|url=http://www.allmusic.com/album/girl-to-change-your-world-mw0002363250/releases|website=[[AllMusic]]|accessdate=23 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - Girl To Change Your World|url=https://www.youtube.com/watch?v=lYU6FLZm9nQ|publisher=Caption Records YouTube Channel|accessdate=23 August 2014|date=7 February 2010}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student loses shot at 'Idol' fame|url=http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|publisher=Daily 49er|accessdate=23 August 2014|archiveurl=https://web.archive.org/web/20140823012031/http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|archivedate=23 August 2014|date=12 February 2012|quote=Still, she said she’s not ashamed of the footage. “Yeah, it sucks,” she said. “Everybody has a bad day. Yeah, it’s unfortunate that they showed me having a bad day, but what can you do?”}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Newport Jazz Festival goes down smooth|url=http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|newspaper=[[Orange County Register]]|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826092910/http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|archivedate=26 August 2014|date=29 May 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;&amp;gt;{{cite web|last1=Schnaidt|first1=Joe|title=Lighting The Way To Hope On Rodeo Drive|url=http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|publisher=Canyon News|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826100957/http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|archivedate=26 August 2014|date=4 December 2005|quote=BEVERLY HILLS — Wednesday, November 30 illuminated Rodeo Drive at Wilshire Boulevard for the annual holiday lighting ceremony with celebrities, sponsors and a ray of hope for children facing poverty, health risks and poor education.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 9 August 2011 | title = Marley &amp;amp; Me The Puppy Years music from and inspired by the motion picture | medium = MP3 &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B005JBC14S&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 4 May 2010 | title = Flicka 2 Original Motion Picture Soundtrack | medium = MP3/CD &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B003JE2EIU&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;JRAY Nom&amp;quot;&amp;gt;{{cite web|title=2009 JRAY Awards|url=http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|publisher=Fulerton Civic Light Opera|accessdate=28 August 2014|archiveurl=https://web.archive.org/web/20140828012354/http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|archivedate=28 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;&amp;gt;{{cite news|last1=Malik|first1=Abhay|title=Alumnus Jon MacLennan's iBook 'Melodic Expressions' advances guitar instruction |url=http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|newspaper=[[Daily Bruin]]|accessdate=8 August 2014|archiveurl=https://web.archive.org/web/20140808121825/http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|archivedate=8 August 2014|date=8 May 2012|quote=Heather Youmans, an “American Idol” contestant and freelance journalist, helped edit the iBook and has expressed excitement over the finished product as well.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;&amp;gt;{{cite web|last1=MacLennan|first1=Jon|title=In My Arms Jon MacLennan (feat. Heather Youmans)|url=https://www.youtube.com/watch?v=G8QJ5aToHxw|publisher=Jon MacLennan YouTube Channel|accessdate=28 August 2014|date=16 July 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - &amp;quot;Never Gonna Be the Same Again&amp;quot; Studio City Sound LIVE|url=https://www.youtube.com/watch?v=rYhEtU1EgUM|publisher=[[Studio City Sound]]|accessdate=28 August 2014|date=3 October 2011}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;iBook Press Release&amp;quot;&amp;gt;{{cite press release|title=Melodic Expressions: The Art of the Line|url=http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|website=www.heatheryoumansmusic.com/|publisher=Jon MacLennan|accessdate=28 August 2014|date=3 May 2013|archiveurl=https://web.archive.org/web/20140828221739/http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|archivedate=28 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Change in tempo for Playboy Jazz Festival&lt;br /&gt;
|url=http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=21 August 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829013440/http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Brooke Shields takes the helm of 'Chicago'&lt;br /&gt;
|url=http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=17 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829014021/http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Sunset Jazz series kicks off in Newport&lt;br /&gt;
|url=http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|accessdate=29 August 2014|newspaper=[[The Orange County Register]]|date=9 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829015132/http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;&amp;gt;{{cite web|title=Weir Brothers Entertainment: Albums|url=http://www.last.fm/label/Weir+Brothers+Entertainment/albums|website=last.fm|publisher=Weir Brothers Entertainment|accessdate=29 August 2014|archiveurl=https://web.archive.org/web/20140829023539/http://www.last.fm/label/Weir+Brothers+Entertainment/albums|archivedate=29 August 2014|year=2011|quote=Girl to Change Your World singles}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Music for most every taste|url=http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|accessdate=29 August 2014|newspaper=Daily Pilot|archiveurl=https://web.archive.org/web/20140829225029/http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=O.C. Fair gets some Heart|url=http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|accessdate=29 August 2014|newspaper=Daily Pilot|date=2 August 2012|archiveurl=https://web.archive.org/web/20140829224632/http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Youmans: Chita Rivera to perform hits from a storied career|url=http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|accessdate=29 August 2014|newspaper=[[The Los Angeles Times]]|date=10 November 2011|archiveurl=https://web.archive.org/web/20140829220754/http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival|url=http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|accessdate=29 August 2014|newspaper=[[Orange County Register]]|date=28 May 2014|archiveurl=https://web.archive.org/web/20140829215845/http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival&lt;br /&gt;
|publisher=Los Angeles Register|date=29 May 2014&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;&amp;gt;{{cite news|title='High Strung' Soundtrack Announced|url=http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|accessdate=3 May 2016|publisher=FILM MUSIC REPORTER|date=9 March 2016|archiveurl=https://web.archive.org/web/20160503051828/http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|archivedate=3 May 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;&amp;gt;{{cite web|author1=Kristyn Burtt|title=Heather Youmans at the Red Carpet Premiere for &amp;quot;High Strung&amp;quot; #HighStrungMovie|url=https://www.youtube.com/watch?v=YOlN1Zt4_I8|website=YouTube.com|publisher=Mingle Media TV|accessdate=3 May 2016|date=30 March 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=Meet This Week's She Rocks Spotlight Series Artists, Including Grammy-Nominated Headliner Mindi Abair | website=Parade | date=2020-04-22 | url=https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-url=https://web.archive.org/web/20200427002753/https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-date=2020-04-27 | url-status=dead | access-date=2020-04-27}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;&amp;gt;{{cite web | title=Daily Discovery: Heather Youmans, &amp;quot;Shine&amp;quot; « American Songwriter | website=American Songwriter | date=2019-11-13 | url=https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200316151706/https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-date=2020-03-16 | url-status=live | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;&amp;gt;{{cite web | last=Buttonow | first=Leslie | title=Front and Center: Heather Youmans, PR &amp;amp; Communications Manager, Fender Musical Instruments Corporation – the WiMN - The Women's International Music Network | website=thewimn.com | date=2019-05-01 | url=https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-url=https://web.archive.org/web/20200426083920/https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-date=2020-04-26 | url-status=unfit | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;&amp;gt;{{cite web | title=Premiere: Singer-Songwriter Heather Youmans Reveals Latest Single &amp;quot;Shine&amp;quot; + Music Video | website=Elicit Magazine | date=2019-10-18 | url=http://www.elicitmagazine.com/heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200428035459/http://www.elicitmagazine.com/heather-youmans-shine/ | archive-date=2020-04-28 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;&amp;gt;{{cite web |url= https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble |title= Heather Youmans Gets Honest And Real In &amp;quot;My Kind Of Trouble&amp;quot; |date= 2019-08-13 |website= BuzzMusic |access-date= 2020-04-27 |archive-date= 2020-04-28 |archive-url= https://web.archive.org/web/20200428034603/https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;&amp;gt;{{cite web | title=Emerging Headliner: Heather Youmans | website=Headliner Magazine | date=2020-02-25 | url=https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-url=https://web.archive.org/web/20200225061919/https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-date=2020-02-25 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;&amp;gt;{{cite web | last=Brunner | first=Jeryl | title=Why This Successful Singer-Songwriter Won't Give Up Her Day Job | website=Forbes | date=2020-09-30 | url=https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/ | access-date=2020-10-01 |archive-url=https://web.archive.org/web/20201001011624if_/https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/?fbclid=IwAR3q2uGBNQP6MO-2pr57Mopo6AM0b_lktTAEhvQKHD6XhTNH5jSQoOQpiT4#5d2b64a67b7e|archive-date=2020-10-01}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=You're Gonna Feel the Joy of Heather Youmans' Video for 'Shine' | website=Parade: Entertainment, Recipes, Health, Life, Holidays | date=2020-10-06 | url=https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-url=https://web.archive.org/web/20201007032747/https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-date=2020-10-07 | url-status=dead | access-date=2020-10-07}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;&amp;gt;{{cite web | title=Heather Youmans Releases 'Shine' As Love Letter To Younger Self | website=Headliner Magazine | url=https://headlinermagazine.net/blog/heather-youmans-releases-shine-as-love-letter-to-younger-self.html | access-date=2020-10-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;&amp;gt;{{cite AV media  | people = Heather Youmans  | date = 2020-10-28  | title = The Tap Dancer Performs &amp;quot;Youngblood&amp;quot; By 5 Seconds Of Summer - Season 1 Ep. 4 - I CAN SEE YOUR VOICE  | language = en  | url = https://www.youtube.com/watch?v=Z5rghUxRero  | access-date = 2020-10-31  | publisher = FOX }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot;&amp;gt;{{cite web | title=Column: Singer from Vista stuns panel in new Fox reality series | website=San Diego Union-Tribune | date=2020-11-14 | url=https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-url=https://web.archive.org/web/20201118211051/https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-date=2020-11-18 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot;&amp;gt;{{cite web | last=Upadhyay | first=Nayna | title=EXCLUSIVE - Heather Youmans says 'I Can See Your Voice' is all about finding 'singers that America needs to know' | website=MEAWW | date=2020-11-16 | url=https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-url=https://web.archive.org/web/20201116192203/https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-date=2020-11-16 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.heatheryoumans.com Official website]&lt;br /&gt;
* {{YouTube|user=HeatherYoumans|Heather Youmans}}&lt;br /&gt;
* {{Facebook|HeatherYoumansOfficial|Heather Youmans}}&lt;br /&gt;
&amp;lt;!--* {{itunes|us/artist/heather-youmans/id219552589|Heather Youmans}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Youmans, Heather}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Categories &lt;br /&gt;
[[Category:Articles created via the Article Wizard]]---&amp;gt;&lt;br /&gt;
[[Category:1992 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:American stage actresses]]&lt;br /&gt;
[[Category:American women singer-songwriters]]&lt;br /&gt;
[[Category:American musical theatre actresses]]&lt;br /&gt;
[[Category:21st-century American actresses]]&lt;br /&gt;
[[Category:21st-century American singers]]&lt;br /&gt;
[[Category:Musicians from San Diego]]&lt;br /&gt;
[[Category:Musicians from Vista, California]]&lt;br /&gt;
[[Category:American music journalists]]&lt;br /&gt;
[[Category:American women journalists]]&lt;br /&gt;
[[Category:Journalists from California]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--[[Category:American film actresses]]&lt;br /&gt;
[[Category:American television actresses]]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Women writers about music]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Singer-songwriters from California]]&lt;br /&gt;
{{authority control}}&lt;br /&gt;
[[Category:21st-century American women singers]]&lt;br /&gt;
[[Category:21st-century American journalists]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6277</id>
		<title>Draft: Heather Youmans</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6277"/>
		<updated>2024-02-21T04:43:07Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: /* Career */ strike old news&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{short description|American singer-songwriter}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox musical artist&lt;br /&gt;
| name             = Heather Youmans&lt;br /&gt;
| image            = File:Heather_Youmans.jpg&lt;br /&gt;
| image_size       =&lt;br /&gt;
| landscape        = &amp;lt;!-- yes, if wide image, otherwise leave blank --&amp;gt;&lt;br /&gt;
| alt              = Heather Youmans sings at 2011 Relay For Life in San Diego, California&lt;br /&gt;
| caption          =&lt;br /&gt;
| birth_name       = Heather Anne Youmans&lt;br /&gt;
| native_name      =&lt;br /&gt;
| native_name_lang =&lt;br /&gt;
| alias            =&lt;br /&gt;
| birth_date       = {{birth date and age|1992|05|16}}&lt;br /&gt;
| birth_place      = [[Vista, California]], U.S.&lt;br /&gt;
| origin           =&lt;br /&gt;
| death_date       = &amp;lt;!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) --&amp;gt;&lt;br /&gt;
| death_place      =&lt;br /&gt;
| genre            = Rock, pop, country, soul&lt;br /&gt;
| occupation       = Singer-songwriter, actor, journalist&lt;br /&gt;
| instrument       = vocals, bass&lt;br /&gt;
| years_active     = 2002–present&lt;br /&gt;
| label            = {{plainlist| &lt;br /&gt;
* Caption Records&lt;br /&gt;
* Weir Brothers Entertainment&lt;br /&gt;
* Suspicious Love Productions}}&lt;br /&gt;
| associated_acts  =&lt;br /&gt;
| website          = {{URL|www.heatheryoumans.com}}&lt;br /&gt;
| module =&lt;br /&gt;
&lt;br /&gt;
  {{Infobox person&lt;br /&gt;
    | education	= {{highlight|[[Master of Business Administration| MBA]]}}&lt;br /&gt;
    | alma_mater = {{highlight|[[California State University, Long Beach]] (2013)}}&lt;br /&gt;
  }}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color: moccasin&amp;quot;&amp;gt;&lt;br /&gt;
'''Heather Youmans''' is an American singer-songwriter, actress, tap dancer and journalist, her work has been featured in ''American Songwriter'' magazine,&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt; [[Forbes|''Forbes Women'']] and ''Parade'' magazine profiled her career and music in 2020.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans tap dancing on [[I Can See Your Voice (American TV series)|''I Can See Your Voice'']] episode 4 (FOX),&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; convinced the judges that she is a professional dancer,&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
a video depicting her delivery of the national anthem and dealing with acoustic delay effect of a large stadium (Oakland Coliseum) went viral on social media in 2021.&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Early life ==&lt;br /&gt;
Youmans began landing theatre roles at age ten, such as Amarylis in ''[[The Music Man]]'',  Marta in ''[[The Sound of Music]]'' in 2003,&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;/&amp;gt; as well as Nellie in ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]'' in 2004 at the [[Lawrence Welk|Welk]] Resort Theatre.&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;/&amp;gt;  In 2004, she won first place in the Del Mar TV Idol Contest, Junior Division, at age twelve.&amp;lt;ref name=DelMarTV/&amp;gt; On November 30, 2005, Youmans performed an opening solo at the [[UNICEF]] Snowflake Ball at the [[Beverly Wilshire Hotel|Regent Beverly Wilshire]]. Headlining acts for the evening included, [[Sting (musician)|Sting]], [[Chris Botti]] and [[Natalie Cole]].&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans attended [[Rancho Buena Vista High School]] and was active in the Associated Student Body, dance and drama programs. In 2009, she won the MACY Award for Highest Achievement and Best Supporting Vocal-Female for her role as Rusty in [[Footloose (musical)|''Footloose'']],&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;/&amp;gt; and Best Vocal Female in 2010 for her role as Jo in ''[[Little Women]]''.&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Education ==&lt;br /&gt;
Youmans holds a B.A. in Journalism and Mass Communication with a music minor (classical and jazz vocal at [[Bob Cole Conservatory of Music]]). She graduated [[magna cum laude]] from [[California State University, Long Beach]] (CSULB) in 2013, and graduated with an MBA at CSULB with an emphasis in marketing. During her undergraduate studies, Youmans created and hosted ''Heartbreakers: The Women of Rock'', a radio format program on [[Kbeach#22 West Radio|KBeach.org]] (2011-2013).  {{Highlight|While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Career ==&lt;br /&gt;
In 2005, Youmans earned a voice-over part, playing Becky Thatcher in Disney's ''[[Tom Sawyer's Island]]'' and the following year, won the part of Shana the Rock Star in a pre-production musical ''[[Teen Witch the Musical]]'' (2007).&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt; These accomplishments led to featured artist performances on the soundtrack for [[Moondance Alexander]] (2007).&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;/&amp;gt; Youmans' single, &amp;quot;Girl to Change Your World&amp;quot;, was a (2011) hit on [[Radio Disney]],&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; and it is one of the two Youmans songs included in the film ''Love by Design'' (2014), starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]].&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;The [[Teen Witch the Musical]] project was successful in its primary goal of reproducing the missing soundtrack for the Halloween classic film [[Teen Witch]] (1989).&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt; The musical stage-play never made it out of [[Workshop production|workshop]] and has yet to achieve the secondary goal of becoming a viable [[Broadway theatre|Broadway]] offering.&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;/&amp;gt; This association with Weir Brothers Productions led to additional soundtrack features in the films ''[[Moondance Alexander]]'' (2007), ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
While concurrently studying journalism and music, Youmans auditioned and stacked up credits in Southern California regional theater and wrote for national and regional newspapers on entertainment topics. &amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; She has produced and hosted an entertainment format radio show,&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; interviewed entertainment industry legends,&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt; and ran a marketing campaign for [[Jon MacLennan|Jon MacLennan's]] iBook, ''Melodic Expressions: The Art of the Line'' (2012).&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;/&amp;gt; She works as a communications professional in [[Los Angeles]].&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Theatre and live performances ===&lt;br /&gt;
&amp;lt;!--{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable sortable collapsed collapsible&amp;quot; style=&amp;quot;width:98%; margin-right:0; text-align:center;&amp;quot;&lt;br /&gt;
|+ Professional performances and theatre roles&lt;br /&gt;
|-&lt;br /&gt;
! Year&lt;br /&gt;
! Title&lt;br /&gt;
! Role&lt;br /&gt;
! Venue&lt;br /&gt;
! Director/Producer&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[The Music Man]]''||align=&amp;quot;center&amp;quot;|Amarylis||Welk Resort Theatre||Lewis Wilkenfeld&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[Sound of Music]]''||align=&amp;quot;center&amp;quot;|Marta||Welk Resort Theatre||Joshua Carr&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Nellie||Welk Resort Theatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie (musical)|Annie]]''||align=&amp;quot;center&amp;quot;|Orphan Sadie||La Mirada Theatre for the Performing Arts||McCoy Rigby Ent. Glenn Casale&lt;br /&gt;
|-&lt;br /&gt;
|2004||''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Jessie||Saddleback Civic Light Opera||Sheryl Donchey&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[To Kill a Mockingbird]]''||align=&amp;quot;center&amp;quot;|Scout||West Coast Ensemble|| {{sic|hide=y|C. Jaffe/R. Israel}}&lt;br /&gt;
|-&lt;br /&gt;
|2005||UNICEF Snowflake Ball||align=&amp;quot;center&amp;quot;|Opening Soloist||[[Beverly Wilshire Hotel|Regent Beverly Wilshire]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2005|| ''[[Tight Quarters]]''||align=&amp;quot;center&amp;quot;|Lauren||Whitefire Theatre||Jules Aaron&lt;br /&gt;
|-&lt;br /&gt;
|2005||Kodak Christmas||align=&amp;quot;center&amp;quot;|Featured Soloist||[[Dolby Theatre|Kodak Theatre]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2006||''[[Teen Witch the Musical]]''||align=&amp;quot;center&amp;quot;|Shana the Rock Star|| [[Workshop production|workshop]] ||Alana Lambros&lt;br /&gt;
|-&lt;br /&gt;
|2008||[[New Music Weekly]] Awards||align=&amp;quot;center&amp;quot;|Featured Soloist||Avalon Theatre||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2009||''[[42nd Street (musical)|42nd Street]]'' ||align=&amp;quot;center&amp;quot;|Ensemble|| Moonlight Amphitheatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2010|| ''Once Upon A Wedding''||align=&amp;quot;center&amp;quot;|Daisy||Bahia Resort-Dinner Theatre||Laughing Tree Prod.&lt;br /&gt;
|-&lt;br /&gt;
|2010-12|| ''Journey To The Lost Temple''||align=&amp;quot;center&amp;quot;|Pippin||[[Legoland]]-California||Shawn Griener&lt;br /&gt;
|-&lt;br /&gt;
|2012||''[[American Idol]]'' Season 11||align=&amp;quot;center&amp;quot;|Contestant|| [[USS Midway Museum]]|| [[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2012||''American Idol'' Season 11||align=&amp;quot;center&amp;quot;|Hollywood Week||[[Pasadena Civic Auditorium]]||[[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2019||Jason Robert Brown In Concert||align=&amp;quot;center&amp;quot;|Lead singer||Cabaret at the Merc||Gerald Sternbach &lt;br /&gt;
|-&lt;br /&gt;
|2019||Evita In Concert||align=&amp;quot;center&amp;quot;|Ensemble||PVPA||Richard Israel &lt;br /&gt;
|-&lt;br /&gt;
|2020||HAIR||align=&amp;quot;center&amp;quot;|Suzannah 1000-Year-Old Monk||LGBT Center LA||Kate Sullivan Jared Stein&lt;br /&gt;
|-&lt;br /&gt;
|2020||New Year's Eve, National Anthem Singer||align=&amp;quot;center&amp;quot;|Soloist||Staples Center||LA Kings &amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;/&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== American Idol ===&lt;br /&gt;
In 2012, Youmans performed &amp;quot;[[Some Kind of Wonderful (The Drifters song)|Some Kind of Wonderful]]&amp;quot; at the [[American Idol]] San Diego competition and won a golden ticket after a unanimous decision from the judges ([[Steven Tyler]], [[Jennifer Lopez]] and [[Randy Jackson]]), which advanced her to the [[American Idol (season 11)#Hollywood week and Vegas rounds|''Hollywood Week'']] competition.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  Youmans was eliminated during ''Hollywood Week'' in Season 11. She attributes the elimination to nerves and an ambitious music selection, [[Heart (band)|Heart]]’s &amp;quot;[[Crazy on You]]&amp;quot;.&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Recorded and broadcast ===&lt;br /&gt;
&amp;lt;s&amp;gt;In addition to performing in nationally televised commercials, Youmans has been involved in several cutting-edge media projects.&amp;lt;/s&amp;gt;  In 2005, Youmans played the part of Becky Thatcher in Disney's [[Tom Sawyer's Island]], a voice-over project.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  The performance was delivered via hand-held computers issued to visitors on [[Disneyland|Disneyland's]] Tom Sawyer's Island. A pilot project, titled &amp;quot;Available Light&amp;quot;, was one of the first to test Sony Blu-ray camera technology.&lt;br /&gt;
&lt;br /&gt;
==== Soundtracks ====&lt;br /&gt;
* ''[[Teen Witch the Musical]]'' (2007) original cast recording, Weir Brothers Entertainment.&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Moondance Alexander]]'' (2007) starring [[Kay Panabaker]], [[Don Johnson]] and [[Lori Loughlin]], [[20th Century Fox|20th Century Fox Home Entertainment]]&lt;br /&gt;
* ''[[Flicka 2]]'' (2010) starring [[Patrick Warburton]], [[Tammin Sursok]] and [[Clint Black]], [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011) starring [[Travis Turner]] and [[Donnelly Rhodes]],  [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''Love by Design'' (2014) starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]], Gold Line Prod. Int.&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Newport Beach FF&amp;quot;&amp;gt;{{cite web|title=Newport Beach Film Festival|url=https://www.imdb.com/event/ev0000491/2014?ref_=ttawd_ev_1|website=[[IMDb]]|accessdate=1 February 2015|date=2 February 2014|quote=First-time Filmmaker: Winner}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*''High Strung'' (2016) starring [[Keenan Kampa]], Nicholas Galitzine, [[Jane Seymour (actress)|Jane Seymour]], Riviera Films.&amp;lt;ref name=&amp;quot;High Strung&amp;quot;&amp;gt;{{cite web|title=''High Strung''|url=http://www.soundtrack.net/album/high-strung/|website=Soundtrack.net|accessdate=30 March 2016|date=8 April 2016}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Singles ====&lt;br /&gt;
&amp;lt;!--* &amp;quot;Never Gonna Be The Same Again&amp;quot; (2007)&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt;--&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World&amp;quot; (2011)&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World - The Remixes&amp;quot; (2011)&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;In My Arms&amp;quot; (2012)&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;My Kind of Trouble LIVE at the Recordium&amp;quot; (2019)&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Is It Just Me LIVE at the Recordium&amp;quot; (2019)&lt;br /&gt;
* &amp;quot;Shine&amp;quot; (2019)&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;You Made Me Hate Love Songs LIVE at YouTube Space&amp;quot; (2020)&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;A Little Closer To Happy&amp;quot; (2021)&lt;br /&gt;
* &amp;quot;Worth It&amp;quot; (2021)&lt;br /&gt;
&lt;br /&gt;
=== Journalism ===&lt;br /&gt;
Youmans writes about entertainment topics, specifically dance, music, theatre and film. Her Southern California beat includes covering venues, such as the [[Orange County Fair (California)|Orange County Fair]], the Newport Beach Jazz Festival, the [[Playboy Jazz Festival]], Sunset Jazz at Newport, the [[Hollywood Bowl]] and [[Segerstrom Center for the Arts]]. Her freelance position with [[Freedom Communications]] has afforded interviews with: [[George Lopez]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Drew Carey]] and [[Brooke Shields]],&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt;  Grammy Award-winning musicians [[David Sanborn]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Jeff Hamilton (drummer)|Jeff Hamilton]]&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;/&amp;gt; for the ''[[Orange County Register]]'', and her interview with Grammy nominee [[Brian McKnight]] was additionally published in the ''Los Angeles Register''.&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;/&amp;gt; Earlier interviews include, [[Chita Rivera]] for the ''[[Los Angeles Times]]''&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and interviews with [[Ann Wilson]]&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt; and  [[Martina McBride]]&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt; for the [[Los Angeles Times suburban sections|Los Angeles Times Media Group's]] ''Daily Pilot''.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;!--- See http://en.wikipedia.org/wiki/Wikipedia:Footnotes on how to create references using &amp;lt;ref&amp;gt;&amp;lt;/ref&amp;gt; tags which will then appear here automatically --&amp;gt;&lt;br /&gt;
{{Reflist|2| refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student gets golden ticket on 'American Idol'|url=http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|publisher=Daily 49er|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821011818/http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|archivedate=21 August 2014|date=24 January 2012}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;&amp;gt;{{cite web|author1=Giulia Nahmany|title=Giulia Nahmany Love by Design Premiere at Newport Beach Film Festival|url=https://www.youtube.com/watch?v=et6kw-AH0ZA|publisher=Giulia Nahmany YouTube Channel|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821015154/https://www.youtube.com/watch?v=et6kw-AH0ZA|archivedate=21 August 2014|date=20 May 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=TWTM&amp;gt;{{cite web|title=Teen Witch The Musical|url=http://weirbrothersentertainment.com/releases/teen-witch|publisher=Weir Brothers Entertainment|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822014020/http://weirbrothersentertainment.com/releases/teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;&amp;gt;{{cite web|title=Heather Youmans: Credits|url=http://www.allmusic.com/artist/heather-youmans-mn0000643210/credits|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=DelMarTV&amp;gt;{{cite web|title=Del Mar TV Idol Contest 2004|url=http://www.delmartv.com/idol/idol04.html|publisher=Del Mar TV Foundation|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822011402/http://www.delmartv.com/idol/idol04.html|archivedate=22 August 2014|date=10 October 2004|quote=Heather Youmans (1st place)}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;&amp;gt;{{cite web|title=Moondance Alexander Soundtrack|url=http://www.allmusic.com/album/moondance-alexander-mw0000493713|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;&amp;gt;{{cite web|title=2010 MACY Award Winners|url=http://macyawards.com/news/67-news/132-2010-macy-award-winners|publisher=MACY Awards|accessdate=22 August 2014|date=22 May 2010|url-status=dead|archiveurl=https://web.archive.org/web/20140903125715/http://macyawards.com/news/67-news/132-2010-macy-award-winners|archivedate=3 September 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;&amp;gt;{{cite web|title=2009 MACY Award Winners|url=http://macyawards.com/news/67-news/122-2009-macy-award-winners|accessdate=22 August 2014|url-status=dead|archiveurl=https://web.archive.org/web/20140822022545/http://macyawards.com/news/67-news/122-2009-macy-award-winners|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;&amp;gt;{{cite news|last1=Krugen|first1=Pam|title=Strong leads, chemistry make Welk's 'Get Your Gun' a winner|url=http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|newspaper=The San Diego Union-Tribune|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822042246/http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|archivedate=22 August 2014|date=3 September 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=Annie Get Your Gun|url=http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822044216/http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|archivedate=22 August 2014|year=2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=The Sound of Music|url=http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822045133/http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;&amp;gt;{{cite web|last1=Wood|first1=Jennifer M.|title=18 Fun Facts About 'Teen Witch'|url=http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|publisher=mental_floss|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822193830/http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;&amp;gt;{{cite web|title=Girl to Change Your World: Releases|url=http://www.allmusic.com/album/girl-to-change-your-world-mw0002363250/releases|website=[[AllMusic]]|accessdate=23 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - Girl To Change Your World|url=https://www.youtube.com/watch?v=lYU6FLZm9nQ|publisher=Caption Records YouTube Channel|accessdate=23 August 2014|date=7 February 2010}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student loses shot at 'Idol' fame|url=http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|publisher=Daily 49er|accessdate=23 August 2014|archiveurl=https://web.archive.org/web/20140823012031/http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|archivedate=23 August 2014|date=12 February 2012|quote=Still, she said she’s not ashamed of the footage. “Yeah, it sucks,” she said. “Everybody has a bad day. Yeah, it’s unfortunate that they showed me having a bad day, but what can you do?”}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Newport Jazz Festival goes down smooth|url=http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|newspaper=[[Orange County Register]]|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826092910/http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|archivedate=26 August 2014|date=29 May 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;&amp;gt;{{cite web|last1=Schnaidt|first1=Joe|title=Lighting The Way To Hope On Rodeo Drive|url=http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|publisher=Canyon News|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826100957/http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|archivedate=26 August 2014|date=4 December 2005|quote=BEVERLY HILLS — Wednesday, November 30 illuminated Rodeo Drive at Wilshire Boulevard for the annual holiday lighting ceremony with celebrities, sponsors and a ray of hope for children facing poverty, health risks and poor education.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 9 August 2011 | title = Marley &amp;amp; Me The Puppy Years music from and inspired by the motion picture | medium = MP3 &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B005JBC14S&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 4 May 2010 | title = Flicka 2 Original Motion Picture Soundtrack | medium = MP3/CD &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B003JE2EIU&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;JRAY Nom&amp;quot;&amp;gt;{{cite web|title=2009 JRAY Awards|url=http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|publisher=Fulerton Civic Light Opera|accessdate=28 August 2014|archiveurl=https://web.archive.org/web/20140828012354/http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|archivedate=28 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;&amp;gt;{{cite news|last1=Malik|first1=Abhay|title=Alumnus Jon MacLennan's iBook 'Melodic Expressions' advances guitar instruction |url=http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|newspaper=[[Daily Bruin]]|accessdate=8 August 2014|archiveurl=https://web.archive.org/web/20140808121825/http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|archivedate=8 August 2014|date=8 May 2012|quote=Heather Youmans, an “American Idol” contestant and freelance journalist, helped edit the iBook and has expressed excitement over the finished product as well.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;&amp;gt;{{cite web|last1=MacLennan|first1=Jon|title=In My Arms Jon MacLennan (feat. Heather Youmans)|url=https://www.youtube.com/watch?v=G8QJ5aToHxw|publisher=Jon MacLennan YouTube Channel|accessdate=28 August 2014|date=16 July 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - &amp;quot;Never Gonna Be the Same Again&amp;quot; Studio City Sound LIVE|url=https://www.youtube.com/watch?v=rYhEtU1EgUM|publisher=[[Studio City Sound]]|accessdate=28 August 2014|date=3 October 2011}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;iBook Press Release&amp;quot;&amp;gt;{{cite press release|title=Melodic Expressions: The Art of the Line|url=http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|website=www.heatheryoumansmusic.com/|publisher=Jon MacLennan|accessdate=28 August 2014|date=3 May 2013|archiveurl=https://web.archive.org/web/20140828221739/http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|archivedate=28 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Change in tempo for Playboy Jazz Festival&lt;br /&gt;
|url=http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=21 August 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829013440/http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Brooke Shields takes the helm of 'Chicago'&lt;br /&gt;
|url=http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=17 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829014021/http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Sunset Jazz series kicks off in Newport&lt;br /&gt;
|url=http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|accessdate=29 August 2014|newspaper=[[The Orange County Register]]|date=9 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829015132/http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;&amp;gt;{{cite web|title=Weir Brothers Entertainment: Albums|url=http://www.last.fm/label/Weir+Brothers+Entertainment/albums|website=last.fm|publisher=Weir Brothers Entertainment|accessdate=29 August 2014|archiveurl=https://web.archive.org/web/20140829023539/http://www.last.fm/label/Weir+Brothers+Entertainment/albums|archivedate=29 August 2014|year=2011|quote=Girl to Change Your World singles}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Music for most every taste|url=http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|accessdate=29 August 2014|newspaper=Daily Pilot|archiveurl=https://web.archive.org/web/20140829225029/http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=O.C. Fair gets some Heart|url=http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|accessdate=29 August 2014|newspaper=Daily Pilot|date=2 August 2012|archiveurl=https://web.archive.org/web/20140829224632/http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Youmans: Chita Rivera to perform hits from a storied career|url=http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|accessdate=29 August 2014|newspaper=[[The Los Angeles Times]]|date=10 November 2011|archiveurl=https://web.archive.org/web/20140829220754/http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival|url=http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|accessdate=29 August 2014|newspaper=[[Orange County Register]]|date=28 May 2014|archiveurl=https://web.archive.org/web/20140829215845/http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival&lt;br /&gt;
|publisher=Los Angeles Register|date=29 May 2014&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;&amp;gt;{{cite news|title='High Strung' Soundtrack Announced|url=http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|accessdate=3 May 2016|publisher=FILM MUSIC REPORTER|date=9 March 2016|archiveurl=https://web.archive.org/web/20160503051828/http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|archivedate=3 May 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;&amp;gt;{{cite web|author1=Kristyn Burtt|title=Heather Youmans at the Red Carpet Premiere for &amp;quot;High Strung&amp;quot; #HighStrungMovie|url=https://www.youtube.com/watch?v=YOlN1Zt4_I8|website=YouTube.com|publisher=Mingle Media TV|accessdate=3 May 2016|date=30 March 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=Meet This Week's She Rocks Spotlight Series Artists, Including Grammy-Nominated Headliner Mindi Abair | website=Parade | date=2020-04-22 | url=https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-url=https://web.archive.org/web/20200427002753/https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-date=2020-04-27 | url-status=dead | access-date=2020-04-27}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;&amp;gt;{{cite web | title=Daily Discovery: Heather Youmans, &amp;quot;Shine&amp;quot; « American Songwriter | website=American Songwriter | date=2019-11-13 | url=https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200316151706/https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-date=2020-03-16 | url-status=live | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;&amp;gt;{{cite web | last=Buttonow | first=Leslie | title=Front and Center: Heather Youmans, PR &amp;amp; Communications Manager, Fender Musical Instruments Corporation – the WiMN - The Women's International Music Network | website=thewimn.com | date=2019-05-01 | url=https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-url=https://web.archive.org/web/20200426083920/https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-date=2020-04-26 | url-status=unfit | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;&amp;gt;{{cite web | title=Premiere: Singer-Songwriter Heather Youmans Reveals Latest Single &amp;quot;Shine&amp;quot; + Music Video | website=Elicit Magazine | date=2019-10-18 | url=http://www.elicitmagazine.com/heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200428035459/http://www.elicitmagazine.com/heather-youmans-shine/ | archive-date=2020-04-28 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;&amp;gt;{{cite web |url= https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble |title= Heather Youmans Gets Honest And Real In &amp;quot;My Kind Of Trouble&amp;quot; |date= 2019-08-13 |website= BuzzMusic |access-date= 2020-04-27 |archive-date= 2020-04-28 |archive-url= https://web.archive.org/web/20200428034603/https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;&amp;gt;{{cite web | title=Emerging Headliner: Heather Youmans | website=Headliner Magazine | date=2020-02-25 | url=https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-url=https://web.archive.org/web/20200225061919/https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-date=2020-02-25 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;&amp;gt;{{cite web | last=Brunner | first=Jeryl | title=Why This Successful Singer-Songwriter Won't Give Up Her Day Job | website=Forbes | date=2020-09-30 | url=https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/ | access-date=2020-10-01 |archive-url=https://web.archive.org/web/20201001011624if_/https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/?fbclid=IwAR3q2uGBNQP6MO-2pr57Mopo6AM0b_lktTAEhvQKHD6XhTNH5jSQoOQpiT4#5d2b64a67b7e|archive-date=2020-10-01}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=You're Gonna Feel the Joy of Heather Youmans' Video for 'Shine' | website=Parade: Entertainment, Recipes, Health, Life, Holidays | date=2020-10-06 | url=https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-url=https://web.archive.org/web/20201007032747/https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-date=2020-10-07 | url-status=dead | access-date=2020-10-07}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;&amp;gt;{{cite web | title=Heather Youmans Releases 'Shine' As Love Letter To Younger Self | website=Headliner Magazine | url=https://headlinermagazine.net/blog/heather-youmans-releases-shine-as-love-letter-to-younger-self.html | access-date=2020-10-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;&amp;gt;{{cite AV media  | people = Heather Youmans  | date = 2020-10-28  | title = The Tap Dancer Performs &amp;quot;Youngblood&amp;quot; By 5 Seconds Of Summer - Season 1 Ep. 4 - I CAN SEE YOUR VOICE  | language = en  | url = https://www.youtube.com/watch?v=Z5rghUxRero  | access-date = 2020-10-31  | publisher = FOX }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot;&amp;gt;{{cite web | title=Column: Singer from Vista stuns panel in new Fox reality series | website=San Diego Union-Tribune | date=2020-11-14 | url=https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-url=https://web.archive.org/web/20201118211051/https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-date=2020-11-18 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot;&amp;gt;{{cite web | last=Upadhyay | first=Nayna | title=EXCLUSIVE - Heather Youmans says 'I Can See Your Voice' is all about finding 'singers that America needs to know' | website=MEAWW | date=2020-11-16 | url=https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-url=https://web.archive.org/web/20201116192203/https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-date=2020-11-16 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.heatheryoumans.com Official website]&lt;br /&gt;
* {{YouTube|user=HeatherYoumans|Heather Youmans}}&lt;br /&gt;
* {{Facebook|HeatherYoumansOfficial|Heather Youmans}}&lt;br /&gt;
&amp;lt;!--* {{itunes|us/artist/heather-youmans/id219552589|Heather Youmans}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Youmans, Heather}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Categories &lt;br /&gt;
[[Category:Articles created via the Article Wizard]]---&amp;gt;&lt;br /&gt;
[[Category:1992 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:American stage actresses]]&lt;br /&gt;
[[Category:American women singer-songwriters]]&lt;br /&gt;
[[Category:American musical theatre actresses]]&lt;br /&gt;
[[Category:21st-century American actresses]]&lt;br /&gt;
[[Category:21st-century American singers]]&lt;br /&gt;
[[Category:Musicians from San Diego]]&lt;br /&gt;
[[Category:Musicians from Vista, California]]&lt;br /&gt;
[[Category:American music journalists]]&lt;br /&gt;
[[Category:American women journalists]]&lt;br /&gt;
[[Category:Journalists from California]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--[[Category:American film actresses]]&lt;br /&gt;
[[Category:American television actresses]]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Women writers about music]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Singer-songwriters from California]]&lt;br /&gt;
{{authority control}}&lt;br /&gt;
[[Category:21st-century American women singers]]&lt;br /&gt;
[[Category:21st-century American journalists]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6276</id>
		<title>Draft: Heather Youmans</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6276"/>
		<updated>2024-02-21T04:40:30Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: /* Recorded and broadcast */ strike&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{short description|American singer-songwriter}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox musical artist&lt;br /&gt;
| name             = Heather Youmans&lt;br /&gt;
| image            = File:Heather_Youmans.jpg&lt;br /&gt;
| image_size       =&lt;br /&gt;
| landscape        = &amp;lt;!-- yes, if wide image, otherwise leave blank --&amp;gt;&lt;br /&gt;
| alt              = Heather Youmans sings at 2011 Relay For Life in San Diego, California&lt;br /&gt;
| caption          =&lt;br /&gt;
| birth_name       = Heather Anne Youmans&lt;br /&gt;
| native_name      =&lt;br /&gt;
| native_name_lang =&lt;br /&gt;
| alias            =&lt;br /&gt;
| birth_date       = {{birth date and age|1992|05|16}}&lt;br /&gt;
| birth_place      = [[Vista, California]], U.S.&lt;br /&gt;
| origin           =&lt;br /&gt;
| death_date       = &amp;lt;!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) --&amp;gt;&lt;br /&gt;
| death_place      =&lt;br /&gt;
| genre            = Rock, pop, country, soul&lt;br /&gt;
| occupation       = Singer-songwriter, actor, journalist&lt;br /&gt;
| instrument       = vocals, bass&lt;br /&gt;
| years_active     = 2002–present&lt;br /&gt;
| label            = {{plainlist| &lt;br /&gt;
* Caption Records&lt;br /&gt;
* Weir Brothers Entertainment&lt;br /&gt;
* Suspicious Love Productions}}&lt;br /&gt;
| associated_acts  =&lt;br /&gt;
| website          = {{URL|www.heatheryoumans.com}}&lt;br /&gt;
| module =&lt;br /&gt;
&lt;br /&gt;
  {{Infobox person&lt;br /&gt;
    | education	= {{highlight|[[Master of Business Administration| MBA]]}}&lt;br /&gt;
    | alma_mater = {{highlight|[[California State University, Long Beach]] (2013)}}&lt;br /&gt;
  }}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color: moccasin&amp;quot;&amp;gt;&lt;br /&gt;
'''Heather Youmans''' is an American singer-songwriter, actress, tap dancer and journalist, her work has been featured in ''American Songwriter'' magazine,&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt; [[Forbes|''Forbes Women'']] and ''Parade'' magazine profiled her career and music in 2020.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans tap dancing on [[I Can See Your Voice (American TV series)|''I Can See Your Voice'']] episode 4 (FOX),&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; convinced the judges that she is a professional dancer,&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
a video depicting her delivery of the national anthem and dealing with acoustic delay effect of a large stadium (Oakland Coliseum) went viral on social media in 2021.&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Early life ==&lt;br /&gt;
Youmans began landing theatre roles at age ten, such as Amarylis in ''[[The Music Man]]'',  Marta in ''[[The Sound of Music]]'' in 2003,&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;/&amp;gt; as well as Nellie in ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]'' in 2004 at the [[Lawrence Welk|Welk]] Resort Theatre.&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;/&amp;gt;  In 2004, she won first place in the Del Mar TV Idol Contest, Junior Division, at age twelve.&amp;lt;ref name=DelMarTV/&amp;gt; On November 30, 2005, Youmans performed an opening solo at the [[UNICEF]] Snowflake Ball at the [[Beverly Wilshire Hotel|Regent Beverly Wilshire]]. Headlining acts for the evening included, [[Sting (musician)|Sting]], [[Chris Botti]] and [[Natalie Cole]].&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans attended [[Rancho Buena Vista High School]] and was active in the Associated Student Body, dance and drama programs. In 2009, she won the MACY Award for Highest Achievement and Best Supporting Vocal-Female for her role as Rusty in [[Footloose (musical)|''Footloose'']],&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;/&amp;gt; and Best Vocal Female in 2010 for her role as Jo in ''[[Little Women]]''.&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Education ==&lt;br /&gt;
Youmans holds a B.A. in Journalism and Mass Communication with a music minor (classical and jazz vocal at [[Bob Cole Conservatory of Music]]). She graduated [[magna cum laude]] from [[California State University, Long Beach]] (CSULB) in 2013, and graduated with an MBA at CSULB with an emphasis in marketing. During her undergraduate studies, Youmans created and hosted ''Heartbreakers: The Women of Rock'', a radio format program on [[Kbeach#22 West Radio|KBeach.org]] (2011-2013).  {{Highlight|While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Career ==&lt;br /&gt;
In 2005, Youmans earned a voice-over part, playing Becky Thatcher in Disney's ''[[Tom Sawyer's Island]]'' and the following year, won the part of Shana the Rock Star in a pre-production musical ''[[Teen Witch the Musical]]'' (2007).&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt; These accomplishments led to featured artist performances on the soundtrack for [[Moondance Alexander]] (2007).&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;/&amp;gt; Youmans' single, &amp;quot;Girl to Change Your World&amp;quot;, was a (2011) hit on [[Radio Disney]],&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; and it is one of the two Youmans songs included in the film ''Love by Design'' (2014), starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]].&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The [[Teen Witch the Musical]] project was successful in its primary goal of reproducing the missing soundtrack for the Halloween classic film [[Teen Witch]] (1989).&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt; The musical stage-play never made it out of [[Workshop production|workshop]] and has yet to achieve the secondary goal of becoming a viable [[Broadway theatre|Broadway]] offering.&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;/&amp;gt; This association with Weir Brothers Productions led to additional soundtrack features in the films ''[[Moondance Alexander]]'' (2007), ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
While concurrently studying journalism and music, Youmans auditioned and stacked up credits in Southern California regional theater and wrote for national and regional newspapers on entertainment topics. &amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; She has produced and hosted an entertainment format radio show,&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; interviewed entertainment industry legends,&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt; and ran a marketing campaign for [[Jon MacLennan|Jon MacLennan's]] iBook, ''Melodic Expressions: The Art of the Line'' (2012).&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;/&amp;gt; She works as a communications professional in [[Los Angeles]].&lt;br /&gt;
&lt;br /&gt;
=== Theatre and live performances ===&lt;br /&gt;
&amp;lt;!--{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable sortable collapsed collapsible&amp;quot; style=&amp;quot;width:98%; margin-right:0; text-align:center;&amp;quot;&lt;br /&gt;
|+ Professional performances and theatre roles&lt;br /&gt;
|-&lt;br /&gt;
! Year&lt;br /&gt;
! Title&lt;br /&gt;
! Role&lt;br /&gt;
! Venue&lt;br /&gt;
! Director/Producer&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[The Music Man]]''||align=&amp;quot;center&amp;quot;|Amarylis||Welk Resort Theatre||Lewis Wilkenfeld&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[Sound of Music]]''||align=&amp;quot;center&amp;quot;|Marta||Welk Resort Theatre||Joshua Carr&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Nellie||Welk Resort Theatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie (musical)|Annie]]''||align=&amp;quot;center&amp;quot;|Orphan Sadie||La Mirada Theatre for the Performing Arts||McCoy Rigby Ent. Glenn Casale&lt;br /&gt;
|-&lt;br /&gt;
|2004||''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Jessie||Saddleback Civic Light Opera||Sheryl Donchey&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[To Kill a Mockingbird]]''||align=&amp;quot;center&amp;quot;|Scout||West Coast Ensemble|| {{sic|hide=y|C. Jaffe/R. Israel}}&lt;br /&gt;
|-&lt;br /&gt;
|2005||UNICEF Snowflake Ball||align=&amp;quot;center&amp;quot;|Opening Soloist||[[Beverly Wilshire Hotel|Regent Beverly Wilshire]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2005|| ''[[Tight Quarters]]''||align=&amp;quot;center&amp;quot;|Lauren||Whitefire Theatre||Jules Aaron&lt;br /&gt;
|-&lt;br /&gt;
|2005||Kodak Christmas||align=&amp;quot;center&amp;quot;|Featured Soloist||[[Dolby Theatre|Kodak Theatre]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2006||''[[Teen Witch the Musical]]''||align=&amp;quot;center&amp;quot;|Shana the Rock Star|| [[Workshop production|workshop]] ||Alana Lambros&lt;br /&gt;
|-&lt;br /&gt;
|2008||[[New Music Weekly]] Awards||align=&amp;quot;center&amp;quot;|Featured Soloist||Avalon Theatre||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2009||''[[42nd Street (musical)|42nd Street]]'' ||align=&amp;quot;center&amp;quot;|Ensemble|| Moonlight Amphitheatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2010|| ''Once Upon A Wedding''||align=&amp;quot;center&amp;quot;|Daisy||Bahia Resort-Dinner Theatre||Laughing Tree Prod.&lt;br /&gt;
|-&lt;br /&gt;
|2010-12|| ''Journey To The Lost Temple''||align=&amp;quot;center&amp;quot;|Pippin||[[Legoland]]-California||Shawn Griener&lt;br /&gt;
|-&lt;br /&gt;
|2012||''[[American Idol]]'' Season 11||align=&amp;quot;center&amp;quot;|Contestant|| [[USS Midway Museum]]|| [[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2012||''American Idol'' Season 11||align=&amp;quot;center&amp;quot;|Hollywood Week||[[Pasadena Civic Auditorium]]||[[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2019||Jason Robert Brown In Concert||align=&amp;quot;center&amp;quot;|Lead singer||Cabaret at the Merc||Gerald Sternbach &lt;br /&gt;
|-&lt;br /&gt;
|2019||Evita In Concert||align=&amp;quot;center&amp;quot;|Ensemble||PVPA||Richard Israel &lt;br /&gt;
|-&lt;br /&gt;
|2020||HAIR||align=&amp;quot;center&amp;quot;|Suzannah 1000-Year-Old Monk||LGBT Center LA||Kate Sullivan Jared Stein&lt;br /&gt;
|-&lt;br /&gt;
|2020||New Year's Eve, National Anthem Singer||align=&amp;quot;center&amp;quot;|Soloist||Staples Center||LA Kings &amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;/&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== American Idol ===&lt;br /&gt;
In 2012, Youmans performed &amp;quot;[[Some Kind of Wonderful (The Drifters song)|Some Kind of Wonderful]]&amp;quot; at the [[American Idol]] San Diego competition and won a golden ticket after a unanimous decision from the judges ([[Steven Tyler]], [[Jennifer Lopez]] and [[Randy Jackson]]), which advanced her to the [[American Idol (season 11)#Hollywood week and Vegas rounds|''Hollywood Week'']] competition.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  Youmans was eliminated during ''Hollywood Week'' in Season 11. She attributes the elimination to nerves and an ambitious music selection, [[Heart (band)|Heart]]’s &amp;quot;[[Crazy on You]]&amp;quot;.&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Recorded and broadcast ===&lt;br /&gt;
&amp;lt;s&amp;gt;In addition to performing in nationally televised commercials, Youmans has been involved in several cutting-edge media projects.&amp;lt;/s&amp;gt;  In 2005, Youmans played the part of Becky Thatcher in Disney's [[Tom Sawyer's Island]], a voice-over project.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  The performance was delivered via hand-held computers issued to visitors on [[Disneyland|Disneyland's]] Tom Sawyer's Island. A pilot project, titled &amp;quot;Available Light&amp;quot;, was one of the first to test Sony Blu-ray camera technology.&lt;br /&gt;
&lt;br /&gt;
==== Soundtracks ====&lt;br /&gt;
* ''[[Teen Witch the Musical]]'' (2007) original cast recording, Weir Brothers Entertainment.&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Moondance Alexander]]'' (2007) starring [[Kay Panabaker]], [[Don Johnson]] and [[Lori Loughlin]], [[20th Century Fox|20th Century Fox Home Entertainment]]&lt;br /&gt;
* ''[[Flicka 2]]'' (2010) starring [[Patrick Warburton]], [[Tammin Sursok]] and [[Clint Black]], [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011) starring [[Travis Turner]] and [[Donnelly Rhodes]],  [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''Love by Design'' (2014) starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]], Gold Line Prod. Int.&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Newport Beach FF&amp;quot;&amp;gt;{{cite web|title=Newport Beach Film Festival|url=https://www.imdb.com/event/ev0000491/2014?ref_=ttawd_ev_1|website=[[IMDb]]|accessdate=1 February 2015|date=2 February 2014|quote=First-time Filmmaker: Winner}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*''High Strung'' (2016) starring [[Keenan Kampa]], Nicholas Galitzine, [[Jane Seymour (actress)|Jane Seymour]], Riviera Films.&amp;lt;ref name=&amp;quot;High Strung&amp;quot;&amp;gt;{{cite web|title=''High Strung''|url=http://www.soundtrack.net/album/high-strung/|website=Soundtrack.net|accessdate=30 March 2016|date=8 April 2016}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Singles ====&lt;br /&gt;
&amp;lt;!--* &amp;quot;Never Gonna Be The Same Again&amp;quot; (2007)&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt;--&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World&amp;quot; (2011)&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World - The Remixes&amp;quot; (2011)&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;In My Arms&amp;quot; (2012)&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;My Kind of Trouble LIVE at the Recordium&amp;quot; (2019)&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Is It Just Me LIVE at the Recordium&amp;quot; (2019)&lt;br /&gt;
* &amp;quot;Shine&amp;quot; (2019)&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;You Made Me Hate Love Songs LIVE at YouTube Space&amp;quot; (2020)&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;A Little Closer To Happy&amp;quot; (2021)&lt;br /&gt;
* &amp;quot;Worth It&amp;quot; (2021)&lt;br /&gt;
&lt;br /&gt;
=== Journalism ===&lt;br /&gt;
Youmans writes about entertainment topics, specifically dance, music, theatre and film. Her Southern California beat includes covering venues, such as the [[Orange County Fair (California)|Orange County Fair]], the Newport Beach Jazz Festival, the [[Playboy Jazz Festival]], Sunset Jazz at Newport, the [[Hollywood Bowl]] and [[Segerstrom Center for the Arts]]. Her freelance position with [[Freedom Communications]] has afforded interviews with: [[George Lopez]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Drew Carey]] and [[Brooke Shields]],&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt;  Grammy Award-winning musicians [[David Sanborn]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Jeff Hamilton (drummer)|Jeff Hamilton]]&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;/&amp;gt; for the ''[[Orange County Register]]'', and her interview with Grammy nominee [[Brian McKnight]] was additionally published in the ''Los Angeles Register''.&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;/&amp;gt; Earlier interviews include, [[Chita Rivera]] for the ''[[Los Angeles Times]]''&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and interviews with [[Ann Wilson]]&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt; and  [[Martina McBride]]&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt; for the [[Los Angeles Times suburban sections|Los Angeles Times Media Group's]] ''Daily Pilot''.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;!--- See http://en.wikipedia.org/wiki/Wikipedia:Footnotes on how to create references using &amp;lt;ref&amp;gt;&amp;lt;/ref&amp;gt; tags which will then appear here automatically --&amp;gt;&lt;br /&gt;
{{Reflist|2| refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student gets golden ticket on 'American Idol'|url=http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|publisher=Daily 49er|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821011818/http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|archivedate=21 August 2014|date=24 January 2012}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;&amp;gt;{{cite web|author1=Giulia Nahmany|title=Giulia Nahmany Love by Design Premiere at Newport Beach Film Festival|url=https://www.youtube.com/watch?v=et6kw-AH0ZA|publisher=Giulia Nahmany YouTube Channel|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821015154/https://www.youtube.com/watch?v=et6kw-AH0ZA|archivedate=21 August 2014|date=20 May 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=TWTM&amp;gt;{{cite web|title=Teen Witch The Musical|url=http://weirbrothersentertainment.com/releases/teen-witch|publisher=Weir Brothers Entertainment|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822014020/http://weirbrothersentertainment.com/releases/teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;&amp;gt;{{cite web|title=Heather Youmans: Credits|url=http://www.allmusic.com/artist/heather-youmans-mn0000643210/credits|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=DelMarTV&amp;gt;{{cite web|title=Del Mar TV Idol Contest 2004|url=http://www.delmartv.com/idol/idol04.html|publisher=Del Mar TV Foundation|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822011402/http://www.delmartv.com/idol/idol04.html|archivedate=22 August 2014|date=10 October 2004|quote=Heather Youmans (1st place)}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;&amp;gt;{{cite web|title=Moondance Alexander Soundtrack|url=http://www.allmusic.com/album/moondance-alexander-mw0000493713|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;&amp;gt;{{cite web|title=2010 MACY Award Winners|url=http://macyawards.com/news/67-news/132-2010-macy-award-winners|publisher=MACY Awards|accessdate=22 August 2014|date=22 May 2010|url-status=dead|archiveurl=https://web.archive.org/web/20140903125715/http://macyawards.com/news/67-news/132-2010-macy-award-winners|archivedate=3 September 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;&amp;gt;{{cite web|title=2009 MACY Award Winners|url=http://macyawards.com/news/67-news/122-2009-macy-award-winners|accessdate=22 August 2014|url-status=dead|archiveurl=https://web.archive.org/web/20140822022545/http://macyawards.com/news/67-news/122-2009-macy-award-winners|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;&amp;gt;{{cite news|last1=Krugen|first1=Pam|title=Strong leads, chemistry make Welk's 'Get Your Gun' a winner|url=http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|newspaper=The San Diego Union-Tribune|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822042246/http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|archivedate=22 August 2014|date=3 September 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=Annie Get Your Gun|url=http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822044216/http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|archivedate=22 August 2014|year=2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=The Sound of Music|url=http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822045133/http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;&amp;gt;{{cite web|last1=Wood|first1=Jennifer M.|title=18 Fun Facts About 'Teen Witch'|url=http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|publisher=mental_floss|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822193830/http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;&amp;gt;{{cite web|title=Girl to Change Your World: Releases|url=http://www.allmusic.com/album/girl-to-change-your-world-mw0002363250/releases|website=[[AllMusic]]|accessdate=23 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - Girl To Change Your World|url=https://www.youtube.com/watch?v=lYU6FLZm9nQ|publisher=Caption Records YouTube Channel|accessdate=23 August 2014|date=7 February 2010}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student loses shot at 'Idol' fame|url=http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|publisher=Daily 49er|accessdate=23 August 2014|archiveurl=https://web.archive.org/web/20140823012031/http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|archivedate=23 August 2014|date=12 February 2012|quote=Still, she said she’s not ashamed of the footage. “Yeah, it sucks,” she said. “Everybody has a bad day. Yeah, it’s unfortunate that they showed me having a bad day, but what can you do?”}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Newport Jazz Festival goes down smooth|url=http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|newspaper=[[Orange County Register]]|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826092910/http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|archivedate=26 August 2014|date=29 May 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;&amp;gt;{{cite web|last1=Schnaidt|first1=Joe|title=Lighting The Way To Hope On Rodeo Drive|url=http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|publisher=Canyon News|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826100957/http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|archivedate=26 August 2014|date=4 December 2005|quote=BEVERLY HILLS — Wednesday, November 30 illuminated Rodeo Drive at Wilshire Boulevard for the annual holiday lighting ceremony with celebrities, sponsors and a ray of hope for children facing poverty, health risks and poor education.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 9 August 2011 | title = Marley &amp;amp; Me The Puppy Years music from and inspired by the motion picture | medium = MP3 &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B005JBC14S&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 4 May 2010 | title = Flicka 2 Original Motion Picture Soundtrack | medium = MP3/CD &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B003JE2EIU&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;JRAY Nom&amp;quot;&amp;gt;{{cite web|title=2009 JRAY Awards|url=http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|publisher=Fulerton Civic Light Opera|accessdate=28 August 2014|archiveurl=https://web.archive.org/web/20140828012354/http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|archivedate=28 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;&amp;gt;{{cite news|last1=Malik|first1=Abhay|title=Alumnus Jon MacLennan's iBook 'Melodic Expressions' advances guitar instruction |url=http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|newspaper=[[Daily Bruin]]|accessdate=8 August 2014|archiveurl=https://web.archive.org/web/20140808121825/http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|archivedate=8 August 2014|date=8 May 2012|quote=Heather Youmans, an “American Idol” contestant and freelance journalist, helped edit the iBook and has expressed excitement over the finished product as well.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;&amp;gt;{{cite web|last1=MacLennan|first1=Jon|title=In My Arms Jon MacLennan (feat. Heather Youmans)|url=https://www.youtube.com/watch?v=G8QJ5aToHxw|publisher=Jon MacLennan YouTube Channel|accessdate=28 August 2014|date=16 July 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - &amp;quot;Never Gonna Be the Same Again&amp;quot; Studio City Sound LIVE|url=https://www.youtube.com/watch?v=rYhEtU1EgUM|publisher=[[Studio City Sound]]|accessdate=28 August 2014|date=3 October 2011}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;iBook Press Release&amp;quot;&amp;gt;{{cite press release|title=Melodic Expressions: The Art of the Line|url=http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|website=www.heatheryoumansmusic.com/|publisher=Jon MacLennan|accessdate=28 August 2014|date=3 May 2013|archiveurl=https://web.archive.org/web/20140828221739/http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|archivedate=28 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Change in tempo for Playboy Jazz Festival&lt;br /&gt;
|url=http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=21 August 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829013440/http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Brooke Shields takes the helm of 'Chicago'&lt;br /&gt;
|url=http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=17 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829014021/http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Sunset Jazz series kicks off in Newport&lt;br /&gt;
|url=http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|accessdate=29 August 2014|newspaper=[[The Orange County Register]]|date=9 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829015132/http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;&amp;gt;{{cite web|title=Weir Brothers Entertainment: Albums|url=http://www.last.fm/label/Weir+Brothers+Entertainment/albums|website=last.fm|publisher=Weir Brothers Entertainment|accessdate=29 August 2014|archiveurl=https://web.archive.org/web/20140829023539/http://www.last.fm/label/Weir+Brothers+Entertainment/albums|archivedate=29 August 2014|year=2011|quote=Girl to Change Your World singles}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Music for most every taste|url=http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|accessdate=29 August 2014|newspaper=Daily Pilot|archiveurl=https://web.archive.org/web/20140829225029/http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=O.C. Fair gets some Heart|url=http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|accessdate=29 August 2014|newspaper=Daily Pilot|date=2 August 2012|archiveurl=https://web.archive.org/web/20140829224632/http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Youmans: Chita Rivera to perform hits from a storied career|url=http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|accessdate=29 August 2014|newspaper=[[The Los Angeles Times]]|date=10 November 2011|archiveurl=https://web.archive.org/web/20140829220754/http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival|url=http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|accessdate=29 August 2014|newspaper=[[Orange County Register]]|date=28 May 2014|archiveurl=https://web.archive.org/web/20140829215845/http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival&lt;br /&gt;
|publisher=Los Angeles Register|date=29 May 2014&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;&amp;gt;{{cite news|title='High Strung' Soundtrack Announced|url=http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|accessdate=3 May 2016|publisher=FILM MUSIC REPORTER|date=9 March 2016|archiveurl=https://web.archive.org/web/20160503051828/http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|archivedate=3 May 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;&amp;gt;{{cite web|author1=Kristyn Burtt|title=Heather Youmans at the Red Carpet Premiere for &amp;quot;High Strung&amp;quot; #HighStrungMovie|url=https://www.youtube.com/watch?v=YOlN1Zt4_I8|website=YouTube.com|publisher=Mingle Media TV|accessdate=3 May 2016|date=30 March 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=Meet This Week's She Rocks Spotlight Series Artists, Including Grammy-Nominated Headliner Mindi Abair | website=Parade | date=2020-04-22 | url=https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-url=https://web.archive.org/web/20200427002753/https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-date=2020-04-27 | url-status=dead | access-date=2020-04-27}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;&amp;gt;{{cite web | title=Daily Discovery: Heather Youmans, &amp;quot;Shine&amp;quot; « American Songwriter | website=American Songwriter | date=2019-11-13 | url=https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200316151706/https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-date=2020-03-16 | url-status=live | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;&amp;gt;{{cite web | last=Buttonow | first=Leslie | title=Front and Center: Heather Youmans, PR &amp;amp; Communications Manager, Fender Musical Instruments Corporation – the WiMN - The Women's International Music Network | website=thewimn.com | date=2019-05-01 | url=https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-url=https://web.archive.org/web/20200426083920/https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-date=2020-04-26 | url-status=unfit | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;&amp;gt;{{cite web | title=Premiere: Singer-Songwriter Heather Youmans Reveals Latest Single &amp;quot;Shine&amp;quot; + Music Video | website=Elicit Magazine | date=2019-10-18 | url=http://www.elicitmagazine.com/heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200428035459/http://www.elicitmagazine.com/heather-youmans-shine/ | archive-date=2020-04-28 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;&amp;gt;{{cite web |url= https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble |title= Heather Youmans Gets Honest And Real In &amp;quot;My Kind Of Trouble&amp;quot; |date= 2019-08-13 |website= BuzzMusic |access-date= 2020-04-27 |archive-date= 2020-04-28 |archive-url= https://web.archive.org/web/20200428034603/https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;&amp;gt;{{cite web | title=Emerging Headliner: Heather Youmans | website=Headliner Magazine | date=2020-02-25 | url=https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-url=https://web.archive.org/web/20200225061919/https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-date=2020-02-25 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;&amp;gt;{{cite web | last=Brunner | first=Jeryl | title=Why This Successful Singer-Songwriter Won't Give Up Her Day Job | website=Forbes | date=2020-09-30 | url=https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/ | access-date=2020-10-01 |archive-url=https://web.archive.org/web/20201001011624if_/https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/?fbclid=IwAR3q2uGBNQP6MO-2pr57Mopo6AM0b_lktTAEhvQKHD6XhTNH5jSQoOQpiT4#5d2b64a67b7e|archive-date=2020-10-01}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=You're Gonna Feel the Joy of Heather Youmans' Video for 'Shine' | website=Parade: Entertainment, Recipes, Health, Life, Holidays | date=2020-10-06 | url=https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-url=https://web.archive.org/web/20201007032747/https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-date=2020-10-07 | url-status=dead | access-date=2020-10-07}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;&amp;gt;{{cite web | title=Heather Youmans Releases 'Shine' As Love Letter To Younger Self | website=Headliner Magazine | url=https://headlinermagazine.net/blog/heather-youmans-releases-shine-as-love-letter-to-younger-self.html | access-date=2020-10-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;&amp;gt;{{cite AV media  | people = Heather Youmans  | date = 2020-10-28  | title = The Tap Dancer Performs &amp;quot;Youngblood&amp;quot; By 5 Seconds Of Summer - Season 1 Ep. 4 - I CAN SEE YOUR VOICE  | language = en  | url = https://www.youtube.com/watch?v=Z5rghUxRero  | access-date = 2020-10-31  | publisher = FOX }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot;&amp;gt;{{cite web | title=Column: Singer from Vista stuns panel in new Fox reality series | website=San Diego Union-Tribune | date=2020-11-14 | url=https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-url=https://web.archive.org/web/20201118211051/https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-date=2020-11-18 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot;&amp;gt;{{cite web | last=Upadhyay | first=Nayna | title=EXCLUSIVE - Heather Youmans says 'I Can See Your Voice' is all about finding 'singers that America needs to know' | website=MEAWW | date=2020-11-16 | url=https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-url=https://web.archive.org/web/20201116192203/https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-date=2020-11-16 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.heatheryoumans.com Official website]&lt;br /&gt;
* {{YouTube|user=HeatherYoumans|Heather Youmans}}&lt;br /&gt;
* {{Facebook|HeatherYoumansOfficial|Heather Youmans}}&lt;br /&gt;
&amp;lt;!--* {{itunes|us/artist/heather-youmans/id219552589|Heather Youmans}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Youmans, Heather}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Categories &lt;br /&gt;
[[Category:Articles created via the Article Wizard]]---&amp;gt;&lt;br /&gt;
[[Category:1992 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:American stage actresses]]&lt;br /&gt;
[[Category:American women singer-songwriters]]&lt;br /&gt;
[[Category:American musical theatre actresses]]&lt;br /&gt;
[[Category:21st-century American actresses]]&lt;br /&gt;
[[Category:21st-century American singers]]&lt;br /&gt;
[[Category:Musicians from San Diego]]&lt;br /&gt;
[[Category:Musicians from Vista, California]]&lt;br /&gt;
[[Category:American music journalists]]&lt;br /&gt;
[[Category:American women journalists]]&lt;br /&gt;
[[Category:Journalists from California]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--[[Category:American film actresses]]&lt;br /&gt;
[[Category:American television actresses]]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Women writers about music]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Singer-songwriters from California]]&lt;br /&gt;
{{authority control}}&lt;br /&gt;
[[Category:21st-century American women singers]]&lt;br /&gt;
[[Category:21st-century American journalists]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6275</id>
		<title>Draft: Heather Youmans</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6275"/>
		<updated>2024-02-21T04:36:33Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: /* Theatre and live performances */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{short description|American singer-songwriter}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox musical artist&lt;br /&gt;
| name             = Heather Youmans&lt;br /&gt;
| image            = File:Heather_Youmans.jpg&lt;br /&gt;
| image_size       =&lt;br /&gt;
| landscape        = &amp;lt;!-- yes, if wide image, otherwise leave blank --&amp;gt;&lt;br /&gt;
| alt              = Heather Youmans sings at 2011 Relay For Life in San Diego, California&lt;br /&gt;
| caption          =&lt;br /&gt;
| birth_name       = Heather Anne Youmans&lt;br /&gt;
| native_name      =&lt;br /&gt;
| native_name_lang =&lt;br /&gt;
| alias            =&lt;br /&gt;
| birth_date       = {{birth date and age|1992|05|16}}&lt;br /&gt;
| birth_place      = [[Vista, California]], U.S.&lt;br /&gt;
| origin           =&lt;br /&gt;
| death_date       = &amp;lt;!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) --&amp;gt;&lt;br /&gt;
| death_place      =&lt;br /&gt;
| genre            = Rock, pop, country, soul&lt;br /&gt;
| occupation       = Singer-songwriter, actor, journalist&lt;br /&gt;
| instrument       = vocals, bass&lt;br /&gt;
| years_active     = 2002–present&lt;br /&gt;
| label            = {{plainlist| &lt;br /&gt;
* Caption Records&lt;br /&gt;
* Weir Brothers Entertainment&lt;br /&gt;
* Suspicious Love Productions}}&lt;br /&gt;
| associated_acts  =&lt;br /&gt;
| website          = {{URL|www.heatheryoumans.com}}&lt;br /&gt;
| module =&lt;br /&gt;
&lt;br /&gt;
  {{Infobox person&lt;br /&gt;
    | education	= {{highlight|[[Master of Business Administration| MBA]]}}&lt;br /&gt;
    | alma_mater = {{highlight|[[California State University, Long Beach]] (2013)}}&lt;br /&gt;
  }}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color: moccasin&amp;quot;&amp;gt;&lt;br /&gt;
'''Heather Youmans''' is an American singer-songwriter, actress, tap dancer and journalist, her work has been featured in ''American Songwriter'' magazine,&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt; [[Forbes|''Forbes Women'']] and ''Parade'' magazine profiled her career and music in 2020.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans tap dancing on [[I Can See Your Voice (American TV series)|''I Can See Your Voice'']] episode 4 (FOX),&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; convinced the judges that she is a professional dancer,&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
a video depicting her delivery of the national anthem and dealing with acoustic delay effect of a large stadium (Oakland Coliseum) went viral on social media in 2021.&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Early life ==&lt;br /&gt;
Youmans began landing theatre roles at age ten, such as Amarylis in ''[[The Music Man]]'',  Marta in ''[[The Sound of Music]]'' in 2003,&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;/&amp;gt; as well as Nellie in ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]'' in 2004 at the [[Lawrence Welk|Welk]] Resort Theatre.&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;/&amp;gt;  In 2004, she won first place in the Del Mar TV Idol Contest, Junior Division, at age twelve.&amp;lt;ref name=DelMarTV/&amp;gt; On November 30, 2005, Youmans performed an opening solo at the [[UNICEF]] Snowflake Ball at the [[Beverly Wilshire Hotel|Regent Beverly Wilshire]]. Headlining acts for the evening included, [[Sting (musician)|Sting]], [[Chris Botti]] and [[Natalie Cole]].&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans attended [[Rancho Buena Vista High School]] and was active in the Associated Student Body, dance and drama programs. In 2009, she won the MACY Award for Highest Achievement and Best Supporting Vocal-Female for her role as Rusty in [[Footloose (musical)|''Footloose'']],&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;/&amp;gt; and Best Vocal Female in 2010 for her role as Jo in ''[[Little Women]]''.&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Education ==&lt;br /&gt;
Youmans holds a B.A. in Journalism and Mass Communication with a music minor (classical and jazz vocal at [[Bob Cole Conservatory of Music]]). She graduated [[magna cum laude]] from [[California State University, Long Beach]] (CSULB) in 2013, and graduated with an MBA at CSULB with an emphasis in marketing. During her undergraduate studies, Youmans created and hosted ''Heartbreakers: The Women of Rock'', a radio format program on [[Kbeach#22 West Radio|KBeach.org]] (2011-2013).  {{Highlight|While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Career ==&lt;br /&gt;
In 2005, Youmans earned a voice-over part, playing Becky Thatcher in Disney's ''[[Tom Sawyer's Island]]'' and the following year, won the part of Shana the Rock Star in a pre-production musical ''[[Teen Witch the Musical]]'' (2007).&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt; These accomplishments led to featured artist performances on the soundtrack for [[Moondance Alexander]] (2007).&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;/&amp;gt; Youmans' single, &amp;quot;Girl to Change Your World&amp;quot;, was a (2011) hit on [[Radio Disney]],&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; and it is one of the two Youmans songs included in the film ''Love by Design'' (2014), starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]].&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The [[Teen Witch the Musical]] project was successful in its primary goal of reproducing the missing soundtrack for the Halloween classic film [[Teen Witch]] (1989).&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt; The musical stage-play never made it out of [[Workshop production|workshop]] and has yet to achieve the secondary goal of becoming a viable [[Broadway theatre|Broadway]] offering.&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;/&amp;gt; This association with Weir Brothers Productions led to additional soundtrack features in the films ''[[Moondance Alexander]]'' (2007), ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
While concurrently studying journalism and music, Youmans auditioned and stacked up credits in Southern California regional theater and wrote for national and regional newspapers on entertainment topics. &amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; She has produced and hosted an entertainment format radio show,&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; interviewed entertainment industry legends,&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt; and ran a marketing campaign for [[Jon MacLennan|Jon MacLennan's]] iBook, ''Melodic Expressions: The Art of the Line'' (2012).&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;/&amp;gt; She works as a communications professional in [[Los Angeles]].&lt;br /&gt;
&lt;br /&gt;
=== Theatre and live performances ===&lt;br /&gt;
&amp;lt;!--{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable sortable collapsed collapsible&amp;quot; style=&amp;quot;width:98%; margin-right:0; text-align:center;&amp;quot;&lt;br /&gt;
|+ Professional performances and theatre roles&lt;br /&gt;
|-&lt;br /&gt;
! Year&lt;br /&gt;
! Title&lt;br /&gt;
! Role&lt;br /&gt;
! Venue&lt;br /&gt;
! Director/Producer&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[The Music Man]]''||align=&amp;quot;center&amp;quot;|Amarylis||Welk Resort Theatre||Lewis Wilkenfeld&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[Sound of Music]]''||align=&amp;quot;center&amp;quot;|Marta||Welk Resort Theatre||Joshua Carr&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Nellie||Welk Resort Theatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie (musical)|Annie]]''||align=&amp;quot;center&amp;quot;|Orphan Sadie||La Mirada Theatre for the Performing Arts||McCoy Rigby Ent. Glenn Casale&lt;br /&gt;
|-&lt;br /&gt;
|2004||''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Jessie||Saddleback Civic Light Opera||Sheryl Donchey&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[To Kill a Mockingbird]]''||align=&amp;quot;center&amp;quot;|Scout||West Coast Ensemble|| {{sic|hide=y|C. Jaffe/R. Israel}}&lt;br /&gt;
|-&lt;br /&gt;
|2005||UNICEF Snowflake Ball||align=&amp;quot;center&amp;quot;|Opening Soloist||[[Beverly Wilshire Hotel|Regent Beverly Wilshire]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2005|| ''[[Tight Quarters]]''||align=&amp;quot;center&amp;quot;|Lauren||Whitefire Theatre||Jules Aaron&lt;br /&gt;
|-&lt;br /&gt;
|2005||Kodak Christmas||align=&amp;quot;center&amp;quot;|Featured Soloist||[[Dolby Theatre|Kodak Theatre]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2006||''[[Teen Witch the Musical]]''||align=&amp;quot;center&amp;quot;|Shana the Rock Star|| [[Workshop production|workshop]] ||Alana Lambros&lt;br /&gt;
|-&lt;br /&gt;
|2008||[[New Music Weekly]] Awards||align=&amp;quot;center&amp;quot;|Featured Soloist||Avalon Theatre||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2009||''[[42nd Street (musical)|42nd Street]]'' ||align=&amp;quot;center&amp;quot;|Ensemble|| Moonlight Amphitheatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2010|| ''Once Upon A Wedding''||align=&amp;quot;center&amp;quot;|Daisy||Bahia Resort-Dinner Theatre||Laughing Tree Prod.&lt;br /&gt;
|-&lt;br /&gt;
|2010-12|| ''Journey To The Lost Temple''||align=&amp;quot;center&amp;quot;|Pippin||[[Legoland]]-California||Shawn Griener&lt;br /&gt;
|-&lt;br /&gt;
|2012||''[[American Idol]]'' Season 11||align=&amp;quot;center&amp;quot;|Contestant|| [[USS Midway Museum]]|| [[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2012||''American Idol'' Season 11||align=&amp;quot;center&amp;quot;|Hollywood Week||[[Pasadena Civic Auditorium]]||[[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2019||Jason Robert Brown In Concert||align=&amp;quot;center&amp;quot;|Lead singer||Cabaret at the Merc||Gerald Sternbach &lt;br /&gt;
|-&lt;br /&gt;
|2019||Evita In Concert||align=&amp;quot;center&amp;quot;|Ensemble||PVPA||Richard Israel &lt;br /&gt;
|-&lt;br /&gt;
|2020||HAIR||align=&amp;quot;center&amp;quot;|Suzannah 1000-Year-Old Monk||LGBT Center LA||Kate Sullivan Jared Stein&lt;br /&gt;
|-&lt;br /&gt;
|2020||New Year's Eve, National Anthem Singer||align=&amp;quot;center&amp;quot;|Soloist||Staples Center||LA Kings &amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;/&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== American Idol ===&lt;br /&gt;
In 2012, Youmans performed &amp;quot;[[Some Kind of Wonderful (The Drifters song)|Some Kind of Wonderful]]&amp;quot; at the [[American Idol]] San Diego competition and won a golden ticket after a unanimous decision from the judges ([[Steven Tyler]], [[Jennifer Lopez]] and [[Randy Jackson]]), which advanced her to the [[American Idol (season 11)#Hollywood week and Vegas rounds|''Hollywood Week'']] competition.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  Youmans was eliminated during ''Hollywood Week'' in Season 11. She attributes the elimination to nerves and an ambitious music selection, [[Heart (band)|Heart]]’s &amp;quot;[[Crazy on You]]&amp;quot;.&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Recorded and broadcast ===&lt;br /&gt;
In addition to performing in nationally televised commercials, Youmans has been involved in several cutting-edge media projects.  In 2005, Youmans played the part of Becky Thatcher in Disney's [[Tom Sawyer's Island]], a voice-over project.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  The performance was delivered via hand-held computers issued to visitors on [[Disneyland|Disneyland's]] Tom Sawyer's Island. A pilot project, titled &amp;quot;Available Light&amp;quot;, was one of the first to test Sony Blu-ray camera technology.&lt;br /&gt;
&lt;br /&gt;
==== Soundtracks ====&lt;br /&gt;
* ''[[Teen Witch the Musical]]'' (2007) original cast recording, Weir Brothers Entertainment.&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Moondance Alexander]]'' (2007) starring [[Kay Panabaker]], [[Don Johnson]] and [[Lori Loughlin]], [[20th Century Fox|20th Century Fox Home Entertainment]]&lt;br /&gt;
* ''[[Flicka 2]]'' (2010) starring [[Patrick Warburton]], [[Tammin Sursok]] and [[Clint Black]], [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011) starring [[Travis Turner]] and [[Donnelly Rhodes]],  [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''Love by Design'' (2014) starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]], Gold Line Prod. Int.&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Newport Beach FF&amp;quot;&amp;gt;{{cite web|title=Newport Beach Film Festival|url=https://www.imdb.com/event/ev0000491/2014?ref_=ttawd_ev_1|website=[[IMDb]]|accessdate=1 February 2015|date=2 February 2014|quote=First-time Filmmaker: Winner}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*''High Strung'' (2016) starring [[Keenan Kampa]], Nicholas Galitzine, [[Jane Seymour (actress)|Jane Seymour]], Riviera Films.&amp;lt;ref name=&amp;quot;High Strung&amp;quot;&amp;gt;{{cite web|title=''High Strung''|url=http://www.soundtrack.net/album/high-strung/|website=Soundtrack.net|accessdate=30 March 2016|date=8 April 2016}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Singles ====&lt;br /&gt;
&amp;lt;!--* &amp;quot;Never Gonna Be The Same Again&amp;quot; (2007)&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt;--&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World&amp;quot; (2011)&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World - The Remixes&amp;quot; (2011)&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;In My Arms&amp;quot; (2012)&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;My Kind of Trouble LIVE at the Recordium&amp;quot; (2019)&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Is It Just Me LIVE at the Recordium&amp;quot; (2019)&lt;br /&gt;
* &amp;quot;Shine&amp;quot; (2019)&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;You Made Me Hate Love Songs LIVE at YouTube Space&amp;quot; (2020)&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;A Little Closer To Happy&amp;quot; (2021)&lt;br /&gt;
* &amp;quot;Worth It&amp;quot; (2021)&lt;br /&gt;
&lt;br /&gt;
=== Journalism ===&lt;br /&gt;
Youmans writes about entertainment topics, specifically dance, music, theatre and film. Her Southern California beat includes covering venues, such as the [[Orange County Fair (California)|Orange County Fair]], the Newport Beach Jazz Festival, the [[Playboy Jazz Festival]], Sunset Jazz at Newport, the [[Hollywood Bowl]] and [[Segerstrom Center for the Arts]]. Her freelance position with [[Freedom Communications]] has afforded interviews with: [[George Lopez]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Drew Carey]] and [[Brooke Shields]],&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt;  Grammy Award-winning musicians [[David Sanborn]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Jeff Hamilton (drummer)|Jeff Hamilton]]&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;/&amp;gt; for the ''[[Orange County Register]]'', and her interview with Grammy nominee [[Brian McKnight]] was additionally published in the ''Los Angeles Register''.&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;/&amp;gt; Earlier interviews include, [[Chita Rivera]] for the ''[[Los Angeles Times]]''&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and interviews with [[Ann Wilson]]&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt; and  [[Martina McBride]]&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt; for the [[Los Angeles Times suburban sections|Los Angeles Times Media Group's]] ''Daily Pilot''.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;!--- See http://en.wikipedia.org/wiki/Wikipedia:Footnotes on how to create references using &amp;lt;ref&amp;gt;&amp;lt;/ref&amp;gt; tags which will then appear here automatically --&amp;gt;&lt;br /&gt;
{{Reflist|2| refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student gets golden ticket on 'American Idol'|url=http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|publisher=Daily 49er|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821011818/http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|archivedate=21 August 2014|date=24 January 2012}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;&amp;gt;{{cite web|author1=Giulia Nahmany|title=Giulia Nahmany Love by Design Premiere at Newport Beach Film Festival|url=https://www.youtube.com/watch?v=et6kw-AH0ZA|publisher=Giulia Nahmany YouTube Channel|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821015154/https://www.youtube.com/watch?v=et6kw-AH0ZA|archivedate=21 August 2014|date=20 May 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=TWTM&amp;gt;{{cite web|title=Teen Witch The Musical|url=http://weirbrothersentertainment.com/releases/teen-witch|publisher=Weir Brothers Entertainment|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822014020/http://weirbrothersentertainment.com/releases/teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;&amp;gt;{{cite web|title=Heather Youmans: Credits|url=http://www.allmusic.com/artist/heather-youmans-mn0000643210/credits|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=DelMarTV&amp;gt;{{cite web|title=Del Mar TV Idol Contest 2004|url=http://www.delmartv.com/idol/idol04.html|publisher=Del Mar TV Foundation|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822011402/http://www.delmartv.com/idol/idol04.html|archivedate=22 August 2014|date=10 October 2004|quote=Heather Youmans (1st place)}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;&amp;gt;{{cite web|title=Moondance Alexander Soundtrack|url=http://www.allmusic.com/album/moondance-alexander-mw0000493713|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;&amp;gt;{{cite web|title=2010 MACY Award Winners|url=http://macyawards.com/news/67-news/132-2010-macy-award-winners|publisher=MACY Awards|accessdate=22 August 2014|date=22 May 2010|url-status=dead|archiveurl=https://web.archive.org/web/20140903125715/http://macyawards.com/news/67-news/132-2010-macy-award-winners|archivedate=3 September 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;&amp;gt;{{cite web|title=2009 MACY Award Winners|url=http://macyawards.com/news/67-news/122-2009-macy-award-winners|accessdate=22 August 2014|url-status=dead|archiveurl=https://web.archive.org/web/20140822022545/http://macyawards.com/news/67-news/122-2009-macy-award-winners|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;&amp;gt;{{cite news|last1=Krugen|first1=Pam|title=Strong leads, chemistry make Welk's 'Get Your Gun' a winner|url=http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|newspaper=The San Diego Union-Tribune|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822042246/http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|archivedate=22 August 2014|date=3 September 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=Annie Get Your Gun|url=http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822044216/http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|archivedate=22 August 2014|year=2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=The Sound of Music|url=http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822045133/http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;&amp;gt;{{cite web|last1=Wood|first1=Jennifer M.|title=18 Fun Facts About 'Teen Witch'|url=http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|publisher=mental_floss|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822193830/http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;&amp;gt;{{cite web|title=Girl to Change Your World: Releases|url=http://www.allmusic.com/album/girl-to-change-your-world-mw0002363250/releases|website=[[AllMusic]]|accessdate=23 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - Girl To Change Your World|url=https://www.youtube.com/watch?v=lYU6FLZm9nQ|publisher=Caption Records YouTube Channel|accessdate=23 August 2014|date=7 February 2010}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student loses shot at 'Idol' fame|url=http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|publisher=Daily 49er|accessdate=23 August 2014|archiveurl=https://web.archive.org/web/20140823012031/http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|archivedate=23 August 2014|date=12 February 2012|quote=Still, she said she’s not ashamed of the footage. “Yeah, it sucks,” she said. “Everybody has a bad day. Yeah, it’s unfortunate that they showed me having a bad day, but what can you do?”}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Newport Jazz Festival goes down smooth|url=http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|newspaper=[[Orange County Register]]|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826092910/http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|archivedate=26 August 2014|date=29 May 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;&amp;gt;{{cite web|last1=Schnaidt|first1=Joe|title=Lighting The Way To Hope On Rodeo Drive|url=http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|publisher=Canyon News|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826100957/http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|archivedate=26 August 2014|date=4 December 2005|quote=BEVERLY HILLS — Wednesday, November 30 illuminated Rodeo Drive at Wilshire Boulevard for the annual holiday lighting ceremony with celebrities, sponsors and a ray of hope for children facing poverty, health risks and poor education.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 9 August 2011 | title = Marley &amp;amp; Me The Puppy Years music from and inspired by the motion picture | medium = MP3 &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B005JBC14S&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 4 May 2010 | title = Flicka 2 Original Motion Picture Soundtrack | medium = MP3/CD &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B003JE2EIU&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;JRAY Nom&amp;quot;&amp;gt;{{cite web|title=2009 JRAY Awards|url=http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|publisher=Fulerton Civic Light Opera|accessdate=28 August 2014|archiveurl=https://web.archive.org/web/20140828012354/http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|archivedate=28 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;&amp;gt;{{cite news|last1=Malik|first1=Abhay|title=Alumnus Jon MacLennan's iBook 'Melodic Expressions' advances guitar instruction |url=http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|newspaper=[[Daily Bruin]]|accessdate=8 August 2014|archiveurl=https://web.archive.org/web/20140808121825/http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|archivedate=8 August 2014|date=8 May 2012|quote=Heather Youmans, an “American Idol” contestant and freelance journalist, helped edit the iBook and has expressed excitement over the finished product as well.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;&amp;gt;{{cite web|last1=MacLennan|first1=Jon|title=In My Arms Jon MacLennan (feat. Heather Youmans)|url=https://www.youtube.com/watch?v=G8QJ5aToHxw|publisher=Jon MacLennan YouTube Channel|accessdate=28 August 2014|date=16 July 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - &amp;quot;Never Gonna Be the Same Again&amp;quot; Studio City Sound LIVE|url=https://www.youtube.com/watch?v=rYhEtU1EgUM|publisher=[[Studio City Sound]]|accessdate=28 August 2014|date=3 October 2011}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;iBook Press Release&amp;quot;&amp;gt;{{cite press release|title=Melodic Expressions: The Art of the Line|url=http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|website=www.heatheryoumansmusic.com/|publisher=Jon MacLennan|accessdate=28 August 2014|date=3 May 2013|archiveurl=https://web.archive.org/web/20140828221739/http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|archivedate=28 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Change in tempo for Playboy Jazz Festival&lt;br /&gt;
|url=http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=21 August 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829013440/http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Brooke Shields takes the helm of 'Chicago'&lt;br /&gt;
|url=http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=17 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829014021/http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Sunset Jazz series kicks off in Newport&lt;br /&gt;
|url=http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|accessdate=29 August 2014|newspaper=[[The Orange County Register]]|date=9 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829015132/http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;&amp;gt;{{cite web|title=Weir Brothers Entertainment: Albums|url=http://www.last.fm/label/Weir+Brothers+Entertainment/albums|website=last.fm|publisher=Weir Brothers Entertainment|accessdate=29 August 2014|archiveurl=https://web.archive.org/web/20140829023539/http://www.last.fm/label/Weir+Brothers+Entertainment/albums|archivedate=29 August 2014|year=2011|quote=Girl to Change Your World singles}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Music for most every taste|url=http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|accessdate=29 August 2014|newspaper=Daily Pilot|archiveurl=https://web.archive.org/web/20140829225029/http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=O.C. Fair gets some Heart|url=http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|accessdate=29 August 2014|newspaper=Daily Pilot|date=2 August 2012|archiveurl=https://web.archive.org/web/20140829224632/http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Youmans: Chita Rivera to perform hits from a storied career|url=http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|accessdate=29 August 2014|newspaper=[[The Los Angeles Times]]|date=10 November 2011|archiveurl=https://web.archive.org/web/20140829220754/http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival|url=http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|accessdate=29 August 2014|newspaper=[[Orange County Register]]|date=28 May 2014|archiveurl=https://web.archive.org/web/20140829215845/http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival&lt;br /&gt;
|publisher=Los Angeles Register|date=29 May 2014&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;&amp;gt;{{cite news|title='High Strung' Soundtrack Announced|url=http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|accessdate=3 May 2016|publisher=FILM MUSIC REPORTER|date=9 March 2016|archiveurl=https://web.archive.org/web/20160503051828/http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|archivedate=3 May 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;&amp;gt;{{cite web|author1=Kristyn Burtt|title=Heather Youmans at the Red Carpet Premiere for &amp;quot;High Strung&amp;quot; #HighStrungMovie|url=https://www.youtube.com/watch?v=YOlN1Zt4_I8|website=YouTube.com|publisher=Mingle Media TV|accessdate=3 May 2016|date=30 March 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=Meet This Week's She Rocks Spotlight Series Artists, Including Grammy-Nominated Headliner Mindi Abair | website=Parade | date=2020-04-22 | url=https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-url=https://web.archive.org/web/20200427002753/https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-date=2020-04-27 | url-status=dead | access-date=2020-04-27}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;&amp;gt;{{cite web | title=Daily Discovery: Heather Youmans, &amp;quot;Shine&amp;quot; « American Songwriter | website=American Songwriter | date=2019-11-13 | url=https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200316151706/https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-date=2020-03-16 | url-status=live | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;&amp;gt;{{cite web | last=Buttonow | first=Leslie | title=Front and Center: Heather Youmans, PR &amp;amp; Communications Manager, Fender Musical Instruments Corporation – the WiMN - The Women's International Music Network | website=thewimn.com | date=2019-05-01 | url=https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-url=https://web.archive.org/web/20200426083920/https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-date=2020-04-26 | url-status=unfit | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;&amp;gt;{{cite web | title=Premiere: Singer-Songwriter Heather Youmans Reveals Latest Single &amp;quot;Shine&amp;quot; + Music Video | website=Elicit Magazine | date=2019-10-18 | url=http://www.elicitmagazine.com/heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200428035459/http://www.elicitmagazine.com/heather-youmans-shine/ | archive-date=2020-04-28 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;&amp;gt;{{cite web |url= https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble |title= Heather Youmans Gets Honest And Real In &amp;quot;My Kind Of Trouble&amp;quot; |date= 2019-08-13 |website= BuzzMusic |access-date= 2020-04-27 |archive-date= 2020-04-28 |archive-url= https://web.archive.org/web/20200428034603/https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;&amp;gt;{{cite web | title=Emerging Headliner: Heather Youmans | website=Headliner Magazine | date=2020-02-25 | url=https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-url=https://web.archive.org/web/20200225061919/https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-date=2020-02-25 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;&amp;gt;{{cite web | last=Brunner | first=Jeryl | title=Why This Successful Singer-Songwriter Won't Give Up Her Day Job | website=Forbes | date=2020-09-30 | url=https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/ | access-date=2020-10-01 |archive-url=https://web.archive.org/web/20201001011624if_/https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/?fbclid=IwAR3q2uGBNQP6MO-2pr57Mopo6AM0b_lktTAEhvQKHD6XhTNH5jSQoOQpiT4#5d2b64a67b7e|archive-date=2020-10-01}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=You're Gonna Feel the Joy of Heather Youmans' Video for 'Shine' | website=Parade: Entertainment, Recipes, Health, Life, Holidays | date=2020-10-06 | url=https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-url=https://web.archive.org/web/20201007032747/https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-date=2020-10-07 | url-status=dead | access-date=2020-10-07}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;&amp;gt;{{cite web | title=Heather Youmans Releases 'Shine' As Love Letter To Younger Self | website=Headliner Magazine | url=https://headlinermagazine.net/blog/heather-youmans-releases-shine-as-love-letter-to-younger-self.html | access-date=2020-10-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;&amp;gt;{{cite AV media  | people = Heather Youmans  | date = 2020-10-28  | title = The Tap Dancer Performs &amp;quot;Youngblood&amp;quot; By 5 Seconds Of Summer - Season 1 Ep. 4 - I CAN SEE YOUR VOICE  | language = en  | url = https://www.youtube.com/watch?v=Z5rghUxRero  | access-date = 2020-10-31  | publisher = FOX }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot;&amp;gt;{{cite web | title=Column: Singer from Vista stuns panel in new Fox reality series | website=San Diego Union-Tribune | date=2020-11-14 | url=https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-url=https://web.archive.org/web/20201118211051/https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-date=2020-11-18 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot;&amp;gt;{{cite web | last=Upadhyay | first=Nayna | title=EXCLUSIVE - Heather Youmans says 'I Can See Your Voice' is all about finding 'singers that America needs to know' | website=MEAWW | date=2020-11-16 | url=https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-url=https://web.archive.org/web/20201116192203/https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-date=2020-11-16 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.heatheryoumans.com Official website]&lt;br /&gt;
* {{YouTube|user=HeatherYoumans|Heather Youmans}}&lt;br /&gt;
* {{Facebook|HeatherYoumansOfficial|Heather Youmans}}&lt;br /&gt;
&amp;lt;!--* {{itunes|us/artist/heather-youmans/id219552589|Heather Youmans}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Youmans, Heather}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Categories &lt;br /&gt;
[[Category:Articles created via the Article Wizard]]---&amp;gt;&lt;br /&gt;
[[Category:1992 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:American stage actresses]]&lt;br /&gt;
[[Category:American women singer-songwriters]]&lt;br /&gt;
[[Category:American musical theatre actresses]]&lt;br /&gt;
[[Category:21st-century American actresses]]&lt;br /&gt;
[[Category:21st-century American singers]]&lt;br /&gt;
[[Category:Musicians from San Diego]]&lt;br /&gt;
[[Category:Musicians from Vista, California]]&lt;br /&gt;
[[Category:American music journalists]]&lt;br /&gt;
[[Category:American women journalists]]&lt;br /&gt;
[[Category:Journalists from California]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--[[Category:American film actresses]]&lt;br /&gt;
[[Category:American television actresses]]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Women writers about music]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Singer-songwriters from California]]&lt;br /&gt;
{{authority control}}&lt;br /&gt;
[[Category:21st-century American women singers]]&lt;br /&gt;
[[Category:21st-century American journalists]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6274</id>
		<title>Draft: Heather Youmans</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6274"/>
		<updated>2024-02-21T04:35:44Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: /* Theatre and live performances */ collapse&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{short description|American singer-songwriter}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox musical artist&lt;br /&gt;
| name             = Heather Youmans&lt;br /&gt;
| image            = File:Heather_Youmans.jpg&lt;br /&gt;
| image_size       =&lt;br /&gt;
| landscape        = &amp;lt;!-- yes, if wide image, otherwise leave blank --&amp;gt;&lt;br /&gt;
| alt              = Heather Youmans sings at 2011 Relay For Life in San Diego, California&lt;br /&gt;
| caption          =&lt;br /&gt;
| birth_name       = Heather Anne Youmans&lt;br /&gt;
| native_name      =&lt;br /&gt;
| native_name_lang =&lt;br /&gt;
| alias            =&lt;br /&gt;
| birth_date       = {{birth date and age|1992|05|16}}&lt;br /&gt;
| birth_place      = [[Vista, California]], U.S.&lt;br /&gt;
| origin           =&lt;br /&gt;
| death_date       = &amp;lt;!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) --&amp;gt;&lt;br /&gt;
| death_place      =&lt;br /&gt;
| genre            = Rock, pop, country, soul&lt;br /&gt;
| occupation       = Singer-songwriter, actor, journalist&lt;br /&gt;
| instrument       = vocals, bass&lt;br /&gt;
| years_active     = 2002–present&lt;br /&gt;
| label            = {{plainlist| &lt;br /&gt;
* Caption Records&lt;br /&gt;
* Weir Brothers Entertainment&lt;br /&gt;
* Suspicious Love Productions}}&lt;br /&gt;
| associated_acts  =&lt;br /&gt;
| website          = {{URL|www.heatheryoumans.com}}&lt;br /&gt;
| module =&lt;br /&gt;
&lt;br /&gt;
  {{Infobox person&lt;br /&gt;
    | education	= {{highlight|[[Master of Business Administration| MBA]]}}&lt;br /&gt;
    | alma_mater = {{highlight|[[California State University, Long Beach]] (2013)}}&lt;br /&gt;
  }}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color: moccasin&amp;quot;&amp;gt;&lt;br /&gt;
'''Heather Youmans''' is an American singer-songwriter, actress, tap dancer and journalist, her work has been featured in ''American Songwriter'' magazine,&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt; [[Forbes|''Forbes Women'']] and ''Parade'' magazine profiled her career and music in 2020.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans tap dancing on [[I Can See Your Voice (American TV series)|''I Can See Your Voice'']] episode 4 (FOX),&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; convinced the judges that she is a professional dancer,&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
a video depicting her delivery of the national anthem and dealing with acoustic delay effect of a large stadium (Oakland Coliseum) went viral on social media in 2021.&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Early life ==&lt;br /&gt;
Youmans began landing theatre roles at age ten, such as Amarylis in ''[[The Music Man]]'',  Marta in ''[[The Sound of Music]]'' in 2003,&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;/&amp;gt; as well as Nellie in ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]'' in 2004 at the [[Lawrence Welk|Welk]] Resort Theatre.&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;/&amp;gt;  In 2004, she won first place in the Del Mar TV Idol Contest, Junior Division, at age twelve.&amp;lt;ref name=DelMarTV/&amp;gt; On November 30, 2005, Youmans performed an opening solo at the [[UNICEF]] Snowflake Ball at the [[Beverly Wilshire Hotel|Regent Beverly Wilshire]]. Headlining acts for the evening included, [[Sting (musician)|Sting]], [[Chris Botti]] and [[Natalie Cole]].&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans attended [[Rancho Buena Vista High School]] and was active in the Associated Student Body, dance and drama programs. In 2009, she won the MACY Award for Highest Achievement and Best Supporting Vocal-Female for her role as Rusty in [[Footloose (musical)|''Footloose'']],&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;/&amp;gt; and Best Vocal Female in 2010 for her role as Jo in ''[[Little Women]]''.&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Education ==&lt;br /&gt;
Youmans holds a B.A. in Journalism and Mass Communication with a music minor (classical and jazz vocal at [[Bob Cole Conservatory of Music]]). She graduated [[magna cum laude]] from [[California State University, Long Beach]] (CSULB) in 2013, and graduated with an MBA at CSULB with an emphasis in marketing. During her undergraduate studies, Youmans created and hosted ''Heartbreakers: The Women of Rock'', a radio format program on [[Kbeach#22 West Radio|KBeach.org]] (2011-2013).  {{Highlight|While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Career ==&lt;br /&gt;
In 2005, Youmans earned a voice-over part, playing Becky Thatcher in Disney's ''[[Tom Sawyer's Island]]'' and the following year, won the part of Shana the Rock Star in a pre-production musical ''[[Teen Witch the Musical]]'' (2007).&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt; These accomplishments led to featured artist performances on the soundtrack for [[Moondance Alexander]] (2007).&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;/&amp;gt; Youmans' single, &amp;quot;Girl to Change Your World&amp;quot;, was a (2011) hit on [[Radio Disney]],&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; and it is one of the two Youmans songs included in the film ''Love by Design'' (2014), starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]].&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The [[Teen Witch the Musical]] project was successful in its primary goal of reproducing the missing soundtrack for the Halloween classic film [[Teen Witch]] (1989).&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt; The musical stage-play never made it out of [[Workshop production|workshop]] and has yet to achieve the secondary goal of becoming a viable [[Broadway theatre|Broadway]] offering.&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;/&amp;gt; This association with Weir Brothers Productions led to additional soundtrack features in the films ''[[Moondance Alexander]]'' (2007), ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
While concurrently studying journalism and music, Youmans auditioned and stacked up credits in Southern California regional theater and wrote for national and regional newspapers on entertainment topics. &amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; She has produced and hosted an entertainment format radio show,&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; interviewed entertainment industry legends,&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt; and ran a marketing campaign for [[Jon MacLennan|Jon MacLennan's]] iBook, ''Melodic Expressions: The Art of the Line'' (2012).&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;/&amp;gt; She works as a communications professional in [[Los Angeles]].&lt;br /&gt;
&lt;br /&gt;
=== Theatre and live performances ===&lt;br /&gt;
&amp;lt;!--{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;--&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable sortable collapsed collapsible&amp;quot; style=&amp;quot;width:98%; margin-right:0; text-align:center;font-size: 9pt&amp;quot;&lt;br /&gt;
|+ Professional performances and theatre roles&lt;br /&gt;
|-&lt;br /&gt;
! Year&lt;br /&gt;
! Title&lt;br /&gt;
! Role&lt;br /&gt;
! Venue&lt;br /&gt;
! Director/Producer&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[The Music Man]]''||align=&amp;quot;center&amp;quot;|Amarylis||Welk Resort Theatre||Lewis Wilkenfeld&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[Sound of Music]]''||align=&amp;quot;center&amp;quot;|Marta||Welk Resort Theatre||Joshua Carr&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Nellie||Welk Resort Theatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie (musical)|Annie]]''||align=&amp;quot;center&amp;quot;|Orphan Sadie||La Mirada Theatre for the Performing Arts||McCoy Rigby Ent. Glenn Casale&lt;br /&gt;
|-&lt;br /&gt;
|2004||''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Jessie||Saddleback Civic Light Opera||Sheryl Donchey&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[To Kill a Mockingbird]]''||align=&amp;quot;center&amp;quot;|Scout||West Coast Ensemble|| {{sic|hide=y|C. Jaffe/R. Israel}}&lt;br /&gt;
|-&lt;br /&gt;
|2005||UNICEF Snowflake Ball||align=&amp;quot;center&amp;quot;|Opening Soloist||[[Beverly Wilshire Hotel|Regent Beverly Wilshire]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2005|| ''[[Tight Quarters]]''||align=&amp;quot;center&amp;quot;|Lauren||Whitefire Theatre||Jules Aaron&lt;br /&gt;
|-&lt;br /&gt;
|2005||Kodak Christmas||align=&amp;quot;center&amp;quot;|Featured Soloist||[[Dolby Theatre|Kodak Theatre]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2006||''[[Teen Witch the Musical]]''||align=&amp;quot;center&amp;quot;|Shana the Rock Star|| [[Workshop production|workshop]] ||Alana Lambros&lt;br /&gt;
|-&lt;br /&gt;
|2008||[[New Music Weekly]] Awards||align=&amp;quot;center&amp;quot;|Featured Soloist||Avalon Theatre||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2009||''[[42nd Street (musical)|42nd Street]]'' ||align=&amp;quot;center&amp;quot;|Ensemble|| Moonlight Amphitheatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2010|| ''Once Upon A Wedding''||align=&amp;quot;center&amp;quot;|Daisy||Bahia Resort-Dinner Theatre||Laughing Tree Prod.&lt;br /&gt;
|-&lt;br /&gt;
|2010-12|| ''Journey To The Lost Temple''||align=&amp;quot;center&amp;quot;|Pippin||[[Legoland]]-California||Shawn Griener&lt;br /&gt;
|-&lt;br /&gt;
|2012||''[[American Idol]]'' Season 11||align=&amp;quot;center&amp;quot;|Contestant|| [[USS Midway Museum]]|| [[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2012||''American Idol'' Season 11||align=&amp;quot;center&amp;quot;|Hollywood Week||[[Pasadena Civic Auditorium]]||[[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2019||Jason Robert Brown In Concert||align=&amp;quot;center&amp;quot;|Lead singer||Cabaret at the Merc||Gerald Sternbach &lt;br /&gt;
|-&lt;br /&gt;
|2019||Evita In Concert||align=&amp;quot;center&amp;quot;|Ensemble||PVPA||Richard Israel &lt;br /&gt;
|-&lt;br /&gt;
|2020||HAIR||align=&amp;quot;center&amp;quot;|Suzannah 1000-Year-Old Monk||LGBT Center LA||Kate Sullivan Jared Stein&lt;br /&gt;
|-&lt;br /&gt;
|2020||New Year's Eve, National Anthem Singer||align=&amp;quot;center&amp;quot;|Soloist||Staples Center||LA Kings &amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;/&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== American Idol ===&lt;br /&gt;
In 2012, Youmans performed &amp;quot;[[Some Kind of Wonderful (The Drifters song)|Some Kind of Wonderful]]&amp;quot; at the [[American Idol]] San Diego competition and won a golden ticket after a unanimous decision from the judges ([[Steven Tyler]], [[Jennifer Lopez]] and [[Randy Jackson]]), which advanced her to the [[American Idol (season 11)#Hollywood week and Vegas rounds|''Hollywood Week'']] competition.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  Youmans was eliminated during ''Hollywood Week'' in Season 11. She attributes the elimination to nerves and an ambitious music selection, [[Heart (band)|Heart]]’s &amp;quot;[[Crazy on You]]&amp;quot;.&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Recorded and broadcast ===&lt;br /&gt;
In addition to performing in nationally televised commercials, Youmans has been involved in several cutting-edge media projects.  In 2005, Youmans played the part of Becky Thatcher in Disney's [[Tom Sawyer's Island]], a voice-over project.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  The performance was delivered via hand-held computers issued to visitors on [[Disneyland|Disneyland's]] Tom Sawyer's Island. A pilot project, titled &amp;quot;Available Light&amp;quot;, was one of the first to test Sony Blu-ray camera technology.&lt;br /&gt;
&lt;br /&gt;
==== Soundtracks ====&lt;br /&gt;
* ''[[Teen Witch the Musical]]'' (2007) original cast recording, Weir Brothers Entertainment.&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Moondance Alexander]]'' (2007) starring [[Kay Panabaker]], [[Don Johnson]] and [[Lori Loughlin]], [[20th Century Fox|20th Century Fox Home Entertainment]]&lt;br /&gt;
* ''[[Flicka 2]]'' (2010) starring [[Patrick Warburton]], [[Tammin Sursok]] and [[Clint Black]], [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011) starring [[Travis Turner]] and [[Donnelly Rhodes]],  [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''Love by Design'' (2014) starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]], Gold Line Prod. Int.&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Newport Beach FF&amp;quot;&amp;gt;{{cite web|title=Newport Beach Film Festival|url=https://www.imdb.com/event/ev0000491/2014?ref_=ttawd_ev_1|website=[[IMDb]]|accessdate=1 February 2015|date=2 February 2014|quote=First-time Filmmaker: Winner}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*''High Strung'' (2016) starring [[Keenan Kampa]], Nicholas Galitzine, [[Jane Seymour (actress)|Jane Seymour]], Riviera Films.&amp;lt;ref name=&amp;quot;High Strung&amp;quot;&amp;gt;{{cite web|title=''High Strung''|url=http://www.soundtrack.net/album/high-strung/|website=Soundtrack.net|accessdate=30 March 2016|date=8 April 2016}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Singles ====&lt;br /&gt;
&amp;lt;!--* &amp;quot;Never Gonna Be The Same Again&amp;quot; (2007)&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt;--&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World&amp;quot; (2011)&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World - The Remixes&amp;quot; (2011)&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;In My Arms&amp;quot; (2012)&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;My Kind of Trouble LIVE at the Recordium&amp;quot; (2019)&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Is It Just Me LIVE at the Recordium&amp;quot; (2019)&lt;br /&gt;
* &amp;quot;Shine&amp;quot; (2019)&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;You Made Me Hate Love Songs LIVE at YouTube Space&amp;quot; (2020)&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;A Little Closer To Happy&amp;quot; (2021)&lt;br /&gt;
* &amp;quot;Worth It&amp;quot; (2021)&lt;br /&gt;
&lt;br /&gt;
=== Journalism ===&lt;br /&gt;
Youmans writes about entertainment topics, specifically dance, music, theatre and film. Her Southern California beat includes covering venues, such as the [[Orange County Fair (California)|Orange County Fair]], the Newport Beach Jazz Festival, the [[Playboy Jazz Festival]], Sunset Jazz at Newport, the [[Hollywood Bowl]] and [[Segerstrom Center for the Arts]]. Her freelance position with [[Freedom Communications]] has afforded interviews with: [[George Lopez]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Drew Carey]] and [[Brooke Shields]],&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt;  Grammy Award-winning musicians [[David Sanborn]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Jeff Hamilton (drummer)|Jeff Hamilton]]&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;/&amp;gt; for the ''[[Orange County Register]]'', and her interview with Grammy nominee [[Brian McKnight]] was additionally published in the ''Los Angeles Register''.&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;/&amp;gt; Earlier interviews include, [[Chita Rivera]] for the ''[[Los Angeles Times]]''&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and interviews with [[Ann Wilson]]&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt; and  [[Martina McBride]]&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt; for the [[Los Angeles Times suburban sections|Los Angeles Times Media Group's]] ''Daily Pilot''.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;!--- See http://en.wikipedia.org/wiki/Wikipedia:Footnotes on how to create references using &amp;lt;ref&amp;gt;&amp;lt;/ref&amp;gt; tags which will then appear here automatically --&amp;gt;&lt;br /&gt;
{{Reflist|2| refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student gets golden ticket on 'American Idol'|url=http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|publisher=Daily 49er|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821011818/http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|archivedate=21 August 2014|date=24 January 2012}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;&amp;gt;{{cite web|author1=Giulia Nahmany|title=Giulia Nahmany Love by Design Premiere at Newport Beach Film Festival|url=https://www.youtube.com/watch?v=et6kw-AH0ZA|publisher=Giulia Nahmany YouTube Channel|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821015154/https://www.youtube.com/watch?v=et6kw-AH0ZA|archivedate=21 August 2014|date=20 May 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=TWTM&amp;gt;{{cite web|title=Teen Witch The Musical|url=http://weirbrothersentertainment.com/releases/teen-witch|publisher=Weir Brothers Entertainment|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822014020/http://weirbrothersentertainment.com/releases/teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;&amp;gt;{{cite web|title=Heather Youmans: Credits|url=http://www.allmusic.com/artist/heather-youmans-mn0000643210/credits|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=DelMarTV&amp;gt;{{cite web|title=Del Mar TV Idol Contest 2004|url=http://www.delmartv.com/idol/idol04.html|publisher=Del Mar TV Foundation|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822011402/http://www.delmartv.com/idol/idol04.html|archivedate=22 August 2014|date=10 October 2004|quote=Heather Youmans (1st place)}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;&amp;gt;{{cite web|title=Moondance Alexander Soundtrack|url=http://www.allmusic.com/album/moondance-alexander-mw0000493713|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;&amp;gt;{{cite web|title=2010 MACY Award Winners|url=http://macyawards.com/news/67-news/132-2010-macy-award-winners|publisher=MACY Awards|accessdate=22 August 2014|date=22 May 2010|url-status=dead|archiveurl=https://web.archive.org/web/20140903125715/http://macyawards.com/news/67-news/132-2010-macy-award-winners|archivedate=3 September 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;&amp;gt;{{cite web|title=2009 MACY Award Winners|url=http://macyawards.com/news/67-news/122-2009-macy-award-winners|accessdate=22 August 2014|url-status=dead|archiveurl=https://web.archive.org/web/20140822022545/http://macyawards.com/news/67-news/122-2009-macy-award-winners|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;&amp;gt;{{cite news|last1=Krugen|first1=Pam|title=Strong leads, chemistry make Welk's 'Get Your Gun' a winner|url=http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|newspaper=The San Diego Union-Tribune|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822042246/http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|archivedate=22 August 2014|date=3 September 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=Annie Get Your Gun|url=http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822044216/http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|archivedate=22 August 2014|year=2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=The Sound of Music|url=http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822045133/http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;&amp;gt;{{cite web|last1=Wood|first1=Jennifer M.|title=18 Fun Facts About 'Teen Witch'|url=http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|publisher=mental_floss|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822193830/http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;&amp;gt;{{cite web|title=Girl to Change Your World: Releases|url=http://www.allmusic.com/album/girl-to-change-your-world-mw0002363250/releases|website=[[AllMusic]]|accessdate=23 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - Girl To Change Your World|url=https://www.youtube.com/watch?v=lYU6FLZm9nQ|publisher=Caption Records YouTube Channel|accessdate=23 August 2014|date=7 February 2010}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student loses shot at 'Idol' fame|url=http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|publisher=Daily 49er|accessdate=23 August 2014|archiveurl=https://web.archive.org/web/20140823012031/http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|archivedate=23 August 2014|date=12 February 2012|quote=Still, she said she’s not ashamed of the footage. “Yeah, it sucks,” she said. “Everybody has a bad day. Yeah, it’s unfortunate that they showed me having a bad day, but what can you do?”}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Newport Jazz Festival goes down smooth|url=http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|newspaper=[[Orange County Register]]|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826092910/http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|archivedate=26 August 2014|date=29 May 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;&amp;gt;{{cite web|last1=Schnaidt|first1=Joe|title=Lighting The Way To Hope On Rodeo Drive|url=http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|publisher=Canyon News|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826100957/http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|archivedate=26 August 2014|date=4 December 2005|quote=BEVERLY HILLS — Wednesday, November 30 illuminated Rodeo Drive at Wilshire Boulevard for the annual holiday lighting ceremony with celebrities, sponsors and a ray of hope for children facing poverty, health risks and poor education.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 9 August 2011 | title = Marley &amp;amp; Me The Puppy Years music from and inspired by the motion picture | medium = MP3 &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B005JBC14S&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 4 May 2010 | title = Flicka 2 Original Motion Picture Soundtrack | medium = MP3/CD &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B003JE2EIU&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;JRAY Nom&amp;quot;&amp;gt;{{cite web|title=2009 JRAY Awards|url=http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|publisher=Fulerton Civic Light Opera|accessdate=28 August 2014|archiveurl=https://web.archive.org/web/20140828012354/http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|archivedate=28 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;&amp;gt;{{cite news|last1=Malik|first1=Abhay|title=Alumnus Jon MacLennan's iBook 'Melodic Expressions' advances guitar instruction |url=http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|newspaper=[[Daily Bruin]]|accessdate=8 August 2014|archiveurl=https://web.archive.org/web/20140808121825/http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|archivedate=8 August 2014|date=8 May 2012|quote=Heather Youmans, an “American Idol” contestant and freelance journalist, helped edit the iBook and has expressed excitement over the finished product as well.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;&amp;gt;{{cite web|last1=MacLennan|first1=Jon|title=In My Arms Jon MacLennan (feat. Heather Youmans)|url=https://www.youtube.com/watch?v=G8QJ5aToHxw|publisher=Jon MacLennan YouTube Channel|accessdate=28 August 2014|date=16 July 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - &amp;quot;Never Gonna Be the Same Again&amp;quot; Studio City Sound LIVE|url=https://www.youtube.com/watch?v=rYhEtU1EgUM|publisher=[[Studio City Sound]]|accessdate=28 August 2014|date=3 October 2011}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;iBook Press Release&amp;quot;&amp;gt;{{cite press release|title=Melodic Expressions: The Art of the Line|url=http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|website=www.heatheryoumansmusic.com/|publisher=Jon MacLennan|accessdate=28 August 2014|date=3 May 2013|archiveurl=https://web.archive.org/web/20140828221739/http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|archivedate=28 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Change in tempo for Playboy Jazz Festival&lt;br /&gt;
|url=http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=21 August 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829013440/http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Brooke Shields takes the helm of 'Chicago'&lt;br /&gt;
|url=http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=17 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829014021/http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Sunset Jazz series kicks off in Newport&lt;br /&gt;
|url=http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|accessdate=29 August 2014|newspaper=[[The Orange County Register]]|date=9 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829015132/http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;&amp;gt;{{cite web|title=Weir Brothers Entertainment: Albums|url=http://www.last.fm/label/Weir+Brothers+Entertainment/albums|website=last.fm|publisher=Weir Brothers Entertainment|accessdate=29 August 2014|archiveurl=https://web.archive.org/web/20140829023539/http://www.last.fm/label/Weir+Brothers+Entertainment/albums|archivedate=29 August 2014|year=2011|quote=Girl to Change Your World singles}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Music for most every taste|url=http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|accessdate=29 August 2014|newspaper=Daily Pilot|archiveurl=https://web.archive.org/web/20140829225029/http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=O.C. Fair gets some Heart|url=http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|accessdate=29 August 2014|newspaper=Daily Pilot|date=2 August 2012|archiveurl=https://web.archive.org/web/20140829224632/http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Youmans: Chita Rivera to perform hits from a storied career|url=http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|accessdate=29 August 2014|newspaper=[[The Los Angeles Times]]|date=10 November 2011|archiveurl=https://web.archive.org/web/20140829220754/http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival|url=http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|accessdate=29 August 2014|newspaper=[[Orange County Register]]|date=28 May 2014|archiveurl=https://web.archive.org/web/20140829215845/http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival&lt;br /&gt;
|publisher=Los Angeles Register|date=29 May 2014&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;&amp;gt;{{cite news|title='High Strung' Soundtrack Announced|url=http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|accessdate=3 May 2016|publisher=FILM MUSIC REPORTER|date=9 March 2016|archiveurl=https://web.archive.org/web/20160503051828/http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|archivedate=3 May 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;&amp;gt;{{cite web|author1=Kristyn Burtt|title=Heather Youmans at the Red Carpet Premiere for &amp;quot;High Strung&amp;quot; #HighStrungMovie|url=https://www.youtube.com/watch?v=YOlN1Zt4_I8|website=YouTube.com|publisher=Mingle Media TV|accessdate=3 May 2016|date=30 March 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=Meet This Week's She Rocks Spotlight Series Artists, Including Grammy-Nominated Headliner Mindi Abair | website=Parade | date=2020-04-22 | url=https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-url=https://web.archive.org/web/20200427002753/https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-date=2020-04-27 | url-status=dead | access-date=2020-04-27}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;&amp;gt;{{cite web | title=Daily Discovery: Heather Youmans, &amp;quot;Shine&amp;quot; « American Songwriter | website=American Songwriter | date=2019-11-13 | url=https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200316151706/https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-date=2020-03-16 | url-status=live | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;&amp;gt;{{cite web | last=Buttonow | first=Leslie | title=Front and Center: Heather Youmans, PR &amp;amp; Communications Manager, Fender Musical Instruments Corporation – the WiMN - The Women's International Music Network | website=thewimn.com | date=2019-05-01 | url=https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-url=https://web.archive.org/web/20200426083920/https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-date=2020-04-26 | url-status=unfit | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;&amp;gt;{{cite web | title=Premiere: Singer-Songwriter Heather Youmans Reveals Latest Single &amp;quot;Shine&amp;quot; + Music Video | website=Elicit Magazine | date=2019-10-18 | url=http://www.elicitmagazine.com/heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200428035459/http://www.elicitmagazine.com/heather-youmans-shine/ | archive-date=2020-04-28 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;&amp;gt;{{cite web |url= https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble |title= Heather Youmans Gets Honest And Real In &amp;quot;My Kind Of Trouble&amp;quot; |date= 2019-08-13 |website= BuzzMusic |access-date= 2020-04-27 |archive-date= 2020-04-28 |archive-url= https://web.archive.org/web/20200428034603/https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;&amp;gt;{{cite web | title=Emerging Headliner: Heather Youmans | website=Headliner Magazine | date=2020-02-25 | url=https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-url=https://web.archive.org/web/20200225061919/https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-date=2020-02-25 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;&amp;gt;{{cite web | last=Brunner | first=Jeryl | title=Why This Successful Singer-Songwriter Won't Give Up Her Day Job | website=Forbes | date=2020-09-30 | url=https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/ | access-date=2020-10-01 |archive-url=https://web.archive.org/web/20201001011624if_/https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/?fbclid=IwAR3q2uGBNQP6MO-2pr57Mopo6AM0b_lktTAEhvQKHD6XhTNH5jSQoOQpiT4#5d2b64a67b7e|archive-date=2020-10-01}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=You're Gonna Feel the Joy of Heather Youmans' Video for 'Shine' | website=Parade: Entertainment, Recipes, Health, Life, Holidays | date=2020-10-06 | url=https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-url=https://web.archive.org/web/20201007032747/https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-date=2020-10-07 | url-status=dead | access-date=2020-10-07}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;&amp;gt;{{cite web | title=Heather Youmans Releases 'Shine' As Love Letter To Younger Self | website=Headliner Magazine | url=https://headlinermagazine.net/blog/heather-youmans-releases-shine-as-love-letter-to-younger-self.html | access-date=2020-10-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;&amp;gt;{{cite AV media  | people = Heather Youmans  | date = 2020-10-28  | title = The Tap Dancer Performs &amp;quot;Youngblood&amp;quot; By 5 Seconds Of Summer - Season 1 Ep. 4 - I CAN SEE YOUR VOICE  | language = en  | url = https://www.youtube.com/watch?v=Z5rghUxRero  | access-date = 2020-10-31  | publisher = FOX }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot;&amp;gt;{{cite web | title=Column: Singer from Vista stuns panel in new Fox reality series | website=San Diego Union-Tribune | date=2020-11-14 | url=https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-url=https://web.archive.org/web/20201118211051/https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-date=2020-11-18 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot;&amp;gt;{{cite web | last=Upadhyay | first=Nayna | title=EXCLUSIVE - Heather Youmans says 'I Can See Your Voice' is all about finding 'singers that America needs to know' | website=MEAWW | date=2020-11-16 | url=https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-url=https://web.archive.org/web/20201116192203/https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-date=2020-11-16 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.heatheryoumans.com Official website]&lt;br /&gt;
* {{YouTube|user=HeatherYoumans|Heather Youmans}}&lt;br /&gt;
* {{Facebook|HeatherYoumansOfficial|Heather Youmans}}&lt;br /&gt;
&amp;lt;!--* {{itunes|us/artist/heather-youmans/id219552589|Heather Youmans}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Youmans, Heather}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Categories &lt;br /&gt;
[[Category:Articles created via the Article Wizard]]---&amp;gt;&lt;br /&gt;
[[Category:1992 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:American stage actresses]]&lt;br /&gt;
[[Category:American women singer-songwriters]]&lt;br /&gt;
[[Category:American musical theatre actresses]]&lt;br /&gt;
[[Category:21st-century American actresses]]&lt;br /&gt;
[[Category:21st-century American singers]]&lt;br /&gt;
[[Category:Musicians from San Diego]]&lt;br /&gt;
[[Category:Musicians from Vista, California]]&lt;br /&gt;
[[Category:American music journalists]]&lt;br /&gt;
[[Category:American women journalists]]&lt;br /&gt;
[[Category:Journalists from California]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--[[Category:American film actresses]]&lt;br /&gt;
[[Category:American television actresses]]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Women writers about music]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Singer-songwriters from California]]&lt;br /&gt;
{{authority control}}&lt;br /&gt;
[[Category:21st-century American women singers]]&lt;br /&gt;
[[Category:21st-century American journalists]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6273</id>
		<title>Draft: Heather Youmans</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6273"/>
		<updated>2024-02-21T04:32:48Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: move MBA out of lead&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{short description|American singer-songwriter}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox musical artist&lt;br /&gt;
| name             = Heather Youmans&lt;br /&gt;
| image            = File:Heather_Youmans.jpg&lt;br /&gt;
| image_size       =&lt;br /&gt;
| landscape        = &amp;lt;!-- yes, if wide image, otherwise leave blank --&amp;gt;&lt;br /&gt;
| alt              = Heather Youmans sings at 2011 Relay For Life in San Diego, California&lt;br /&gt;
| caption          =&lt;br /&gt;
| birth_name       = Heather Anne Youmans&lt;br /&gt;
| native_name      =&lt;br /&gt;
| native_name_lang =&lt;br /&gt;
| alias            =&lt;br /&gt;
| birth_date       = {{birth date and age|1992|05|16}}&lt;br /&gt;
| birth_place      = [[Vista, California]], U.S.&lt;br /&gt;
| origin           =&lt;br /&gt;
| death_date       = &amp;lt;!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) --&amp;gt;&lt;br /&gt;
| death_place      =&lt;br /&gt;
| genre            = Rock, pop, country, soul&lt;br /&gt;
| occupation       = Singer-songwriter, actor, journalist&lt;br /&gt;
| instrument       = vocals, bass&lt;br /&gt;
| years_active     = 2002–present&lt;br /&gt;
| label            = {{plainlist| &lt;br /&gt;
* Caption Records&lt;br /&gt;
* Weir Brothers Entertainment&lt;br /&gt;
* Suspicious Love Productions}}&lt;br /&gt;
| associated_acts  =&lt;br /&gt;
| website          = {{URL|www.heatheryoumans.com}}&lt;br /&gt;
| module =&lt;br /&gt;
&lt;br /&gt;
  {{Infobox person&lt;br /&gt;
    | education	= {{highlight|[[Master of Business Administration| MBA]]}}&lt;br /&gt;
    | alma_mater = {{highlight|[[California State University, Long Beach]] (2013)}}&lt;br /&gt;
  }}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color: moccasin&amp;quot;&amp;gt;&lt;br /&gt;
'''Heather Youmans''' is an American singer-songwriter, actress, tap dancer and journalist, her work has been featured in ''American Songwriter'' magazine,&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt; [[Forbes|''Forbes Women'']] and ''Parade'' magazine profiled her career and music in 2020.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans tap dancing on [[I Can See Your Voice (American TV series)|''I Can See Your Voice'']] episode 4 (FOX),&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; convinced the judges that she is a professional dancer,&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot; /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
a video depicting her delivery of the national anthem and dealing with acoustic delay effect of a large stadium (Oakland Coliseum) went viral on social media in 2021.&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Early life ==&lt;br /&gt;
Youmans began landing theatre roles at age ten, such as Amarylis in ''[[The Music Man]]'',  Marta in ''[[The Sound of Music]]'' in 2003,&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;/&amp;gt; as well as Nellie in ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]'' in 2004 at the [[Lawrence Welk|Welk]] Resort Theatre.&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;/&amp;gt;  In 2004, she won first place in the Del Mar TV Idol Contest, Junior Division, at age twelve.&amp;lt;ref name=DelMarTV/&amp;gt; On November 30, 2005, Youmans performed an opening solo at the [[UNICEF]] Snowflake Ball at the [[Beverly Wilshire Hotel|Regent Beverly Wilshire]]. Headlining acts for the evening included, [[Sting (musician)|Sting]], [[Chris Botti]] and [[Natalie Cole]].&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans attended [[Rancho Buena Vista High School]] and was active in the Associated Student Body, dance and drama programs. In 2009, she won the MACY Award for Highest Achievement and Best Supporting Vocal-Female for her role as Rusty in [[Footloose (musical)|''Footloose'']],&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;/&amp;gt; and Best Vocal Female in 2010 for her role as Jo in ''[[Little Women]]''.&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Education ==&lt;br /&gt;
Youmans holds a B.A. in Journalism and Mass Communication with a music minor (classical and jazz vocal at [[Bob Cole Conservatory of Music]]). She graduated [[magna cum laude]] from [[California State University, Long Beach]] (CSULB) in 2013, and graduated with an MBA at CSULB with an emphasis in marketing. During her undergraduate studies, Youmans created and hosted ''Heartbreakers: The Women of Rock'', a radio format program on [[Kbeach#22 West Radio|KBeach.org]] (2011-2013).  {{Highlight|While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
== Career ==&lt;br /&gt;
In 2005, Youmans earned a voice-over part, playing Becky Thatcher in Disney's ''[[Tom Sawyer's Island]]'' and the following year, won the part of Shana the Rock Star in a pre-production musical ''[[Teen Witch the Musical]]'' (2007).&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt; These accomplishments led to featured artist performances on the soundtrack for [[Moondance Alexander]] (2007).&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;/&amp;gt; Youmans' single, &amp;quot;Girl to Change Your World&amp;quot;, was a (2011) hit on [[Radio Disney]],&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; and it is one of the two Youmans songs included in the film ''Love by Design'' (2014), starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]].&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The [[Teen Witch the Musical]] project was successful in its primary goal of reproducing the missing soundtrack for the Halloween classic film [[Teen Witch]] (1989).&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt; The musical stage-play never made it out of [[Workshop production|workshop]] and has yet to achieve the secondary goal of becoming a viable [[Broadway theatre|Broadway]] offering.&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;/&amp;gt; This association with Weir Brothers Productions led to additional soundtrack features in the films ''[[Moondance Alexander]]'' (2007), ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
While concurrently studying journalism and music, Youmans auditioned and stacked up credits in Southern California regional theater and wrote for national and regional newspapers on entertainment topics. &amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; She has produced and hosted an entertainment format radio show,&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; interviewed entertainment industry legends,&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt; and ran a marketing campaign for [[Jon MacLennan|Jon MacLennan's]] iBook, ''Melodic Expressions: The Art of the Line'' (2012).&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;/&amp;gt; She works as a communications professional in [[Los Angeles]].&lt;br /&gt;
&lt;br /&gt;
=== Theatre and live performances ===&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ Professional performances and theatre roles&lt;br /&gt;
|-&lt;br /&gt;
! Year&lt;br /&gt;
! Title&lt;br /&gt;
! Role&lt;br /&gt;
! Venue&lt;br /&gt;
! Director/Producer&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[The Music Man]]''||align=&amp;quot;center&amp;quot;|Amarylis||Welk Resort Theatre||Lewis Wilkenfeld&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[Sound of Music]]''||align=&amp;quot;center&amp;quot;|Marta||Welk Resort Theatre||Joshua Carr&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Nellie||Welk Resort Theatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie (musical)|Annie]]''||align=&amp;quot;center&amp;quot;|Orphan Sadie||La Mirada Theatre for the Performing Arts||McCoy Rigby Ent. Glenn Casale&lt;br /&gt;
|-&lt;br /&gt;
|2004||''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Jessie||Saddleback Civic Light Opera||Sheryl Donchey&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[To Kill a Mockingbird]]''||align=&amp;quot;center&amp;quot;|Scout||West Coast Ensemble|| {{sic|hide=y|C. Jaffe/R. Israel}}&lt;br /&gt;
|-&lt;br /&gt;
|2005||UNICEF Snowflake Ball||align=&amp;quot;center&amp;quot;|Opening Soloist||[[Beverly Wilshire Hotel|Regent Beverly Wilshire]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2005|| ''[[Tight Quarters]]''||align=&amp;quot;center&amp;quot;|Lauren||Whitefire Theatre||Jules Aaron&lt;br /&gt;
|-&lt;br /&gt;
|2005||Kodak Christmas||align=&amp;quot;center&amp;quot;|Featured Soloist||[[Dolby Theatre|Kodak Theatre]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2006||''[[Teen Witch the Musical]]''||align=&amp;quot;center&amp;quot;|Shana the Rock Star|| [[Workshop production|workshop]] ||Alana Lambros&lt;br /&gt;
|-&lt;br /&gt;
|2008||[[New Music Weekly]] Awards||align=&amp;quot;center&amp;quot;|Featured Soloist||Avalon Theatre||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2009||''[[42nd Street (musical)|42nd Street]]'' ||align=&amp;quot;center&amp;quot;|Ensemble|| Moonlight Amphitheatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2010|| ''Once Upon A Wedding''||align=&amp;quot;center&amp;quot;|Daisy||Bahia Resort-Dinner Theatre||Laughing Tree Prod.&lt;br /&gt;
|-&lt;br /&gt;
|2010-12|| ''Journey To The Lost Temple''||align=&amp;quot;center&amp;quot;|Pippin||[[Legoland]]-California||Shawn Griener&lt;br /&gt;
|-&lt;br /&gt;
|2012||''[[American Idol]]'' Season 11||align=&amp;quot;center&amp;quot;|Contestant|| [[USS Midway Museum]]|| [[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2012||''American Idol'' Season 11||align=&amp;quot;center&amp;quot;|Hollywood Week||[[Pasadena Civic Auditorium]]||[[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2019||Jason Robert Brown In Concert||align=&amp;quot;center&amp;quot;|Lead singer||Cabaret at the Merc||Gerald Sternbach &lt;br /&gt;
|-&lt;br /&gt;
|2019||Evita In Concert||align=&amp;quot;center&amp;quot;|Ensemble||PVPA||Richard Israel &lt;br /&gt;
|-&lt;br /&gt;
|2020||HAIR||align=&amp;quot;center&amp;quot;|Suzannah 1000-Year-Old Monk||LGBT Center LA||Kate Sullivan Jared Stein&lt;br /&gt;
|-&lt;br /&gt;
|2020||New Year's Eve, National Anthem Singer||align=&amp;quot;center&amp;quot;|Soloist||Staples Center||LA Kings &amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;/&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== American Idol ===&lt;br /&gt;
In 2012, Youmans performed &amp;quot;[[Some Kind of Wonderful (The Drifters song)|Some Kind of Wonderful]]&amp;quot; at the [[American Idol]] San Diego competition and won a golden ticket after a unanimous decision from the judges ([[Steven Tyler]], [[Jennifer Lopez]] and [[Randy Jackson]]), which advanced her to the [[American Idol (season 11)#Hollywood week and Vegas rounds|''Hollywood Week'']] competition.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  Youmans was eliminated during ''Hollywood Week'' in Season 11. She attributes the elimination to nerves and an ambitious music selection, [[Heart (band)|Heart]]’s &amp;quot;[[Crazy on You]]&amp;quot;.&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Recorded and broadcast ===&lt;br /&gt;
In addition to performing in nationally televised commercials, Youmans has been involved in several cutting-edge media projects.  In 2005, Youmans played the part of Becky Thatcher in Disney's [[Tom Sawyer's Island]], a voice-over project.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  The performance was delivered via hand-held computers issued to visitors on [[Disneyland|Disneyland's]] Tom Sawyer's Island. A pilot project, titled &amp;quot;Available Light&amp;quot;, was one of the first to test Sony Blu-ray camera technology.&lt;br /&gt;
&lt;br /&gt;
==== Soundtracks ====&lt;br /&gt;
* ''[[Teen Witch the Musical]]'' (2007) original cast recording, Weir Brothers Entertainment.&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Moondance Alexander]]'' (2007) starring [[Kay Panabaker]], [[Don Johnson]] and [[Lori Loughlin]], [[20th Century Fox|20th Century Fox Home Entertainment]]&lt;br /&gt;
* ''[[Flicka 2]]'' (2010) starring [[Patrick Warburton]], [[Tammin Sursok]] and [[Clint Black]], [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011) starring [[Travis Turner]] and [[Donnelly Rhodes]],  [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''Love by Design'' (2014) starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]], Gold Line Prod. Int.&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Newport Beach FF&amp;quot;&amp;gt;{{cite web|title=Newport Beach Film Festival|url=https://www.imdb.com/event/ev0000491/2014?ref_=ttawd_ev_1|website=[[IMDb]]|accessdate=1 February 2015|date=2 February 2014|quote=First-time Filmmaker: Winner}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*''High Strung'' (2016) starring [[Keenan Kampa]], Nicholas Galitzine, [[Jane Seymour (actress)|Jane Seymour]], Riviera Films.&amp;lt;ref name=&amp;quot;High Strung&amp;quot;&amp;gt;{{cite web|title=''High Strung''|url=http://www.soundtrack.net/album/high-strung/|website=Soundtrack.net|accessdate=30 March 2016|date=8 April 2016}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Singles ====&lt;br /&gt;
&amp;lt;!--* &amp;quot;Never Gonna Be The Same Again&amp;quot; (2007)&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt;--&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World&amp;quot; (2011)&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World - The Remixes&amp;quot; (2011)&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;In My Arms&amp;quot; (2012)&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;My Kind of Trouble LIVE at the Recordium&amp;quot; (2019)&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Is It Just Me LIVE at the Recordium&amp;quot; (2019)&lt;br /&gt;
* &amp;quot;Shine&amp;quot; (2019)&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;You Made Me Hate Love Songs LIVE at YouTube Space&amp;quot; (2020)&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;A Little Closer To Happy&amp;quot; (2021)&lt;br /&gt;
* &amp;quot;Worth It&amp;quot; (2021)&lt;br /&gt;
&lt;br /&gt;
=== Journalism ===&lt;br /&gt;
Youmans writes about entertainment topics, specifically dance, music, theatre and film. Her Southern California beat includes covering venues, such as the [[Orange County Fair (California)|Orange County Fair]], the Newport Beach Jazz Festival, the [[Playboy Jazz Festival]], Sunset Jazz at Newport, the [[Hollywood Bowl]] and [[Segerstrom Center for the Arts]]. Her freelance position with [[Freedom Communications]] has afforded interviews with: [[George Lopez]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Drew Carey]] and [[Brooke Shields]],&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt;  Grammy Award-winning musicians [[David Sanborn]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Jeff Hamilton (drummer)|Jeff Hamilton]]&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;/&amp;gt; for the ''[[Orange County Register]]'', and her interview with Grammy nominee [[Brian McKnight]] was additionally published in the ''Los Angeles Register''.&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;/&amp;gt; Earlier interviews include, [[Chita Rivera]] for the ''[[Los Angeles Times]]''&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and interviews with [[Ann Wilson]]&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt; and  [[Martina McBride]]&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt; for the [[Los Angeles Times suburban sections|Los Angeles Times Media Group's]] ''Daily Pilot''.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;!--- See http://en.wikipedia.org/wiki/Wikipedia:Footnotes on how to create references using &amp;lt;ref&amp;gt;&amp;lt;/ref&amp;gt; tags which will then appear here automatically --&amp;gt;&lt;br /&gt;
{{Reflist|2| refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student gets golden ticket on 'American Idol'|url=http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|publisher=Daily 49er|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821011818/http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|archivedate=21 August 2014|date=24 January 2012}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;&amp;gt;{{cite web|author1=Giulia Nahmany|title=Giulia Nahmany Love by Design Premiere at Newport Beach Film Festival|url=https://www.youtube.com/watch?v=et6kw-AH0ZA|publisher=Giulia Nahmany YouTube Channel|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821015154/https://www.youtube.com/watch?v=et6kw-AH0ZA|archivedate=21 August 2014|date=20 May 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=TWTM&amp;gt;{{cite web|title=Teen Witch The Musical|url=http://weirbrothersentertainment.com/releases/teen-witch|publisher=Weir Brothers Entertainment|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822014020/http://weirbrothersentertainment.com/releases/teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;&amp;gt;{{cite web|title=Heather Youmans: Credits|url=http://www.allmusic.com/artist/heather-youmans-mn0000643210/credits|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=DelMarTV&amp;gt;{{cite web|title=Del Mar TV Idol Contest 2004|url=http://www.delmartv.com/idol/idol04.html|publisher=Del Mar TV Foundation|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822011402/http://www.delmartv.com/idol/idol04.html|archivedate=22 August 2014|date=10 October 2004|quote=Heather Youmans (1st place)}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;&amp;gt;{{cite web|title=Moondance Alexander Soundtrack|url=http://www.allmusic.com/album/moondance-alexander-mw0000493713|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;&amp;gt;{{cite web|title=2010 MACY Award Winners|url=http://macyawards.com/news/67-news/132-2010-macy-award-winners|publisher=MACY Awards|accessdate=22 August 2014|date=22 May 2010|url-status=dead|archiveurl=https://web.archive.org/web/20140903125715/http://macyawards.com/news/67-news/132-2010-macy-award-winners|archivedate=3 September 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;&amp;gt;{{cite web|title=2009 MACY Award Winners|url=http://macyawards.com/news/67-news/122-2009-macy-award-winners|accessdate=22 August 2014|url-status=dead|archiveurl=https://web.archive.org/web/20140822022545/http://macyawards.com/news/67-news/122-2009-macy-award-winners|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;&amp;gt;{{cite news|last1=Krugen|first1=Pam|title=Strong leads, chemistry make Welk's 'Get Your Gun' a winner|url=http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|newspaper=The San Diego Union-Tribune|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822042246/http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|archivedate=22 August 2014|date=3 September 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=Annie Get Your Gun|url=http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822044216/http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|archivedate=22 August 2014|year=2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=The Sound of Music|url=http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822045133/http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;&amp;gt;{{cite web|last1=Wood|first1=Jennifer M.|title=18 Fun Facts About 'Teen Witch'|url=http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|publisher=mental_floss|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822193830/http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;&amp;gt;{{cite web|title=Girl to Change Your World: Releases|url=http://www.allmusic.com/album/girl-to-change-your-world-mw0002363250/releases|website=[[AllMusic]]|accessdate=23 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - Girl To Change Your World|url=https://www.youtube.com/watch?v=lYU6FLZm9nQ|publisher=Caption Records YouTube Channel|accessdate=23 August 2014|date=7 February 2010}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student loses shot at 'Idol' fame|url=http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|publisher=Daily 49er|accessdate=23 August 2014|archiveurl=https://web.archive.org/web/20140823012031/http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|archivedate=23 August 2014|date=12 February 2012|quote=Still, she said she’s not ashamed of the footage. “Yeah, it sucks,” she said. “Everybody has a bad day. Yeah, it’s unfortunate that they showed me having a bad day, but what can you do?”}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Newport Jazz Festival goes down smooth|url=http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|newspaper=[[Orange County Register]]|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826092910/http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|archivedate=26 August 2014|date=29 May 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;&amp;gt;{{cite web|last1=Schnaidt|first1=Joe|title=Lighting The Way To Hope On Rodeo Drive|url=http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|publisher=Canyon News|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826100957/http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|archivedate=26 August 2014|date=4 December 2005|quote=BEVERLY HILLS — Wednesday, November 30 illuminated Rodeo Drive at Wilshire Boulevard for the annual holiday lighting ceremony with celebrities, sponsors and a ray of hope for children facing poverty, health risks and poor education.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 9 August 2011 | title = Marley &amp;amp; Me The Puppy Years music from and inspired by the motion picture | medium = MP3 &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B005JBC14S&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 4 May 2010 | title = Flicka 2 Original Motion Picture Soundtrack | medium = MP3/CD &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B003JE2EIU&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;JRAY Nom&amp;quot;&amp;gt;{{cite web|title=2009 JRAY Awards|url=http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|publisher=Fulerton Civic Light Opera|accessdate=28 August 2014|archiveurl=https://web.archive.org/web/20140828012354/http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|archivedate=28 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;&amp;gt;{{cite news|last1=Malik|first1=Abhay|title=Alumnus Jon MacLennan's iBook 'Melodic Expressions' advances guitar instruction |url=http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|newspaper=[[Daily Bruin]]|accessdate=8 August 2014|archiveurl=https://web.archive.org/web/20140808121825/http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|archivedate=8 August 2014|date=8 May 2012|quote=Heather Youmans, an “American Idol” contestant and freelance journalist, helped edit the iBook and has expressed excitement over the finished product as well.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;&amp;gt;{{cite web|last1=MacLennan|first1=Jon|title=In My Arms Jon MacLennan (feat. Heather Youmans)|url=https://www.youtube.com/watch?v=G8QJ5aToHxw|publisher=Jon MacLennan YouTube Channel|accessdate=28 August 2014|date=16 July 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - &amp;quot;Never Gonna Be the Same Again&amp;quot; Studio City Sound LIVE|url=https://www.youtube.com/watch?v=rYhEtU1EgUM|publisher=[[Studio City Sound]]|accessdate=28 August 2014|date=3 October 2011}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;iBook Press Release&amp;quot;&amp;gt;{{cite press release|title=Melodic Expressions: The Art of the Line|url=http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|website=www.heatheryoumansmusic.com/|publisher=Jon MacLennan|accessdate=28 August 2014|date=3 May 2013|archiveurl=https://web.archive.org/web/20140828221739/http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|archivedate=28 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Change in tempo for Playboy Jazz Festival&lt;br /&gt;
|url=http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=21 August 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829013440/http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Brooke Shields takes the helm of 'Chicago'&lt;br /&gt;
|url=http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=17 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829014021/http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Sunset Jazz series kicks off in Newport&lt;br /&gt;
|url=http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|accessdate=29 August 2014|newspaper=[[The Orange County Register]]|date=9 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829015132/http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;&amp;gt;{{cite web|title=Weir Brothers Entertainment: Albums|url=http://www.last.fm/label/Weir+Brothers+Entertainment/albums|website=last.fm|publisher=Weir Brothers Entertainment|accessdate=29 August 2014|archiveurl=https://web.archive.org/web/20140829023539/http://www.last.fm/label/Weir+Brothers+Entertainment/albums|archivedate=29 August 2014|year=2011|quote=Girl to Change Your World singles}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Music for most every taste|url=http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|accessdate=29 August 2014|newspaper=Daily Pilot|archiveurl=https://web.archive.org/web/20140829225029/http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=O.C. Fair gets some Heart|url=http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|accessdate=29 August 2014|newspaper=Daily Pilot|date=2 August 2012|archiveurl=https://web.archive.org/web/20140829224632/http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Youmans: Chita Rivera to perform hits from a storied career|url=http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|accessdate=29 August 2014|newspaper=[[The Los Angeles Times]]|date=10 November 2011|archiveurl=https://web.archive.org/web/20140829220754/http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival|url=http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|accessdate=29 August 2014|newspaper=[[Orange County Register]]|date=28 May 2014|archiveurl=https://web.archive.org/web/20140829215845/http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival&lt;br /&gt;
|publisher=Los Angeles Register|date=29 May 2014&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;&amp;gt;{{cite news|title='High Strung' Soundtrack Announced|url=http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|accessdate=3 May 2016|publisher=FILM MUSIC REPORTER|date=9 March 2016|archiveurl=https://web.archive.org/web/20160503051828/http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|archivedate=3 May 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;&amp;gt;{{cite web|author1=Kristyn Burtt|title=Heather Youmans at the Red Carpet Premiere for &amp;quot;High Strung&amp;quot; #HighStrungMovie|url=https://www.youtube.com/watch?v=YOlN1Zt4_I8|website=YouTube.com|publisher=Mingle Media TV|accessdate=3 May 2016|date=30 March 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=Meet This Week's She Rocks Spotlight Series Artists, Including Grammy-Nominated Headliner Mindi Abair | website=Parade | date=2020-04-22 | url=https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-url=https://web.archive.org/web/20200427002753/https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-date=2020-04-27 | url-status=dead | access-date=2020-04-27}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;&amp;gt;{{cite web | title=Daily Discovery: Heather Youmans, &amp;quot;Shine&amp;quot; « American Songwriter | website=American Songwriter | date=2019-11-13 | url=https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200316151706/https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-date=2020-03-16 | url-status=live | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;&amp;gt;{{cite web | last=Buttonow | first=Leslie | title=Front and Center: Heather Youmans, PR &amp;amp; Communications Manager, Fender Musical Instruments Corporation – the WiMN - The Women's International Music Network | website=thewimn.com | date=2019-05-01 | url=https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-url=https://web.archive.org/web/20200426083920/https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-date=2020-04-26 | url-status=unfit | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;&amp;gt;{{cite web | title=Premiere: Singer-Songwriter Heather Youmans Reveals Latest Single &amp;quot;Shine&amp;quot; + Music Video | website=Elicit Magazine | date=2019-10-18 | url=http://www.elicitmagazine.com/heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200428035459/http://www.elicitmagazine.com/heather-youmans-shine/ | archive-date=2020-04-28 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;&amp;gt;{{cite web |url= https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble |title= Heather Youmans Gets Honest And Real In &amp;quot;My Kind Of Trouble&amp;quot; |date= 2019-08-13 |website= BuzzMusic |access-date= 2020-04-27 |archive-date= 2020-04-28 |archive-url= https://web.archive.org/web/20200428034603/https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;&amp;gt;{{cite web | title=Emerging Headliner: Heather Youmans | website=Headliner Magazine | date=2020-02-25 | url=https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-url=https://web.archive.org/web/20200225061919/https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-date=2020-02-25 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;&amp;gt;{{cite web | last=Brunner | first=Jeryl | title=Why This Successful Singer-Songwriter Won't Give Up Her Day Job | website=Forbes | date=2020-09-30 | url=https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/ | access-date=2020-10-01 |archive-url=https://web.archive.org/web/20201001011624if_/https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/?fbclid=IwAR3q2uGBNQP6MO-2pr57Mopo6AM0b_lktTAEhvQKHD6XhTNH5jSQoOQpiT4#5d2b64a67b7e|archive-date=2020-10-01}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=You're Gonna Feel the Joy of Heather Youmans' Video for 'Shine' | website=Parade: Entertainment, Recipes, Health, Life, Holidays | date=2020-10-06 | url=https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-url=https://web.archive.org/web/20201007032747/https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-date=2020-10-07 | url-status=dead | access-date=2020-10-07}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;&amp;gt;{{cite web | title=Heather Youmans Releases 'Shine' As Love Letter To Younger Self | website=Headliner Magazine | url=https://headlinermagazine.net/blog/heather-youmans-releases-shine-as-love-letter-to-younger-self.html | access-date=2020-10-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;&amp;gt;{{cite AV media  | people = Heather Youmans  | date = 2020-10-28  | title = The Tap Dancer Performs &amp;quot;Youngblood&amp;quot; By 5 Seconds Of Summer - Season 1 Ep. 4 - I CAN SEE YOUR VOICE  | language = en  | url = https://www.youtube.com/watch?v=Z5rghUxRero  | access-date = 2020-10-31  | publisher = FOX }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot;&amp;gt;{{cite web | title=Column: Singer from Vista stuns panel in new Fox reality series | website=San Diego Union-Tribune | date=2020-11-14 | url=https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-url=https://web.archive.org/web/20201118211051/https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-date=2020-11-18 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot;&amp;gt;{{cite web | last=Upadhyay | first=Nayna | title=EXCLUSIVE - Heather Youmans says 'I Can See Your Voice' is all about finding 'singers that America needs to know' | website=MEAWW | date=2020-11-16 | url=https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-url=https://web.archive.org/web/20201116192203/https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-date=2020-11-16 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.heatheryoumans.com Official website]&lt;br /&gt;
* {{YouTube|user=HeatherYoumans|Heather Youmans}}&lt;br /&gt;
* {{Facebook|HeatherYoumansOfficial|Heather Youmans}}&lt;br /&gt;
&amp;lt;!--* {{itunes|us/artist/heather-youmans/id219552589|Heather Youmans}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Youmans, Heather}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Categories &lt;br /&gt;
[[Category:Articles created via the Article Wizard]]---&amp;gt;&lt;br /&gt;
[[Category:1992 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:American stage actresses]]&lt;br /&gt;
[[Category:American women singer-songwriters]]&lt;br /&gt;
[[Category:American musical theatre actresses]]&lt;br /&gt;
[[Category:21st-century American actresses]]&lt;br /&gt;
[[Category:21st-century American singers]]&lt;br /&gt;
[[Category:Musicians from San Diego]]&lt;br /&gt;
[[Category:Musicians from Vista, California]]&lt;br /&gt;
[[Category:American music journalists]]&lt;br /&gt;
[[Category:American women journalists]]&lt;br /&gt;
[[Category:Journalists from California]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--[[Category:American film actresses]]&lt;br /&gt;
[[Category:American television actresses]]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Women writers about music]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Singer-songwriters from California]]&lt;br /&gt;
{{authority control}}&lt;br /&gt;
[[Category:21st-century American women singers]]&lt;br /&gt;
[[Category:21st-century American journalists]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6272</id>
		<title>Draft: Heather Youmans</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Heather_Youmans&amp;diff=6272"/>
		<updated>2024-02-21T04:01:10Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: Person Infobox&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{short description|American singer-songwriter}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox musical artist&lt;br /&gt;
| name             = Heather Youmans&lt;br /&gt;
| image            = File:Heather_Youmans.jpg&lt;br /&gt;
| image_size       =&lt;br /&gt;
| landscape        = &amp;lt;!-- yes, if wide image, otherwise leave blank --&amp;gt;&lt;br /&gt;
| alt              = Heather Youmans sings at 2011 Relay For Life in San Diego, California&lt;br /&gt;
| caption          =&lt;br /&gt;
| birth_name       = Heather Anne Youmans&lt;br /&gt;
| native_name      =&lt;br /&gt;
| native_name_lang =&lt;br /&gt;
| alias            =&lt;br /&gt;
| birth_date       = {{birth date and age|1992|05|16}}&lt;br /&gt;
| birth_place      = [[Vista, California]], U.S.&lt;br /&gt;
| origin           =&lt;br /&gt;
| death_date       = &amp;lt;!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) --&amp;gt;&lt;br /&gt;
| death_place      =&lt;br /&gt;
| genre            = Rock, pop, country, soul&lt;br /&gt;
| occupation       = Singer-songwriter, actor, journalist&lt;br /&gt;
| instrument       = vocals, bass&lt;br /&gt;
| years_active     = 2002–present&lt;br /&gt;
| label            = {{plainlist| &lt;br /&gt;
* Caption Records&lt;br /&gt;
* Weir Brothers Entertainment&lt;br /&gt;
* Suspicious Love Productions}}&lt;br /&gt;
| associated_acts  =&lt;br /&gt;
| website          = {{URL|www.heatheryoumans.com}}&lt;br /&gt;
| module =&lt;br /&gt;
  {{Infobox person&lt;br /&gt;
    | education	= [[Master of Business Administration| MBA]]&lt;br /&gt;
    | alma_mater = [[California State University, Long Beach]] (2013)&lt;br /&gt;
  }}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color: moccasin&amp;quot;&amp;gt;&lt;br /&gt;
'''Heather Youmans''' is an American singer-songwriter, actress, tap dancer and journalist, her work has been featured in ''American Songwriter'' magazine,&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt; [[Forbes|''Forbes Women'']] and ''Parade'' magazine profiled her career and music in 2020.&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;/&amp;gt; An opening solo for a UNICEF benefit in 2005, headlined by [[Sting (musician)|Sting]] and [[Natalie Cole]],&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;/&amp;gt; led to soundtrack work in the films, ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; While earning her MBA, Youmans wrote for the ''[[Los Angeles Times]]'',&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and the ''[[Orange County Register]]'',&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;/&amp;gt; and later served as a publicist for [[Fender Musical Instruments Corporation|Fender Guitars]].&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;/&amp;gt; Youmans tap dancing on [[I Can See Your Voice (American TV series)|''I Can See Your Voice'']] episode 4 (FOX),&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot; /&amp;gt; convinced the judges that she is a professional dancer,&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot; /&amp;gt; a video depicting her delivery of the national anthem and dealing with acoustic delay effect of a large stadium (Oakland Coliseum) went viral on social media in 2021.&amp;lt;ref name=&amp;quot;Fowler 2021 l599&amp;quot;&amp;gt;{{cite web | last=Fowler | first=Kate | title=Woman Reveals Shocking Reality of Singing in a Stadium With Sound Delay | website=Newsweek | date=2021-07-01 | url=https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-url=https://web.archive.org/web/20230620092724/https://www.newsweek.com/heather-youmans-reveals-shocking-reality-singing-stadium-sound-delay-1605905 | archive-date=2023-06-20 | url-status=live | access-date=2023-11-28}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Early life ==&lt;br /&gt;
Youmans began landing theatre roles at age ten, such as Amarylis in ''[[The Music Man]]'',  Marta in ''[[The Sound of Music]]'' in 2003,&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;/&amp;gt; as well as Nellie in ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]'' in 2004 at the [[Lawrence Welk|Welk]] Resort Theatre.&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;/&amp;gt;  In 2004, she won first place in the Del Mar TV Idol Contest, Junior Division, at age twelve.&amp;lt;ref name=DelMarTV/&amp;gt; On November 30, 2005, Youmans performed an opening solo at the [[UNICEF]] Snowflake Ball at the [[Beverly Wilshire Hotel|Regent Beverly Wilshire]]. Headlining acts for the evening included, [[Sting (musician)|Sting]], [[Chris Botti]] and [[Natalie Cole]].&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Youmans attended [[Rancho Buena Vista High School]] and was active in the Associated Student Body, dance and drama programs. In 2009, she won the MACY Award for Highest Achievement and Best Supporting Vocal-Female for her role as Rusty in [[Footloose (musical)|''Footloose'']],&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;/&amp;gt; and Best Vocal Female in 2010 for her role as Jo in ''[[Little Women]]''.&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Education ==&lt;br /&gt;
Youmans holds a B.A. in Journalism and Mass Communication with a music minor (classical and jazz vocal at [[Bob Cole Conservatory of Music]]). She graduated [[magna cum laude]] from [[California State University, Long Beach]] (CSULB) in 2013, and graduated with an MBA at CSULB with an emphasis in marketing. During her undergraduate studies, Youmans created and hosted ''Heartbreakers: The Women of Rock'', a radio format program on [[Kbeach#22 West Radio|KBeach.org]] (2011-2013).&lt;br /&gt;
&lt;br /&gt;
== Career ==&lt;br /&gt;
In 2005, Youmans earned a voice-over part, playing Becky Thatcher in Disney's ''[[Tom Sawyer's Island]]'' and the following year, won the part of Shana the Rock Star in a pre-production musical ''[[Teen Witch the Musical]]'' (2007).&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt; These accomplishments led to featured artist performances on the soundtrack for [[Moondance Alexander]] (2007).&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;/&amp;gt; Youmans' single, &amp;quot;Girl to Change Your World&amp;quot;, was a (2011) hit on [[Radio Disney]],&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; and it is one of the two Youmans songs included in the film ''Love by Design'' (2014), starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]].&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The [[Teen Witch the Musical]] project was successful in its primary goal of reproducing the missing soundtrack for the Halloween classic film [[Teen Witch]] (1989).&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt; The musical stage-play never made it out of [[Workshop production|workshop]] and has yet to achieve the secondary goal of becoming a viable [[Broadway theatre|Broadway]] offering.&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;/&amp;gt; This association with Weir Brothers Productions led to additional soundtrack features in the films ''[[Moondance Alexander]]'' (2007), ''[[Flicka 2]]'' (2010) and ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011).&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
While concurrently studying journalism and music, Youmans auditioned and stacked up credits in Southern California regional theater and wrote for national and regional newspapers on entertainment topics. &amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; She has produced and hosted an entertainment format radio show,&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt; interviewed entertainment industry legends,&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt; and ran a marketing campaign for [[Jon MacLennan|Jon MacLennan's]] iBook, ''Melodic Expressions: The Art of the Line'' (2012).&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;/&amp;gt; She works as a communications professional in [[Los Angeles]].&lt;br /&gt;
&lt;br /&gt;
=== Theatre and live performances ===&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ Professional performances and theatre roles&lt;br /&gt;
|-&lt;br /&gt;
! Year&lt;br /&gt;
! Title&lt;br /&gt;
! Role&lt;br /&gt;
! Venue&lt;br /&gt;
! Director/Producer&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[The Music Man]]''||align=&amp;quot;center&amp;quot;|Amarylis||Welk Resort Theatre||Lewis Wilkenfeld&lt;br /&gt;
|-&lt;br /&gt;
|2003|| ''[[Sound of Music]]''||align=&amp;quot;center&amp;quot;|Marta||Welk Resort Theatre||Joshua Carr&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Nellie||Welk Resort Theatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[Annie (musical)|Annie]]''||align=&amp;quot;center&amp;quot;|Orphan Sadie||La Mirada Theatre for the Performing Arts||McCoy Rigby Ent. Glenn Casale&lt;br /&gt;
|-&lt;br /&gt;
|2004||''[[Annie Get Your Gun (musical)|Annie Get Your Gun]]''||align=&amp;quot;center&amp;quot;|Jessie||Saddleback Civic Light Opera||Sheryl Donchey&lt;br /&gt;
|-&lt;br /&gt;
|2004|| ''[[To Kill a Mockingbird]]''||align=&amp;quot;center&amp;quot;|Scout||West Coast Ensemble|| {{sic|hide=y|C. Jaffe/R. Israel}}&lt;br /&gt;
|-&lt;br /&gt;
|2005||UNICEF Snowflake Ball||align=&amp;quot;center&amp;quot;|Opening Soloist||[[Beverly Wilshire Hotel|Regent Beverly Wilshire]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2005|| ''[[Tight Quarters]]''||align=&amp;quot;center&amp;quot;|Lauren||Whitefire Theatre||Jules Aaron&lt;br /&gt;
|-&lt;br /&gt;
|2005||Kodak Christmas||align=&amp;quot;center&amp;quot;|Featured Soloist||[[Dolby Theatre|Kodak Theatre]]||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2006||''[[Teen Witch the Musical]]''||align=&amp;quot;center&amp;quot;|Shana the Rock Star|| [[Workshop production|workshop]] ||Alana Lambros&lt;br /&gt;
|-&lt;br /&gt;
|2008||[[New Music Weekly]] Awards||align=&amp;quot;center&amp;quot;|Featured Soloist||Avalon Theatre||align=&amp;quot;center&amp;quot;|-&lt;br /&gt;
|-&lt;br /&gt;
|2009||''[[42nd Street (musical)|42nd Street]]'' ||align=&amp;quot;center&amp;quot;|Ensemble|| Moonlight Amphitheatre||Jon Engstrom&lt;br /&gt;
|-&lt;br /&gt;
|2010|| ''Once Upon A Wedding''||align=&amp;quot;center&amp;quot;|Daisy||Bahia Resort-Dinner Theatre||Laughing Tree Prod.&lt;br /&gt;
|-&lt;br /&gt;
|2010-12|| ''Journey To The Lost Temple''||align=&amp;quot;center&amp;quot;|Pippin||[[Legoland]]-California||Shawn Griener&lt;br /&gt;
|-&lt;br /&gt;
|2012||''[[American Idol]]'' Season 11||align=&amp;quot;center&amp;quot;|Contestant|| [[USS Midway Museum]]|| [[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2012||''American Idol'' Season 11||align=&amp;quot;center&amp;quot;|Hollywood Week||[[Pasadena Civic Auditorium]]||[[Fox Broadcasting Company|Fox Network]]&lt;br /&gt;
|-&lt;br /&gt;
|2019||Jason Robert Brown In Concert||align=&amp;quot;center&amp;quot;|Lead singer||Cabaret at the Merc||Gerald Sternbach &lt;br /&gt;
|-&lt;br /&gt;
|2019||Evita In Concert||align=&amp;quot;center&amp;quot;|Ensemble||PVPA||Richard Israel &lt;br /&gt;
|-&lt;br /&gt;
|2020||HAIR||align=&amp;quot;center&amp;quot;|Suzannah 1000-Year-Old Monk||LGBT Center LA||Kate Sullivan Jared Stein&lt;br /&gt;
|-&lt;br /&gt;
|2020||New Year's Eve, National Anthem Singer||align=&amp;quot;center&amp;quot;|Soloist||Staples Center||LA Kings &amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;/&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== American Idol ===&lt;br /&gt;
In 2012, Youmans performed &amp;quot;[[Some Kind of Wonderful (The Drifters song)|Some Kind of Wonderful]]&amp;quot; at the [[American Idol]] San Diego competition and won a golden ticket after a unanimous decision from the judges ([[Steven Tyler]], [[Jennifer Lopez]] and [[Randy Jackson]]), which advanced her to the [[American Idol (season 11)#Hollywood week and Vegas rounds|''Hollywood Week'']] competition.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  Youmans was eliminated during ''Hollywood Week'' in Season 11. She attributes the elimination to nerves and an ambitious music selection, [[Heart (band)|Heart]]’s &amp;quot;[[Crazy on You]]&amp;quot;.&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Recorded and broadcast ===&lt;br /&gt;
In addition to performing in nationally televised commercials, Youmans has been involved in several cutting-edge media projects.  In 2005, Youmans played the part of Becky Thatcher in Disney's [[Tom Sawyer's Island]], a voice-over project.&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;/&amp;gt;  The performance was delivered via hand-held computers issued to visitors on [[Disneyland|Disneyland's]] Tom Sawyer's Island. A pilot project, titled &amp;quot;Available Light&amp;quot;, was one of the first to test Sony Blu-ray camera technology.&lt;br /&gt;
&lt;br /&gt;
==== Soundtracks ====&lt;br /&gt;
* ''[[Teen Witch the Musical]]'' (2007) original cast recording, Weir Brothers Entertainment.&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Moondance Alexander]]'' (2007) starring [[Kay Panabaker]], [[Don Johnson]] and [[Lori Loughlin]], [[20th Century Fox|20th Century Fox Home Entertainment]]&lt;br /&gt;
* ''[[Flicka 2]]'' (2010) starring [[Patrick Warburton]], [[Tammin Sursok]] and [[Clint Black]], [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''[[Marley &amp;amp; Me: The Puppy Years]]'' (2011) starring [[Travis Turner]] and [[Donnelly Rhodes]],  [[20th Century Fox|20th Century Fox Home Entertainment]]&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;/&amp;gt;&lt;br /&gt;
* ''Love by Design'' (2014) starring Giulia Nahmany, [[David Oaks]] and [[Jane Seymour (actress)|Jane Seymour]], Gold Line Prod. Int.&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Newport Beach FF&amp;quot;&amp;gt;{{cite web|title=Newport Beach Film Festival|url=https://www.imdb.com/event/ev0000491/2014?ref_=ttawd_ev_1|website=[[IMDb]]|accessdate=1 February 2015|date=2 February 2014|quote=First-time Filmmaker: Winner}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
*''High Strung'' (2016) starring [[Keenan Kampa]], Nicholas Galitzine, [[Jane Seymour (actress)|Jane Seymour]], Riviera Films.&amp;lt;ref name=&amp;quot;High Strung&amp;quot;&amp;gt;{{cite web|title=''High Strung''|url=http://www.soundtrack.net/album/high-strung/|website=Soundtrack.net|accessdate=30 March 2016|date=8 April 2016}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Singles ====&lt;br /&gt;
&amp;lt;!--* &amp;quot;Never Gonna Be The Same Again&amp;quot; (2007)&amp;lt;ref name=TWTM/&amp;gt;&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;/&amp;gt;--&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World&amp;quot; (2011)&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Girl To Change Your World - The Remixes&amp;quot; (2011)&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;In My Arms&amp;quot; (2012)&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;My Kind of Trouble LIVE at the Recordium&amp;quot; (2019)&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;Is It Just Me LIVE at the Recordium&amp;quot; (2019)&lt;br /&gt;
* &amp;quot;Shine&amp;quot; (2019)&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;You Made Me Hate Love Songs LIVE at YouTube Space&amp;quot; (2020)&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;quot;A Little Closer To Happy&amp;quot; (2021)&lt;br /&gt;
* &amp;quot;Worth It&amp;quot; (2021)&lt;br /&gt;
&lt;br /&gt;
=== Journalism ===&lt;br /&gt;
Youmans writes about entertainment topics, specifically dance, music, theatre and film. Her Southern California beat includes covering venues, such as the [[Orange County Fair (California)|Orange County Fair]], the Newport Beach Jazz Festival, the [[Playboy Jazz Festival]], Sunset Jazz at Newport, the [[Hollywood Bowl]] and [[Segerstrom Center for the Arts]]. Her freelance position with [[Freedom Communications]] has afforded interviews with: [[George Lopez]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Drew Carey]] and [[Brooke Shields]],&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;/&amp;gt;  Grammy Award-winning musicians [[David Sanborn]],&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;/&amp;gt; [[Jeff Hamilton (drummer)|Jeff Hamilton]]&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;/&amp;gt; for the ''[[Orange County Register]]'', and her interview with Grammy nominee [[Brian McKnight]] was additionally published in the ''Los Angeles Register''.&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;/&amp;gt; Earlier interviews include, [[Chita Rivera]] for the ''[[Los Angeles Times]]''&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;/&amp;gt; and interviews with [[Ann Wilson]]&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;/&amp;gt; and  [[Martina McBride]]&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;/&amp;gt; for the [[Los Angeles Times suburban sections|Los Angeles Times Media Group's]] ''Daily Pilot''.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;!--- See http://en.wikipedia.org/wiki/Wikipedia:Footnotes on how to create references using &amp;lt;ref&amp;gt;&amp;lt;/ref&amp;gt; tags which will then appear here automatically --&amp;gt;&lt;br /&gt;
{{Reflist|2| refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Daily 49er&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student gets golden ticket on 'American Idol'|url=http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|publisher=Daily 49er|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821011818/http://www.daily49er.com/news/2012/01/24/csulb-student-gets-golden-ticket-on-american-idol/|archivedate=21 August 2014|date=24 January 2012}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Love by Design&amp;quot;&amp;gt;{{cite web|author1=Giulia Nahmany|title=Giulia Nahmany Love by Design Premiere at Newport Beach Film Festival|url=https://www.youtube.com/watch?v=et6kw-AH0ZA|publisher=Giulia Nahmany YouTube Channel|accessdate=21 August 2014|archiveurl=https://web.archive.org/web/20140821015154/https://www.youtube.com/watch?v=et6kw-AH0ZA|archivedate=21 August 2014|date=20 May 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=TWTM&amp;gt;{{cite web|title=Teen Witch The Musical|url=http://weirbrothersentertainment.com/releases/teen-witch|publisher=Weir Brothers Entertainment|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822014020/http://weirbrothersentertainment.com/releases/teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;AllMusic Credits&amp;quot;&amp;gt;{{cite web|title=Heather Youmans: Credits|url=http://www.allmusic.com/artist/heather-youmans-mn0000643210/credits|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=DelMarTV&amp;gt;{{cite web|title=Del Mar TV Idol Contest 2004|url=http://www.delmartv.com/idol/idol04.html|publisher=Del Mar TV Foundation|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822011402/http://www.delmartv.com/idol/idol04.html|archivedate=22 August 2014|date=10 October 2004|quote=Heather Youmans (1st place)}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Moondance at Allmusic&amp;quot;&amp;gt;{{cite web|title=Moondance Alexander Soundtrack|url=http://www.allmusic.com/album/moondance-alexander-mw0000493713|website=[[AllMusic]]|accessdate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Macy 2010&amp;quot;&amp;gt;{{cite web|title=2010 MACY Award Winners|url=http://macyawards.com/news/67-news/132-2010-macy-award-winners|publisher=MACY Awards|accessdate=22 August 2014|date=22 May 2010|url-status=dead|archiveurl=https://web.archive.org/web/20140903125715/http://macyawards.com/news/67-news/132-2010-macy-award-winners|archivedate=3 September 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MACY 2009&amp;quot;&amp;gt;{{cite web|title=2009 MACY Award Winners|url=http://macyawards.com/news/67-news/122-2009-macy-award-winners|accessdate=22 August 2014|url-status=dead|archiveurl=https://web.archive.org/web/20140822022545/http://macyawards.com/news/67-news/122-2009-macy-award-winners|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;UT San Diego Annie Get&amp;quot;&amp;gt;{{cite news|last1=Krugen|first1=Pam|title=Strong leads, chemistry make Welk's 'Get Your Gun' a winner|url=http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|newspaper=The San Diego Union-Tribune|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822042246/http://www.utsandiego.com/news/2003/Sep/03/strong-leads-chemistry-make-welks-get-your-gun-a/2/|archivedate=22 August 2014|date=3 September 2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SDPlayBill Annie&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=Annie Get Your Gun|url=http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822044216/http://www.artsdig.com/reviews/reviews_anniegetyourgun_welk.html|archivedate=22 August 2014|year=2003}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Soundofmusic SDP&amp;quot;&amp;gt;{{cite web|last1=Hopper|first1=Rob|title=The Sound of Music|url=http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|publisher=San Diego Playbill|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822045133/http://www.artsdig.com/reviews/reviews_soundofmusic_welk.html|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;18 Fun Facts About 'Teen Witch'&amp;quot;&amp;gt;{{cite web|last1=Wood|first1=Jennifer M.|title=18 Fun Facts About 'Teen Witch'|url=http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|publisher=mental_floss|accessdate=22 August 2014|archiveurl=https://web.archive.org/web/20140822193830/http://mentalfloss.com/article/56436/18-fun-facts-about-teen-witch|archivedate=22 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl to Change Allmusic&amp;quot;&amp;gt;{{cite web|title=Girl to Change Your World: Releases|url=http://www.allmusic.com/album/girl-to-change-your-world-mw0002363250/releases|website=[[AllMusic]]|accessdate=23 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Girl To Change Video&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - Girl To Change Your World|url=https://www.youtube.com/watch?v=lYU6FLZm9nQ|publisher=Caption Records YouTube Channel|accessdate=23 August 2014|date=7 February 2010}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;IDOL Elim&amp;quot;&amp;gt;{{cite web|last1=O'Connor|first1=Caitlin|title=CSULB student loses shot at 'Idol' fame|url=http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|publisher=Daily 49er|accessdate=23 August 2014|archiveurl=https://web.archive.org/web/20140823012031/http://www.daily49er.com/news/2012/02/12/csulb-student-loses-shot-at-idol-fame/|archivedate=23 August 2014|date=12 February 2012|quote=Still, she said she’s not ashamed of the footage. “Yeah, it sucks,” she said. “Everybody has a bad day. Yeah, it’s unfortunate that they showed me having a bad day, but what can you do?”}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;OC Reg 1st&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Newport Jazz Festival goes down smooth|url=http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|newspaper=[[Orange County Register]]|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826092910/http://www.ocregister.com/articles/festival-510486-jazz-culbertson.html|archivedate=26 August 2014|date=29 May 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Canyon News UNICEF&amp;quot;&amp;gt;{{cite web|last1=Schnaidt|first1=Joe|title=Lighting The Way To Hope On Rodeo Drive|url=http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|publisher=Canyon News|accessdate=26 August 2014|archiveurl=https://web.archive.org/web/20140826100957/http://www.canyon-news.com/artman2/publish/News_1153/article_3851.php|archivedate=26 August 2014|date=4 December 2005|quote=BEVERLY HILLS — Wednesday, November 30 illuminated Rodeo Drive at Wilshire Boulevard for the annual holiday lighting ceremony with celebrities, sponsors and a ray of hope for children facing poverty, health risks and poor education.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Puppy Years Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 9 August 2011 | title = Marley &amp;amp; Me The Puppy Years music from and inspired by the motion picture | medium = MP3 &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B005JBC14S&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Flicka 2 Soundtrack&amp;quot;&amp;gt;{{cite AV media | date = 4 May 2010 | title = Flicka 2 Original Motion Picture Soundtrack | medium = MP3/CD &lt;br /&gt;
 | publisher = Weir Brothers Entertainment | asin = B003JE2EIU&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;JRAY Nom&amp;quot;&amp;gt;{{cite web|title=2009 JRAY Awards|url=http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|publisher=Fulerton Civic Light Opera|accessdate=28 August 2014|archiveurl=https://web.archive.org/web/20140828012354/http://www.alexsyiek.com/NHSMTA/JRAY2009/FullertonCivicLightOpera.htm|archivedate=28 August 2014|year=2009}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Melodic Expressions&amp;quot;&amp;gt;{{cite news|last1=Malik|first1=Abhay|title=Alumnus Jon MacLennan's iBook 'Melodic Expressions' advances guitar instruction |url=http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|newspaper=[[Daily Bruin]]|accessdate=8 August 2014|archiveurl=https://web.archive.org/web/20140808121825/http://dailybruin.com/2012/05/08/alumnus_jon_maclennan039s_ibook_039melodic_expressions039_advances_guitar_instruction/|archivedate=8 August 2014|date=8 May 2012|quote=Heather Youmans, an “American Idol” contestant and freelance journalist, helped edit the iBook and has expressed excitement over the finished product as well.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;In My Arms video&amp;quot;&amp;gt;{{cite web|last1=MacLennan|first1=Jon|title=In My Arms Jon MacLennan (feat. Heather Youmans)|url=https://www.youtube.com/watch?v=G8QJ5aToHxw|publisher=Jon MacLennan YouTube Channel|accessdate=28 August 2014|date=16 July 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;SCS Never Gonna be (Live)&amp;quot;&amp;gt;{{cite web|title=Heather Youmans - &amp;quot;Never Gonna Be the Same Again&amp;quot; Studio City Sound LIVE|url=https://www.youtube.com/watch?v=rYhEtU1EgUM|publisher=[[Studio City Sound]]|accessdate=28 August 2014|date=3 October 2011}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;ref name=&amp;quot;iBook Press Release&amp;quot;&amp;gt;{{cite press release|title=Melodic Expressions: The Art of the Line|url=http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|website=www.heatheryoumansmusic.com/|publisher=Jon MacLennan|accessdate=28 August 2014|date=3 May 2013|archiveurl=https://web.archive.org/web/20140828221739/http://www.heatheryoumansmusic.com/resources/Melodic%20Expressions%20Press%20Release%20FINAL%20UPDATED.pdf|archivedate=28 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Lopez Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Change in tempo for Playboy Jazz Festival&lt;br /&gt;
|url=http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=21 August 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829013440/http://www.ocregister.com/articles/festival-512719-lopez-jazz.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carey and Shields Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Brooke Shields takes the helm of 'Chicago'&lt;br /&gt;
|url=http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|accessdate=29 August 2014&lt;br /&gt;
|newspaper=[[The Orange County Register]]&lt;br /&gt;
|date=17 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829014021/http://www.ocregister.com/articles/shields-517408-broadway-carey.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Hamilton Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather&lt;br /&gt;
|title=Sunset Jazz series kicks off in Newport&lt;br /&gt;
|url=http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|accessdate=29 August 2014|newspaper=[[The Orange County Register]]|date=9 July 2013&lt;br /&gt;
|archiveurl=https://web.archive.org/web/20140829015132/http://www.ocregister.com/articles/jazz-516249-hamilton-pizzarelli.html&lt;br /&gt;
|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Remixes&amp;quot;&amp;gt;{{cite web|title=Weir Brothers Entertainment: Albums|url=http://www.last.fm/label/Weir+Brothers+Entertainment/albums|website=last.fm|publisher=Weir Brothers Entertainment|accessdate=29 August 2014|archiveurl=https://web.archive.org/web/20140829023539/http://www.last.fm/label/Weir+Brothers+Entertainment/albums|archivedate=29 August 2014|year=2011|quote=Girl to Change Your World singles}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Martina Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Music for most every taste|url=http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|accessdate=29 August 2014|newspaper=Daily Pilot|archiveurl=https://web.archive.org/web/20140829225029/http://articles.dailypilot.com/2012-07-17/entertainment/tn-dpt-0718-lineup-20120717_1_rock-band-red-velvet-car-classic-rock|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wilson Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=O.C. Fair gets some Heart|url=http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|accessdate=29 August 2014|newspaper=Daily Pilot|date=2 August 2012|archiveurl=https://web.archive.org/web/20140829224632/http://articles.dailypilot.com/2012-08-02/entertainment/tn-dpt-0803-heart-20120802_1_nancy-wilson-heart-roll-hall|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Chita Rivera&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Youmans: Chita Rivera to perform hits from a storied career|url=http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|accessdate=29 August 2014|newspaper=[[The Los Angeles Times]]|date=10 November 2011|archiveurl=https://web.archive.org/web/20140829220754/http://www.latimes.com/tn-dpt-1111-youmans-20111110-story.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight Interview&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival|url=http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|accessdate=29 August 2014|newspaper=[[Orange County Register]]|date=28 May 2014|archiveurl=https://web.archive.org/web/20140829215845/http://www.ocregister.com/articles/jazz-616055-music-mcknight.html|archivedate=29 August 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;McKnight LAreg&amp;quot;&amp;gt;{{cite news|last1=Youmans|first1=Heather|title=Chaka Khan, Brian McKnight noteworthy newcomers at Newport Beach Jazz Festival&lt;br /&gt;
|publisher=Los Angeles Register|date=29 May 2014&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;High Strung FMR&amp;quot;&amp;gt;{{cite news|title='High Strung' Soundtrack Announced|url=http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|accessdate=3 May 2016|publisher=FILM MUSIC REPORTER|date=9 March 2016|archiveurl=https://web.archive.org/web/20160503051828/http://filmmusicreporter.com/2016/03/09/high-strung-soundtrack-announced/|archivedate=3 May 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Red Carpet High Strung&amp;quot;&amp;gt;{{cite web|author1=Kristyn Burtt|title=Heather Youmans at the Red Carpet Premiere for &amp;quot;High Strung&amp;quot; #HighStrungMovie|url=https://www.youtube.com/watch?v=YOlN1Zt4_I8|website=YouTube.com|publisher=Mingle Media TV|accessdate=3 May 2016|date=30 March 2016}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=Meet This Week's She Rocks Spotlight Series Artists, Including Grammy-Nominated Headliner Mindi Abair | website=Parade | date=2020-04-22 | url=https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-url=https://web.archive.org/web/20200427002753/https://parade.com/1028592/laurawhitmore/grammy-nominated-singemindi-abair-she-rocks-spotlight-series/ | archive-date=2020-04-27 | url-status=dead | access-date=2020-04-27}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;American Songwriter 2019&amp;quot;&amp;gt;{{cite web | title=Daily Discovery: Heather Youmans, &amp;quot;Shine&amp;quot; « American Songwriter | website=American Songwriter | date=2019-11-13 | url=https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200316151706/https://americansongwriter.com/daily-discovery-heather-youmans-shine/ | archive-date=2020-03-16 | url-status=live | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Buttonow 2019&amp;quot;&amp;gt;{{cite web | last=Buttonow | first=Leslie | title=Front and Center: Heather Youmans, PR &amp;amp; Communications Manager, Fender Musical Instruments Corporation – the WiMN - The Women's International Music Network | website=thewimn.com | date=2019-05-01 | url=https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-url=https://web.archive.org/web/20200426083920/https://www.thewimn.com/front-and-center-heather-youmans-pr-communications-manager-fender-musical-instruments-corporation/ | archive-date=2020-04-26 | url-status=unfit | access-date=2020-04-26}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Elicit Magazine -Shine- 2019&amp;quot;&amp;gt;{{cite web | title=Premiere: Singer-Songwriter Heather Youmans Reveals Latest Single &amp;quot;Shine&amp;quot; + Music Video | website=Elicit Magazine | date=2019-10-18 | url=http://www.elicitmagazine.com/heather-youmans-shine/ | archive-url=https://web.archive.org/web/20200428035459/http://www.elicitmagazine.com/heather-youmans-shine/ | archive-date=2020-04-28 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;My Kind of Trouble&amp;quot;&amp;gt;{{cite web |url= https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble |title= Heather Youmans Gets Honest And Real In &amp;quot;My Kind Of Trouble&amp;quot; |date= 2019-08-13 |website= BuzzMusic |access-date= 2020-04-27 |archive-date= 2020-04-28 |archive-url= https://web.archive.org/web/20200428034603/https://www.buzz-music.com/post/heather-youmans-gets-honest-and-real-in-my-kind-of-trouble}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine 2020&amp;quot;&amp;gt;{{cite web | title=Emerging Headliner: Heather Youmans | website=Headliner Magazine | date=2020-02-25 | url=https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-url=https://web.archive.org/web/20200225061919/https://headlinermagazine.net/headliners/heather-youmans-fender-you-made-me-hate-love-songs.html | archive-date=2020-02-25 | url-status=live | access-date=2020-04-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Brunner 2020&amp;quot;&amp;gt;{{cite web | last=Brunner | first=Jeryl | title=Why This Successful Singer-Songwriter Won't Give Up Her Day Job | website=Forbes | date=2020-09-30 | url=https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/ | access-date=2020-10-01 |archive-url=https://web.archive.org/web/20201001011624if_/https://www.forbes.com/sites/jerylbrunner/2020/09/30/why-this-successful-singer-songwriter-wont-give-up-her-day-job/?fbclid=IwAR3q2uGBNQP6MO-2pr57Mopo6AM0b_lktTAEhvQKHD6XhTNH5jSQoOQpiT4#5d2b64a67b7e|archive-date=2020-10-01}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Whitmore 2020 Shine&amp;quot;&amp;gt;{{cite web | last=Whitmore | first=Laura B. | title=You're Gonna Feel the Joy of Heather Youmans' Video for 'Shine' | website=Parade: Entertainment, Recipes, Health, Life, Holidays | date=2020-10-06 | url=https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-url=https://web.archive.org/web/20201007032747/https://parade.com/1098537/laurawhitmore/heather-youmans-video-for-shine/ | archive-date=2020-10-07 | url-status=dead | access-date=2020-10-07}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Headliner Magazine&amp;quot;&amp;gt;{{cite web | title=Heather Youmans Releases 'Shine' As Love Letter To Younger Self | website=Headliner Magazine | url=https://headlinermagazine.net/blog/heather-youmans-releases-shine-as-love-letter-to-younger-self.html | access-date=2020-10-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;See Your Voice #4&amp;quot;&amp;gt;{{cite AV media  | people = Heather Youmans  | date = 2020-10-28  | title = The Tap Dancer Performs &amp;quot;Youngblood&amp;quot; By 5 Seconds Of Summer - Season 1 Ep. 4 - I CAN SEE YOUR VOICE  | language = en  | url = https://www.youtube.com/watch?v=Z5rghUxRero  | access-date = 2020-10-31  | publisher = FOX }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;San Diego Union-Tribune 2020&amp;quot;&amp;gt;{{cite web | title=Column: Singer from Vista stuns panel in new Fox reality series | website=San Diego Union-Tribune | date=2020-11-14 | url=https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-url=https://web.archive.org/web/20201118211051/https://www.sandiegouniontribune.com/columnists/story/2020-11-13/column-singer-from-vista-stuns-panel-in-new-fox-reality-series | archive-date=2020-11-18 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Upadhyay 2020&amp;quot;&amp;gt;{{cite web | last=Upadhyay | first=Nayna | title=EXCLUSIVE - Heather Youmans says 'I Can See Your Voice' is all about finding 'singers that America needs to know' | website=MEAWW | date=2020-11-16 | url=https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-url=https://web.archive.org/web/20201116192203/https://meaww.com/amp/heather-youmans-i-can-see-your-voice-music-singer-game-show | archive-date=2020-11-16 | url-status=live | access-date=2020-11-20}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.heatheryoumans.com Official website]&lt;br /&gt;
* {{YouTube|user=HeatherYoumans|Heather Youmans}}&lt;br /&gt;
* {{Facebook|HeatherYoumansOfficial|Heather Youmans}}&lt;br /&gt;
&amp;lt;!--* {{itunes|us/artist/heather-youmans/id219552589|Heather Youmans}}--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Youmans, Heather}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Categories &lt;br /&gt;
[[Category:Articles created via the Article Wizard]]---&amp;gt;&lt;br /&gt;
[[Category:1992 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:American stage actresses]]&lt;br /&gt;
[[Category:American women singer-songwriters]]&lt;br /&gt;
[[Category:American musical theatre actresses]]&lt;br /&gt;
[[Category:21st-century American actresses]]&lt;br /&gt;
[[Category:21st-century American singers]]&lt;br /&gt;
[[Category:Musicians from San Diego]]&lt;br /&gt;
[[Category:Musicians from Vista, California]]&lt;br /&gt;
[[Category:American music journalists]]&lt;br /&gt;
[[Category:American women journalists]]&lt;br /&gt;
[[Category:Journalists from California]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--[[Category:American film actresses]]&lt;br /&gt;
[[Category:American television actresses]]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Women writers about music]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Singer-songwriters from California]]&lt;br /&gt;
{{authority control}}&lt;br /&gt;
[[Category:21st-century American women singers]]&lt;br /&gt;
[[Category:21st-century American journalists]]&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6271</id>
		<title>Draft: Thriller</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6271"/>
		<updated>2024-02-16T21:54:33Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: Beau's suggestions&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= ''Thriller'' memorialized =&lt;br /&gt;
&lt;br /&gt;
In 2015, Marinelli sat for an interview with the [[BBC]], reflecting on his memories and contributions to Michael Jackson's ''Thriller''.&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;/&amp;gt;  [[Tom Bahler]] had introduced Marinelli to music producer [[Quincy Jones]]. Marinelli and business partner, Brian Banks, were hired as session musicians working at [[Westlake Recording Studios|Westlake Studios]] in West Hollywood for the creation of ''Thriller''.  In addition to bringing in three truckloads of synthesizer gear, preliminary duties consisted of briefing Michael Jackson on the capabilities of the emerging technologies, sound creation and programming.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
The BBC &amp;quot;Witness&amp;quot; radio podcast was followed by three ''How We Created It'' pilot vlog series. In the first episode, Marinelli demonstrates how to recreate the &amp;quot;falling star&amp;quot; sound that opens the &amp;quot;Thriller&amp;quot; song.&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;/&amp;gt; The following two-part series is called &amp;quot;Studio Stories&amp;quot;.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot; /&amp;gt; Quincy Jones' production assistant, Steven Ray,&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;/&amp;gt; joined Marinelli to reminisce in 2020.&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;/&amp;gt; Marinelli and Ray continued recording episodes and were approached by Audivita Studios for the creation of ''Stories In The Room:'' “Michael Jackson’s Thriller Album”,&amp;lt;ref name=&amp;quot;MusicTech 2023 SITR&amp;quot;/&amp;gt; with 72 episodes, posted as of February 2024.&amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;YouTube SITR 72 videos&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''Stories in The Room'' guest appearances include:&lt;br /&gt;
&lt;br /&gt;
* Matt Forger (sound engineer)&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;/&amp;gt;&lt;br /&gt;
* Lorraine Fields (&amp;quot;Thriller&amp;quot; zombie dancer)&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Larry Williams (jazz musician)|Larry Williams]] (keyboards and reeds)&lt;br /&gt;
* [[Greg Phillinganes]] (keyboards)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Phillinganes recreate&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;MusicTech 2023 SITR&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Steve Porcaro]] (keyboards, composer on &amp;quot;Human Nature&amp;quot;)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Paul Jackson Jr.]] (guitar, no relation to Michael Jackson)&lt;br /&gt;
* The Waters Family (vocal ensemble, [[Julia Waters Tillman]]. [[Oren Waters]], and [[Maxine Willard Waters]])&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
With ''Stories in The Room'' largely completed, Marinelli continues to discuss music topics like sound creation, musical gear and composing on his own Youtube channel. Episodes that have gained media attention include: &amp;quot;How I Programmed The Bass On Michael Jackson's PYT&amp;quot;,&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;/&amp;gt; &amp;quot;MJ's Billie Jean Bass - It’s 4 Instruments!&amp;quot; featuring Paul Jackson Jr., &amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt; and &amp;quot;The Billie Jean Chord Stack - It’s 4 Sounds!&amp;quot;.&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;/&amp;gt; Additional noteworthy topics include jams with Doctor Mix,&amp;lt;ref name=&amp;quot;MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 2004 f698&amp;quot;/&amp;gt; and a discussion of [[Giorgio Moroder]]'s work process with engineer Ross Hogarth,&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Marinelli appears in the film ''[[Thriller 40 (film)|Thriller 40]]'' (2023) (Showtime - Paramount+) from his studios.&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Image support for article not to be included ==&lt;br /&gt;
{{Wide image|File:Photo-of-Thriller-40-Credit-Roll.jpg|800|Photo of Thriller 40 (2023) Credit Roll|900|center|alt=Photo of Thriller 40 (2023) Credit Roll}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{Reflist|30em|refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;&amp;gt;{{cite web | title=Witness History, Michael Jackson's Thriller | website=BBC | date=2015-12-23 | url=https://www.bbc.co.uk/programmes/p039z0n4 | access-date=2024-02-02 | archive-date=2024-02-02 | archive-url=https://web.archive.org/web/20240202204125/https://www.bbc.co.uk/programmes/p039z0n4 | quote = In 1982 the world's best selling album was released. Thriller included hits such as Beat It, Billie Jean and Wanna Be Startin' Somethin' as well as the title track. Witness speaks to Anthony Marinelli who worked on the seminal album.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;&amp;gt;{{cite web | last=Carr | first=Dan | title=The synth sounds of Michael Jackson's Thriller (and how to recreate them in your DAW) | website=MusicRadar | date=2022-11-30 | url=https://www.musicradar.com/news/thriller-synth-sounds | access-date=2024-02-02 | archive-url= https://web.archive.org/web/20240117053822/https://www.musicradar.com/news/thriller-synth-sounds | archive-date=2024-01-17 | quote = Looking for a more ‘cinematic’ sound, Quincy Jones enlisted synthesizer programmers Anthony Marinelli and Brian Banks, who bought every synth available at the time and turned up to Westlake Studios with three trucks full of instruments.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;&amp;gt;{{cite web | title=Blog | website=(/\/\) Anthony Marinelli // Music Forever | date=2020-10-13 | url=https://www.anthonymarinelli.com/blog | access-date=2024-02-03  | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203012039/https://www.anthonymarinelli.com/blog}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;&amp;gt;{{cite web | title=Stories In The Room: Michael Jackson’s Thriller Album | website=MJVibe | date=2023-02-11 | url=https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/ | access-date=2024-02-03 | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203013207/https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;&amp;gt;{{cite web | title=Original programmer who worked on Michael Jackson’s Billie Jean reveals how he created its iconic four-chord stack | website=MusicTech | date=2023-12-22 | url=https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/ | access-date=2024-02-03  | archive-date=2024-01-06 | archive-url=https://web.archive.org/web/20240106023325/https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;&amp;gt;{{cite web | title=Monster budgets, visits from Jackie Onassis, and a very angry Vincent Price: how Michael Jackson made Thriller | website=The Telegraph | date=2018-08-29 | url=https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/ | access-date=2024-02-04 | archive-date=2022-12-06 | archive-url=https://web.archive.org/web/20221206012217/https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/| quote= This was before the internet, so I don't know how people found out. It was like dancing on stage, it was like doing a concert. We didn't start taping until the middle of the night. Every night it was like, he came out and people were screaming. It was like being in concert with Michael Jackson - it was very exciting.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;&amp;gt; {{AllMusic | id= steven-ray-mn0000038850 | tab= credits | title= Steven Ray Credits}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;&amp;gt;{{cite web | title=“Don’t think, just do”: Former Giorgio Moroder collaborator says the godfather of disco was “all about the melody” | website=MusicTech | date=2024-01-04 | url=https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | access-date=2024-02-05 | archive-url=https://web.archive.org/web/20240117200522/https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | archive-date=2024-02-05 }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;&amp;gt;{{cite web | last=George | first=Nelson | title=THRILLER 40 AIRS ON PARAMOUNT+ DEC. 2 | website=nelsongeorge.substack.com | date=2023-11-16 | url=https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207011919/https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;&amp;gt;{{cite web | title=Thriller 40: the documentary | website=BRICE NAJAR | date=2023-12-10 | url=https://bricenajar.com/en/thriller-40-the-documentary/ | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207013457/https://bricenajar.com/en/thriller-40-the-documentary/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=Here’s how the synth bass sound for Michael Jackson’s PYT was programmed on an ARP 2600 | website=Yahoo Entertainment | date=2023-05-24 | url=https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html | access-date=2024-02-10 | archive-url= https://web.archive.org/web/20240210215151/https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html  | archive-date=2024-02-10}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;&amp;gt;{{cite web | last=Wyeth | first=Stefan | title=Darkness Falls: How To Sound Like Michael Jackson | website=gearnews.com | date=2023-10-31 | url=https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/ | access-date=2024-02-10 | archive-date=2024-02-10 | archive-url=https://web.archive.org/web/20240210233745/https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;&amp;gt;{{cite web | title=How I Programmed The Bass On Michael Jackson's PYT | website=YouTube | url=https://www.youtube.com/watch?v=EVx9CnUqXGM | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;&amp;gt;{{cite web | title=MJ's Billie Jean Bass | website=YouTube | url=https://www.youtube.com/watch?v=zKzcR0sUvV0 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=It turns out that the Billie Jean chord stab sound is more complex than we thought: it needed 3 Yamaha CS-80 synth layers and vocal ‘oohs’ from Michael Jackson | website=MusicRadar | date=2023-12-18 | url=https://www.musicradar.com/news/billie-jean-chord-stack-synths | access-date=2024-02-11 | archive-date=2024-02-11 | archive-url=https://web.archive.org/web/20240211011143/https://www.musicradar.com/news/billie-jean-chord-stack-synths }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;&amp;gt;{{cite web | title=The Billie Jean Chord Stack | website=YouTube | url=https://www.youtube.com/watch?v=_mIYTG2hlT8 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 2004 f698&amp;quot;&amp;gt;{{cite web | title=CS80, 73 Moog Modular, FVS, ARP 2600 | website=MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 | date=2004-02-26 | url=https://www.matrixsynth.com/2023/11/anthony-marinelli-doctor-mix-synth-jam.html | access-date=2024-02-11 | archive-date=2023-11-30 | archive-url=https://web.archive.org/web/20231130041506/https://www.matrixsynth.com/2023/11/anthony-marinelli-doctor-mix-synth-jam.html}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Phillinganes recreate&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=Watch Greg Phillinganes recreate Michael Jackson’s Thriller using the original synths | website=MusicRadar | date=2023-12-31 | url=https://www.musicradar.com/news/watch-greg-phillinganes-recreate-michael-jacksons-thriller-using-the-original-synths | access-date=2024-02-11 | archive-date=2024-02-11 | archive-url= https://web.archive.org/web/20240211035711/https://www.musicradar.com/news/watch-greg-phillinganes-recreate-michael-jacksons-thriller-using-the-original-synths}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2023 SITR&amp;quot;&amp;gt;{{cite web | title=Greg Phillinganes recreates synth parts from Michael Jackson’s Thriller | website=MusicTech | date=2023-02-13 | url=https://musictech.com/news/music/greg-phillinganes-recreates-synth-parts-from-michael-jacksons-thriller/ | access-date=2024-02-11 | archive-date=2024-02-11 | archive-url=https://web.archive.org/web/20240211040308/https://musictech.com/news/music/greg-phillinganes-recreates-synth-parts-from-michael-jacksons-thriller/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube SITR 72 videos&amp;quot;&amp;gt;{{cite web | title=Michael Jackson Thriller Album Stories In the Room | website=YouTube | url=https://www.youtube.com/@storiesintheroom/videos | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6270</id>
		<title>Draft: Thriller</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6270"/>
		<updated>2024-02-16T20:28:40Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: edits pre review&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= ''Thriller'' memorialized =&lt;br /&gt;
&lt;br /&gt;
In 2015, Marinelli sat for an interview with the [[BBC]], reflecting on his memories and contributions to Michael Jackson's ''Thriller''.&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;/&amp;gt;  Tom Baylor had introduced Marinelli to music producer [[Quincy Jones]]. Marinelli and business partner, Brian Banks, were hired as session musicians working at [[Westlake Recording Studios|Westlake Studios]] in West Hollywood for the creation of ''Thriller''.  In addition to bringing in three truckloads of synthesizer gear, preliminary duties consisted of briefing Michael Jackson on the capabilities of the emerging technologies, sound creation and programming.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
The BBC &amp;quot;Witness&amp;quot; radio podcast was followed by three ''How We Created It'' pilot vlog series. In the first episode, Marinelli demonstrates how to recreate the &amp;quot;falling star&amp;quot; sound that opens the &amp;quot;Thriller&amp;quot; song.&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;/&amp;gt; The following two-part series is called &amp;quot;Studio Stories&amp;quot;.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot; /&amp;gt; Quincy Jones' production assistant, Steven Ray,&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;/&amp;gt; joined Marinelli to reminisce in 2020.&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;/&amp;gt; Marinelli and Ray continued recording episodes and were approached by Audivita Studios for the creation of ''Stories In The Room:'' “Michael Jackson’s Thriller Album”,&amp;lt;ref name=&amp;quot;MusicTech 2023 SITR&amp;quot;/&amp;gt; with 72 episodes, posted as of February 2024.&amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;YouTube SITR 72 videos&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''Stories in The Room'' guest appearances include:&lt;br /&gt;
&lt;br /&gt;
* Matt Forger (sound engineer)&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;/&amp;gt;&lt;br /&gt;
* Lorraine Fields (&amp;quot;Thriller&amp;quot; zombie dancer)&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Larry Williams (jazz musician)|Larry Williams]] (keyboards and reeds)&lt;br /&gt;
* [[Greg Phillinganes]] (keyboards)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Phillinganes recreate&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;MusicTech 2023 SITR&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Steve Porcaro]] (keyboards, composer on &amp;quot;Human Nature&amp;quot;)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Paul Jackson Jr.]] (guitar, no relation to Michael Jackson)&lt;br /&gt;
* The Waters Family (vocal ensemble, [[Julia Waters Tillman]]. [[Oren Waters]], and [[Maxine Willard Waters]])&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
With ''Stories in The Room'' largely completed, Marinelli continues to talk shop about sound creation, musical gear and composing on his own Youtube channel. Episodes that have gained media attention include: &amp;quot;How I Programmed The Bass On Michael Jackson's PYT&amp;quot;,&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;/&amp;gt; &amp;quot;MJ's Billie Jean Bass - It’s 4 Instruments!&amp;quot; featuring Paul Jackson Jr., &amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt; and &amp;quot;The Billie Jean Chord Stack - It’s 4 Sounds!&amp;quot;.&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;/&amp;gt; Additional noteworthy topics include jams with Doctor Mix,&amp;lt;ref name=&amp;quot;MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 2004 f698&amp;quot;/&amp;gt; and a discussion of [[Giorgio Moroder]]'s work process with engineer Ross Hogarth,&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Marinelli appears in the film ''[[Thriller 40 (film)|Thriller 40]]'' (2023) (Showtime - Paramount+) from his studios.&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Image support for article not to be included ==&lt;br /&gt;
{{Wide image|File:Photo-of-Thriller-40-Credit-Roll.jpg|800|Photo of Thriller 40 (2023) Credit Roll|900|center|alt=Photo of Thriller 40 (2023) Credit Roll}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{Reflist|30em|refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;&amp;gt;{{cite web | title=Witness History, Michael Jackson's Thriller | website=BBC | date=2015-12-23 | url=https://www.bbc.co.uk/programmes/p039z0n4 | access-date=2024-02-02 | archive-date=2024-02-02 | archive-url=https://web.archive.org/web/20240202204125/https://www.bbc.co.uk/programmes/p039z0n4 | quote = In 1982 the world's best selling album was released. Thriller included hits such as Beat It, Billie Jean and Wanna Be Startin' Somethin' as well as the title track. Witness speaks to Anthony Marinelli who worked on the seminal album.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;&amp;gt;{{cite web | last=Carr | first=Dan | title=The synth sounds of Michael Jackson's Thriller (and how to recreate them in your DAW) | website=MusicRadar | date=2022-11-30 | url=https://www.musicradar.com/news/thriller-synth-sounds | access-date=2024-02-02 | archive-url= https://web.archive.org/web/20240117053822/https://www.musicradar.com/news/thriller-synth-sounds | archive-date=2024-01-17 | quote = Looking for a more ‘cinematic’ sound, Quincy Jones enlisted synthesizer programmers Anthony Marinelli and Brian Banks, who bought every synth available at the time and turned up to Westlake Studios with three trucks full of instruments.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;&amp;gt;{{cite web | title=Blog | website=(/\/\) Anthony Marinelli // Music Forever | date=2020-10-13 | url=https://www.anthonymarinelli.com/blog | access-date=2024-02-03  | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203012039/https://www.anthonymarinelli.com/blog}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;&amp;gt;{{cite web | title=Stories In The Room: Michael Jackson’s Thriller Album | website=MJVibe | date=2023-02-11 | url=https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/ | access-date=2024-02-03 | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203013207/https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;&amp;gt;{{cite web | title=Original programmer who worked on Michael Jackson’s Billie Jean reveals how he created its iconic four-chord stack | website=MusicTech | date=2023-12-22 | url=https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/ | access-date=2024-02-03  | archive-date=2024-01-06 | archive-url=https://web.archive.org/web/20240106023325/https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;&amp;gt;{{cite web | title=Monster budgets, visits from Jackie Onassis, and a very angry Vincent Price: how Michael Jackson made Thriller | website=The Telegraph | date=2018-08-29 | url=https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/ | access-date=2024-02-04 | archive-date=2022-12-06 | archive-url=https://web.archive.org/web/20221206012217/https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/| quote= This was before the internet, so I don't know how people found out. It was like dancing on stage, it was like doing a concert. We didn't start taping until the middle of the night. Every night it was like, he came out and people were screaming. It was like being in concert with Michael Jackson - it was very exciting.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;&amp;gt; {{AllMusic | id= steven-ray-mn0000038850 | tab= credits | title= Steven Ray Credits}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;&amp;gt;{{cite web | title=“Don’t think, just do”: Former Giorgio Moroder collaborator says the godfather of disco was “all about the melody” | website=MusicTech | date=2024-01-04 | url=https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | access-date=2024-02-05 | archive-url=https://web.archive.org/web/20240117200522/https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | archive-date=2024-02-05 }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;&amp;gt;{{cite web | last=George | first=Nelson | title=THRILLER 40 AIRS ON PARAMOUNT+ DEC. 2 | website=nelsongeorge.substack.com | date=2023-11-16 | url=https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207011919/https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;&amp;gt;{{cite web | title=Thriller 40: the documentary | website=BRICE NAJAR | date=2023-12-10 | url=https://bricenajar.com/en/thriller-40-the-documentary/ | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207013457/https://bricenajar.com/en/thriller-40-the-documentary/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=Here’s how the synth bass sound for Michael Jackson’s PYT was programmed on an ARP 2600 | website=Yahoo Entertainment | date=2023-05-24 | url=https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html | access-date=2024-02-10 | archive-url= https://web.archive.org/web/20240210215151/https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html  | archive-date=2024-02-10}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;&amp;gt;{{cite web | last=Wyeth | first=Stefan | title=Darkness Falls: How To Sound Like Michael Jackson | website=gearnews.com | date=2023-10-31 | url=https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/ | access-date=2024-02-10 | archive-date=2024-02-10 | archive-url=https://web.archive.org/web/20240210233745/https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;&amp;gt;{{cite web | title=How I Programmed The Bass On Michael Jackson's PYT | website=YouTube | url=https://www.youtube.com/watch?v=EVx9CnUqXGM | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;&amp;gt;{{cite web | title=MJ's Billie Jean Bass | website=YouTube | url=https://www.youtube.com/watch?v=zKzcR0sUvV0 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=It turns out that the Billie Jean chord stab sound is more complex than we thought: it needed 3 Yamaha CS-80 synth layers and vocal ‘oohs’ from Michael Jackson | website=MusicRadar | date=2023-12-18 | url=https://www.musicradar.com/news/billie-jean-chord-stack-synths | access-date=2024-02-11 | archive-date=2024-02-11 | archive-url=https://web.archive.org/web/20240211011143/https://www.musicradar.com/news/billie-jean-chord-stack-synths }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;&amp;gt;{{cite web | title=The Billie Jean Chord Stack | website=YouTube | url=https://www.youtube.com/watch?v=_mIYTG2hlT8 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 2004 f698&amp;quot;&amp;gt;{{cite web | title=CS80, 73 Moog Modular, FVS, ARP 2600 | website=MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 | date=2004-02-26 | url=https://www.matrixsynth.com/2023/11/anthony-marinelli-doctor-mix-synth-jam.html | access-date=2024-02-11 | archive-date=2023-11-30 | archive-url=https://web.archive.org/web/20231130041506/https://www.matrixsynth.com/2023/11/anthony-marinelli-doctor-mix-synth-jam.html}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Phillinganes recreate&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=Watch Greg Phillinganes recreate Michael Jackson’s Thriller using the original synths | website=MusicRadar | date=2023-12-31 | url=https://www.musicradar.com/news/watch-greg-phillinganes-recreate-michael-jacksons-thriller-using-the-original-synths | access-date=2024-02-11 | archive-date=2024-02-11 | archive-url= https://web.archive.org/web/20240211035711/https://www.musicradar.com/news/watch-greg-phillinganes-recreate-michael-jacksons-thriller-using-the-original-synths}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2023 SITR&amp;quot;&amp;gt;{{cite web | title=Greg Phillinganes recreates synth parts from Michael Jackson’s Thriller | website=MusicTech | date=2023-02-13 | url=https://musictech.com/news/music/greg-phillinganes-recreates-synth-parts-from-michael-jacksons-thriller/ | access-date=2024-02-11 | archive-date=2024-02-11 | archive-url=https://web.archive.org/web/20240211040308/https://musictech.com/news/music/greg-phillinganes-recreates-synth-parts-from-michael-jacksons-thriller/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube SITR 72 videos&amp;quot;&amp;gt;{{cite web | title=Michael Jackson Thriller Album Stories In the Room | website=YouTube | url=https://www.youtube.com/@storiesintheroom/videos | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6269</id>
		<title>Draft: Thriller</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6269"/>
		<updated>2024-02-11T04:14:40Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= ''Thriller'' memorialized =&lt;br /&gt;
&lt;br /&gt;
In 2015, Marinelli sat for an interview with the [[BBC]], reflecting on his memories and contributions to Michael Jackson's ''Thriller''.&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;/&amp;gt;  Tom Baylor had introduced Marinelli to music producer [[Quincy Jones]]. Marinelli and business partner, Brian Banks, were hired as session musicians working at [[Westlake Recording Studios|Westlake Studios]] in West Hollywood for the creation of ''Thriller''.  In addition to bringing in three truckloads of synthesizer gear, preliminary duties consisted of briefing Michael Jackson on the capabilities of the emerging technologies, sound creation and programming.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
The BBC &amp;quot;Witness&amp;quot; radio podcast was followed by three pilot vlogs for Marinelli's YouTube channel called ''How We Created It''. In the first episode, Marinelli demonstrates how to recreate the &amp;quot;falling star&amp;quot; sound that opens the &amp;quot;Thriller&amp;quot; song.&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;/&amp;gt; The following two-part series is called &amp;quot;Studio Stories&amp;quot;.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot; /&amp;gt; Quincy Jones' production assistant, Steven Ray,&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;/&amp;gt; joined Marinelli to reminisce in 2020.&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;/&amp;gt; Marinelli and Ray continued recording episodes and were approached by Audivita Studios for the creation of ''Stories In The Room:'' “Michael Jackson’s Thriller Album”,&amp;lt;ref name=&amp;quot;MusicTech 2023 SITR&amp;quot;/&amp;gt; with 72 episodes, posted as of February 2024.&amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;YouTube SITR 72 videos&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''Stories in The Room'' guest appearances include:&lt;br /&gt;
&lt;br /&gt;
* Matt Forger (sound engineer)&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;/&amp;gt;&lt;br /&gt;
* Lorraine Fields (&amp;quot;Thriller&amp;quot; zombie dancer)&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Larry Williams (jazz musician)|Larry Williams]] (keyboards and reeds)&lt;br /&gt;
* [[Greg Phillinganes]] (keyboards)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Phillinganes recreate&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;MusicTech 2023 SITR&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Steve Porcaro]] (keyboards, composer on &amp;quot;Human Nature&amp;quot;)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Paul Jackson Jr.]] (guitar, no relation to Michael Jackson)&lt;br /&gt;
* The Waters Family (vocal ensemble, [[Julia Waters Tillman]]. [[Oren Waters]], and [[Maxine Willard Waters]])&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
With ''Stories in The Room'' largely completed, Marinelli continues to talk shop about sound creation, musical gear and composing on his own Youtube channel. Episodes that have gained media attention include: &amp;quot;How I Programmed The Bass On Michael Jackson's PYT&amp;quot;,&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;/&amp;gt; &amp;quot;MJ's Billie Jean Bass - It’s 4 Instruments!&amp;quot; featuring Paul Jackson Jr., &amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt; and &amp;quot;The Billie Jean Chord Stack - It’s 4 Sounds!&amp;quot;.&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;/&amp;gt; Additional noteworthy topics include jams with Doctor Mix,&amp;lt;ref name=&amp;quot;MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 2004 f698&amp;quot;/&amp;gt; and a discussion of [[Giorgio Moroder]]'s work process with engineer Ross Hogarth,&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Marinelli appears in the film ''[[Thriller 40 (film)|Thriller 40]]'' (2023) (Showtime - Paramount+) from his studios.&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Wide image|File:Photo-of-Thriller-40-Credit-Roll.jpg|800|Photo of Thriller 40 (2023) Credit Roll|900|center|alt=Photo of Thriller 40 (2023) Credit Roll}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{Reflist|30em|refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;&amp;gt;{{cite web | title=Witness History, Michael Jackson's Thriller | website=BBC | date=2015-12-23 | url=https://www.bbc.co.uk/programmes/p039z0n4 | access-date=2024-02-02 | archive-date=2024-02-02 | archive-url=https://web.archive.org/web/20240202204125/https://www.bbc.co.uk/programmes/p039z0n4 | quote = In 1982 the world's best selling album was released. Thriller included hits such as Beat It, Billie Jean and Wanna Be Startin' Somethin' as well as the title track. Witness speaks to Anthony Marinelli who worked on the seminal album.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;&amp;gt;{{cite web | last=Carr | first=Dan | title=The synth sounds of Michael Jackson's Thriller (and how to recreate them in your DAW) | website=MusicRadar | date=2022-11-30 | url=https://www.musicradar.com/news/thriller-synth-sounds | access-date=2024-02-02 | archive-url= https://web.archive.org/web/20240117053822/https://www.musicradar.com/news/thriller-synth-sounds | archive-date=2024-01-17 | quote = Looking for a more ‘cinematic’ sound, Quincy Jones enlisted synthesizer programmers Anthony Marinelli and Brian Banks, who bought every synth available at the time and turned up to Westlake Studios with three trucks full of instruments.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;&amp;gt;{{cite web | title=Blog | website=(/\/\) Anthony Marinelli // Music Forever | date=2020-10-13 | url=https://www.anthonymarinelli.com/blog | access-date=2024-02-03  | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203012039/https://www.anthonymarinelli.com/blog}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;&amp;gt;{{cite web | title=Stories In The Room: Michael Jackson’s Thriller Album | website=MJVibe | date=2023-02-11 | url=https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/ | access-date=2024-02-03 | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203013207/https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;&amp;gt;{{cite web | title=Original programmer who worked on Michael Jackson’s Billie Jean reveals how he created its iconic four-chord stack | website=MusicTech | date=2023-12-22 | url=https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/ | access-date=2024-02-03  | archive-date=2024-01-06 | archive-url=https://web.archive.org/web/20240106023325/https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;&amp;gt;{{cite web | title=Monster budgets, visits from Jackie Onassis, and a very angry Vincent Price: how Michael Jackson made Thriller | website=The Telegraph | date=2018-08-29 | url=https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/ | access-date=2024-02-04 | archive-date=2022-12-06 | archive-url=https://web.archive.org/web/20221206012217/https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/| quote= This was before the internet, so I don't know how people found out. It was like dancing on stage, it was like doing a concert. We didn't start taping until the middle of the night. Every night it was like, he came out and people were screaming. It was like being in concert with Michael Jackson - it was very exciting.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;&amp;gt; {{AllMusic | id= steven-ray-mn0000038850 | tab= credits | title= Steven Ray Credits}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;&amp;gt;{{cite web | title=“Don’t think, just do”: Former Giorgio Moroder collaborator says the godfather of disco was “all about the melody” | website=MusicTech | date=2024-01-04 | url=https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | access-date=2024-02-05 | archive-url=https://web.archive.org/web/20240117200522/https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | archive-date=2024-02-05 }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;&amp;gt;{{cite web | last=George | first=Nelson | title=THRILLER 40 AIRS ON PARAMOUNT+ DEC. 2 | website=nelsongeorge.substack.com | date=2023-11-16 | url=https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207011919/https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;&amp;gt;{{cite web | title=Thriller 40: the documentary | website=BRICE NAJAR | date=2023-12-10 | url=https://bricenajar.com/en/thriller-40-the-documentary/ | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207013457/https://bricenajar.com/en/thriller-40-the-documentary/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=Here’s how the synth bass sound for Michael Jackson’s PYT was programmed on an ARP 2600 | website=Yahoo Entertainment | date=2023-05-24 | url=https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html | access-date=2024-02-10 | archive-url= https://web.archive.org/web/20240210215151/https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html  | archive-date=2024-02-10}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;&amp;gt;{{cite web | last=Wyeth | first=Stefan | title=Darkness Falls: How To Sound Like Michael Jackson | website=gearnews.com | date=2023-10-31 | url=https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/ | access-date=2024-02-10 | archive-date=2024-02-10 | archive-url=https://web.archive.org/web/20240210233745/https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;&amp;gt;{{cite web | title=How I Programmed The Bass On Michael Jackson's PYT | website=YouTube | url=https://www.youtube.com/watch?v=EVx9CnUqXGM | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;&amp;gt;{{cite web | title=MJ's Billie Jean Bass | website=YouTube | url=https://www.youtube.com/watch?v=zKzcR0sUvV0 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=It turns out that the Billie Jean chord stab sound is more complex than we thought: it needed 3 Yamaha CS-80 synth layers and vocal ‘oohs’ from Michael Jackson | website=MusicRadar | date=2023-12-18 | url=https://www.musicradar.com/news/billie-jean-chord-stack-synths | access-date=2024-02-11 | archive-date=2024-02-11 | archive-url=https://web.archive.org/web/20240211011143/https://www.musicradar.com/news/billie-jean-chord-stack-synths }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;&amp;gt;{{cite web | title=The Billie Jean Chord Stack | website=YouTube | url=https://www.youtube.com/watch?v=_mIYTG2hlT8 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 2004 f698&amp;quot;&amp;gt;{{cite web | title=CS80, 73 Moog Modular, FVS, ARP 2600 | website=MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 | date=2004-02-26 | url=https://www.matrixsynth.com/2023/11/anthony-marinelli-doctor-mix-synth-jam.html | access-date=2024-02-11 | archive-date=2023-11-30 | archive-url=https://web.archive.org/web/20231130041506/https://www.matrixsynth.com/2023/11/anthony-marinelli-doctor-mix-synth-jam.html}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Phillinganes recreate&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=Watch Greg Phillinganes recreate Michael Jackson’s Thriller using the original synths | website=MusicRadar | date=2023-12-31 | url=https://www.musicradar.com/news/watch-greg-phillinganes-recreate-michael-jacksons-thriller-using-the-original-synths | access-date=2024-02-11 | archive-date=2024-02-11 | archive-url= https://web.archive.org/web/20240211035711/https://www.musicradar.com/news/watch-greg-phillinganes-recreate-michael-jacksons-thriller-using-the-original-synths}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2023 SITR&amp;quot;&amp;gt;{{cite web | title=Greg Phillinganes recreates synth parts from Michael Jackson’s Thriller | website=MusicTech | date=2023-02-13 | url=https://musictech.com/news/music/greg-phillinganes-recreates-synth-parts-from-michael-jacksons-thriller/ | access-date=2024-02-11 | archive-date=2024-02-11 | archive-url=https://web.archive.org/web/20240211040308/https://musictech.com/news/music/greg-phillinganes-recreates-synth-parts-from-michael-jacksons-thriller/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube SITR 72 videos&amp;quot;&amp;gt;{{cite web | title=Michael Jackson Thriller Album Stories In the Room | website=YouTube | url=https://www.youtube.com/@storiesintheroom/videos | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6268</id>
		<title>Draft: Thriller</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6268"/>
		<updated>2024-02-11T04:13:08Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= ''Thriller'' memorialized =&lt;br /&gt;
&lt;br /&gt;
In 2015, Marinelli sat for an interview with the [[BBC]], reflecting on his memories and contributions to Michael Jackson's ''Thriller''.&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;/&amp;gt;  Tom Baylor had introduced Marinelli to music producer [[Quincy Jones]]. Marinelli and business partner, Brian Banks, were hired as session musicians working at [[Westlake Recording Studios|Westlake Studios]] in West Hollywood for the creation of ''Thriller''.  In addition to bringing in three truckloads of synthesizer gear, preliminary duties consisted of briefing Michael Jackson on the capabilities of the emerging technologies, sound creation and programming.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
The BBC &amp;quot;Witness&amp;quot; radio podcast was followed by three pilot vlogs for Marinelli's YouTube channel called ''How We Created It''. In the first episode, Marinelli demonstrates how to recreate the &amp;quot;falling star&amp;quot; sound that opens the &amp;quot;Thriller&amp;quot; song.&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;/&amp;gt; The following two-part series is called &amp;quot;Studio Stories&amp;quot;.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot; /&amp;gt; Quincy Jones' production assistant, Steven Ray,&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;/&amp;gt; joined Marinelli to reminisce in 2020.&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;/&amp;gt; Marinelli and Ray continued recording episodes and were approached by Audivita Studios for the creation of ''Stories In The Room:'' “Michael Jackson’s Thriller Album”,&amp;lt;ref name=&amp;quot;MusicTech 2023 SITR&amp;quot;/&amp;gt; with 72 episodes, posted as of February 2024.&amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;YouTube SITR 72 videos&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''Stories in The Room'' guest appearances include:&lt;br /&gt;
&lt;br /&gt;
* Matt Forger (sound engineer)&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;/&amp;gt;&lt;br /&gt;
* Lorraine Fields (&amp;quot;Thriller&amp;quot; zombie dancer)&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Larry Williams (jazz musician)|Larry Williams]] (keyboards and reeds)&lt;br /&gt;
* [[Greg Phillinganes]] (keyboards)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Phillinganes recreate&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;MusicTech 2023 SITR&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Steve Porcaro]] (keyboards, composer on &amp;quot;Human Nature&amp;quot;)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Paul Jackson Jr.]] (guitar, no relation to Michael Jackson)&lt;br /&gt;
* The Waters Family (vocal ensemble, [[Julia Waters Tillman]]. [[Oren Waters]], and [[Maxine Willard Waters]])&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
With ''Stories in The Room'' largely completed, Marinelli continues to talk shop about sound creation, musical gear and composing on his own Youtube channel. Episodes that have gained media attention include: &amp;quot;How I Programmed The Bass On Michael Jackson's PYT&amp;quot;,&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;/&amp;gt; &amp;quot;MJ's Billie Jean Bass - It’s 4 Instruments!&amp;quot; featuring Paul Jackson Jr., &amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt; and &amp;quot;The Billie Jean Chord Stack - It’s 4 Sounds!&amp;quot;.&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;/&amp;gt; Additional noteworthy topics include jams with Doctor Mix,&amp;lt;ref name=&amp;quot;MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 2004 f698&amp;quot;/&amp;gt; and a discussion of [[Giorgio Moroder]]'s work process with engineer Ross Hogarth,&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Marinelli appears in the film ''[[Thriller 40 (film)|Thriller 40]]'' (2023) (Showtime - Paramount+) from his studios.&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Wide image|File:Photo-of-Thriller-40-Credit-Roll.jpg|800|Photo of Thriller 40 (2023) Credit Roll|900|center|alt=Photo of Thriller 40 (2023) Credit Roll}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{Reflist|30em|refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;&amp;gt;{{cite web | title=Witness History, Michael Jackson's Thriller | website=BBC | date=2015-12-23 | url=https://www.bbc.co.uk/programmes/p039z0n4 | access-date=2024-02-02 | archive-date=2024-02-02 | archive-url=https://web.archive.org/web/20240202204125/https://www.bbc.co.uk/programmes/p039z0n4 | quote = In 1982 the world's best selling album was released. Thriller included hits such as Beat It, Billie Jean and Wanna Be Startin' Somethin' as well as the title track. Witness speaks to Anthony Marinelli who worked on the seminal album.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;&amp;gt;{{cite web | last=Carr | first=Dan | title=The synth sounds of Michael Jackson's Thriller (and how to recreate them in your DAW) | website=MusicRadar | date=2022-11-30 | url=https://www.musicradar.com/news/thriller-synth-sounds | access-date=2024-02-02 | archive-url= https://web.archive.org/web/20240117053822/https://www.musicradar.com/news/thriller-synth-sounds | archive-date=2024-01-17 | quote = Looking for a more ‘cinematic’ sound, Quincy Jones enlisted synthesizer programmers Anthony Marinelli and Brian Banks, who bought every synth available at the time and turned up to Westlake Studios with three trucks full of instruments.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;&amp;gt;{{cite web | title=Blog | website=(/\/\) Anthony Marinelli // Music Forever | date=2020-10-13 | url=https://www.anthonymarinelli.com/blog | access-date=2024-02-03  | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203012039/https://www.anthonymarinelli.com/blog}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;&amp;gt;{{cite web | title=Stories In The Room: Michael Jackson’s Thriller Album | website=MJVibe | date=2023-02-11 | url=https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/ | access-date=2024-02-03 | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203013207/https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;&amp;gt;{{cite web | title=Original programmer who worked on Michael Jackson’s Billie Jean reveals how he created its iconic four-chord stack | website=MusicTech | date=2023-12-22 | url=https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/ | access-date=2024-02-03  | archive-date=2024-01-06 | archive-url=https://web.archive.org/web/20240106023325/https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;&amp;gt;{{cite web | title=Monster budgets, visits from Jackie Onassis, and a very angry Vincent Price: how Michael Jackson made Thriller | website=The Telegraph | date=2018-08-29 | url=https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/ | access-date=2024-02-04 | archive-date=2022-12-06 | archive-url=https://web.archive.org/web/20221206012217/https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/| quote= This was before the internet, so I don't know how people found out. It was like dancing on stage, it was like doing a concert. We didn't start taping until the middle of the night. Every night it was like, he came out and people were screaming. It was like being in concert with Michael Jackson - it was very exciting.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;&amp;gt; {{AllMusic | id= steven-ray-mn0000038850 | tab= credits | title= Steven Ray Credits}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;&amp;gt;{{cite web | title=“Don’t think, just do”: Former Giorgio Moroder collaborator says the godfather of disco was “all about the melody” | website=MusicTech | date=2024-01-04 | url=https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | access-date=2024-02-05 | archive-url=https://web.archive.org/web/20240117200522/https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | archive-date=2024-02-05 }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;&amp;gt;{{cite web | last=George | first=Nelson | title=THRILLER 40 AIRS ON PARAMOUNT+ DEC. 2 | website=nelsongeorge.substack.com | date=2023-11-16 | url=https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207011919/https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;&amp;gt;{{cite web | title=Thriller 40: the documentary | website=BRICE NAJAR | date=2023-12-10 | url=https://bricenajar.com/en/thriller-40-the-documentary/ | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207013457/https://bricenajar.com/en/thriller-40-the-documentary/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=Here’s how the synth bass sound for Michael Jackson’s PYT was programmed on an ARP 2600 | website=Yahoo Entertainment | date=2023-05-24 | url=https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html | access-date=2024-02-10 | archive-url= https://web.archive.org/web/20240210215151/https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html  | archive-date=2024-02-10}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;&amp;gt;{{cite web | last=Wyeth | first=Stefan | title=Darkness Falls: How To Sound Like Michael Jackson | website=gearnews.com | date=2023-10-31 | url=https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/ | access-date=2024-02-10 | archive-date=2024-02-10 | archive-url=https://web.archive.org/web/20240210233745/https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;&amp;gt;{{cite web | title=How I Programmed The Bass On Michael Jackson's PYT | website=YouTube | url=https://www.youtube.com/watch?v=EVx9CnUqXGM | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;&amp;gt;{{cite web | title=MJ's Billie Jean Bass | website=YouTube | url=https://www.youtube.com/watch?v=zKzcR0sUvV0 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=It turns out that the Billie Jean chord stab sound is more complex than we thought: it needed 3 Yamaha CS-80 synth layers and vocal ‘oohs’ from Michael Jackson | website=MusicRadar | date=2023-12-18 | url=https://www.musicradar.com/news/billie-jean-chord-stack-synths | access-date=2024-02-11 | archive-date=2024-02-11 | archive-url=https://web.archive.org/web/20240211011143/https://www.musicradar.com/news/billie-jean-chord-stack-synths }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;&amp;gt;{{cite web | title=The Billie Jean Chord Stack | website=YouTube | url=https://www.youtube.com/watch?v=_mIYTG2hlT8 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 2004 f698&amp;quot;&amp;gt;{{cite web | title=CS80, 73 Moog Modular, FVS, ARP 2600 | website=MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 | date=2004-02-26 | url=https://www.matrixsynth.com/2023/11/anthony-marinelli-doctor-mix-synth-jam.html | access-date=2024-02-11 | archive-date=2023-11-30 | archive-url=https://web.archive.org/web/20231130041506/https://www.matrixsynth.com/2023/11/anthony-marinelli-doctor-mix-synth-jam.html}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Phillinganes recreate&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=Watch Greg Phillinganes recreate Michael Jackson’s Thriller using the original synths | website=MusicRadar | date=2023-12-31 | url=https://www.musicradar.com/news/watch-greg-phillinganes-recreate-michael-jacksons-thriller-using-the-original-synths | access-date=2024-02-11 | archive-date=2024-02-11 | archive-url= https://web.archive.org/web/20240211035711/https://www.musicradar.com/news/watch-greg-phillinganes-recreate-michael-jacksons-thriller-using-the-original-synths}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2023 SITR&amp;quot;&amp;gt;{{cite web | title=Greg Phillinganes recreates synth parts from Michael Jackson’s Thriller | website=MusicTech | date=2023-02-13 | url=https://musictech.com/news/music/greg-phillinganes-recreates-synth-parts-from-michael-jacksons-thriller/ | access-date=2024-02-11 | archives-date=2024-02-11 | archive-url=https://web.archive.org/web/20240211040308/https://musictech.com/news/music/greg-phillinganes-recreates-synth-parts-from-michael-jacksons-thriller/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube SITR 72 videos&amp;quot;&amp;gt;{{cite web | title=Michael Jackson Thriller Album Stories In the Room | website=YouTube | url=https://www.youtube.com/@storiesintheroom/videos | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6267</id>
		<title>Draft: Thriller</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6267"/>
		<updated>2024-02-11T04:11:18Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= ''Thriller'' memorialized =&lt;br /&gt;
&lt;br /&gt;
In 2015, Marinelli sat for an interview with the [[BBC]], reflecting on his memories and contributions to Michael Jackson's ''Thriller''.&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;/&amp;gt;  Tom Baylor had introduced Marinelli to music producer [[Quincy Jones]]. Marinelli and business partner, Brian Banks, were hired as session musicians working at [[Westlake Recording Studios|Westlake Studios]] in West Hollywood for the creation of ''Thriller''.  In addition to bringing in three truckloads of synthesizer gear, preliminary duties consisted of briefing Michael Jackson on the capabilities of the emerging technologies, sound creation and programming.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
The BBC &amp;quot;Witness&amp;quot; radio podcast was followed by three pilot vlogs for Marinelli's YouTube channel called ''How We Created It''. In the first episode, Marinelli demonstrates how to recreate the falling star sound that opens the &amp;quot;Thriller&amp;quot; song.&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;/&amp;gt; The following two-part series is called &amp;quot;Studio Stories&amp;quot;.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot; /&amp;gt; Quincy Jones' production assistant, Steven Ray,&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;/&amp;gt; joined Marinelli to reminisce in 2020.&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;/&amp;gt; Marinelli and Ray continued recording episodes and were approached by Audivita Studios for the creation of ''Stories In The Room:'' “Michael Jackson’s Thriller Album”,&amp;lt;ref name=&amp;quot;MusicTech 2023 SITR&amp;quot;/&amp;gt; with 72 episodes, posted as of February 2024.&amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;YouTube SITR 72 videos&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''Stories in The Room'' guest appearances include:&lt;br /&gt;
&lt;br /&gt;
* Matt Forger (sound engineer)&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;/&amp;gt;&lt;br /&gt;
* Lorraine Fields (&amp;quot;Thriller&amp;quot; zombie dancer)&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Larry Williams (jazz musician)|Larry Williams]] (keyboards and reeds)&lt;br /&gt;
* [[Greg Phillinganes]] (keyboards)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Phillinganes recreate&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;MusicTech 2023 SITR&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Steve Porcaro]] (keyboards, composer on &amp;quot;Human Nature&amp;quot;)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Paul Jackson Jr.]] (guitar, no relation to Michael Jackson)&lt;br /&gt;
* The Waters Family (vocal ensemble, [[Julia Waters Tillman]]. [[Oren Waters]], and [[Maxine Willard Waters]])&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
With ''Stories in The Room'' largely completed, Marinelli continues to talk shop about sound creation, musical gear and composing on his own Youtube channel. Episodes that have gained media attention include: &amp;quot;How I Programmed The Bass On Michael Jackson's PYT&amp;quot;,&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;/&amp;gt; &amp;quot;MJ's Billie Jean Bass - It’s 4 Instruments!&amp;quot; featuring Paul Jackson Jr., &amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt; and &amp;quot;The Billie Jean Chord Stack - It’s 4 Sounds!&amp;quot;.&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;/&amp;gt; Additional noteworthy topics include jams with Doctor Mix,&amp;lt;ref name=&amp;quot;MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 2004 f698&amp;quot;/&amp;gt; and a discussion of [[Giorgio Moroder]]'s work process with engineer Ross Hogarth,&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Marinelli appears in the film ''[[Thriller 40 (film)|Thriller 40]]'' (2023) (Showtime - Paramount+) from his studios.&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Wide image|File:Photo-of-Thriller-40-Credit-Roll.jpg|800|Photo of Thriller 40 (2023) Credit Roll|900|center|alt=Photo of Thriller 40 (2023) Credit Roll}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{Reflist|30em|refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;&amp;gt;{{cite web | title=Witness History, Michael Jackson's Thriller | website=BBC | date=2015-12-23 | url=https://www.bbc.co.uk/programmes/p039z0n4 | access-date=2024-02-02 | archive-date=2024-02-02 | archive-url=https://web.archive.org/web/20240202204125/https://www.bbc.co.uk/programmes/p039z0n4 | quote = In 1982 the world's best selling album was released. Thriller included hits such as Beat It, Billie Jean and Wanna Be Startin' Somethin' as well as the title track. Witness speaks to Anthony Marinelli who worked on the seminal album.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;&amp;gt;{{cite web | last=Carr | first=Dan | title=The synth sounds of Michael Jackson's Thriller (and how to recreate them in your DAW) | website=MusicRadar | date=2022-11-30 | url=https://www.musicradar.com/news/thriller-synth-sounds | access-date=2024-02-02 | archive-url= https://web.archive.org/web/20240117053822/https://www.musicradar.com/news/thriller-synth-sounds | archive-date=2024-01-17 | quote = Looking for a more ‘cinematic’ sound, Quincy Jones enlisted synthesizer programmers Anthony Marinelli and Brian Banks, who bought every synth available at the time and turned up to Westlake Studios with three trucks full of instruments.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;&amp;gt;{{cite web | title=Blog | website=(/\/\) Anthony Marinelli // Music Forever | date=2020-10-13 | url=https://www.anthonymarinelli.com/blog | access-date=2024-02-03  | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203012039/https://www.anthonymarinelli.com/blog}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;&amp;gt;{{cite web | title=Stories In The Room: Michael Jackson’s Thriller Album | website=MJVibe | date=2023-02-11 | url=https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/ | access-date=2024-02-03 | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203013207/https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;&amp;gt;{{cite web | title=Original programmer who worked on Michael Jackson’s Billie Jean reveals how he created its iconic four-chord stack | website=MusicTech | date=2023-12-22 | url=https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/ | access-date=2024-02-03  | archive-date=2024-01-06 | archive-url=https://web.archive.org/web/20240106023325/https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;&amp;gt;{{cite web | title=Monster budgets, visits from Jackie Onassis, and a very angry Vincent Price: how Michael Jackson made Thriller | website=The Telegraph | date=2018-08-29 | url=https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/ | access-date=2024-02-04 | archive-date=2022-12-06 | archive-url=https://web.archive.org/web/20221206012217/https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/| quote= This was before the internet, so I don't know how people found out. It was like dancing on stage, it was like doing a concert. We didn't start taping until the middle of the night. Every night it was like, he came out and people were screaming. It was like being in concert with Michael Jackson - it was very exciting.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;&amp;gt; {{AllMusic | id= steven-ray-mn0000038850 | tab= credits | title= Steven Ray Credits}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;&amp;gt;{{cite web | title=“Don’t think, just do”: Former Giorgio Moroder collaborator says the godfather of disco was “all about the melody” | website=MusicTech | date=2024-01-04 | url=https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | access-date=2024-02-05 | archive-url=https://web.archive.org/web/20240117200522/https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | archive-date=2024-02-05 }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;&amp;gt;{{cite web | last=George | first=Nelson | title=THRILLER 40 AIRS ON PARAMOUNT+ DEC. 2 | website=nelsongeorge.substack.com | date=2023-11-16 | url=https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207011919/https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;&amp;gt;{{cite web | title=Thriller 40: the documentary | website=BRICE NAJAR | date=2023-12-10 | url=https://bricenajar.com/en/thriller-40-the-documentary/ | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207013457/https://bricenajar.com/en/thriller-40-the-documentary/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=Here’s how the synth bass sound for Michael Jackson’s PYT was programmed on an ARP 2600 | website=Yahoo Entertainment | date=2023-05-24 | url=https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html | access-date=2024-02-10 | archive-url= https://web.archive.org/web/20240210215151/https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html  | archive-date=2024-02-10}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;&amp;gt;{{cite web | last=Wyeth | first=Stefan | title=Darkness Falls: How To Sound Like Michael Jackson | website=gearnews.com | date=2023-10-31 | url=https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/ | access-date=2024-02-10 | archive-date=2024-02-10 | archive-url=https://web.archive.org/web/20240210233745/https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;&amp;gt;{{cite web | title=How I Programmed The Bass On Michael Jackson's PYT | website=YouTube | url=https://www.youtube.com/watch?v=EVx9CnUqXGM | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;&amp;gt;{{cite web | title=MJ's Billie Jean Bass | website=YouTube | url=https://www.youtube.com/watch?v=zKzcR0sUvV0 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=It turns out that the Billie Jean chord stab sound is more complex than we thought: it needed 3 Yamaha CS-80 synth layers and vocal ‘oohs’ from Michael Jackson | website=MusicRadar | date=2023-12-18 | url=https://www.musicradar.com/news/billie-jean-chord-stack-synths | access-date=2024-02-11 | archive-date=2024-02-11 | archive-url=https://web.archive.org/web/20240211011143/https://www.musicradar.com/news/billie-jean-chord-stack-synths }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;&amp;gt;{{cite web | title=The Billie Jean Chord Stack | website=YouTube | url=https://www.youtube.com/watch?v=_mIYTG2hlT8 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 2004 f698&amp;quot;&amp;gt;{{cite web | title=CS80, 73 Moog Modular, FVS, ARP 2600 | website=MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 | date=2004-02-26 | url=https://www.matrixsynth.com/2023/11/anthony-marinelli-doctor-mix-synth-jam.html | access-date=2024-02-11 | archive-date=2023-11-30 | archive-url=https://web.archive.org/web/20231130041506/https://www.matrixsynth.com/2023/11/anthony-marinelli-doctor-mix-synth-jam.html}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Phillinganes recreate&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=Watch Greg Phillinganes recreate Michael Jackson’s Thriller using the original synths | website=MusicRadar | date=2023-12-31 | url=https://www.musicradar.com/news/watch-greg-phillinganes-recreate-michael-jacksons-thriller-using-the-original-synths | access-date=2024-02-11 | archive-date=2024-02-11 | archive-url= https://web.archive.org/web/20240211035711/https://www.musicradar.com/news/watch-greg-phillinganes-recreate-michael-jacksons-thriller-using-the-original-synths}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2023 SITR&amp;quot;&amp;gt;{{cite web | title=Greg Phillinganes recreates synth parts from Michael Jackson’s Thriller | website=MusicTech | date=2023-02-13 | url=https://musictech.com/news/music/greg-phillinganes-recreates-synth-parts-from-michael-jacksons-thriller/ | access-date=2024-02-11 | archives-date=2024-02-11 | archive-url=https://web.archive.org/web/20240211040308/https://musictech.com/news/music/greg-phillinganes-recreates-synth-parts-from-michael-jacksons-thriller/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube SITR 72 videos&amp;quot;&amp;gt;{{cite web | title=Michael Jackson Thriller Album Stories In the Room | website=YouTube | url=https://www.youtube.com/@storiesintheroom/videos | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6266</id>
		<title>Draft: Thriller</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6266"/>
		<updated>2024-02-11T04:09:47Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: 72 videos&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= ''Thriller'' memorialized =&lt;br /&gt;
&lt;br /&gt;
In 2015, Marinelli sat for an interview with the [[BBC]], reflecting on his memories and contributions to Michael Jackson's ''Thriller''.&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;/&amp;gt;  Tom Baylor had introduced Marinelli to music producer [[Quincy Jones]]. Marinelli and partner, Brian Banks were hired as session musicians working at [[Westlake Recording Studios|Westlake Studios]] in West Hollywood for the creation of ''Thriller''.  In addition to bringing in three truckloads of synthesizer gear, preliminary duties consisted of briefing Michael Jackson on the capabilities of the emerging technologies, sound creation and programming.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
The BBC &amp;quot;Witness&amp;quot; radio podcast was followed by three pilot vlogs for Marinelli's YouTube channel called ''How We Created It''. In the first episode, Marinelli demonstrates how to recreate the falling star sound that opens the &amp;quot;Thriller&amp;quot; song.&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;/&amp;gt; The following two-part series is called &amp;quot;Studio Stories&amp;quot;.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot; /&amp;gt; Quincy Jones' production assistant, Steven Ray,&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;/&amp;gt; joined Marinelli to reminisce in 2020.&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;/&amp;gt; Marinelli and Ray continued recording episodes and were approached by Audivita Studios for the creation of ''Stories In The Room:'' “Michael Jackson’s Thriller Album”,&amp;lt;ref name=&amp;quot;MusicTech 2023 SITR&amp;quot;/&amp;gt; with 72 episodes, posted as of February 2024.&amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;YouTube SITR 72 videos&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''Stories in The Room'' guest appearances include:&lt;br /&gt;
&lt;br /&gt;
* Matt Forger (sound engineer)&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;/&amp;gt;&lt;br /&gt;
* Lorraine Fields (&amp;quot;Thriller&amp;quot; zombie dancer)&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Larry Williams (jazz musician)|Larry Williams]] (keyboards and reeds)&lt;br /&gt;
* [[Greg Phillinganes]] (keyboards)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Phillinganes recreate&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;MusicTech 2023 SITR&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Steve Porcaro]] (keyboards, composer on &amp;quot;Human Nature&amp;quot;)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Paul Jackson Jr.]] (guitar, no relation to Michael Jackson)&lt;br /&gt;
* The Waters Family (vocal ensemble, [[Julia Waters Tillman]]. [[Oren Waters]], and [[Maxine Willard Waters]])&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
With ''Stories in The Room'' largely completed, Marinelli continues to talk shop about sound creation, musical gear and composing on his own Youtube channel. Episodes that have gained media attention include: &amp;quot;How I Programmed The Bass On Michael Jackson's PYT&amp;quot;,&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;/&amp;gt; &amp;quot;MJ's Billie Jean Bass - It’s 4 Instruments!&amp;quot; featuring Paul Jackson Jr., &amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt; and &amp;quot;The Billie Jean Chord Stack - It’s 4 Sounds!&amp;quot;.&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;/&amp;gt; Additional noteworthy topics include jams with Doctor Mix,&amp;lt;ref name=&amp;quot;MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 2004 f698&amp;quot;/&amp;gt; and a discussion of [[Giorgio Moroder]]'s work process with engineer Ross Hogarth,&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Marinelli appears in the film ''[[Thriller 40 (film)|Thriller 40]]'' (2023) (Showtime - Paramount+) from his studios.&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Wide image|File:Photo-of-Thriller-40-Credit-Roll.jpg|800|Photo of Thriller 40 (2023) Credit Roll|900|center|alt=Photo of Thriller 40 (2023) Credit Roll}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{Reflist|30em|refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;&amp;gt;{{cite web | title=Witness History, Michael Jackson's Thriller | website=BBC | date=2015-12-23 | url=https://www.bbc.co.uk/programmes/p039z0n4 | access-date=2024-02-02 | archive-date=2024-02-02 | archive-url=https://web.archive.org/web/20240202204125/https://www.bbc.co.uk/programmes/p039z0n4 | quote = In 1982 the world's best selling album was released. Thriller included hits such as Beat It, Billie Jean and Wanna Be Startin' Somethin' as well as the title track. Witness speaks to Anthony Marinelli who worked on the seminal album.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;&amp;gt;{{cite web | last=Carr | first=Dan | title=The synth sounds of Michael Jackson's Thriller (and how to recreate them in your DAW) | website=MusicRadar | date=2022-11-30 | url=https://www.musicradar.com/news/thriller-synth-sounds | access-date=2024-02-02 | archive-url= https://web.archive.org/web/20240117053822/https://www.musicradar.com/news/thriller-synth-sounds | archive-date=2024-01-17 | quote = Looking for a more ‘cinematic’ sound, Quincy Jones enlisted synthesizer programmers Anthony Marinelli and Brian Banks, who bought every synth available at the time and turned up to Westlake Studios with three trucks full of instruments.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;&amp;gt;{{cite web | title=Blog | website=(/\/\) Anthony Marinelli // Music Forever | date=2020-10-13 | url=https://www.anthonymarinelli.com/blog | access-date=2024-02-03  | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203012039/https://www.anthonymarinelli.com/blog}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;&amp;gt;{{cite web | title=Stories In The Room: Michael Jackson’s Thriller Album | website=MJVibe | date=2023-02-11 | url=https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/ | access-date=2024-02-03 | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203013207/https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;&amp;gt;{{cite web | title=Original programmer who worked on Michael Jackson’s Billie Jean reveals how he created its iconic four-chord stack | website=MusicTech | date=2023-12-22 | url=https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/ | access-date=2024-02-03  | archive-date=2024-01-06 | archive-url=https://web.archive.org/web/20240106023325/https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;&amp;gt;{{cite web | title=Monster budgets, visits from Jackie Onassis, and a very angry Vincent Price: how Michael Jackson made Thriller | website=The Telegraph | date=2018-08-29 | url=https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/ | access-date=2024-02-04 | archive-date=2022-12-06 | archive-url=https://web.archive.org/web/20221206012217/https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/| quote= This was before the internet, so I don't know how people found out. It was like dancing on stage, it was like doing a concert. We didn't start taping until the middle of the night. Every night it was like, he came out and people were screaming. It was like being in concert with Michael Jackson - it was very exciting.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;&amp;gt; {{AllMusic | id= steven-ray-mn0000038850 | tab= credits | title= Steven Ray Credits}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;&amp;gt;{{cite web | title=“Don’t think, just do”: Former Giorgio Moroder collaborator says the godfather of disco was “all about the melody” | website=MusicTech | date=2024-01-04 | url=https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | access-date=2024-02-05 | archive-url=https://web.archive.org/web/20240117200522/https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | archive-date=2024-02-05 }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;&amp;gt;{{cite web | last=George | first=Nelson | title=THRILLER 40 AIRS ON PARAMOUNT+ DEC. 2 | website=nelsongeorge.substack.com | date=2023-11-16 | url=https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207011919/https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;&amp;gt;{{cite web | title=Thriller 40: the documentary | website=BRICE NAJAR | date=2023-12-10 | url=https://bricenajar.com/en/thriller-40-the-documentary/ | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207013457/https://bricenajar.com/en/thriller-40-the-documentary/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=Here’s how the synth bass sound for Michael Jackson’s PYT was programmed on an ARP 2600 | website=Yahoo Entertainment | date=2023-05-24 | url=https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html | access-date=2024-02-10 | archive-url= https://web.archive.org/web/20240210215151/https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html  | archive-date=2024-02-10}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;&amp;gt;{{cite web | last=Wyeth | first=Stefan | title=Darkness Falls: How To Sound Like Michael Jackson | website=gearnews.com | date=2023-10-31 | url=https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/ | access-date=2024-02-10 | archive-date=2024-02-10 | archive-url=https://web.archive.org/web/20240210233745/https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;&amp;gt;{{cite web | title=How I Programmed The Bass On Michael Jackson's PYT | website=YouTube | url=https://www.youtube.com/watch?v=EVx9CnUqXGM | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;&amp;gt;{{cite web | title=MJ's Billie Jean Bass | website=YouTube | url=https://www.youtube.com/watch?v=zKzcR0sUvV0 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=It turns out that the Billie Jean chord stab sound is more complex than we thought: it needed 3 Yamaha CS-80 synth layers and vocal ‘oohs’ from Michael Jackson | website=MusicRadar | date=2023-12-18 | url=https://www.musicradar.com/news/billie-jean-chord-stack-synths | access-date=2024-02-11 | archive-date=2024-02-11 | archive-url=https://web.archive.org/web/20240211011143/https://www.musicradar.com/news/billie-jean-chord-stack-synths }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;&amp;gt;{{cite web | title=The Billie Jean Chord Stack | website=YouTube | url=https://www.youtube.com/watch?v=_mIYTG2hlT8 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 2004 f698&amp;quot;&amp;gt;{{cite web | title=CS80, 73 Moog Modular, FVS, ARP 2600 | website=MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 | date=2004-02-26 | url=https://www.matrixsynth.com/2023/11/anthony-marinelli-doctor-mix-synth-jam.html | access-date=2024-02-11 | archive-date=2023-11-30 | archive-url=https://web.archive.org/web/20231130041506/https://www.matrixsynth.com/2023/11/anthony-marinelli-doctor-mix-synth-jam.html}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Phillinganes recreate&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=Watch Greg Phillinganes recreate Michael Jackson’s Thriller using the original synths | website=MusicRadar | date=2023-12-31 | url=https://www.musicradar.com/news/watch-greg-phillinganes-recreate-michael-jacksons-thriller-using-the-original-synths | access-date=2024-02-11 | archive-date=2024-02-11 | archive-url= https://web.archive.org/web/20240211035711/https://www.musicradar.com/news/watch-greg-phillinganes-recreate-michael-jacksons-thriller-using-the-original-synths}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2023 SITR&amp;quot;&amp;gt;{{cite web | title=Greg Phillinganes recreates synth parts from Michael Jackson’s Thriller | website=MusicTech | date=2023-02-13 | url=https://musictech.com/news/music/greg-phillinganes-recreates-synth-parts-from-michael-jacksons-thriller/ | access-date=2024-02-11 | archives-date=2024-02-11 | archive-url=https://web.archive.org/web/20240211040308/https://musictech.com/news/music/greg-phillinganes-recreates-synth-parts-from-michael-jacksons-thriller/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube SITR 72 videos&amp;quot;&amp;gt;{{cite web | title=Michael Jackson Thriller Album Stories In the Room | website=YouTube | url=https://www.youtube.com/@storiesintheroom/videos | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6265</id>
		<title>Draft: Thriller</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6265"/>
		<updated>2024-02-11T01:46:45Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: SITR completed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= ''Thriller'' memorialized =&lt;br /&gt;
&lt;br /&gt;
In 2015, Marinelli sat for an interview with the [[BBC]], reflecting on his memories and contributions to Michael Jackson's ''Thriller''.&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;/&amp;gt;  Tom Baylor had introduced Marinelli to music producer [[Quincy Jones]]. Marinelli and partner, Brian Banks were hired as session musicians working at [[Westlake Recording Studios|Westlake Studios]] in West Hollywood for the creation of ''Thriller''.  In addition to bringing in three truckloads of synthesizer gear, preliminary duties consisted of briefing Michael Jackson on the capabilities of the emerging technologies, sound creation and programming.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
The BBC &amp;quot;Witness&amp;quot; radio podcast was followed by three pilot vlogs for Marinelli's YouTube channel called ''How We Created It''. In the first episode, Marinelli demonstrates how to recreate the falling star sound that opens the &amp;quot;Thriller&amp;quot; song.&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;/&amp;gt; The following two-part series is called &amp;quot;Studio Stories&amp;quot;.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot; /&amp;gt; Quincy Jones' production assistant, Steven Ray,&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;/&amp;gt; joined Marinelli to reminisce in 2020.&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;/&amp;gt; Marinelli and Ray continued recording episodes and were approached by Audivita Studios for the creation of ''Stories In The Room:'' “Michael Jackson’s Thriller Album”, with 72 episodes posted as of February 2024. &amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''Stories in The Room'' guest appearances include:&lt;br /&gt;
&lt;br /&gt;
* Matt Forger (sound engineer)&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;/&amp;gt;&lt;br /&gt;
* Lorraine Fields (&amp;quot;Thriller&amp;quot; zombie dancer)&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Larry Williams (jazz musician)|Larry Williams]] (keyboards and reeds)&lt;br /&gt;
* [[Greg Phillinganes]] (keyboards)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Steve Porcaro]] (keyboards, composer on &amp;quot;Human Nature&amp;quot;)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Paul Jackson Jr.]] (guitar, no relation to Michael Jackson)&lt;br /&gt;
* The Waters Family (vocal ensemble, [[Julia Waters Tillman]]. [[Oren Waters]], and [[Maxine Willard Waters]])&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
With ''Stories in The Room'' largely completed, Marinelli continues to talk shop about sound creation, musical gear and composing on his own Youtube channel. Episodes that have gained media attention include: &amp;quot;How I Programmed The Bass On Michael Jackson's PYT&amp;quot;,&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;/&amp;gt; &amp;quot;MJ's Billie Jean Bass - It’s 4 Instruments!&amp;quot; featuring Paul Jackson Jr., &amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt; and &amp;quot;The Billie Jean Chord Stack - It’s 4 Sounds!&amp;quot;.&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;/&amp;gt; Additional noteworthy topics include jams with Doctor Mix,&amp;lt;ref name=&amp;quot;MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 2004 f698&amp;quot;/&amp;gt; and a discussion of [[Giorgio Moroder]]'s work process with engineer Ross Hogarth,&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Marinelli appears in the film ''[[Thriller 40 (film)|Thriller 40]]'' (2023) (Showtime - Paramount+) from his studios.&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Wide image|File:Photo-of-Thriller-40-Credit-Roll.jpg|800|Photo of Thriller 40 (2023) Credit Roll|900|center|alt=Photo of Thriller 40 (2023) Credit Roll}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{Reflist|30em|refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;&amp;gt;{{cite web | title=Witness History, Michael Jackson's Thriller | website=BBC | date=2015-12-23 | url=https://www.bbc.co.uk/programmes/p039z0n4 | access-date=2024-02-02 | archive-date=2024-02-02 | archive-url=https://web.archive.org/web/20240202204125/https://www.bbc.co.uk/programmes/p039z0n4 | quote = In 1982 the world's best selling album was released. Thriller included hits such as Beat It, Billie Jean and Wanna Be Startin' Somethin' as well as the title track. Witness speaks to Anthony Marinelli who worked on the seminal album.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;&amp;gt;{{cite web | last=Carr | first=Dan | title=The synth sounds of Michael Jackson's Thriller (and how to recreate them in your DAW) | website=MusicRadar | date=2022-11-30 | url=https://www.musicradar.com/news/thriller-synth-sounds | access-date=2024-02-02 | archive-url= https://web.archive.org/web/20240117053822/https://www.musicradar.com/news/thriller-synth-sounds | archive-date=2024-01-17 | quote = Looking for a more ‘cinematic’ sound, Quincy Jones enlisted synthesizer programmers Anthony Marinelli and Brian Banks, who bought every synth available at the time and turned up to Westlake Studios with three trucks full of instruments.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;&amp;gt;{{cite web | title=Blog | website=(/\/\) Anthony Marinelli // Music Forever | date=2020-10-13 | url=https://www.anthonymarinelli.com/blog | access-date=2024-02-03  | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203012039/https://www.anthonymarinelli.com/blog}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;&amp;gt;{{cite web | title=Stories In The Room: Michael Jackson’s Thriller Album | website=MJVibe | date=2023-02-11 | url=https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/ | access-date=2024-02-03 | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203013207/https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;&amp;gt;{{cite web | title=Original programmer who worked on Michael Jackson’s Billie Jean reveals how he created its iconic four-chord stack | website=MusicTech | date=2023-12-22 | url=https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/ | access-date=2024-02-03  | archive-date=2024-01-06 | archive-url=https://web.archive.org/web/20240106023325/https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;&amp;gt;{{cite web | title=Monster budgets, visits from Jackie Onassis, and a very angry Vincent Price: how Michael Jackson made Thriller | website=The Telegraph | date=2018-08-29 | url=https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/ | access-date=2024-02-04 | archive-date=2022-12-06 | archive-url=https://web.archive.org/web/20221206012217/https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/| quote= This was before the internet, so I don't know how people found out. It was like dancing on stage, it was like doing a concert. We didn't start taping until the middle of the night. Every night it was like, he came out and people were screaming. It was like being in concert with Michael Jackson - it was very exciting.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;&amp;gt; {{AllMusic | id= steven-ray-mn0000038850 | tab= credits | title= Steven Ray Credits}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;&amp;gt;{{cite web | title=“Don’t think, just do”: Former Giorgio Moroder collaborator says the godfather of disco was “all about the melody” | website=MusicTech | date=2024-01-04 | url=https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | access-date=2024-02-05 | archive-url=https://web.archive.org/web/20240117200522/https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | archive-date=2024-02-05 }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;&amp;gt;{{cite web | last=George | first=Nelson | title=THRILLER 40 AIRS ON PARAMOUNT+ DEC. 2 | website=nelsongeorge.substack.com | date=2023-11-16 | url=https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207011919/https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;&amp;gt;{{cite web | title=Thriller 40: the documentary | website=BRICE NAJAR | date=2023-12-10 | url=https://bricenajar.com/en/thriller-40-the-documentary/ | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207013457/https://bricenajar.com/en/thriller-40-the-documentary/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=Here’s how the synth bass sound for Michael Jackson’s PYT was programmed on an ARP 2600 | website=Yahoo Entertainment | date=2023-05-24 | url=https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html | access-date=2024-02-10 | archive-url= https://web.archive.org/web/20240210215151/https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html  | archive-date=2024-02-10}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;&amp;gt;{{cite web | last=Wyeth | first=Stefan | title=Darkness Falls: How To Sound Like Michael Jackson | website=gearnews.com | date=2023-10-31 | url=https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/ | access-date=2024-02-10 | archive-date=2024-02-10 | archive-url=https://web.archive.org/web/20240210233745/https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;&amp;gt;{{cite web | title=How I Programmed The Bass On Michael Jackson's PYT | website=YouTube | url=https://www.youtube.com/watch?v=EVx9CnUqXGM | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;&amp;gt;{{cite web | title=MJ's Billie Jean Bass | website=YouTube | url=https://www.youtube.com/watch?v=zKzcR0sUvV0 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=It turns out that the Billie Jean chord stab sound is more complex than we thought: it needed 3 Yamaha CS-80 synth layers and vocal ‘oohs’ from Michael Jackson | website=MusicRadar | date=2023-12-18 | url=https://www.musicradar.com/news/billie-jean-chord-stack-synths | access-date=2024-02-11 | archive-date=2024-02-11 | archive-url=https://web.archive.org/web/20240211011143/https://www.musicradar.com/news/billie-jean-chord-stack-synths }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;&amp;gt;{{cite web | title=The Billie Jean Chord Stack | website=YouTube | url=https://www.youtube.com/watch?v=_mIYTG2hlT8 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 2004 f698&amp;quot;&amp;gt;{{cite web | title=CS80, 73 Moog Modular, FVS, ARP 2600 | website=MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 | date=2004-02-26 | url=https://www.matrixsynth.com/2023/11/anthony-marinelli-doctor-mix-synth-jam.html | access-date=2024-02-11 | archive-date=2023-11-30 | archive-url=https://web.archive.org/web/20231130041506/https://www.matrixsynth.com/2023/11/anthony-marinelli-doctor-mix-synth-jam.html}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6264</id>
		<title>Draft: Thriller</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6264"/>
		<updated>2024-02-11T01:35:41Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: Thriller 40 clarify&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= ''Thriller'' memorialized =&lt;br /&gt;
&lt;br /&gt;
In 2015, Marinelli sat for an interview with the [[BBC]], reflecting on his memories and contributions to Michael Jackson's ''Thriller''.&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;/&amp;gt;  Tom Baylor had introduced Marinelli to music producer [[Quincy Jones]]. Marinelli and partner, Brian Banks were hired as session musicians working at [[Westlake Recording Studios|Westlake Studios]] in West Hollywood for the creation of ''Thriller''.  In addition to bringing in three truckloads of synthesizer gear, preliminary duties consisted of briefing Michael Jackson on the capabilities of the emerging technologies, sound creation and programming.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
The BBC &amp;quot;Witness&amp;quot; radio podcast was followed by three pilot vlogs for Marinelli's YouTube channel called ''How We Created It''. In the first episode, Marinelli demonstrates how to recreate the falling star sound that opens the &amp;quot;Thriller&amp;quot; song.&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;/&amp;gt; The following two-part series is called &amp;quot;Studio Stories&amp;quot;.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot; /&amp;gt; Quincy Jones' production assistant, Steven Ray,&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;/&amp;gt; joined Marinelli to reminisce in 2020.&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;/&amp;gt; Marinelli and Ray continued recording episodes and were approached by Audivita Studios for the creation of ''Stories In The Room:'' “Michael Jackson’s Thriller Album”, with 72 episodes posted as of February 2024. &amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''Stories in The Room'' guest appearances include:&lt;br /&gt;
&lt;br /&gt;
* Matt Forger (sound engineer)&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;/&amp;gt;&lt;br /&gt;
* Lorraine Fields (&amp;quot;Thriller&amp;quot; zombie dancer)&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Larry Williams (jazz musician)|Larry Williams]] (keyboards and reeds)&lt;br /&gt;
* [[Greg Phillinganes]] (keyboards)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Steve Porcaro]] (keyboards, composer on &amp;quot;Human Nature&amp;quot;)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Paul Jackson Jr.]] (guitar, no relation to Michael Jackson)&lt;br /&gt;
* The Waters Family (vocal ensemble, [[Julia Waters Tillman]]. [[Oren Waters]], and [[Maxine Willard Waters]])&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
Marinelli continues to talk shop about sound creation, musical gear and composing on his own Youtube channel. Episodes that have gained media attention include: &amp;quot;How I Programmed The Bass On Michael Jackson's PYT&amp;quot;,&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;/&amp;gt; &amp;quot;MJ's Billie Jean Bass - It’s 4 Instruments!&amp;quot; featuring Paul Jackson Jr., &amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt; and &amp;quot;The Billie Jean Chord Stack - It’s 4 Sounds!&amp;quot;.&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;/&amp;gt; Additional noteworthy topics include jams with Doctor Mix,&amp;lt;ref name=&amp;quot;MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 2004 f698&amp;quot;/&amp;gt; and a discussion of [[Giorgio Moroder]]'s work process with engineer Ross Hogarth,&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Marinelli appears in the film ''[[Thriller 40 (film)|Thriller 40]]'' (2023) (Showtime - Paramount+) from his studios.&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Wide image|File:Photo-of-Thriller-40-Credit-Roll.jpg|800|Photo of Thriller 40 (2023) Credit Roll|900|center|alt=Photo of Thriller 40 (2023) Credit Roll}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{Reflist|30em|refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;&amp;gt;{{cite web | title=Witness History, Michael Jackson's Thriller | website=BBC | date=2015-12-23 | url=https://www.bbc.co.uk/programmes/p039z0n4 | access-date=2024-02-02 | archive-date=2024-02-02 | archive-url=https://web.archive.org/web/20240202204125/https://www.bbc.co.uk/programmes/p039z0n4 | quote = In 1982 the world's best selling album was released. Thriller included hits such as Beat It, Billie Jean and Wanna Be Startin' Somethin' as well as the title track. Witness speaks to Anthony Marinelli who worked on the seminal album.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;&amp;gt;{{cite web | last=Carr | first=Dan | title=The synth sounds of Michael Jackson's Thriller (and how to recreate them in your DAW) | website=MusicRadar | date=2022-11-30 | url=https://www.musicradar.com/news/thriller-synth-sounds | access-date=2024-02-02 | archive-url= https://web.archive.org/web/20240117053822/https://www.musicradar.com/news/thriller-synth-sounds | archive-date=2024-01-17 | quote = Looking for a more ‘cinematic’ sound, Quincy Jones enlisted synthesizer programmers Anthony Marinelli and Brian Banks, who bought every synth available at the time and turned up to Westlake Studios with three trucks full of instruments.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;&amp;gt;{{cite web | title=Blog | website=(/\/\) Anthony Marinelli // Music Forever | date=2020-10-13 | url=https://www.anthonymarinelli.com/blog | access-date=2024-02-03  | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203012039/https://www.anthonymarinelli.com/blog}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;&amp;gt;{{cite web | title=Stories In The Room: Michael Jackson’s Thriller Album | website=MJVibe | date=2023-02-11 | url=https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/ | access-date=2024-02-03 | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203013207/https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;&amp;gt;{{cite web | title=Original programmer who worked on Michael Jackson’s Billie Jean reveals how he created its iconic four-chord stack | website=MusicTech | date=2023-12-22 | url=https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/ | access-date=2024-02-03  | archive-date=2024-01-06 | archive-url=https://web.archive.org/web/20240106023325/https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;&amp;gt;{{cite web | title=Monster budgets, visits from Jackie Onassis, and a very angry Vincent Price: how Michael Jackson made Thriller | website=The Telegraph | date=2018-08-29 | url=https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/ | access-date=2024-02-04 | archive-date=2022-12-06 | archive-url=https://web.archive.org/web/20221206012217/https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/| quote= This was before the internet, so I don't know how people found out. It was like dancing on stage, it was like doing a concert. We didn't start taping until the middle of the night. Every night it was like, he came out and people were screaming. It was like being in concert with Michael Jackson - it was very exciting.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;&amp;gt; {{AllMusic | id= steven-ray-mn0000038850 | tab= credits | title= Steven Ray Credits}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;&amp;gt;{{cite web | title=“Don’t think, just do”: Former Giorgio Moroder collaborator says the godfather of disco was “all about the melody” | website=MusicTech | date=2024-01-04 | url=https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | access-date=2024-02-05 | archive-url=https://web.archive.org/web/20240117200522/https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | archive-date=2024-02-05 }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;&amp;gt;{{cite web | last=George | first=Nelson | title=THRILLER 40 AIRS ON PARAMOUNT+ DEC. 2 | website=nelsongeorge.substack.com | date=2023-11-16 | url=https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207011919/https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;&amp;gt;{{cite web | title=Thriller 40: the documentary | website=BRICE NAJAR | date=2023-12-10 | url=https://bricenajar.com/en/thriller-40-the-documentary/ | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207013457/https://bricenajar.com/en/thriller-40-the-documentary/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=Here’s how the synth bass sound for Michael Jackson’s PYT was programmed on an ARP 2600 | website=Yahoo Entertainment | date=2023-05-24 | url=https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html | access-date=2024-02-10 | archive-url= https://web.archive.org/web/20240210215151/https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html  | archive-date=2024-02-10}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;&amp;gt;{{cite web | last=Wyeth | first=Stefan | title=Darkness Falls: How To Sound Like Michael Jackson | website=gearnews.com | date=2023-10-31 | url=https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/ | access-date=2024-02-10 | archive-date=2024-02-10 | archive-url=https://web.archive.org/web/20240210233745/https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;&amp;gt;{{cite web | title=How I Programmed The Bass On Michael Jackson's PYT | website=YouTube | url=https://www.youtube.com/watch?v=EVx9CnUqXGM | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;&amp;gt;{{cite web | title=MJ's Billie Jean Bass | website=YouTube | url=https://www.youtube.com/watch?v=zKzcR0sUvV0 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=It turns out that the Billie Jean chord stab sound is more complex than we thought: it needed 3 Yamaha CS-80 synth layers and vocal ‘oohs’ from Michael Jackson | website=MusicRadar | date=2023-12-18 | url=https://www.musicradar.com/news/billie-jean-chord-stack-synths | access-date=2024-02-11 | archive-date=2024-02-11 | archive-url=https://web.archive.org/web/20240211011143/https://www.musicradar.com/news/billie-jean-chord-stack-synths }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;&amp;gt;{{cite web | title=The Billie Jean Chord Stack | website=YouTube | url=https://www.youtube.com/watch?v=_mIYTG2hlT8 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 2004 f698&amp;quot;&amp;gt;{{cite web | title=CS80, 73 Moog Modular, FVS, ARP 2600 | website=MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 | date=2004-02-26 | url=https://www.matrixsynth.com/2023/11/anthony-marinelli-doctor-mix-synth-jam.html | access-date=2024-02-11 | archive-date=2023-11-30 | archive-url=https://web.archive.org/web/20231130041506/https://www.matrixsynth.com/2023/11/anthony-marinelli-doctor-mix-synth-jam.html}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6263</id>
		<title>Draft: Thriller</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6263"/>
		<updated>2024-02-11T01:33:45Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= ''Thriller'' memorialized =&lt;br /&gt;
&lt;br /&gt;
In 2015, Marinelli sat for an interview with the [[BBC]], reflecting on his memories and contributions to Michael Jackson's ''Thriller''.&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;/&amp;gt;  Tom Baylor had introduced Marinelli to music producer [[Quincy Jones]]. Marinelli and partner, Brian Banks were hired as session musicians working at [[Westlake Recording Studios|Westlake Studios]] in West Hollywood for the creation of ''Thriller''.  In addition to bringing in three truckloads of synthesizer gear, preliminary duties consisted of briefing Michael Jackson on the capabilities of the emerging technologies, sound creation and programming.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
The BBC &amp;quot;Witness&amp;quot; radio podcast was followed by three pilot vlogs for Marinelli's YouTube channel called ''How We Created It''. In the first episode, Marinelli demonstrates how to recreate the falling star sound that opens the &amp;quot;Thriller&amp;quot; song.&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;/&amp;gt; The following two-part series is called &amp;quot;Studio Stories&amp;quot;.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot; /&amp;gt; Quincy Jones' production assistant, Steven Ray,&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;/&amp;gt; joined Marinelli to reminisce in 2020.&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;/&amp;gt; Marinelli and Ray continued recording episodes and were approached by Audivita Studios for the creation of ''Stories In The Room:'' “Michael Jackson’s Thriller Album”, with 72 episodes posted as of February 2024. &amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''Stories in The Room'' guest appearances include:&lt;br /&gt;
&lt;br /&gt;
* Matt Forger (sound engineer)&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;/&amp;gt;&lt;br /&gt;
* Lorraine Fields (&amp;quot;Thriller&amp;quot; zombie dancer)&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Larry Williams (jazz musician)|Larry Williams]] (keyboards and reeds)&lt;br /&gt;
* [[Greg Phillinganes]] (keyboards)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Steve Porcaro]] (keyboards, composer on &amp;quot;Human Nature&amp;quot;)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Paul Jackson Jr.]] (guitar, no relation to Michael Jackson)&lt;br /&gt;
* The Waters Family (vocal ensemble, [[Julia Waters Tillman]]. [[Oren Waters]], and [[Maxine Willard Waters]])&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
Marinelli continues to talk shop about sound creation, musical gear and composing on his own Youtube channel. Episodes that have gained media attention include: &amp;quot;How I Programmed The Bass On Michael Jackson's PYT&amp;quot;,&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;/&amp;gt; &amp;quot;MJ's Billie Jean Bass - It’s 4 Instruments!&amp;quot; featuring Paul Jackson Jr., &amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt; and &amp;quot;The Billie Jean Chord Stack - It’s 4 Sounds!&amp;quot;.&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;/&amp;gt; Additional noteworthy topics include jams with Doctor Mix,&amp;lt;ref name=&amp;quot;MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 2004 f698&amp;quot;/&amp;gt; and a discussion of [[Giorgio Moroder]]'s work process with engineer Ross Hogarth,&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Marinelli was interviewed in his studios appeared in the film ''[[Thriller 40 (film)|Thriller 40]]'' (2023) (Showtime - Paramount+).&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Wide image|File:Photo-of-Thriller-40-Credit-Roll.jpg|800|Photo of Thriller 40 (2023) Credit Roll|900|center|alt=Photo of Thriller 40 (2023) Credit Roll}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{Reflist|30em|refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;&amp;gt;{{cite web | title=Witness History, Michael Jackson's Thriller | website=BBC | date=2015-12-23 | url=https://www.bbc.co.uk/programmes/p039z0n4 | access-date=2024-02-02 | archive-date=2024-02-02 | archive-url=https://web.archive.org/web/20240202204125/https://www.bbc.co.uk/programmes/p039z0n4 | quote = In 1982 the world's best selling album was released. Thriller included hits such as Beat It, Billie Jean and Wanna Be Startin' Somethin' as well as the title track. Witness speaks to Anthony Marinelli who worked on the seminal album.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;&amp;gt;{{cite web | last=Carr | first=Dan | title=The synth sounds of Michael Jackson's Thriller (and how to recreate them in your DAW) | website=MusicRadar | date=2022-11-30 | url=https://www.musicradar.com/news/thriller-synth-sounds | access-date=2024-02-02 | archive-url= https://web.archive.org/web/20240117053822/https://www.musicradar.com/news/thriller-synth-sounds | archive-date=2024-01-17 | quote = Looking for a more ‘cinematic’ sound, Quincy Jones enlisted synthesizer programmers Anthony Marinelli and Brian Banks, who bought every synth available at the time and turned up to Westlake Studios with three trucks full of instruments.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;&amp;gt;{{cite web | title=Blog | website=(/\/\) Anthony Marinelli // Music Forever | date=2020-10-13 | url=https://www.anthonymarinelli.com/blog | access-date=2024-02-03  | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203012039/https://www.anthonymarinelli.com/blog}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;&amp;gt;{{cite web | title=Stories In The Room: Michael Jackson’s Thriller Album | website=MJVibe | date=2023-02-11 | url=https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/ | access-date=2024-02-03 | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203013207/https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;&amp;gt;{{cite web | title=Original programmer who worked on Michael Jackson’s Billie Jean reveals how he created its iconic four-chord stack | website=MusicTech | date=2023-12-22 | url=https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/ | access-date=2024-02-03  | archive-date=2024-01-06 | archive-url=https://web.archive.org/web/20240106023325/https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;&amp;gt;{{cite web | title=Monster budgets, visits from Jackie Onassis, and a very angry Vincent Price: how Michael Jackson made Thriller | website=The Telegraph | date=2018-08-29 | url=https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/ | access-date=2024-02-04 | archive-date=2022-12-06 | archive-url=https://web.archive.org/web/20221206012217/https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/| quote= This was before the internet, so I don't know how people found out. It was like dancing on stage, it was like doing a concert. We didn't start taping until the middle of the night. Every night it was like, he came out and people were screaming. It was like being in concert with Michael Jackson - it was very exciting.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;&amp;gt; {{AllMusic | id= steven-ray-mn0000038850 | tab= credits | title= Steven Ray Credits}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;&amp;gt;{{cite web | title=“Don’t think, just do”: Former Giorgio Moroder collaborator says the godfather of disco was “all about the melody” | website=MusicTech | date=2024-01-04 | url=https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | access-date=2024-02-05 | archive-url=https://web.archive.org/web/20240117200522/https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | archive-date=2024-02-05 }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;&amp;gt;{{cite web | last=George | first=Nelson | title=THRILLER 40 AIRS ON PARAMOUNT+ DEC. 2 | website=nelsongeorge.substack.com | date=2023-11-16 | url=https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207011919/https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;&amp;gt;{{cite web | title=Thriller 40: the documentary | website=BRICE NAJAR | date=2023-12-10 | url=https://bricenajar.com/en/thriller-40-the-documentary/ | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207013457/https://bricenajar.com/en/thriller-40-the-documentary/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=Here’s how the synth bass sound for Michael Jackson’s PYT was programmed on an ARP 2600 | website=Yahoo Entertainment | date=2023-05-24 | url=https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html | access-date=2024-02-10 | archive-url= https://web.archive.org/web/20240210215151/https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html  | archive-date=2024-02-10}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;&amp;gt;{{cite web | last=Wyeth | first=Stefan | title=Darkness Falls: How To Sound Like Michael Jackson | website=gearnews.com | date=2023-10-31 | url=https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/ | access-date=2024-02-10 | archive-date=2024-02-10 | archive-url=https://web.archive.org/web/20240210233745/https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;&amp;gt;{{cite web | title=How I Programmed The Bass On Michael Jackson's PYT | website=YouTube | url=https://www.youtube.com/watch?v=EVx9CnUqXGM | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;&amp;gt;{{cite web | title=MJ's Billie Jean Bass | website=YouTube | url=https://www.youtube.com/watch?v=zKzcR0sUvV0 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=It turns out that the Billie Jean chord stab sound is more complex than we thought: it needed 3 Yamaha CS-80 synth layers and vocal ‘oohs’ from Michael Jackson | website=MusicRadar | date=2023-12-18 | url=https://www.musicradar.com/news/billie-jean-chord-stack-synths | access-date=2024-02-11 | archive-date=2024-02-11 | archive-url=https://web.archive.org/web/20240211011143/https://www.musicradar.com/news/billie-jean-chord-stack-synths }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;&amp;gt;{{cite web | title=The Billie Jean Chord Stack | website=YouTube | url=https://www.youtube.com/watch?v=_mIYTG2hlT8 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 2004 f698&amp;quot;&amp;gt;{{cite web | title=CS80, 73 Moog Modular, FVS, ARP 2600 | website=MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 | date=2004-02-26 | url=https://www.matrixsynth.com/2023/11/anthony-marinelli-doctor-mix-synth-jam.html | access-date=2024-02-11 | archive-date=2023-11-30 | archive-url=https://web.archive.org/web/20231130041506/https://www.matrixsynth.com/2023/11/anthony-marinelli-doctor-mix-synth-jam.html}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6262</id>
		<title>Draft: Thriller</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6262"/>
		<updated>2024-02-11T01:32:47Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: other topics&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= ''Thriller'' memorialized =&lt;br /&gt;
&lt;br /&gt;
In 2015, Marinelli sat for an interview with the [[BBC]], reflecting on his memories and contributions to Michael Jackson's ''Thriller''.&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;/&amp;gt;  Tom Baylor had introduced Marinelli to music producer [[Quincy Jones]]. Marinelli and partner, Brian Banks were hired as session musicians working at [[Westlake Recording Studios|Westlake Studios]] in West Hollywood for the creation of ''Thriller''.  In addition to bringing in three truckloads of synthesizer gear, preliminary duties consisted of briefing Michael Jackson on the capabilities of the emerging technologies, sound creation and programming.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
The BBC &amp;quot;Witness&amp;quot; radio podcast was followed by three pilot vlogs for Marinelli's YouTube channel called ''How We Created It''. In the first episode, Marinelli demonstrates how to recreate the falling star sound that opens the &amp;quot;Thriller&amp;quot; song.&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;/&amp;gt; The following two-part series is called &amp;quot;Studio Stories&amp;quot;.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot; /&amp;gt; Quincy Jones' production assistant, Steven Ray,&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;/&amp;gt; joined Marinelli to reminisce in 2020.&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;/&amp;gt; Marinelli and Ray continued recording episodes and were approached by Audivita Studios for the creation of ''Stories In The Room:'' “Michael Jackson’s Thriller Album”, with 72 episodes posted as of February 2024. &amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''Stories in The Room'' guest appearances include:&lt;br /&gt;
&lt;br /&gt;
* Matt Forger (sound engineer)&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;/&amp;gt;&lt;br /&gt;
* Lorraine Fields (&amp;quot;Thriller&amp;quot; zombie dancer)&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Larry Williams (jazz musician)|Larry Williams]] (keyboards and reeds)&lt;br /&gt;
* [[Greg Phillinganes]] (keyboards)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Steve Porcaro]] (keyboards, composer on &amp;quot;Human Nature&amp;quot;)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Paul Jackson Jr.]] (guitar, no relation to Michael Jackson)&lt;br /&gt;
* The Waters Family (vocal ensemble, [[Julia Waters Tillman]]. [[Oren Waters]], and [[Maxine Willard Waters]])&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
Marinelli continues to talk shop about sound creation, musical gear and composing on his own Youtube channel. Episodes that have gained media attention include: &amp;quot;How I Programmed The Bass On Michael Jackson's PYT&amp;quot;,&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;/&amp;gt; &amp;quot;MJ's Billie Jean Bass - It’s 4 Instruments!&amp;quot; featuring Paul Jackson Jr., &amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt; and &amp;quot;The Billie Jean Chord Stack - It’s 4 Sounds!&amp;quot;.&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;/&amp;gt; Additional noteworthy topics include jams with Doctor Mix,&amp;lt;ref name=&amp;quot;MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 2004 f698&amp;quot;/&amp;gt; and a discussion of [[Giorgio Moroder]]'s work process with engineer Ross Hogarth,&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Marinelli was interviewed in his studios appeared in the film ''[[Thriller 40 (film)|Thriller 40]]'' (2023) (Showtime - Paramount+).&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Wide image|File:Photo-of-Thriller-40-Credit-Roll.jpg|800|Photo of Thriller 40 (2023) Credit Roll|900|center|alt=Photo of Thriller 40 (2023) Credit Roll}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{Reflist|30em|refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;&amp;gt;{{cite web | title=Witness History, Michael Jackson's Thriller | website=BBC | date=2015-12-23 | url=https://www.bbc.co.uk/programmes/p039z0n4 | access-date=2024-02-02 | archive-date=2024-02-02 | archive-url=https://web.archive.org/web/20240202204125/https://www.bbc.co.uk/programmes/p039z0n4 | quote = In 1982 the world's best selling album was released. Thriller included hits such as Beat It, Billie Jean and Wanna Be Startin' Somethin' as well as the title track. Witness speaks to Anthony Marinelli who worked on the seminal album.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;&amp;gt;{{cite web | last=Carr | first=Dan | title=The synth sounds of Michael Jackson's Thriller (and how to recreate them in your DAW) | website=MusicRadar | date=2022-11-30 | url=https://www.musicradar.com/news/thriller-synth-sounds | access-date=2024-02-02 | archive-url= https://web.archive.org/web/20240117053822/https://www.musicradar.com/news/thriller-synth-sounds | archive-date=2024-01-17 | quote = Looking for a more ‘cinematic’ sound, Quincy Jones enlisted synthesizer programmers Anthony Marinelli and Brian Banks, who bought every synth available at the time and turned up to Westlake Studios with three trucks full of instruments.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;&amp;gt;{{cite web | title=Blog | website=(/\/\) Anthony Marinelli // Music Forever | date=2020-10-13 | url=https://www.anthonymarinelli.com/blog | access-date=2024-02-03  | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203012039/https://www.anthonymarinelli.com/blog}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;&amp;gt;{{cite web | title=Stories In The Room: Michael Jackson’s Thriller Album | website=MJVibe | date=2023-02-11 | url=https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/ | access-date=2024-02-03 | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203013207/https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;&amp;gt;{{cite web | title=Original programmer who worked on Michael Jackson’s Billie Jean reveals how he created its iconic four-chord stack | website=MusicTech | date=2023-12-22 | url=https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/ | access-date=2024-02-03  | archive-date=2024-01-06 | archive-url=https://web.archive.org/web/20240106023325/https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;&amp;gt;{{cite web | title=Monster budgets, visits from Jackie Onassis, and a very angry Vincent Price: how Michael Jackson made Thriller | website=The Telegraph | date=2018-08-29 | url=https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/ | access-date=2024-02-04 | archive-date=2022-12-06 | archive-url=https://web.archive.org/web/20221206012217/https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/| quote= This was before the internet, so I don't know how people found out. It was like dancing on stage, it was like doing a concert. We didn't start taping until the middle of the night. Every night it was like, he came out and people were screaming. It was like being in concert with Michael Jackson - it was very exciting.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;&amp;gt; {{AllMusic | id= steven-ray-mn0000038850 | tab= credits | title= Steven Ray Credits}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;&amp;gt;{{cite web | title=“Don’t think, just do”: Former Giorgio Moroder collaborator says the godfather of disco was “all about the melody” | website=MusicTech | date=2024-01-04 | url=https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | access-date=2024-02-05 | archive-url=https://web.archive.org/web/20240117200522/https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | archive-date=2024-02-05 }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;&amp;gt;{{cite web | last=George | first=Nelson | title=THRILLER 40 AIRS ON PARAMOUNT+ DEC. 2 | website=nelsongeorge.substack.com | date=2023-11-16 | url=https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207011919/https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;&amp;gt;{{cite web | title=Thriller 40: the documentary | website=BRICE NAJAR | date=2023-12-10 | url=https://bricenajar.com/en/thriller-40-the-documentary/ | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207013457/https://bricenajar.com/en/thriller-40-the-documentary/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=Here’s how the synth bass sound for Michael Jackson’s PYT was programmed on an ARP 2600 | website=Yahoo Entertainment | date=2023-05-24 | url=https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html | access-date=2024-02-10 | archive-url= https://web.archive.org/web/20240210215151/https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html  | archive-date=2024-02-10}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;&amp;gt;{{cite web | last=Wyeth | first=Stefan | title=Darkness Falls: How To Sound Like Michael Jackson | website=gearnews.com | date=2023-10-31 | url=https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/ | access-date=2024-02-10 | archive-date=2024-02-10 | archive-url=https://web.archive.org/web/20240210233745/https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;&amp;gt;{{cite web | title=How I Programmed The Bass On Michael Jackson's PYT | website=YouTube | url=https://www.youtube.com/watch?v=EVx9CnUqXGM | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;&amp;gt;{{cite web | title=MJ's Billie Jean Bass | website=YouTube | url=https://www.youtube.com/watch?v=zKzcR0sUvV0 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=It turns out that the Billie Jean chord stab sound is more complex than we thought: it needed 3 Yamaha CS-80 synth layers and vocal ‘oohs’ from Michael Jackson | website=MusicRadar | date=2023-12-18 | url=https://www.musicradar.com/news/billie-jean-chord-stack-synths | access-date=2024-02-11 | archive-date=2024-02-11 | archive-url=https://web.archive.org/web/20240211011143/https://www.musicradar.com/news/billie-jean-chord-stack-synths }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;&amp;gt;{{cite web | title=The Billie Jean Chord Stack | website=YouTube | url=https://www.youtube.com/watch?v=_mIYTG2hlT8 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 2004 f698&amp;quot;&amp;gt;{{cite web | title=CS80, 73 Moog Modular, FVS, ARP 2600 | website=MATRIXSYNTH: Anthony Marinelli Doctor Mix Synth Jam 1 | date=2004-02-26 | url=https://www.matrixsynth.com/2023/11/anthony-marinelli-doctor-mix-synth-jam.html | access-date=2024-02-11 | access-date=2023-11-30 | archive-url=https://web.archive.org/web/20231130041506/https://www.matrixsynth.com/2023/11/anthony-marinelli-doctor-mix-synth-jam.html}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6261</id>
		<title>Draft: Thriller</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6261"/>
		<updated>2024-02-11T01:22:02Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: episodes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= ''Thriller'' memorialized =&lt;br /&gt;
&lt;br /&gt;
In 2015, Marinelli sat for an interview with the [[BBC]], reflecting on his memories and contributions to Michael Jackson's ''Thriller''.&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;/&amp;gt;  Tom Baylor had introduced Marinelli to music producer [[Quincy Jones]]. Marinelli and partner, Brian Banks were hired as session musicians working at [[Westlake Recording Studios|Westlake Studios]] in West Hollywood for the creation of ''Thriller''.  In addition to bringing in three truckloads of synthesizer gear, preliminary duties consisted of briefing Michael Jackson on the capabilities of the emerging technologies, sound creation and programming.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
The BBC &amp;quot;Witness&amp;quot; radio podcast was followed by three pilot vlogs for Marinelli's YouTube channel called ''How We Created It''. In the first episode, Marinelli demonstrates how to recreate the falling star sound that opens the &amp;quot;Thriller&amp;quot; song.&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;/&amp;gt; The following two-part series is called &amp;quot;Studio Stories&amp;quot;.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot; /&amp;gt; Quincy Jones' production assistant, Steven Ray,&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;/&amp;gt; joined Marinelli to reminisce in 2020.&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;/&amp;gt; Marinelli and Ray continued recording episodes and were approached by Audivita Studios for the creation of ''Stories In The Room:'' “Michael Jackson’s Thriller Album”, with 72 episodes posted as of February 2024. &amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''Stories in The Room'' guest appearances include:&lt;br /&gt;
&lt;br /&gt;
* Matt Forger (sound engineer)&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;/&amp;gt;&lt;br /&gt;
* Lorraine Fields (&amp;quot;Thriller&amp;quot; zombie dancer)&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Larry Williams (jazz musician)|Larry Williams]] (keyboards and reeds)&lt;br /&gt;
* [[Greg Phillinganes]] (keyboards)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Steve Porcaro]] (keyboards, composer on &amp;quot;Human Nature&amp;quot;)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Paul Jackson Jr.]] (guitar, no relation to Michael Jackson)&lt;br /&gt;
* The Waters Family (vocal ensemble, [[Julia Waters Tillman]]. [[Oren Waters]], and [[Maxine Willard Waters]])&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
Marinelli continues to talk shop about sound creation, musical gear and composing on his own Youtube channel. Episodes that have gained media attention include: &amp;quot;How I Programmed The Bass On Michael Jackson's PYT&amp;quot;,&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;/&amp;gt; &amp;quot;MJ's Billie Jean Bass - It’s 4 Instruments!&amp;quot; featuring Paul Jackson Jr., &amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt; and &amp;quot;The Billie Jean Chord Stack - It’s 4 Sounds!&amp;quot;.&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Other collaborations include Doctor Mix, &lt;br /&gt;
[[Giorgio Moroder]]'s work process with engineer Ross Hogarth,&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Marinelli was interviewed in his studios for the film ''[[Thriller 40 (film)|Thriller 40]]'' (2023) (Showtime - Paramount+).&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Wide image|File:Photo-of-Thriller-40-Credit-Roll.jpg|800|Photo of Thriller 40 (2023) Credit Roll|900|center|alt=Photo of Thriller 40 (2023) Credit Roll}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{Reflist|30em|refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;&amp;gt;{{cite web | title=Witness History, Michael Jackson's Thriller | website=BBC | date=2015-12-23 | url=https://www.bbc.co.uk/programmes/p039z0n4 | access-date=2024-02-02 | archive-date=2024-02-02 | archive-url=https://web.archive.org/web/20240202204125/https://www.bbc.co.uk/programmes/p039z0n4 | quote = In 1982 the world's best selling album was released. Thriller included hits such as Beat It, Billie Jean and Wanna Be Startin' Somethin' as well as the title track. Witness speaks to Anthony Marinelli who worked on the seminal album.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;&amp;gt;{{cite web | last=Carr | first=Dan | title=The synth sounds of Michael Jackson's Thriller (and how to recreate them in your DAW) | website=MusicRadar | date=2022-11-30 | url=https://www.musicradar.com/news/thriller-synth-sounds | access-date=2024-02-02 | archive-url= https://web.archive.org/web/20240117053822/https://www.musicradar.com/news/thriller-synth-sounds | archive-date=2024-01-17 | quote = Looking for a more ‘cinematic’ sound, Quincy Jones enlisted synthesizer programmers Anthony Marinelli and Brian Banks, who bought every synth available at the time and turned up to Westlake Studios with three trucks full of instruments.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;&amp;gt;{{cite web | title=Blog | website=(/\/\) Anthony Marinelli // Music Forever | date=2020-10-13 | url=https://www.anthonymarinelli.com/blog | access-date=2024-02-03  | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203012039/https://www.anthonymarinelli.com/blog}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;&amp;gt;{{cite web | title=Stories In The Room: Michael Jackson’s Thriller Album | website=MJVibe | date=2023-02-11 | url=https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/ | access-date=2024-02-03 | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203013207/https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;&amp;gt;{{cite web | title=Original programmer who worked on Michael Jackson’s Billie Jean reveals how he created its iconic four-chord stack | website=MusicTech | date=2023-12-22 | url=https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/ | access-date=2024-02-03  | archive-date=2024-01-06 | archive-url=https://web.archive.org/web/20240106023325/https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;&amp;gt;{{cite web | title=Monster budgets, visits from Jackie Onassis, and a very angry Vincent Price: how Michael Jackson made Thriller | website=The Telegraph | date=2018-08-29 | url=https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/ | access-date=2024-02-04 | archive-date=2022-12-06 | archive-url=https://web.archive.org/web/20221206012217/https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/| quote= This was before the internet, so I don't know how people found out. It was like dancing on stage, it was like doing a concert. We didn't start taping until the middle of the night. Every night it was like, he came out and people were screaming. It was like being in concert with Michael Jackson - it was very exciting.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;&amp;gt; {{AllMusic | id= steven-ray-mn0000038850 | tab= credits | title= Steven Ray Credits}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;&amp;gt;{{cite web | title=“Don’t think, just do”: Former Giorgio Moroder collaborator says the godfather of disco was “all about the melody” | website=MusicTech | date=2024-01-04 | url=https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | access-date=2024-02-05 | archive-url=https://web.archive.org/web/20240117200522/https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | archive-date=2024-02-05 }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;&amp;gt;{{cite web | last=George | first=Nelson | title=THRILLER 40 AIRS ON PARAMOUNT+ DEC. 2 | website=nelsongeorge.substack.com | date=2023-11-16 | url=https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207011919/https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;&amp;gt;{{cite web | title=Thriller 40: the documentary | website=BRICE NAJAR | date=2023-12-10 | url=https://bricenajar.com/en/thriller-40-the-documentary/ | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207013457/https://bricenajar.com/en/thriller-40-the-documentary/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=Here’s how the synth bass sound for Michael Jackson’s PYT was programmed on an ARP 2600 | website=Yahoo Entertainment | date=2023-05-24 | url=https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html | access-date=2024-02-10 | archive-url= https://web.archive.org/web/20240210215151/https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html  | archive-date=2024-02-10}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;&amp;gt;{{cite web | last=Wyeth | first=Stefan | title=Darkness Falls: How To Sound Like Michael Jackson | website=gearnews.com | date=2023-10-31 | url=https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/ | access-date=2024-02-10 | archive-date=2024-02-10 | archive-url=https://web.archive.org/web/20240210233745/https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Bass PYT&amp;quot;&amp;gt;{{cite web | title=How I Programmed The Bass On Michael Jackson's PYT | website=YouTube | url=https://www.youtube.com/watch?v=EVx9CnUqXGM | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean bass&amp;quot;&amp;gt;{{cite web | title=MJ's Billie Jean Bass | website=YouTube | url=https://www.youtube.com/watch?v=zKzcR0sUvV0 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Billie Jean chord&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=It turns out that the Billie Jean chord stab sound is more complex than we thought: it needed 3 Yamaha CS-80 synth layers and vocal ‘oohs’ from Michael Jackson | website=MusicRadar | date=2023-12-18 | url=https://www.musicradar.com/news/billie-jean-chord-stack-synths | access-date=2024-02-11 | archive-date=2024-02-11 | archive-url=https://web.archive.org/web/20240211011143/https://www.musicradar.com/news/billie-jean-chord-stack-synths }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;YouTube Billie Jean chord&amp;quot;&amp;gt;{{cite web | title=The Billie Jean Chord Stack | website=YouTube | url=https://www.youtube.com/watch?v=_mIYTG2hlT8 | access-date=2024-02-11}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
	<entry>
		<id>https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6260</id>
		<title>Draft: Thriller</title>
		<link rel="alternate" type="text/html" href="https://producers.wiki/index.php?title=Draft:_Thriller&amp;diff=6260"/>
		<updated>2024-02-10T23:46:31Z</updated>

		<summary type="html">&lt;p&gt;Skritzer: PYT and falling star ref&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= ''Thriller'' memorialized =&lt;br /&gt;
&lt;br /&gt;
In 2015, Marinelli sat for an interview with the [[BBC]], reflecting on his memories and contributions to Michael Jackson's ''Thriller''.&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;/&amp;gt;  Tom Baylor had introduced Marinelli to music producer [[Quincy Jones]]. Marinelli and partner, Brian Banks were hired as session musicians working at [[Westlake Recording Studios|Westlake Studios]] in West Hollywood for the creation of ''Thriller''.  In addition to bringing in three truckloads of synthesizer gear, preliminary duties consisted of briefing Michael Jackson on the capabilities of the emerging technologies, sound creation and programming.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
The BBC &amp;quot;Witness&amp;quot; radio podcast was followed by three pilot vlogs for Marinelli's YouTube channel called ''How We Created It''. In the first episode, Marinelli demonstrates how to recreate the falling star sound that opens the &amp;quot;Thriller&amp;quot; song.&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;/&amp;gt; The following two-part series is called &amp;quot;Studio Stories&amp;quot;.&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot; /&amp;gt; Quincy Jones' production assistant, Steven Ray,&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;/&amp;gt; joined Marinelli to reminisce in 2020.&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;/&amp;gt; Marinelli and Ray continued recording episodes and were approached by Audivita Studios for the creation of ''Stories In The Room:'' “Michael Jackson’s Thriller Album”, with 72 episodes posted as of February 2024. &amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''Stories in The Room'' guest appearances include:&lt;br /&gt;
&lt;br /&gt;
* Matt Forger (sound engineer)&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;/&amp;gt;&lt;br /&gt;
* Lorraine Fields (&amp;quot;Thriller&amp;quot; zombie dancer)&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Larry Williams (jazz musician)|Larry Williams]] (keyboards and reeds)&lt;br /&gt;
* [[Greg Phillinganes]] (keyboards)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Steve Porcaro]] (keyboards, composer on &amp;quot;Human Nature&amp;quot;)&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;/&amp;gt;&lt;br /&gt;
* [[Paul Jackson Jr.]] (guitar, no relation to Michael Jackson)&lt;br /&gt;
* The Waters Family (vocal ensemble, [[Julia Waters Tillman]]. [[Oren Waters]], and [[Maxine Willard Waters]])&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
Marinelli continues to talk shop about sound creation, musical gear and composing on his own Youtube channel. Episodes that have gained media attention include [[Giorgio Moroder]]'s work process with engineer Ross Hogarth,&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;/&amp;gt; &amp;quot;How I Programmed The Bass On Michael Jackson's PYT&amp;quot;,&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;/&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Other collaborations include Doctor Mix, &lt;br /&gt;
&lt;br /&gt;
Marinelli was interviewed in his studios for the film ''[[Thriller 40 (film)|Thriller 40]]'' (2023) (Showtime - Paramount+).&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Wide image|File:Photo-of-Thriller-40-Credit-Roll.jpg|800|Photo of Thriller 40 (2023) Credit Roll|900|center|alt=Photo of Thriller 40 (2023) Credit Roll}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{Reflist|30em|refs=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BBC 2015 k223&amp;quot;&amp;gt;{{cite web | title=Witness History, Michael Jackson's Thriller | website=BBC | date=2015-12-23 | url=https://www.bbc.co.uk/programmes/p039z0n4 | access-date=2024-02-02 | archive-date=2024-02-02 | archive-url=https://web.archive.org/web/20240202204125/https://www.bbc.co.uk/programmes/p039z0n4 | quote = In 1982 the world's best selling album was released. Thriller included hits such as Beat It, Billie Jean and Wanna Be Startin' Somethin' as well as the title track. Witness speaks to Anthony Marinelli who worked on the seminal album.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Carr 2022 b760&amp;quot;&amp;gt;{{cite web | last=Carr | first=Dan | title=The synth sounds of Michael Jackson's Thriller (and how to recreate them in your DAW) | website=MusicRadar | date=2022-11-30 | url=https://www.musicradar.com/news/thriller-synth-sounds | access-date=2024-02-02 | archive-url= https://web.archive.org/web/20240117053822/https://www.musicradar.com/news/thriller-synth-sounds | archive-date=2024-01-17 | quote = Looking for a more ‘cinematic’ sound, Quincy Jones enlisted synthesizer programmers Anthony Marinelli and Brian Banks, who bought every synth available at the time and turned up to Westlake Studios with three trucks full of instruments.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Anthony Marinelli Music Forever 2020 y199&amp;quot;&amp;gt;{{cite web | title=Blog | website=(/\/\) Anthony Marinelli // Music Forever | date=2020-10-13 | url=https://www.anthonymarinelli.com/blog | access-date=2024-02-03  | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203012039/https://www.anthonymarinelli.com/blog}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MJVibe 2023 k028&amp;quot;&amp;gt;{{cite web | title=Stories In The Room: Michael Jackson’s Thriller Album | website=MJVibe | date=2023-02-11 | url=https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/ | access-date=2024-02-03 | archive-date=2024-02-03 | archive-url=https://web.archive.org/web/20240203013207/https://www.mjvibe.com/stories-in-the-room-michael-jacksons-thriller-album/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2023 Matt Forger&amp;quot;&amp;gt;{{cite web | title=Original programmer who worked on Michael Jackson’s Billie Jean reveals how he created its iconic four-chord stack | website=MusicTech | date=2023-12-22 | url=https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/ | access-date=2024-02-03  | archive-date=2024-01-06 | archive-url=https://web.archive.org/web/20240106023325/https://musictech.com/news/music/programmer-michael-jackson-billie-jean-how-created-four-chord-stack/&lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;The Telegraph 2018 Lorraine Fields&amp;quot;&amp;gt;{{cite web | title=Monster budgets, visits from Jackie Onassis, and a very angry Vincent Price: how Michael Jackson made Thriller | website=The Telegraph | date=2018-08-29 | url=https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/ | access-date=2024-02-04 | archive-date=2022-12-06 | archive-url=https://web.archive.org/web/20221206012217/https://www.telegraph.co.uk/music/artists/michael-jacksons-thriller-inside-story-album-video-changed-world/| quote= This was before the internet, so I don't know how people found out. It was like dancing on stage, it was like doing a concert. We didn't start taping until the middle of the night. Every night it was like, he came out and people were screaming. It was like being in concert with Michael Jackson - it was very exciting.}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Steven Ray Allmusic credits&amp;quot;&amp;gt; {{AllMusic | id= steven-ray-mn0000038850 | tab= credits | title= Steven Ray Credits}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;MusicTech 2024 Moroder&amp;quot;&amp;gt;{{cite web | title=“Don’t think, just do”: Former Giorgio Moroder collaborator says the godfather of disco was “all about the melody” | website=MusicTech | date=2024-01-04 | url=https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | access-date=2024-02-05 | archive-url=https://web.archive.org/web/20240117200522/https://musictech.com/news/music/giorgio-moroder-was-all-about-the-melody/ | archive-date=2024-02-05 }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;George 2023 Thriller 40&amp;quot;&amp;gt;{{cite web | last=George | first=Nelson | title=THRILLER 40 AIRS ON PARAMOUNT+ DEC. 2 | website=nelsongeorge.substack.com | date=2023-11-16 | url=https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207011919/https://nelsongeorge.substack.com/p/thriller-40-airs-on-paramount-dec}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;BRICE NAJAR 2023 t311&amp;quot;&amp;gt;{{cite web | title=Thriller 40: the documentary | website=BRICE NAJAR | date=2023-12-10 | url=https://bricenajar.com/en/thriller-40-the-documentary/ | access-date=2024-02-07 | archive-date=2024-02-07 | archive-url=https://web.archive.org/web/20240207013457/https://bricenajar.com/en/thriller-40-the-documentary/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Rogerson 2023 Yahoo PYT&amp;quot;&amp;gt;{{cite web | last=Rogerson | first=Ben | title=Here’s how the synth bass sound for Michael Jackson’s PYT was programmed on an ARP 2600 | website=Yahoo Entertainment | date=2023-05-24 | url=https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html | access-date=2024-02-10 | archive-url= https://web.archive.org/web/20240210215151/https://www.yahoo.com/entertainment/synth-bass-sound-michael-jackson-123805583.html  | archive-date=2024-02-10}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ref name=&amp;quot;Wyeth 2023 Falling Star&amp;quot;&amp;gt;{{cite web | last=Wyeth | first=Stefan | title=Darkness Falls: How To Sound Like Michael Jackson | website=gearnews.com | date=2023-10-31 | url=https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/ | access-date=2024-02-10 | archive-date=2024-02-10 | archive-url=https://web.archive.org/web/20240210233745/https://www.gearnews.com/darkness-falls-how-to-sound-like-michael-jackson-thriller/}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Skritzer</name></author>
		
	</entry>
</feed>