한국일보
- 정치
- 경제
- 사회
- 국제
- 문화
- 연예
- 스포츠
- 사람
- 라이프
- 오피니언
- 구독+
[블로그 세상] 세상에서 가장 긴 영어단어
알림
알림설정
웹 알림 동의 (크롬브라우저만 가능)
알림
\n' + ' '); } } // 최근 검색어가 없으면 } else { // 전체 삭제 버튼 비활성화 $('button[data-el="search-record-delete-all-btn-in-gnb"]').attr('disabled', true); $('dl[data-el="search-record-list-in-gnb"]').append('
'); // 컨테이너 css class toggle $('div[data-el="search-toggle-recent-word"]').addClass('no-result'); } } function onClickSearchRecord(searchText) { location.href = _searchHost + '/Search?searchText=' + encodeURIComponent(searchText); } function onClickDeleteSearchRecord(index, event) { var searchRecordCookie = Cookies.get('search-record'); var searchRecord = searchRecordCookie.split(',').reverse(); // Prevent Submit Form Tag event.preventDefault(); event.stopImmediatePropagation(); // 해당 인덱스 삭제 searchRecord.splice(Number(index), 1); if (searchRecord.reverse().join(',') !== '') { // Cookies.set('search-record', searchRecord.join(','), {path: '/', expires: 60 * 60 * 24 * 265}); fn_setCookie('search-record', searchRecord.join(','), {path: '/', expires: 60 * 60 * 24 * 265}); } else { Cookies.remove('search-record'); } setSearchRecord(); } /** * 검색어 전체 삭제 listener */ function setSearchRecordDeleteAllListener() { $('button[data-el="search-record-delete-all-btn-in-gnb"]').on('click', function () { Cookies.remove('search-record'); setSearchRecord(); }) } /** * 검색어 저장 on off 버튼 listener */ function setSaveSearchRecordOnOffBtnListener() { $('button[data-el="search-record-save-off-btn-in-record-in-gnb"]').on('click', function () { var flag = Cookies.get('save-search-record-flag'); if (flag === 'true' || flag === undefined) { // Cookies.set('save-search-record-flag', 'false', {path: '/', expires: 60 * 60 * 24 * 265}); fn_setCookie('save-search-record-flag', 'false', {path: '/', expires: 60 * 60 * 24 * 265}); $('button[data-el="search-record-save-off-btn-in-record-in-gnb"]').html('검색어 저장 켜기'); $('button[data-el="search-record-save-off-btn-in-auto-in-gnb"]').html('검색어 저장 켜기'); } else { // Cookies.set('save-search-record-flag', 'true', {path: '/', expires: 60 * 60 * 24 * 265}); fn_setCookie('save-search-record-flag', 'true', {path: '/', expires: 60 * 60 * 24 * 265}); $('button[data-el="search-record-save-off-btn-in-record-in-gnb"]').html('검색어 저장 끄기'); $('button[data-el="search-record-save-off-btn-in-auto-in-gnb"]').html('검색어 저장 끄기'); } }); $('button[data-el="search-record-save-off-btn-in-auto-in-gnb"]').on('click', function () { var flag = Cookies.get('save-search-record-flag'); if (flag === 'true' || flag === undefined) { // Cookies.set('save-search-record-flag', 'false', {path: '/', expires: 60 * 60 * 24 * 265}); fn_setCookie('save-search-record-flag', 'false', {path: '/', expires: 60 * 60 * 24 * 265}); $('button[data-el="search-record-save-off-btn-in-record-in-gnb"]').html('검색어 저장 켜기'); $('button[data-el="search-record-save-off-btn-in-auto-in-gnb"]').html('검색어 저장 켜기'); } else { // Cookies.set('save-search-record-flag', 'true', {path: '/', expires: 60 * 60 * 24 * 265}); fn_setCookie('save-search-record-flag', 'true', {path: '/', expires: 60 * 60 * 24 * 265}); $('button[data-el="search-record-save-off-btn-in-record-in-gnb"]').html('검색어 저장 끄기'); $('button[data-el="search-record-save-off-btn-in-auto-in-gnb"]').html('검색어 저장 끄기'); } }) } /** * 검색어 input 리스너 세팅 */ function setSearchInputListener() { $('button[data-el="search-input-in-gnb-btn"]').off('click.search-input-in-gnb-btn').on('click.search-input-in-gnb-btn', function(){ var searchText = $(this).parent().find('input[data-el="search-input-in-gnb"]').val(); saveSearchRecord(searchText); location.href = _searchHost + "/Search?searchText=" + encodeURIComponent(searchText); }) $('input[data-el="search-input-in-gnb"]').on('keyup', function (key) { //키가 13이면 실행 (엔터는 13) var searchText = $(this).val(); if (key.keyCode == 13 && searchText !== '') { saveSearchRecord(searchText); location.href = _searchHost + "/Search?searchText=" + encodeURIComponent(searchText); } // 상단 검색에서 자동완성 막기. // if( this.dataset.auto !== 'disabled' ){ // var param = { // "query": { // "bool": { // "should": [{ // "term": { // "PHRASE_Ngram": Hangul.disassemble(key.target.value).join('') // } // }], // "minimum_should_match": 1 // } // } // }; // var relatedSearchKeywordList = ''; // $.ajax({ // url: "/Search-auto-complete", // method: "POST", // contentType: 'application/json', // data: JSON.stringify(param), // success: function (response) { // var $autoCompleteList = $('dl[data-el="auto-complete-list-in-gnb"]'); // $autoCompleteList.html(''); // $autoCompleteList.html('
'); // for (var i = 0; i < response.length; i++) { // $autoCompleteList.append('
'); // if (i === 0) { // relatedSearchKeywordList = response[i]._id; // } else { // relatedSearchKeywordList += ',' + response[i]._id; // } // } // Cookies.set('relatedSearchKeyword', relatedSearchKeywordList); // }, // fail: function (err) { // // console.log('댓글 등록 -> 댓글 등록 에러'); // } // }); // } }); } /** * 최근 검색 기록 추가 */ function saveSearchRecord(searchText) { // 빈 값 검색 기록에 검색하면 넣지 않고 검색만 한다. if ($.trim(searchText) === '') { return; } var searchSaveFlag = Cookies.get('save-search-record-flag'); // 검색어 저장이 true 이면 if (searchSaveFlag === 'true' || searchSaveFlag === undefined) { var now = new Date(); var ymd = now.getFullYear() + "." + ('0' + (now.getMonth() + 1)).slice(-2) + "." + now.getDate(); var searchRecord = Cookies.get('search-record'); // 빈 값이 아니면 if (searchRecord !== undefined) { var searchRecordList = searchRecord.split(','); if (searchRecordList.length === 10) { searchRecordList.reverse(); searchRecordList.pop(); searchRecordList.reverse(); searchRecord = searchRecordList.join(','); } searchRecord += ',' + searchText + "_splitter" + ymd; } else { searchRecord = searchText + "_splitter" + ymd; } // Cookies.set('search-record', searchRecord, {path: '/', expires: 60 * 60 * 24 * 265}); fn_setCookie('search-record', searchRecord, {path: '/', expires: 60 * 60 * 24 * 265}); setSearchRecord(); } } /** * 인기 검색어 조회 * 2021-04-08 인기검색어 노출 제거.(네이버 실시간 검색 종료) */ function setPopularKeyword() { $.ajax({ url: "/Search-popular-keyword", method: "GET", success: function (response) { // console.log('인기 검색어 조회 성공'); // console.log(response); var popularKeywordList = response; var metaKeywordList = []; // 기사 개수 var popularArticleCount = 20; // 기사 개수에 따른 분기점 var popularKeywordCount = 4; if (popularKeywordList.length > 0) { $('p[data-el="keyword-created-dt"]').html(getFormattedDate(popularKeywordList[0].createdDt, 'yyyy.mm.dd hh:mm') + ' 기준') for (var i = 0; i < popularArticleCount; i++) { var item = popularKeywordList[i]; var articleShoulder = item.articleShoulder !== undefined ? item.articleShoulder.shoulderContents : ''; if (i % popularKeywordCount === 0 && i < popularArticleCount) { // 메타에 넣을 배열 준비 metaKeywordList.push(item.topic); $('#keyword-' + (i / popularKeywordCount)).html('' + parseInt((i / popularKeywordCount) + 1) + '' + item.topic + '') $('#rank-list').append('
'); $('#hot-keyword-main-' + i).html('
\n' + '
\n' + ' ' + articleShoulder + '\n' + '
' + getArticleCutName(item) + item.articleTitle + '
\n' + ' ' + getFormattedDate(item.articleDeployDt, 'yyyy.mm.dd hh:mm') + '\n' + '
\n' + '
\n' + ' \n' + ' \n' + ' \n' + '
\n' + '
\n' + '
\n' + ' ' + item.articleFrontPanContents + '\n' + '
') } else if (i % popularKeywordCount !== 0) { $('#hot-keyword-sub-' + parseInt(i / popularKeywordCount)).append('
') } } setTimeout(function() { $('#rank-list').addClass('is-play'); }, 500); $('meta[name="news_keywords"]').attr('content', metaKeywordList.join(",")); $('.btn-open-search').click(function() { if (location.href.indexOf('/Search') > -1) { location.replace(_searchHost+'/Search?searchText=' + popularKeywordList[0].topic) } else { location.replace(_searchHost+'/Search'); } }); } }, fail: function (err) { // console.log('댓글 등록 -> 댓글 등록 에러'); } }); }
- 입력
- 2005.05.31 00:00
- 0
- 0
00
종로학원에서 재수할 때였다. ‘재수생’이라는 우울한 신분이었지만 비교적 밝은 분위기로 자기 소개를 해야 하는 시간이 있었다. 대부분은 출신 고등학교와 이름을 얘기하고 “잘 지냅시다”정도로 맺고 교단을 내려왔지만, 그 중에는 개성 있게 팝송을 부르는 사람도 있었고 춤을 추는 사람도 있었다. 나도 돋보이고 싶은 마음에 차례가 되기까지 책상에 앉아 머리를 굴렸다.
그러다가 떠오른 것이 ‘세상에서 제일 긴 영어 단어는 무엇인가’라는 물음이었다. 우선 재미있는 농담으로 ‘smiles(웃음)’라고 대답하던 때가 있었던 걸로 기억한다. 앞 철자 s부터 뒷 철자 s까지가 mile(마일ㆍ거리 단위)이기 때문이다.
옥스퍼드 대사전에 명시되어 있는 가장 긴 영어단어는 바로 ‘진폐증’이라는 뜻의 단어다. pneumonoultramicroscopicsilicovolcanoconiosis. 총 45 글자로 이루어져 있다. 자기소개를 할 차례가 되자 나는 앞에 나가서 단숨에 칠판에다 이 단어를 썼다.
이것보다 약간 짧은 단어도 있다. ‘floccinaucinihilipilification’이다. ‘재물에 대해 무가치하게 생각함, 경시함’이라는 뜻이다. ‘hippopotomonstrosesquippedaliophobia’이라는 단어도 있다. 재미있게도 그 의미는 ‘길이가 긴 단어에 대한 공포증’이라고 한다.
‘aequeosalinocalcalinoceraceoaluminosocupreovitriolic’라는 단어는 에드워드 스트러더라는 17세기 화학자가 영국 브리스톨 지방의 광천수의 구성성분을 묘사한 것이라고 한다.
http://thinkpad.egloos.com/1365111
'); document.write('
'); document.write('
'); }else{ for (var i = 0; i < loopTotal; i++) { // 문화 카테고리 오른쪽 배너 고정 if (vSectionCd == "CULTURE" && i == 1) { document.write('
'); document.write('
'); continue; } document.write('
'); if(id.indexOf('pc_news_endpage_low') == 0){ document.write('
'); } } $( document ).ready(function() { // 스크립트 삭제(태그 개수에 따라 위치가 잡히기 때문에 필요 없는 태그 삭제) $('.end-ad-container[data-ad="articleDivide"] script').remove(); });
기사 URL이 복사되었습니다.
세상을 보는 균형, 한국일보Copyright ⓒ Hankookilbo
신문 구독신청
');li.find('a').attr('href', getArticleUrl(item) + '?type=AB1&rPrev=' + '200505310080797297').attr('target', '_' + item.articleLinkTargetType);li.find('div.title').text(getArticleCutName(item) + item.articleTitle);li.find('div.img-box > img').attr('src', item.repAttach.filePath);if (isMovieSectionYN == 'Y') {$('#related-article-list-video').append(li);} else {$('#related-article-list').append(li);} } } // 관련기사 호출 getRelatedList(); /** * 기사 구독 버튼 클릭 */ function onClickSubscribeArticleBtn(location) { subscribeLocation = location; // 로그인 확인 if (Cookies.get('accessToken') === undefined) { $('#sign-in-request-alert').openPopup(); return; } if ($(event.target).hasClass('on')) { $('#delete-subscription-popup').openPopup(); return; } subscribeTypeCheck(); } /** * 구독 분기 함수 */ function subscribeTypeCheck(){ //if(subscribeLocation == 'JPAGE' || subscribeLocation == 'TAG'){ if(subscribeLocation == 'JPAGE' || subscribeLocation == 'HASHTAG'){ subscribeArticleNew(subscribeLocation); }else{ subscribeArticle(); } } /** * 기사 구독 */ function subscribeArticle() { var usersSubscriptionPart = ''; var usersSubscriptionValue = ''; var seriesType = ''; var subContentType = ""; switch (usersSubscriptionPart){ case 'SeriesColumn': seriesType = 'NEWS_SERIES'; subContentType = '칼럼'; break; case 'Planning': seriesType = 'NEWS_PLANNING'; subContentType = '연재'; break; case 'Series': seriesType = 'NEWS_PLANNING'; subContentType = '연재'; break; case 'NameColumn': seriesType = 'NEWS_SERIES'; subContentType = '칼럼'; break; } $.ajax({ url: '/my/subscription', method: "POST", contentType: 'application/json', data: JSON.stringify({ usersSubscriptionPart: seriesType, usersSubscriptionValue: usersSubscriptionValue }) }).success(function (response) { var successYn = response; if (successYn) { if (successYn === 'Y') { fn_setGoogleAnalyticsUserDetailsUpdate(""); var sub_content = ''; if ("btn-subsc" == $('.btn-subsc').attr('class')) { //구독 중 fn_googleAnalyticsSubscribe(sub_content, subContentType); } else { //구독 취소 fn_googleAnalyticsUnsubscribe(sub_content, subContentType); } $('.btn-subsc').toggleClass('on'); } else if(successYn === 'F'){ $('#subscribe-valid-popup').openPopup(); $('.btn-subsc').remove(); } else { $('.btn-subsc').removeClass('on'); } } else { // console.log('기사 구독 -> 실패') } }).fail(function (error) { // }); } /** * 기자 구독 */ function subscribeArticleNew(location) { // 기사 구독 api를 쏜다 -> 중복체크는 controller에서 한다. if(location == 'JPAGE'){ $.ajax({ url: '/my/subscription', method: "POST", contentType: 'application/json', data: JSON.stringify({ usersSubscriptionPart: location, usersSubscriptionValue: '' }) }).success(function (response) { var successYn = response; if (successYn == 'Y') { // css를 바꾼다 // console.log('기사 구독 -> 성공'); fn_setGoogleAnalyticsUserDetailsUpdate(""); $('.subsc-btn.jpage').toggleClass('on'); if ($('.subsc-btn.jpage').hasClass('on')) { $('.subsc-btn.jpage').siblings('.add-pop').show(); //구독 중 fn_googleAnalyticsSubscribe('', '기자'); } else { $('.subsc-btn.jpage').siblings('.cancel-pop').show(); //구독 취소 fn_googleAnalyticsUnsubscribe('', '기자'); } } else if(successYn === 'F') { $('#subscribe-valid-popup').openPopup(); $('.subsc-btn.jpage').remove(); } else { // console.log('기사 구독 -> 실패') } }).fail(function (error) { // }); // }else if(location == 'TAG'){ }else if(location == 'HASHTAG'){ $.ajax({ url: '/my/subscription', method: "POST", contentType: 'application/json', data: JSON.stringify({ usersSubscriptionPart: location, usersSubscriptionValue: '' }) }).success(function (response) { var successYn = response; if (successYn === 'Y') { // css를 바꾼다 // console.log('기사 구독 -> 성공'); $('.subsc-btn.tag').toggleClass('on'); if ($('.subsc-btn.tag').hasClass('on')) { $('.subsc-btn.tag').siblings('.add-pop').show(); } else { $('.subsc-btn.tag').siblings('.cancel-pop').show(); } } else if(successYn === 'F') { $('#subscribe-valid-popup').openPopup(); $('.subsc-btn.tag').remove(); } else { // console.log('기사 구독 -> 실패') } }).fail(function (error) { // }); } } /** * 기사 저장 버튼 클릭 */ function onClickSaveArticleBtn(location) { // 로그인 확인 if (Cookies.get('accessToken') === undefined) { $('#sign-in-request-alert').openPopup(); return; } // 기사 저장 api를 쏜다 -> 중복체크는 controller에서 한다. $.ajax({ url: '/article/activity', method: 'POST', contentType: 'application/json', data: JSON.stringify({ articleId: '200505310080797297', activityType: 'Save' }), success: function (response) { // console.log('기사 저장 -> 성공'); var flag = response; if (flag) { // 기사 저장 css 토글 $('.btn-bookmark').toggleClass('on'); $('.icon-toolbox-bookmark').toggleClass('on'); // on이면 추가 popup off면 제거 popup if ($('.btn-bookmark').hasClass('on')) { setGoogleAnalyticsArticleSave(); if (location === 'top') { $('#top-save-article-popup').show(); } else { $('#bottom-save-article-popup').show(); } } else { if (location === 'top') { $('#top-delete-article-popup').show(); } else { $('#bottom-delete-article-popup').show(); } } // css를 바꾼다 } else { // console.log('기사 저장 -> 실패') } toggleAnimation('bottom-save-article-btn'); }, fail: function () { // console.log('기사 저장 -> 에러') } }) } function setGoogleAnalyticsArticleSave() { var headline = $('meta[name="headline"]').attr('content'); var content_category = $('meta[name="content_category"]').attr('content'); var content_subcategory = $('meta[name="content_subcategory"]').attr('content'); var article_type = $('meta[name="article_type"]' ).attr('content'); var article_length = $('meta[name="article_length"]' ).attr('content'); if (Cookies.get('accessToken') !== undefined) { window.dataLayer = window.dataLayer || []; $.ajax({ url: '/google-analytics/user-details-decrypt', type: 'GET', contentType: 'application/json', success: function (data) { dataLayer.push({ 'event': 'save', 'user_id': data.user_id, 'gender': data.gender, 'yob': data.yob, 'headline': headline, 'content_category': content_category, 'content_subcategory': content_subcategory, 'article_type': article_type, 'article_length': article_length, }); }, error: function () { } }); } } /** * 팝업 리스너들.. 외부 클릭시 숨긴다. */ var bottomSaveArticlePopup = $('#bottom-save-article-popup'); var bottomDeleteArticlePopup = $('#bottom-delete-article-popup'); var bottomSubscriptionSavePopup = $('#bottom-subscription-save-popup'); var bottomSubscriptionDeletePopup = $('#bottom-subscription-delete-popup'); $(document).mouseup(function (e) { // if the target of the click isn't the container nor a descendant of the container if (!bottomSaveArticlePopup.is(e.target) && bottomSaveArticlePopup.has(e.target).length === 0) { bottomSaveArticlePopup.hide(); bottomDeleteArticlePopup.hide(); bottomSubscriptionSavePopup.hide(); bottomSubscriptionDeletePopup.hide(); } }); // 본문 중간 광고 하단 공백 제거. $(document).ready(function(){ $('.editor-p').each(function(i, dom){ $.each(dom.childNodes, function(j, node){ if(node.nodeType === 1 && String(node.tagName).toUpperCase() === 'BR' && (dom.dataset.breakType === undefined || dom.dataset.breakType !== 'text') ){ dom.dataset.breakType = 'break'; }else{ dom.dataset.breakType = 'text'; } }) if(dom.dataset.breakType === 'break' && $(dom).prev().hasClass('end-ad-container')){ $(dom).remove(); } }) $("button[name='hashtags']").on("click", function () { var tag = this.id var tagId = this.value var url ="/tag/info/"+tagId+'/'+tag+'?page=1'; location.href = url; }); })
당신이 관심 있을 만한 이슈
\n' + '
' + article.articleTitle + '
\n' + ' \n' + ' ' } $('ul[data-el="topIssueArticlesList"]').empty().html(html) }).fail(function (err) { // console.log('라이브이슈 - 최근기사 조회-> 에러'); $('div[data-el="topIssueArticles"]').hide(); }); } getTopIssues(); })(window, document);
중복 선택 불가 안내
이미 공감 표현을 선택하신
기사입니다. 변경을 원하시면 취소
후 다시 선택해주세요.