-
Notifications
You must be signed in to change notification settings - Fork 0
/
english.org
14856 lines (11117 loc) · 690 KB
/
english.org
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#+title: English
#+date: 2023-03-16
* Grammar
** Definition
Is the *set of structural rules* and principles governing the use of languages and the *organization of words within sentences* and other syntactic constituents. This includes the structure of words, phrases, clauses, sentences, and whole texts.
The personal pronouns retain morphological case more strongly than any other word class. For other pronouns, and all nouns, adjectives, and articles, grammatical function is indicated only by word order, by prepositions, and by the "Saxon genitive or English possessive" (-'s).
Eight "word classes" or "parts of speech" are commonly distinguished: nouns, verbs, determiners, pronouns, adjectives, adverbs, prepositions, and conjunctions. Nouns form the largest word class, and verbs the second-largest.
*Words combine to form phrases*. A phrase typically serves the same function as a word from some particular word class. For example, ~my very good friend Peter~ is a phrase that can be used in a sentence as if it were a noun, and is therefore called a noun phrase. Similarly, adjectival phrases and adverbial phrases function as if they were adjectives or adverbs, but with other types of phrases, the terminology has different implications. For example, a verb phrase consists of a verb together with any objects and other dependents; a prepositional phrase consists of a preposition and its complement (and is therefore usually a type of adverbial phrase); and a determiner phrase is a type of noun phrase containing a determiner.
** Semantics
Study of the meaning of words (meaning or sense or interpretation).
** Lexic
Set of words that make up a given lexicon (specific form of natural language).
** Spanish grammar
*** Oración
Es una estructura gramatical formada por un sujeto y un predicado. El sujeto tiene siempre como núcleo un sustantivo y nunca puede comenzar por una preposición. El predicado tiene como núcleo un verbo, que puede ir conjugado en un tiempo simple, compuesto o ser una perífrasis verbal.
Cada oración puede tener un solo núcleo verbal y a cada verbo le corresponde solo un sujeto. Es decir, si un enunciado contiene varios verbos, se considera entonces que se compone de varias oraciones.
~Me llamo Carlota.~ → un enunciado, una oración.
~Me llamo Carlota y tengo diecisiete años.~ → un enunciado, dos oraciones.
*** Frase
Es un enunciado sin verbo.
~¡Cuánto tiempo, Carlota!~
*** Pronombres personales átonos
Son aquellos que funcionan como complemento verbal no preposicional (~Ya *te lo* he dicho.~) o como formante de los verbos pronominales (~Ahora *me* arrepiento.~).
Suceden cuando anteceden al verbo (~me encanta~; ~lo dijo~; ~se fue~) o cuando siguen al verbo (~ayúdame~, ~díselo~, ~vete~).
| /Persona/ | /Singular/ | /Plural/ |
|-------------+------------------+---------------------|
| 1 | me | nos |
| 2 | te | os |
| 3 | lo,la - le - se* | los,las - les - se* |
| reflexivo 3 | se | se |
*** Verbo pronominal
Verbo que se conjuga con un [[Pronombres personales átonos][pronombre personal átono]] en todas sus formas, que concuerda en género y número con el sujeto, por ejemplo:
~jactarse~ es un verbo pronominal porque se conjuga con /me/, /te/, /se/, etc. (~me jacto~, ~nos jactábamos~)
Si el verbo en cuestión requiere obligatoriamente el uso de dicho pronombre, se trata de un verbo estrictamente pronominal.
~arrepentirse~, ~atreverse~.
Los verbos pronominales funcionan igual que los verbos reflexivos, y es únicamente el significado el que los diferencia. Los verbos reflexivos se pueden considerar como un tipo particular de verbos pronominales.
- recíproco :: ~María y Pedro *se* besan.~ - ~María besa a Pedro.~
- autocausativo :: ~Pedro *se* ofende.~
- anticausativo :: ~La puerta *se* abrió.~ [> sin ayuda ninguna]
- impersonal :: ~Se dice que... Aquí *se* trabaja bien.~ [de hacer]
- inherente :: ~Pedro *se* arrepiente.~
*** haber
- como verbo :: /haber/ se usa como *auxiliar*, seguido de un participio, para formar los infinitivos compuestos de la conjugación (ha comprado, hemos querido, había venido)
Nosotros *hemos* /llegado/. -> ~We *have* /arrived/.~
- con el infinitivo :: para expresar una *acción futura o la necesidad*, obligación o conveniencia de hacer algo.
*Hay* que tolerar las diferencias. -> ~You *have* /to tolerate/ differences.~ es quivalente a ~You must tolerate differences.~
- como infinitivo del verbo impersonal :: denota la presencia o *existencia* de lo designado por el sustantivo que lo acompaña.
*Habrá* comidas y bebidas. -> ~There will be food and drink.~
*Hay* mucha gente en la reunión. -> ~There are many people at the meeting.~
*** quedar
- estar / situarse / detenerse en un sitio ::
*quédate* ahí. ~stay there~
- existir todavía / restar cierta parte / porción de algo ::
No *queda* pan. Nos *queda* un poco de ensalada. ~There is no bread left.~ - ~No bread left.~ - ~We have little salad left.~ - ~We still have some salad left.~
- existencia / subsistir parte de algo ::
Está bien si me *quedo* el dinero que gano? ~Is it all right if I *keep* the money I make?~
- adquirir cierta reputación (como te veras o luciras) ::
Si te retiras, *quedarás* como un cobarde. ~If you retire, you'll *look like* a coward.~
- adquirir cierta cualidad o estado ::
Tras la explosión, me *quedé* sin palabras. ~After the explosion, I was speechless.~
- acordar algo ::
*Quedamos* en que tú te encargas de todo. ~We *agreed* that you take care of everything.~
- citarse, elegir lugar y hora para un encuentro futuro ::
*Quedé* hoy a la una con Juan. = Le dije a Juan que nos veríamos a la una. ~I met Juan today at one o'clock.~ = ~I told Juan I would see him at 1:00.~
- resultar ::
Este plato que preparé *quedó* buenísimo. ~This dish I prepared *turned out* great.~ - ~This dish I prepared was delicious.~
*** sino vs si no
- en una palabra :: cuando contrapone una afirmación a algo previamente negado: ~Precisó que no tiene previsto despedir trabajadores [lo que se niega], *sino* que su intención es retomar el plan de prejubilaciones que inició en 2016 [lo que se afirma]~.
- en dos palabras :: cuando introduce una oración *condicional negativa*: ~Trump amenaza con declarar el estado de emergencia *si no* se aprueba el presupuesto para el muro~.
* Words
** Major word classes
*** Brief
English has four major word classes: nouns, verbs, adjectives and adverbs. They have many thousands of members, and new nouns, verbs, adjectives and adverbs are often created. Nouns are the most common type of word, followed by verbs. Adjectives are less common and adverbs are even less common.
Many words belong to more than one word class. For example, ~book~ can be used as a noun or as a verb; ~fast~ can be used as an adjective or an adverb:
~It’s an interesting *book*.~ (noun)
~We ought to *book* a holiday soon.~ (verb)
~He loves *fast* cars.~ (adjective)
~Don’t drive so *fast*!~ (adverb)
*** Nouns
A noun refers to a person, animal or thing.
*Plural rules*:
- ends const + y :: ~cherry~ -> ~cherries~
- ends vowel + y :: ~toy~ -> ~toys~
- ends ss, x, ch, sh, z, :: ~fox~ -> ~foxes~
- ends const + o :: ~hero~ -> ~heroes~
- ends vowel + o :: ~zoo~ -> ~zoos~
- ends f, fe :: ~life~ -> ~lives~
- ends is :: ~crisis~ -> ~crises~
*Possessive "s"*:
It's used with people, animals, things, places, ideas, time.
~That elephan't tusk broke.~ - ~The team's captain.~ = ~The captian of the team.~
~Mary and Jane's aparment.~ El apartamento de Mary y Jane. ~Mary's and Jane's aparment.~ El apartamento de Mary y el apartamento de Jane.
~My car's blue.~
*Posessive "of"*:
It's used with things, places, ideas but not for people and animals.
~The *door of* the car.~ - ~The *petals of* the flower blew away.~
*Notes*:
- The adjective cannot perform the functions of a noun. We cannot find "nouns" adjectives as in Spanish (un joven, un pobre), for this reason, it is necessary to use the adjective together with the noun that specifies it.
~A young woman.~ Una joven. ~An old man.~ Un viejo.
- Since nouns act as nouns it's not necessary to place a preposition.
~soccer +of+ game +by+ ticket~
- The -ing forms of verbs (gerunds) can also act as nouns.
~Smoking is forbidden on all flights.~ - ~The City Council does its economic *planning* every September.~
- /ness/ suffix turn adjectives into noun.
~happy~ feliz. -> ~happiness~ felicidad.
- El sufijo /less/ se agrega al final de un sustantivo para decir /sin/ o dar sentido negativo, mientras que el sufijo /ful/ indica /lleno/.
~painless~ sin dolor. - ~speechless~ sin palabras.
~painful~ lleno de dolor, doloroso. - ~speechful~ lleno de palabras, hablador.
- You cannot have an adjective without a noun, nor an article without a noun.
~The /green/ *one* was /the/ *one* that I bought.~ El verde fue el que compré.
- Nouns can be used as adjectives to describe other nouns. The last one is the one being talked about, the others function as adjectives that describe the last one.
~soccer game~ juego de fútbol. - ~history teacher~ maestro de historia.
~soccer match ticket price~ precio de la entrada del partido de futbol.
*** Verbs
**** Definition
A verb refers to an action, event or state. They express action (run), existence (be) or state of being (love). The verb follows the noun.
**** Person (first/second/third)
Person relates to the type of subject. /I/ and /we/ indicate the *first person*, /you/ (singular and plural) indicates the *second person* and "he, she, it, they and noun subjects" indicate the *third person*. Regular verbs have the same form for all persons, but third person singular present simple ends in "-s".
**** Number (singular/plural)
Number indicates whether the subject is singular or plural. Regular verbs have the same form for singular and plural, but third person singular present simple ends in "-s".
**** Tense (present/past)
Tense indicates whether the verb is present or past. The past simple of regular verbs ends in "-ed" for all persons and numbers.
**** Irregular verbs
Irregular verbs follow the same rules as regular verbs for the present simple but have different forms for the past simple and the -ed form.
**** Voice (passive/active)
We use the terms active voice and passive voice to talk about ways of organising the content of a clause.
*** Adjectives
**** Definition
Adjectives are *describing words*. They modify nouns or pronouns and *give us more information* about a person, place or thing.
We place adjectives before nouns and after linking verbs (appear, be, look, seem, smell, taste …). Linking verbs connect a noun with an adjective.
~I live in a *small* village.~ - ~TThis bridge looks *unsafe*.~
*Adjective phrases with nouns*:
One of the main functions of *adjective phrases* is that they go with nouns and change or add to their meaning.
~Hair: *black* hair, *brown* hair, *straight blonde* hair, *long red* hair.~
**** Order
In general, we place a maximum of 2-3 adjectives before a noun. There are two general rules that help us to decide on the order of these adjectives:
- Rule 1 :: opinion adjectives (nice, good, bad, pretty …) come before fact adjectives (new, old, big, round, metal, red …)
~A *nice wooden* chair.~ nice = my opinion; wooden = factual information.
- Rule 2 :: general adjectives (old, hot, small …) come before more specific or identifying adjectives (wooden, Italian, striped …)
~An *expensive local* cheese.~ there are many expensive cheeses, but only a few that are local to my area.
Easy to chage ---- > Difficult change
Opinion(Beatifull) - Size(Large) - Physical quality(bald) - Shape(Round) - Age(Young) - Color(Brown) - Origin(British) - Material(Wool).
**** Comparative and superlative
Many one-syllable adjectives have endings to show the comparative and superlative.
| /Base form/ | /Comparative/ | /Superlative/ |
|-----------+-------------+-------------|
| fine | finer | finest |
| young | younger | youngest |
| small | smaller | smallest |
| | | |
| easy | easier | easiest |
| funny | funnier | funniest |
| gentle | gentler | gentlest |
However, we do not use these endings with two-syllable adjectives ending in a stressed syllable nor with longer adjectives with more than two syllables. The comparatives and superlatives of these adjectives are formed using /more/ and /most/.
~complete~ - ~more complete~ +completer+ - ~most complete~ +completest+
~interesting~ - ~more interesting~ +interestinger+ - ~most interesting~ +interestingest+
*The + comparativo + the + comparativo*: (cuanto más/antes)
~The faster, the better.~ Cuanto más rápido, mejor. - ~The more expensive, the better.~ Cuanto más caro, mejor.
~The earlier you get up, the more you’ll accomplish during the day.~ Cuanto antes te levantes, más lograrás durante el día.
*Comparative equality*:
- as ... as :: (tan ... como) frases afirmativas e interrogativas.
~I'm *as* young *as* you.~ Soy tan joven como tú.
~This game is *as* fun *as* that game.~ Este juego es tan divertido como ese juego.
~This game is /just/ *as* fun *as* that game.~ Este juego es TAN divertido como ese juego.
- not as ... as / not so ... as :: frases negativas.
~This game is *not as* fun *as* that game.~ Este juego *no es tan* divertido como ese juego.
~This game is /less/ fun /than/ that game.~ Este juego es /menos/ divertido que ese juego.
**** -ing and -ed adjectives
We use the /-ing/ and /-ed/ forms of regular and irregular verbs as adjectives.
- -ing forms ::
~annoy~ -> ~My brother is five and he’s so *annoying*.~
~amaze~ -> ~The Grand Canyon is an *amazing* place.~
- ed forms ::
~bore~ -> ~Why do teenagers always look *bored*?~
~smoke~ -> ~Not everyone likes *smoked* salmon.~
Adjectives with /-ing/ and /-ed/ endings have different meanings.
- -ing adjectives :: /-ing/ adjectives describe the *effect*.
~The *meeting* was very boring.~ - ~That was an *exciting* game.~
- -ed adjectives :: /-ed/ adjectives describe *how a person feels*.
~I felt *bored* at the meeting.~ - ~We were really *excited* about the game.~
*Note*:
Como en el ingles el verbo /to be/ tiene dos significados (/ser/ y /estar/) para diferenciarlos en ciertas oraciones que se usan como adjetivos se debe usar las terminaciones /-ed/ o /-ing/, por ejemplo:
~Él /esta/ *aburrido*.~ -> ~He /is/ *bored*.~ emociones que se sienten.
~Él /es/ *aburrido*.~ -> ~He /is/ *boring*.~ situaciones o personas que le hacen sentir así.
**** Gradable and ungradable
Many pairs of opposites are gradable, i.e. they have different degrees of the same feature:
~It was *reasonably hot* in Italy this summer.~
~It was *quite hot* in Italy this summer.~
~It was *pretty hot* in Italy this summer.~
~It was *very hot* in Italy this summer.~
~It was *extremely hot* in Italy this summer.~
Note: one type of adjective is not gradable. These are the adjectives that we use to classify people and things into types:
~These vegetables are *organic*.~ +These vegetables are very organic.+
**** Oppsositeness, extreme, absolutly
***** Oppositeness
Most common adjectives are members of a pair of opposites (antonyms):
~rough~ - ~smooth~
~big~ - ~small~
~dry~ - ~wet~
~heavy~ - ~light~
~tall~ - ~short~
***** Extreme
They are the highest degree of an adjective, they replace the word /very/:
~bad~ - ~awful~
~good~ - ~wonderful~
~angry~ - ~furious~
~hungry~ - ~starving~
~tired~ - ~exhausted~
~small~ - ~tiny~
~scared~ - ~frightened~, ~terrified~
~pretty~ - ~attractive~, ~gorgeous~
~big~ - ~huge~, ~gigantic~, ~giant~
~clean~ - ~spotless~
~hot~ - ~boiling~
~cold~ - ~freezing~
~hungry~ - ~starving~
~interesting~ - ~fascinating~
~old~ - ~ancient~
~surprising~ - ~astounding~
~ugly~ - ~hideous~
~funny~ - ~hilarious~
~dirty~ - ~filthy~
~crowded~ - ~packed~
***** Absolute
Adjectives of /yes/ or /no/, not of something in between.
~complete~ - ~incomplete~
~equal~ - ~unequal~
~essential~ - ~non-essential~; ~extraneous~
~dead~ - ~alive~
~fatal~ - ~not fatal~
~first~ - ~last~, ~final~
~full~ - ~empty~
~ideal~ - ~not ideal~
~impossible~ - ~possible~
~infinite~ - ~finite~
~married~ - ~single~, ~divorced~, ~separated~, ~widowed~
~perfect~ - ~imperfect~
~pregnant~ - ~not pregnant~
~unique~ - ~not unique~
~universal~ - ~not universal~
~unknown~ - ~known~
**** Notes
- Some adjectives are made from nouns and verbs by adding suffixes.
~hero~ -> ~heroic~ , ~child~ -> ~childish~ , ~beauty~ -> ~beautiful~
~read~ -> ~readable~ , ~talk~ -> ~talkative~ , ~use~ -> ~useful~
- Prefixes such as /un-/, /in-/, /im-/, /il-/ and /ir-/ change the meaning of adjectives. Adding these prefixes makes the meaning negative.
~fair~ -> ~unfair~ , ~active~ -> ~inactive~ , ~responsible~ -> ~irresponsible~
~balance~ -> ~imbalance~ , ~legal~ -> ~illegal~
- Adjectives in English do not change (agree) with the noun that they modify.
~The *tropical birds* were *beautiful*.~ +The tropical birds were beautifuls.+
- Some adjectives only appear before nouns and do not follow verbs. They include adjectives of degree, time and order, and adjectives that limit the noun that follows them.
~The trip was a *complete* disaster from start to finish.~ +The disaster was complete+
~The *only* person who can sort this out is Keith.~ +The person was only+
- Take care to spell the suffix /-ful/ with one /l/.
~careful~ +carefull+ ~helpful~ +helpfull+
- Adjectives ending in /-ic/ and /-ical/ often have different meanings.
~The *economic* policy of this government has failed.~ - ~A diesel car is usually more *economical* than a petrol one.~
- Demostrative adjective (usually before a noun) modifies the noun, while demostrative pronoun (usually before a verb) replaces the noun.
~She drives *that* car.~ Ella conduce *ese* coche. - ~That is her car.~ *Ese* es su coche.
- Other errors with common adjectives.
~What are the *necessary* ingredients for this dish?~ +… the needed ingredients …?+
~It can be *fun* to work with young children.~ +… funny to work with …+ /fun/ means ‘enjoyable’, /funny/ means that something makes you laugh or that it is strange.
~We went to a *nearby* restaurant.~ +… a near restaurant.+
~I have a very *stressful* job.~ +… a very stressing job.+
*** Adverb
**** Brief
Adverbs are describing words. We use them *to more information or modify verbs, adjectives another adverbs, a clause or a whole sentence*. They give us more information about the word they modify such as how, when, where, how often and to what degree. Different types of adverbs include adverbs of manner (~slowly~), time (~yesterday~), frequency (~often~), place (~there~) and degree (~very~).
The type of adverb also indicates where the adverb can be placed in a sentence, sometimes more than one position is possible. Sometimes changing the position of an adverb also changes the meaning of a sentence. *Generally* they are placed *before the main verb but after the auxiliary verb*. To give emphasis at the begin or at the end. In negation before auxiliary verb.
1 Duration 2 Frequency 3 Moment. ~She work *for* two days *every* week *last* year.~
We use adverbs to describe:
- verbs :: ~The audience is clapping along *loudly*.~ How is the audience clapping along?
- adjectives :: ~The band on stage is playing *fantastically* good songs.~ How good are the songs?
- adverbs :: ~The girl is singing *extremely* well.~ How does the girl sing?
Many adverbs are derived from adjectives. To form them, we simply take the adjective and add the adverb ending -ly. ~loud~ → ~loudly~
Adjectives that end in *-ic* form the adverb using *-ally*. ~fantastic~ → ~fantastically~
Some adjectives that end in *-ly* don’t have an adverb form. In this case, we use a similar adverb. ~likely~ (adjective) → ~probably~ (adverb)
*Note*:
We can use /then/ and /consequently/ to join clauses or sentences. We usually use /but/ not /however/ to connect two clauses in the same sentence:
~There was no room for them *but* they got on the train.~
~There was no room for them. *However*, they got on the train.~
**** Comparative and Superlative Adverbs
- We use *-er/-est* to form the comparative of *single-syllable adverbs*, and of adverbs which have the same form as their adjectives.
~hard~ -> ~harder~ -> ~the hardest~
~late~ -> ~later~ -> ~the latest~
~early~ -> ~earlier~ -> ~the earliest~
- We use *more/most* to form the comparative of all adverbs that *end in -ly*.
~happily~ -> ~more happily~ -> ~the most happily~
- *Irregular* Comparative and Superlative Adverbs
| /adverb/ | /comparative/ | /superlative/ |
|-------------------------+-------------+--------------|
| well | better | the best |
| badly | worse | the worst |
| little | less | the least |
| much | more | the most |
| far (in space and time) | further | the furthest |
| far (in space) | farther | the farthest |
| late (in time) | later | the latest |
**** Types
***** Frequency
Adverbs of frequency express *how often an action takes place*. Adverbs of indefinite frequency come directly *before the main verb but after the auxiliary verb.*
- ~She has *never* driven a car.~
- ~Wendy /is/ *rarely* without her bike.~ (with /be/ comes after the verb) +Wendy rarely is without her bike.+
- ~Wendy rides her bike *frequently*.~ (emphasised)
- ~Wendy won’t be riding *tomorrow*.~ (generally at the end)
- ~Tomorrow, Wendy won’t be riding.~ (can also be placed at the beginning)
| 100 Always | siempre |
| 90 Usually | usualemnte |
| 80 Normally - Generally | generalmente |
| 70 Often - Frequently | frecuentemente |
| 50 Sometimes | a veces |
| 30 Occasionally | acoasionalmente |
| 10 Seldom | casi nunca |
| 5 Rarely | casi nunca |
| 0 Never | nunca |
***** Time
Adverbs of time tell us *when or something takes place*.
- ~He is parking the car *now*.~
- ~I will ride with Wendy *tomorrow*.~ (neutral position)
- ~Tomorrow, I will ride with Wendy.~ (emphasised)
- ~When did you *last* ride your bike?~ (before main verb)
***** Place
Adverbs of place describe position, placement or direction. They tell us *where an action takes place*. Adverbs of place come after the object or, if there is no object, after the main verb.
- ~Wendy rode /her bike/ *towards* the beach.~ (after object)
- ~My car is /parked/ *behind* your car.~ (after main verb)
***** Manner
Adverbs of manner describe the *way in which an action is carried out*. They express how or in what manner an action takes place.
- ~He drove *carefully/slowly/badly*.~
- ~Wendy rode /her bike/ *quickly* down the hill.~ (after the object or main verb)
- ~He *carefully* /drove/ his father’s new car into the underground car park.~ (before the main verb to emphasised)
- ~They *truly* love each other~ - ~They love each other *truly* .~ - +They love truly each other+
***** Degree
Adverbs of degree tell us about the *intensity of something*. Adverbs of degree are usually placed before the adjective, adverb, or verb that they modify, although there are some exceptions. The words /too/, /enough/, /very/, and /extremely/ are examples of adverbs of degree.
- ~It’s *rather* cold, isn’t it?~
**** Adjective or Adverb
Adjectives modify nouns and pronouns (what is someone/something like?), whereas, adverbs modify verbs, adjectives and other adverbs (How is something done? How good/bad/… is someone/something?).
*Adjective*
~Theresa is *happy* that she can overtake them.~ How is Theresa? – happy
*Adverb*
~Orla runs as *fast* as Lucy.~ How does Orla run? – as fast as Lucy
**** Adverbs + preposition
Expressions formed by a group of words equivalent to a single adverb that, when translated literally, sometimes make no sense.
- ~away from~ lejos de
- ~a little beyond~ un poco más lejos
- ~up to~ hasta / al
- ~down to~ hasta
- ~close upon~ cerca de
- ~hard by~ al lado mismo
- ~along with~ junto con
- ~close beside~ junto a
- ~altogether below~ por debajo de
- ~far below~ muy por debajo
- ~shortly before~ poco antes de
- ~long after~ mucho después de
- ~out of~ por / a causa de
- ~apart from~ por otra parte
- ~all through~ de principio a final
- ~greatly to~ grandemente
** Minor word classes
*** Pronouns
**** Brief
Are words which *substitute for noun phrases*, so that we do not need to say the whole noun phrase or repeat it unnecessarily.
| /SUB/ | | /OBJ/ | | /POSS A./ | | /POSS P./ | | /REFLEXIVE/ |
|------+----------+------+-----+---------+---------+---------+---------+------------|
| I | Yo | me | me | my | mi | mine | mío | myself |
| You | Tú | you | te | your | tu | yours | tuya | yourself |
| He | Él | him | lo | his | su | his | suyo | himself |
| She | Ella | her | la | her | su | hers | suya | herself |
| It | --- | it | le | its | sus | --- | --- | itself |
| We | Nosotros | us | nos | our | nuestro | ours | nuestro | ourselves |
| You | Ustedes | you | les | your | su | yours | suyo | yourselves |
| They | Ellos | them | los | their | sus | theirs | suyos | themselves |
- subject :: usually comes at the beginning and *performs* the verb (*replace the subject* of the sentence)
~Ms Pearson makes learning English fun.~ -> ~She makes learning English fun.~
- object :: usually comes after the verb and is the *recipient* of the action (*replace the object* of the sentence).
~We will miss *Ms Pearson* a lot.~ -> ~We will miss *her* a lot.~
- possessive adjectives/determiners :: indicate *possession or belonging*. They *accompany a noun* (the *thing being possessed)*, comes before a noun (it describes or qualifies a noun).
~My name is Polly and I am looking for *my* hat~.
- possessive pronouns :: indicate *possession or belonging*. They *replace* previously mentioned nouns, they are used *alone*, without a noun (it does not qualify a noun).
~My dad says there is one in the wardrobe, but it’s *his*, not *mine*.~
- reflexive :: are used when the subject and *object of a verb are the same*, also use to express that *someone did something alone* without anyone else’s help. There are a few verbs which are usually followed by reflexive pronouns. Behave, cut, dry, enjoy, express, hurt, introduce.
*Notes*:
- /them/ is used for people or objects. /they/ or /them/ can be used in singular if the gender of the person is not known.
- /it/ for informal introductions.
~Hello? Hey. It's me.~ - ~Who's at the door? It's delivery guy.~ - ~It's not them.~ - ~Is *it* me?~ - ~Who is *it*?~
- /of/ in this structure is used interchangeably but usually gives a more general, more than one sense.
~Jamie is *my* friend.~ - ~Jamie is a friend *of mine*.~ However, in this example is not totaly correct because it implies more than one husband. ~Pete is *my* husband.~ not ~Pete is a husband *of mine*.~
- In short answers, the objective pronoun is used instead of the subject pronoun.
~Who wants ice cream? *Me*.~ +I+.
- ~My mon and I...~ +My mom and me+. ~Gary, Amber, and I...~ +I, Gary, and Amber+.
- The article is not used in personal pronouns.
~Let's go to +the+ mine.~ - +The+ ~Yours are the best~.
- In long answer the subject pronoun is used as usual.
~Who wants ice cream? I do.~ or ~I want some.~
- The possessive pronoun cannot directly follow the noun.
~They are *friends of ours*.~ - ~They are *ours friends*.~ +They are friends ours+.
*Notes reflexive pronouns*:
- When changing state, the reflexive pronoun is not used, but /get/ is used instead (someone does something to his own body).
~I got drunk~. +I drunk myself+.
- With clothes and body parts, the reflexive is not used, but the possesive adjective.
~I took a shower.~ +I showered myself+.
- The expression with "by + reflexive pronouns" is used to say that someone is doing something alone.
~He lives by *himself* in a small flat~.
- People do things to each other, reciprocal pronouns are used.
~each other~ (two people). ~one another~ (more than two people).
- /themself/ is an informal substitute of /himself/ or /herself/.
- In some cases the reflexive pronoun is used to avoid the repetition.
~He told *himself* to relax.~ +He told her to relax.+ - ~You should cook for *yourself* more often.~
**** Personal
We use personal pronouns to *replace nouns*. We use them to refer to people and things that have already been mentioned. They reflect person, number and gender and help us to avoid repetition in our writing.
| | /Singular/ | | |
| | /1st person/ | /2nd person/ | /3rd person/ |
|---------+------------+------------+--------------|
| /Subject/ | I | you | he, she, it |
| /Object/ | me | you | him, her, it |
| | /Plural/ | | |
| | /1st person/ | /2nd person/ | /3rd person/ |
|---------+------------+------------+------------|
| /Subject/ | we | you | they |
| /Object/ | us | you | them |
**** Demonstrative
We use them to indicate a particular noun (person or thing).
- this :: is used to indicate *thing close to* the speaker or thing that's *happening now* (has already happened, or hasn’t happened yet).
- these :: the same as /this/ but in plural.
~My tennis rackets broke *this* week. (ya ha sucedido).~
- that :: indicate thing further away in distance and time (already past, or is further in the future).
- those :: the same as /that/ but in plural.
~What a great vacation, how could I forget *those* days.~
**** Relative
*Relative pronouns* (/who/, /whom/ and /whose/ for animal or people, /which/ and /that/ for things) *introduce* [[Relative clauses][relative clauses]]. The pronouns we use depends on what we want to refer to and what type of relative clause we are using.
- who (quien / que) :: as subject or object for people.
~My *wife, who* loves to dace, danced all night.~
- which (el / la cual) :: as subject or object for animals and things in non-defining relative clauses.
~His *horse, wich* he loved, lost the race.~
- whose (cuyo) :: possession/belonging, for people, animals, and things.
~That's the *guy whose* car I bought~.
- that (que) :: it implies that the person is being identified, it's optional.
~My *wife, that* loves to dace, danced all night.~ Mi esposa, la que le encanta bailar, bailó toda la noche). Escrito así da a entender que es una de tantas esposas que tiene ya que la esta identificando con el /that/. ~The horse *that* won the race was very fast.~ +The horse won the race was very fast.+
- whom (quien) :: for people as object (no common).
~The *plumer whom* we hired fixed it fast~.
*Relative adverbs*
Can refer to an entire clause, or to a time, place, or reason in which case they are replacing a preposition + which.
- which :: refers to the entire clause.
~Linda dances well, *which* doesn’t surprise me.~
- where (donde) :: a place is more precisely described (replaces in which).
~They visited the *place where* they got married.~
- when (cuando) :: a point in time is more precisely described (replaces in which).
~That was the *day when* me met.~
- why (por la cual) :: a reason is more precisely described (replaces for which).
~That's the *reason why* I don't go there.~
*Notes*:
- /that/ is optional when the subject of relative clause sentence is different from the noun that identifies it.
~The /present I/ got was awesome.~ - ~The /present *that* I/ got was awesome.~
~The /horse/ *that* won the race was very fast.~
- When a relative pronouns stands *with a preposition*, the preposition usually comes *at the end* of the relative clause.
~These are my friends *who* I spend a lot of time *with*.~
- When a *verb* comes directly *after* the relative pronoun, then the relative pronoun refers to a *subject* and must be used.
~the boy *who* /is/ wearing glasses~
- When there is *no verb* directly *after* the relative pronoun but rather a noun or a pronoun instead, then the relative pronoun refers to an *object* and can be left out in non-defining clauses.
~the boy *who* I met at the summer camp~
**** Indefinite
We use indefinite pronouns to speak generally about something *rather than mentioning a specific person, place or thing*. They are composed of two parts, adjective or quantity adverb and ending that tell us if we are talking about a person, place or a thing.
*Difference between /every-/, /some-/, /any-/, /no-/ :*
- everything, everybody/everyone :: every individual in a group, all together.
~It seems that *everyone* has disappeared.~ - ~Everything looks different.~
- something, somebody/someone :: an *unspecified* person or thing.
~I would really like to ask *someone*.~ - ~I think I heard *something*.~
- nothing, nobody/no one :: not one single thing or person.
~Nothing looks familiar.~ - ~There is *nobody* in the street.~
- anything, anybody/anyone :: one *random* person of a group, one *random* thing.
~I am sure *anyone* could help me to get back to the city centre.~ - ~I would do *anything* to get back to the city centre.~
- anything, anybody/anyone :: in negative sentences, in the sense of *nothing/nobody*.
~But there isn’t *anyone* here I could ask.~
- anything, anybody/anyone :: in questions whether there is *something/someone*.
~Is there *anyone* there?~
*Emphasys and differences*
~Is *everyone* here?~ (sospecha la respuesta). ~Are you going *somewhere*?~ (espera respuesta afirmativa). ~Is there *anything* to eat?~ (sospecha la respuesta).
~Isn't *everyone* here?~ (retorica, se espera un no). ~Aren't you going *somewhere*?~ (absolutamente seguro que si). ~Isn't there *anything* to eat?~ (retorica, se espera un no).
*Notes*:
- The indefinite pronouns that end in /-body/, /-one/ indicate a person. If we replace these pronouns with personal or possessive pronouns we use the *third person plural*.
~I would really like to ask someone if *they* knew the way~.
~Everybody should know *their* way home.~
- The indefinite pronouns that end in /-thing/ do not refer to people and are therefore replaced with the *pronoun it*.
~Nothing looks the way it used to.~
- Instead of /nothing/, /nobody/, /no one/ we can also use /not anything/, /anybody/, /anyone/, however /not anything/ is more emphatic than /nothing/.
-If we are referring to any person or thing from a group, we need to use /any-/ . To help us remember this rule, we can imagine various people or things and put an or in between them.
~Anyone could help me: the man /or/ the woman /or/ the child /or/ the old lady.~
~I will do *anything* if you help me: I will give you money /or/ I will help you do the washing up /or/ I will go to the cinema with you.~
- However, if we truly mean *every single individual* or the entire group together, we have to use /every-/ . To help us remember this rule, we can imagine various people or things and put an and in between them.
~Everyone has disappeared: the man /and/ the woman /and/ the child /and/ the old lady.~
~I will do *everything* if you help me: I will give you money /and/ I will help you do the washing up /and/ I will go to the cinema with you.~
- /Everyone/ se conjuga en tercera persona porque se refiere a una persona de varias.
**** Quantifiers
***** Definition
We use quantifiers *before a noun*, an *article* or a *determiner* to talk about *quantity and amount.* These determine unspecified quantities.
***** lots of/a lot of
We can use them in *positive sentences*, *negatives* and *questions* and with all types of nouns, as well as before articles and determiners.
~They have *a lot of/lots of* flexibility.~ (positive sentence, uncountable noun)
~I don’t have *a lot of/lots of* coins in my wallet.~ (negative sentence, countable noun)
~Are there *a lot of/lots of* possibilities to pay by card in your country?~ (question, countable noun)
*Note*:
- There are many other ways to say /lots of/, such as /plenty of/, /a great deal of/, /loads of/ etc.
***** much/many
Both mean a *large amount* of something, but we use *much* with *uncountable nouns* and *many* with *countable nouns*.
~Swedes don’t carry *much* cash.~
~There are not *many* places that still accept cash.~
*Notes*:
- Generally, we use *much and many in negative sentences and questions*. Using much and many in positive sentences sounds formal, so in everyday English we form these sentences with /a lot of/, /lots of/.
~There are *many* issues with the system.~ → ~There are *a lot of/lots* of issues with the system.~
- However, we use *so* /much/many/ and *too* /much/many/ in positive sentences as well as negatives and questions. *So* and too *add emphasis*; so /much/many/ means a very large amount of something, while *too* /much/many/ is *more negative* and suggests more than is needed.
~Carrying *too much* cash can be dangerous.~ - ~Contactless payment has *so many* advantages.~
- In questions /much/ is not synonymous with /a lot of/.
~Will we earn *much* money?~ No creo que ganemos mucho. (connotación negativa, es dudoso)
***** few/little
The quantifiers (a) few and (a) little act as *opposites* to /much/, /many/ and /a lot of/, /lots of/; they express a small amount of something and are equivalent to almost none.
We use (a) few with countable nouns and (a) little with uncountable nouns.
~There are *few* advantages to going cashless.~
~Most see *little* benefit in offering cash payments.~
We can add /so/, /too/ to few and little for *emphasis*. So /few/, /little/ express a very small amount of something, while too /few/, /little/ indicate that the amount is less than needed.
~There are *so few* advantages to cash.~
~There is *too little* support for the old system.~
A /few/ and a /little/ mean a small number of things, they express a larger amount than few and little alone.
~A few people say that they are unhappy.~
~I have *a little* cash in my wallet.~
***** some/any
We can use the quantifiers /some/ and /any/ with both countable and uncountable nouns. /Some/ is used in *positive sentences and questions*, while /any/ is used in *negatives and questions*.
~Some people say that credit cards are unsafe.~
~Most people do not carry *any* cash.~
We can use both some and any in questions. The difference is that /some/ is only used in questions that express an offer or a request where we expect the answer to be yes.
~I haven’t looked at the menu yet, do you have *any* vegan options?~ The speaker is *unsure* of the answer, it may be no.
~The menu looks great, could I have *some* tap water please?~ Although the speaker hasn’t looked at the menu, it’s highly likely that the restaurant has tap water, meaning that the *expected answer to the request is yes*.
*Notes*:
- It can be used in negative sentences at the beginning.
~Some passengers didn't buy a ticket.~
- In positive sentences it does not matter what the choice is while in negative sentences it does.
~Pick a card. *Any* card.~ (positive) ~You can't buy *any* cable for laptop.~ (negative)
***** Notes
- Usually the open form of pronouns means /cualquiera/ but using them to avoid double negation simply means that the sentence is negative.
- We use /enough/ in positive sentences, negatives and questions to say that there is a *sufficient amount of something*.
- We can combine the quantifiers /much/, /many/, /(a) few/, /(a) little/, /some/, /any/ and /enough/ with /of/ to introduce a noun preceded by an article (/the/), a determiner (/their/, /these/, /your/ etc.) or a personal pronoun (/them/, /us/ etc.). /A lot of/ and /lots of/ can be used with both countable and uncountable nouns and before articles and determiners.
~Some of the Swedes still prefer cash.~ +Some the Swedes still prefer cash.+
~A few of them are unhappy with the cashless system.~
~Many of their issues are related to security.~
**** Distributives
***** Definition
Distributives are words that show how a group of people or things are *divided or shared out*.
***** both, neither, either
They always refer to *two* things or people.
- both :: means *all* in reference two things. it is used before a plural nouns. /Both/ does *not have a negative meaning*, in negative clauses that refer to two things or people we use /neither/.
~Both restaurants close soon.~
~Both of /us/ are hungry.~ +Both us are hungry+. /Both of/ is *not optional* when it before a object pronouns.
- neither :: is the *opposite of both*. It also refers to *two things but has a negative meaning*. It means *not one and not the other* and is used before singular nouns.
~Neither parent came to meet the teacher.~ or without use it ~The mother didn’t come and the father didn’t come.~
~Neither restaurant delivers.~ +not the Chinese restaurant and not the Italian restaurant+.
- either :: is used before *singular nouns* to mean *one or the other*.
~Either option is fine for me.~
- neither ... nor :: we can use /neither/ as a *conjunction* with /nor/. It *connects* two or more negative alternatives.
~Neither the Chinese restaurant *nor* the Italian delivers.~
- either … or :: presents a choice between *two possibilities*.
*Notes*:
- In speaking, we can use /neither/ on its own in replies when we are referring to two things that have already been mentioned.
~Mike, which would you prefer, tea or coffee? *Neither* thanks. I’ve just had a coffee.~
- To express the idea of *also not*, we use /neither/ followed by *inverted* word *order*: /neither/ + /auxiliary/ + /subject/.
~I don’t like Chinese.~ -> ~Neither do I.~ the same as ~I don’t like Chinese *either*.~
~I hate snakes. I can’t even look at a picture of a snake.~ -> ~Neither can I.~ +I can’t also.+
~Jacqueline doesn’t drive.~ -> ~Nor does Gina.~ +Gina doesn’t also.+
- We can use /not … either/ to mean ‘ *also not* ’, but we do *not change* the *word* order of the auxiliary or modal verb and subject.
~I haven’t ever tasted caviar.~ -> ~I haven’t either.~ or ~Neither have I./Nor have I.~
~I didn’t see Lesley at the concert.~ -> ~I didn’t either.~ or ~Neither did I./Nor did I.~
~I can’t smell anything.~ -> ~Me neither.~ (in informal speaking) or ~I can’t either.~
- When a clause with /neither/ or /nor/ is used after a negative clause, we *invert* the subject and the verb after /neither/ and /nor/.
~He *hadn’t* done any homework, *neither* had he brought any of his books to class.~ - ~We *didn’t* get to see the castle, *nor* did we see the cathedral.~
- If we have an object pronoun or a plural noun with a determiner we must use /neither of/ and /either of/.
~Neither of /us/ wanted to cook. *Neither of* /the/ restaurants had a table.~ - ~I don’t like *either of* /them/. You can ask *either of* /the/ waitresses.~
- We don’t normally use /both (of)/ + /not/ to make a negative statement about two people or things.
~Neither of these shirts is/are dry yet.~ +Both of these shirts aren’t dry yet.+
- We can use /both/ after a subject pronoun *to emphasise*.
~We /are/ *both* hungry. We *both* /want/ to order food.~
- /Neither/ and /either/ can *be used alone* as a short answer.
~Do you drink tea or coffee? *Neither*.~ - ~Which do you prefer? *Either*.~
- Be careful we use /neither/, not /none/, when we are talking about two people or things.
~Books and television are different. *Neither of* them should replace the other.~ +None of them …+
- When /neither … nor/ and /either … or/ refer to two singular nouns, the verb is in the singular. When the sentence contains two plural nouns, the verb is conjugated in the plural.
~Neither my mother *nor* my father /speaks/ English.~ two singular nouns = singular verb.
~Neither my sisters *nor* my brothers /like/ to cook for the family.~ two plural nouns = plural verb.
- If one thing is singular and the other is plural, native speakers tend to follow the *rule of proximity*: this means that the conjugation depends on which is closest to the verb
~I think *either* the tortilla *or* the nachos /are/ the best dishes on the menu.~ The subject closest to the verb is plural, so the verb is conjugated in the plural.
~I think *either* the nachos *or* the tortilla /is/ the best dish on the menu.~ The subject closest to the verb is singular, so the verb is conjugated in the singular.
***** each, every
We use /each/ and /every/ to mean *all* when referring to *three or more things or people*. They can often be used interchangeably. However, there are also some small differences.
- each :: is used with singular nouns to *focus on separate things in a group*. It is used to *emphasise* individuals within a group and often appears with words such as individually, personally, etc.
~There were ten competitors at the event and *each* winner was given a prize.~ In this case every would be too general; each refers to a few elements (winners) within a group (competitors).
Each *usually refers to smaller numbers*. Like /both/, it can also be used to refer to two people or things.
~I read two reviews of the restaurant and *each* review said the same thing.~
- every :: refers to *all parts in a group of three or more*. It can *only be used with singular nouns*. Unlike /each/, every is used for *generalisations* because it *emphasises all elements* within a group.
~Every restaurant in this area delivers.~ /Every/ can also be used in front of numbers and ordinal numbers to indicate *how often something happens*. ~She works *every* /third/ Saturday in the month. We eat out *every* /two/ weeks.~
Notes:
- We use adverbs such as almost, nearly, practically, single, etc. with /every/ rather than /each/.
~Practically *every* restaurant has an online menu nowadays.~ +Practically each restaurant has an online menu nowadays.+
- We use /each/ of before object pronouns and nouns with determiners.
~We can find something for *each of* /us/.~
- We cannot use /every of/. If we want to use every before a pronoun or a determiner, we must use /every one of/.
~I've seen *every one of* his movies.~ +I’ve seen every of his movies.+
***** all, no, none of
- all :: is used to refer to *every element in a group of three or more* people or things. It is *used with plural nouns*.
~All banks are closed on Sundays.~
- no :: before a noun to mean *not any or not one*. The verb is conjugated accordingly.
~No restaurants deliver after ten o’clock. I have *no* time to cook.~
- none of :: before pronouns (/mine/, /them/, /us/, /ours/, etc.) and before a noun with a determiner (/the/, /your/, /my/ etc.).
~None of /them/ deliver after ten o’clock.~ (object pronoun). ~None of /your/ emails arrived.~ (noun with a possessive pronoun)
*Notes*:
- We can only use /all/ with plural nouns. Use /every/ to talk about singular nouns. The verb is conjugated accordingly.
~All restaurants deliver to this area.~
- /no/ and /none of/ refer to elements in groups of three or more, for two things we use the distributive /neither/.
~None of the restaurants deliver after ten o’clock.~ (a group of more than 2 restaurants). ~Neither of the restaurants delivers after ten o’clock.~ (2 restaurants)
- When /none of/ refers to a singular noun the verb is conjugated in the singular, when it refers to a plural noun it is conjugated in the plural.
~None of the cake was eaten.~ (singular noun cake → verb in the singular). ~None of the restaurants deliver after ten.~ (plural noun restaurants → verb in the plural)
- When we have a noun with a determiner such as /the/, /these/, /your/, /my/, etc. we can use /all/ or /all of/.
~All the restaurants close soon.~ +All of the restaurants close soon+.
However, only /all of/ is possible before absolute pronouns that replace a noun, such as /them/, /us/, /theirs/, /mine/, etc. /Of/ is not optional in this case. ~All of them close soon.~ +All them close soon+.
*** Article
**** a/an
- to talk about something unspecified :: ~Ms Smith is in *a* hotel room.~
- to mention something in a text for the first time (introductory) :: ~There is *a* bed, *a* carpet and *a* bedside table.~
- in job titles :: ~Ms Smith is *a* businesswoman.~
**** the
- to talk about something specific :: ~There is a bed, a carpet and a bedside table in *the* room.~
- to refer back to something that we have already mentioned :: ~Ms Smith has two pieces of luggage: a suitcase and a handbag. *The* suitcase is very heavy.~
- with superlatives :: ~This is *the nicest* hotel room ever.~
- places around town :: ~Let’s go to *the cinema* tomorrow.~ - ~The library is on Main Street.~
**** Notes
We generally *don’t use an article* for:
- plural nouns that refer to general people/things (but: for specific people/things we use an article) ::
~Businesswomen travel a lot.~ but ~The businesswomen that I know travel a lot.~
~Hotels are very expensive.~ but ~The hotels in this area are affordable.~
- institutions such as school, university, hospital, prison (but not when we are talking about one particular school, university etc.) ::
~The children go to *school*.~ but ~Her son and my daughter go to *the school* at the end of the street.~
- materials (e.g. paper, wood, water, milk, iron), but only when generalising (if we’re talking about one particular thing, we have to use an article.) ::
~Paper is made of *wood*.~ - ~We need to buy *milk*.~ but ~Where is *the paper* for the printer?~
- abstract nouns i.e. things that you can’t touch, in a general context ::
~Life is complicated.~ - ~What’s on *TV* today?~ but ~We never eat dinner in front of *the TV*.~
- parts of the body or personal objects; instead, we use possessive determiners (my, your, …). ::
~I put my hand in *my pocket*.~
- the names of towns, streets, squares, parks ::
~Ms Smith is in *Dublin*. Her hotel is in *Merrion Street* between *Fitzwilliam Square* and *Merrion Park*.~
- the names of continents and lakes ::
~Ireland is a country in Europe.~
~Lake Baikal is the largest freshwater lake in the world.~
- the names of countries (except for the Netherlands and those containing Kingdom, Republic, State, Union) ::
~Dublin is in *Ireland*.~ but ~Miami is in *the USA*./We go to *the Netherlands* every summer.~
- the names of days and months (except when specified) ::
~She travelled to Ireland *in May*. She arrived *on Monday*.~ but ~She arrived *on a rainy Monday*.~
- with adverbs of time such as next/last ::
~She left last *Monday* and is coming back next *Wednesday*.~
- meals ::
~The hotel serves *breakfast* between 8 and 10 o’clock.~
- languages that a person knows ::
~Ms Smith speaks *English*.~
- in certain expressions with bed, class, home, work ::
~go to bed~ - ~be in class~ - ~after work~ - ~come home~
- expressions with play + sport (but not: play + musical instrument) ::
~He plays *tennis*.~ but ~She plays *the piano*.~
- titles and departments used with verbs like be, become, elect, appoint ::
~When was Barack Obama elected *president*?~
*** Prepositions
**** Brief
*Definition*:
Prepositions are short words that *link nouns and pronouns to other words*. They can express position/place (~under the table~) and time (~on Monday~) as well as many other things (~by train~). Prepositions are usually placed before a noun.
We commonly use prepositions *to show a relationship in space or time or a logical relationship between two or more people, places or things*. Prepositions are most commonly followed by a noun phrase, a pronoun or the -ing form of a verb.
*Adjetive + preposition*:
Adjectives usually have a preposition to connect them to a thing or a person.
- ~I’m /angry/ *about* this decision.~ Estoy enfadado por esta decisión.
- ~I’m /angry/ *at* you.~ Estoy enfadado contigo.
- ~I’m /angry/ *with* him.~ Estoy enfadado con él.
- ~I’m /disappointed/ *with* her speech.~ Estoy decepcionado con su discurso.
- ~I’m /disappointed/ *in* you.~ Estoy decepcionado contigo.
*Notes*:
- A particle is a word, normally an adverb, added to a verb to form a phrasal verb.
~He looked *up*.~
- Prepositions followed by a pronoun, this must be an object pronoun.
~Is that *for* /me/?~ +Is that for I?+ - ~Do you want to go *with* /us/?~ +Do you want to go with we?+
- The /of/ is optional but when replaced by a noun it's mandatory.
~He ate all (of) my food.~ or ~He ate all *of* /it/.~
**** Dangle prepositions
Prepositions that appear at the end of sentences, there are three cases:
- explicit questions :: interrogative pronouns (question with an interrogative).
- ~Who did you go *with*?~ *Con* quien fuiste?
- ~Whose house did you meet *at*?~ *En* la casa de quién se encontraron?
- ~How much did he sell it *for*?~ *Por* cuánto lo vendió?
- ~Which horse should I ride *on*?~ *A* qué caballo debería montar?
- ~How much did he sell it *for*?~ *Por* cuanto lo vendió?
- ~How many is she interested *in*?~ *En* cuántos esta interesada?
- implicit questions :: interrogative pronouns in implicit questions.
- ~You didn't tell me /who/ you went *with*.~ No me dijiste *con* quién fuiste.
- ~I asked you /whose/ house you met *at*.~ Te pregunté *en* la casa de quién se reunieron.
- ~They don't know /what/ they're talking *about*.~ Ellos no saben de qué estan hablando.
- ~The name /that/ he goes *by* is his nickname.~ El nombre *por* el cual se conoce es su apodo. (is at the end of the relative clause, not at the end of the sentence.)
- cláusulas y pronombres relativos ::
- ~He's the one /who/ I danced *with*.~ Él es *con* quien baile.
- ~The boy /whose/ house we met *at* was nice.~ El chico *en* cuya casa nos reunimos era amable. (is at the end of the relative clause, not at the end of the sentence.)
*Note*:
Infinitivos implícitos.
~... but I want *to* +go+ .~ ...pero yo quiero *ir* (it's not necessary to put /go/ at the end because it is an implied verb, but /to/ is necessary to indicate that it was the verb mentioned above)
~I'm going to lose weight because I need *to* +loose weight+ .~ Voy a bajar de peso porque necesito.
**** at, on, in, by, with, into, onto
***** at
*Time (hours of the day)*:
- hours :: ~at 9 o'clock~
- momentos del día :: ~at night~
- momentos rutinarios :: ~at lunchtime~
- vacation periods :: ~at weekend~
*Place (punto en concreto, actividad general. one-dimension)*:
- describe specific place or comun or public :: ~I'm sit *at* the table.~ - ~at home~ - ~at college~
- an events :: ~I'm *at* a meeting.~
- direcciones :: ~At 16 Oxford Street.~
*Others*:
- for ages :: ~She learned Russian at 45.~
***** on
*Time (days)*:
- dates :: ~on the 22nd july~
- weekday :: ~on monday~
- celebrations :: ~on christmas day~
- days + parts :: ~on monday afternoon~
*Place (on a surface, wall, water. two-dimensional)*:
- surface :: ~on the road~ - ~on the wall~
- describe levels :: ~I'm *on* second floor.~
- describe coastlines :: ~on the east coast~
- transport :: ~on a bus~
- screen :: ~on TV~
- street address :: ~I'm live *on* 14th Street.~
***** in
*Time (years, months, weeks, length of time)*:
- years :: ~in 1989~
- months, weeks, seasons :: ~in January~ - ~in winter~
- length :: ~in 10 minutes~
- parts of the day :: ~in the night~
*Place (within an enclosed or open space with boundaries. three-dimensional)*:
- neighborhood :: ~I live *in* Queens.~
- print media :: ~In a magazine.~