Book picks similar to
Grammar for IELTS by Diana Hopkins
ielts
english
language
grammar
An Introduction to Sociolinguistics
Janet Holmes - 1992
The book is conveniently divided into three sections: Section one shows how language is used in multilingual speech communities and explains the varying patterns of language use. Janet Holmes examines how and why languages change within society and highlights the factors that lead to the displacement of one language by another and sometimes the death of a language. Section two explores social reasons for language change, looking at language change in monolingual communities and the features of a variety of dialects. The author shows how and why differing racial and social groups develop and maintain speech variations. The final section assesses how attitudes to language affect speech and shows that linguistic responses depend on a variety of contextual factors - for example, the status of the person being addressed and our re
How to Do Things with Words
J.L. Austin - 1955
Austin was one of the leading philosophers of the twentieth century. The William James Lectures presented Austin's conclusions in the field to which he directed his main efforts on a wide variety of philosophical problems. These talks became the classic How to Do Things with Words.For this second edition, the editors have returned to Austin's original lecture notes, amending the printed text where it seemed necessary. Students will find the new text clearer, and, at the same time, more faithful to the actual lectures. An appendix contains literal transcriptions of a number of marginal notes made by Austin but not included in the text. Comparison of the text with these annotations provides new dimensions to the study of Austin's work.
Oxford Modern English Grammar
Bas Aarts - 2011
This indispensable handbook covers both British and American English, and makes use of authentic spoken and written examples.Packed with tables, diagrams, and numerous example sentences, and assuming no prior knowledge of grammatical concepts on the part of the reader, this volume offers an unmatched guide to the structure of contemporary English. Arranged in three clear parts for ease of use, the Grammar's comprehensivecoverage ranges from the very basic--such as word structure, simple and complex phrases, and clause types--to the more sophisticated topics that lie at the intersection of grammar and meaning, including tense and aspect, mood and modality, and information structuring. How do words formed bycompounding differ from words formed by conversion? How many verbs in English can take a declarative clause functioning as direct object (ie, decide that... or believe that...)? What is the relationship between a matrix clause and a subordinate clause? What is the present futurate? The pastfuturate? The present perfect? How does the grammar of English encode such semantic notions as possibility, probability, necessity, obligation, permission, intention, or ability? Aarts answers all these questions, clearly and engagingly, deeply enriching the reader's understanding ofthe English language.Oxford Modern English Grammar will be invaluable for those with an interest in the English language, undergraduate students of all disciplines, and for anyone who would like a clear guide to English grammar and how to use it.
An A-Z of English Grammar & Usage
Geoffrey N. Leech - 1996
This thoroughly revised edition provides teachers and learners of English with a unique, up-to-date reference grammar in an easy-to-use dictionary-like format.
Salsa Dancing Into the Social Sciences: Research in an Age of Info-Glut
Kristin Luker - 2008
But trust me. Salsa dancing is a practice as well as a metaphor for a kind of research that will make your life easier and better.""Savvy, witty, and sensible, this unique book is both a handbook for defining and completing a research project, and an astute introduction to the neglected history and changeable philosophy of modern social science. In this volume, Kristin Luker guides novice researchers in: knowing the difference between an area of interest and a research topicdefining the relevant parts of a potentially infinite research literaturemastering sampling, operationalization, and generalizationunderstanding which research methods best answer your questionsbeating writer's blockMost important, she shows how friendships, nonacademic interests, and even salsa dancing can make for a better researcher.""You know about setting the kitchen timer and writing for only an hour, or only 15 minutes if you are feeling particularly anxious. I wrote a fairly large part of this book feeling exactly like that. If I can write an entire book 15 minutes at a time, so can you.""
Speak: A Short History of Languages
Tore Janson - 1997
It charts the rise of some languages and the fall of others, explaining why some survive and others die. It shows how languages change their sounds and meanings, and how the history of languages is closely linked to the history of peoples.Writing in a lively, readable style, distinguished Swedish scholar Tore Janson makes no assumptions about previous knowledge. He takes the reader on a voyage of exploration through the changing patterns of the world's languages, from ancient China to ancient Egypt, imperial Rome to imperial Britain, Sappho's Lesbos to contemporary Africa. He discovers the links between the histories of societies and their languages; he shows how language evolved from primitive calls; he considers the question of whether one language can be more advanced than another. The author describes the history of writing and the impact of changing technology. He ends by assessing the prospects for English world domination and predicting the languages of the distant future.Five historical maps illustrate this fascinating history of our defining characteristic and most valuable asset.
Teaching and Learning in the Language Classroom
Tricia Hedge - 2000
What do I set up as aims for my next lesson with this class and what kind of activities will help to achieve those aims? How do I deal with this reading text in class? What amount of out-of-class work can I reasonably expect my learners to do? How do I make best use of a textbook I am not entirely happy with? These are just a few examples of the many questions typically asked by teachers which she addresses in this book.Although insights from research can help, there are no 'right answers' provided. Instead, the aim is to give you a solid foundation of knowledge which you can use to evaluate and apply your own ideas about teaching and learning.The book is organized into four parts.- Part One ('A framework for teaching and learning') looks at insights from research into learners, learning, and language in use and discusses how these have influenced methodology and materials in ELT. Specific topics covered include: the use of communicative tasks in the classroom, the concept of learner strategies and how you can train your students to develop them, the growth of interactive methodology and its consequences in changing the roles of teacher and learner.- Part Two ('Teaching the language system') focuses on vocabulary and grammar, and Part Three ('Developing the language skills') on the traditional four language skills of listening, speaking, reading, and writing. There is also discussion of how these different areas fit together.- Part Four ('Planning and assessing learning') moves on to wider issues. Chapter 10 on course design refers back to topics covered earlier in the book. Chapter 11 deals with the relationship between teaching and different forms of assessment.There is an Introductory task at the start of each chapter (with supporting guidance notes), as well as a Discussion topics and projects section - which can be used for group discussion - at the end.The book also has a complete glossary, further reading suggestions at the end of each chapter, a bibliography, and a full index.
A Course in Phonetics
Peter Ladefoged - 1975
Practicing what you have learned is easy with the CD-ROM that contains more than 4,000 audio files, including recordings of speech from southern and northern U.S. cities, London, Edinburgh, Dublin, New Zealand, other forms of English, and scores of other languages.
The Go Programming Language
Alan A.A. Donovan - 2015
It has been winning converts from dynamic language enthusiasts as well as users of traditional compiled languages. The former appreciate the robustness and efficiency that Go's lightweight type system brings to their code; the latter find Go's simplicity and fast tools a refreshing change. Thanks to its well-designed standard libraries and its excellent support for concurrent programming, Go is fast becoming the language of choice for distributed systems. The Go Programming Language is the definitive book on Go for the working programmer. It assumes no prior knowledge of Go, nor any other specific programming language, so you'll find it an accessible guide whether you come from JavaScript, Ruby, Python, Java, or C++. The book will quickly get you started using Go effectively from the beginning, and by the end, you will know how to use it well to write clear, idiomatic and efficient programs to solve real-world problems. You'll understand not just how to use its standard libraries, but how they work, and how to apply the same design techniques to your own projects. The earlier chapters will introduce you to the basic concepts of Go programming---numbers, strings, functions---while at the same time presenting important computer science concepts like recursion, and useful examples of graphics, UTF-8, and error handling. The chapters on methods and interfaces will show you a new way to think about object-oriented programming; the chapter on concurrency explains why concurrency is so important in modern programming, and how Go helps you handle it well. You'll also learn about Go's pragmatic but effective approach to testing; how to build, test, and manage projects using the go tool, and the art of metaprogramming using reflection. The book contains hundreds of interesting and practical examples that cover the whole language and a wide range of applications. The code samples from the book are available for download from gopl.io.
Principles and Practice in Second Language Acquisition
Stephen D. Krashen - 1982
This text explores the relationship between second language teaching practice and what is known about the process of second language acquisition and summarizes the current state of second language acquisition theory.-- Draws general conclusions about the application of theory to methods and materials and describes the characteristics that effective materials should include.-- Concludes that language acquisition occurs best when language is used for the purpose for which it was designed: communication.
Introduction to Old English
Peter S. Baker - 2003
A pioneering introduction to Old English designed for a new generation of students. Assumes no expertise in other languages or in traditional grammar. Opening chapters and 'Quick Start' sections cover the basics. 'Minitexts' give students practice in reading Old English. Includes two chapters on syntax and three on reading poetry. Anthologises fourteen readings, including 'The Wanderer', 'The Dream of the Rood' and 'Judith'. The accompanying 'Old English Aerobics' website features additional readings and exercises.
Understanding Second Language Acquisition
Lourdes Ortega - 2007
The field of Second language acquisition (SLA, for short) investigates the human capacity to learn additional languages in late childhood, adolescence, or adulthood, after the first language -in the case of monolinguals- or languages -in the case of bilinguals- have already been acquired. Understanding Second Language Acquisition offers a wide-encompassing survey of this burgeoning field, its accumulated findings and proposed theories, its developed research paradigms, and its pending questions for the future. The book zooms in and out of universal, individual, and social forces, in each case evaluating the research findings that have been generated across diverse naturalistic and formal contexts for second language acquisition. It assumes no background in SLA and provides helpful chapter-by-chapter summaries and suggestions for further reading.Ideal as a textbook for students of applied linguistics, foreign language education, TESOL, and education, it is also recommended for students of linguistics, developmental psycholinguistics, psychology, and cognitive science.
Nitty-Gritty Grammar: A Not-So-Serious Guide to Clear Communication
Edith Hope Fine - 1998
With clear text, appealing cartoons, and a focus on common errors and how to correct them, this little volume is a real gem that should find a permanent place with companies, universities, and anyone seeking a user-friendly guide to style and usage.