Phranakorn Rajabhat University Library

Critical reading: English for academic purposes /

Pattison, Tania

Critical reading: English for academic purposes / Tania Pattison - Montreal : Pearson, 2015 - VIII, 248 p. : ill. ; 28 cm.

Chapter 1 Myth or reality? page 1-20 -- Chapter 2 What is the best way to eat? page 21-47 -- Chapter 3 The values of sports page 48-73 -- Chapter 4 Approaches to the global energy crisis page 74-97 -- Chapter 5 Leaders and leadership page 98-122 Chapter 6 Technology in education page 123-145 -- Chapter 7 Design and productivity page 146-171 -- Chapter 8 Inequality, wealth and happiness page 172-198 -- Chapter 9 Social networks: A magic number? page 199-222 -- Chapter 10 Looking at the stars page 223-242

9782761356541 500


ENGLISH LANGUAGE--RHETORIC
ENGLISH LANGUAGE--TEXTBOOKS FOR FOREIGN SPEAKERS
CRITICAL THINKING
ENGLISH LANGUAGE--READING
ENGLISH LANGUAGE--USAGE

PE 1408 / P37C 2015

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


 

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

✨ AI Recommendations

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

No AI recommendations found.

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

Error loading AI recommendations.

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