نتایج جستجو برای: understanding and interpretation develop

تعداد نتایج: 16879093  

پایان نامه :وزارت علوم، تحقیقات و فناوری - دانشگاه زنجان 1389

until now many studies have been done over recent decades throughout the world to show the right age to start english. in iran, research is still at an early stage in terms of evaluating teachers’ beliefs about teaching children english. the problem of at what age to start teaching english and how to teach english to elementary school children has not been solved neither in this country nor els...

پایان نامه :وزارت بهداشت، درمان و آموزش پزشکی - دانشگاه علوم پزشکی و خدمات بهداشتی درمانی استان کرمانشاه 1370

cml in breif cml is characterized by the proliferation of large numbers of immature wbc in the blood and bone marrow. in most of the patients , it is a clonal disorder in which all cell lines, express the philadelphia chromosome)q/22 translocation(it accounts for 20 of all leukemias and most cases occur over 25 yrs of age. the disease usually begins insidiously,but symptoms referable to anemia ...

ژورنال: مطالعات تفسیری 2020

Hamed Abu Zayd, a contemporary scholar, believes that the message of the Quran can only survive through interpretation. In his view, the verses of the Islamic rulings should be interpreted in a modern way; From the development process of the Islamic rulings in the age of revelation, a message can be deducted through which modern rulings can be obtained. Since every understanding of the Qurchr('...

ژورنال: مطالعات تفسیری 2013
Akhoond, Sakineh , Mo'addab, Seyyed Reza ,

Being the last Divinely revealed book, the Holly Quran undertakes the mission for guiding human generations and its main audience, i.e. the Ahl ul-Bayt (p.b.u.t), are its interpreters. Interpretation of the innocents (p. b. u. t.) is specific to themselves and this is due to the width and depth of the meanings and also the relationship and connection of this family's educations with revelation ...

پایان نامه :دانشگاه آزاد اسلامی - دانشگاه آزاد اسلامی واحد تهران مرکزی - دانشکده زبانهای خارجی 1393

nowadays, technical terminology translation plays an important role in human life. specific groups of people all over the world refer to learn these terminologies in order to be familiar with a subject and improve their knowledge in that domain. on the other hand, saving the technical translation equivalent is a particularly salient challenge for technical translators. the present study was con...

Journal: :Circulation: Cardiovascular Imaging 2016

2001
Elemér E Rosinger

Several recent essays are presented on the difficulties scientific research and science researchers have by now been facing for a number of decades due to what goes by the name of ”science management”. Gun Fodder for Science Management ? 0. Develop or Die, and the Role of ”Type I” Research in Science ... It is customary to use the term ”Knowledge Society” for describing the present state of hum...

ژورنال: پژوهشنامه اخلاق 2020
Mesbahi Jamshid, Parastu , Soltani Kuhansetani, Maryam ,

Anthropology is considered one of the most important philosophical issues and a platform for moral discussions. In this study, to explain the nature of man, three interpretations have been expressed: “interpretation of mankind as nature”, which took place in the period of modernism, according to which man is a creature equal to nature; “Interpretation of mankind as God” which arises from the te...

Journal: :قرآن در آئینه پژوهش 0

quran is a book of guidance and one can achieve guidance with reference to it. but as qur'an is mostly concerned with generalities and details is left to the prophet (pbuh), to understanding quran it is essential to refer to the hadith of the prophet. but because of unlimited depth of qur'an, the prophet (pbuh) could not explain all the hidden meanings of its verses, so he saw it nece...

Journal: :پژوهش های ادبی - قرآنی 0
شادی نفیسی استادیار گروه قرآن و حدیث دانشکده الهیات دانشگاه تهران زهرا عماری دانشجوی دکتری دانشگاه قرآن و حدیث تهران

the literary approach to quranic interpretations is founded on words, morphology, syntax and rhetoric. however, contemporary literary school, in addition to these principles, takes into account other principles like authenticating solely the literary understanding. comparing sayyid murtazā's literary approach with the principles and ideas of sheikh tusi in al-tibyan reveals various aspects...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->