轉載自http://210.240.55.2/~t311/moe/engb6/b6grammar/b6notonly.htm

not only ... but also ... 是「不僅‧‧‧也是‧‧‧」的意思,其實它和 and 的意思相同,只不過在用法上略有些差別而已。先看看底下簡單的例子:

e.g.  1. She is not only nice but also beautiful.

    2. Ted plays not only baseball but also soccer.

    3. Sarah gave her sister not only a pen but also a dictionary.

    4. We enjoy not only the movie but also the time with our friends at a movie theater.

你是否發現到,若把上述的三個句子改為用 and 來連接,意思沒有兩樣?

e.g.   1_1. She is nice and beautiful.
     2_1. Ted plays baseball and soccer.
     3_1. Sarah gave her sister a pen and a dictionary.
     4_1. We enjoy the movie and the time with our friends at a movie theater.

not only 和 but also 後所連接的詞,在詞性上要相同。(也就是說,not only 後所連接的詞為形容詞,則 but also 後所連接的詞,也要是形容詞。)

例:
5. John and Tom are students.(主詞有兩個人,所以是複數,be 用 are。)
6. The children and their dog like eating hamburgers. (主詞是複數,所以動詞 like 後面不需加 s。)

上述兩個例句若改為用 not only ... but also ... 連結,其結果就會有變化:

例:
5_1. Not only John but also Tom is a student.
  (主詞看起來雖是有兩個人,但其實只算 but also 後的那一個,所以 be 用 is,且 students 改用 a student。)
6_1. Not only the children but also their dog likes eating hamburgers.

在例句 6 中,因為主詞是「複數」,所以動詞 like 後面當然不可加 s;但例句 6_1 顯然是不同的,like 後加了 s,由此可推知,當 not only A but also B 放在「主詞」的位置時,在現在式中,其後的動詞,是要看 B 決定單、複數。

随机推荐

  1. sqlplus链接数据库报ORA-09925: Unable to create audit trail file

    [localhost.localdomain]:[/oracle11/app/oracle11/product/11.2.0/dbhome_1/dbs]$ sqlplus / as sysdba SQ ...

  2. NuGet安装和使用

    1. NuGet是什么? NuGet is a Visual Studio 2010 extension that makes it easy to add, remove, and update l ...

  3. .NET Nancy 详解(二) 简易路由实现

    继续上面的简易版本,有意思的点剩下便是路由实现了. 路由注册 首先,来看一下基本的路由注册过程. public FakeNancyModuleWithoutBasePath() { Delete[&q ...

  4. 将数据导出成excel表

    /// <summary> /// 生成excel表 /// </summary> /// <param name="dt">数据表</p ...

  5. ASSM 的三级位图结构

    自动段空间管理(ASSM),它首次出现在Oracle920里(在920以前,段空间的管理方式叫做MSSM,它是由连接列表freelist来完成的,因为freelist存在串行的问题,因此容易引起段头的 ...

  6. java 访问 usb

    java 要访问 usb 设备,通常要自己写c/c++代码,然后再用 java 访问这些组件,以达到控制usb设备的目的.但现在有一个开源组件 libusb 帮我们做好了访问usb设备的封装(包括wi ...

  7. eclipse中快捷键

    转为大写  ctrl+shift+x 转为小写  ctrl+shift+y 根据类名快速找到类文件 ctrl+shift+r 返回上一级 ALT  +  <- 速定位到某一行 ctrl+L

  8. 用C#基于WCF创建TCP的Service供Client端调用

    本文将详细讲解用C#基于WCF创建TCP的Service供Client端调用的详细过程 1):首先创建一个Windows Service的工程 2):生成的代码工程结构如下所示 3):我们将Servi ...

  9. 让sql语句不排序,按照in语句的顺序返回结果

    SELECT * FROM EVENT WHERE eventId IN(443,419,431,440,420,414,509)  ORDER BY INSTR(',443,419,431,440, ...

  10. T-SQL 基础编程

    Ø Go批处理语句 用于同时执行多个语句 Ø 使用.切换数据库 use master go Ø 创建.删除数据库 方法1. --判断是否存在该数据库,存在就删除 if (exists (select ...