共找到 100 项 “Small” 相关结果
- 全部分类
- 全部
- 文学
- 历史
- 哲学/宗教
- 法律
- 政治/社会
- 医学
- 教育/心理学
- 艺术/传媒
- 研究生考试
- 资格认证考试
- 公开课
- 语言
- 经济金融
- 管理学
- IT/计算机
- 自然科学
- 工学/工程
- 体育
- 行业资料
- 音乐
- 汽车机械制造
- 文档模板
- 创业
- 农学
- 生活
- 数据库教程
- 民族
作者: 赵建领,薛园园等编著
出版社:机械工业出版社,2012
简介: 所属分类:计算机网络 > 程序设计> c c++ c# vc vc++ > 单片机c51语言是目前最流行的单片机 程序设计语言。本书由浅入深、循序渐进地讲解了c51语言的方方面面。本书知识点覆盖全面、结构安排紧凑、讲解详细、通俗易懂、实例丰富。内容包括51系列单片机开发环境和流程、 程序设计基础以及编程指南,并给出了一些常用的典型案例。全书分为四篇,共21章,全面详细地讲述了单片机的 程序设计基础、编程指南及应用案例。首先介绍了51系列单片机的基本结构以及单片机的开发概述,其次详细介绍了单片机 程序设计的c51语言,随后结合单片机的硬件资源细致讲解了如何应用c51语言进行编程操作,最后结合实际应用,重点分析了在各个领域中常用到的一些典型案例,使读者更加融会贯通地掌握c51语言,以供读者在学习和工作中进行参考。在第21章中还介绍了部分常见的面试题及解答,方便读者做好入职前的准备工作。 本书适合广大单片机程序开发人员、电子设计爱好者、工程师和大专院校师生阅读,尤其是适用于单片机及其编程语言的初学者。 前言 第一篇 单片机c51概述 第1章 单片机开发概述 1.1 单片机介绍 1.1.1 单片机简介 1.1.2 单片机的主要组成部分 1.1.3 单片机引脚及功能 1.1.4 单片机的应用领域 1.2 单片机开发流程 1.2.1 系统分析 1.2.2 单片机选型 1.2.3 程序设计 1.2.4 仿真测试 1.2.5 程序下载 1.3 单片机开发语言概述 1.3.1 单片机汇编语言 1.3.2 单片机c51语言 1.4 小结 1.5 习题与上机实践 第2章 构建c51集成开发环境 2.1 51系列单片机的最小硬件系统 2.1.1 时钟振荡电路 2.1.2 单片机的复位电路 2.2 keil m vision3集成开发环境 2.2.1 keil m vision3简介 2.2.2 keil m vision3安装 2.2.3 keil m vision3界面概览 2.2.4 keil m vision3的各种常用窗口 2.3 keil m vision3中c51的开发流程 2.3.1 创建项目 2.3.2 创建源文件 2.3.3 编译项目 2.3.4 仿真调试 2.3.5 程序下载 2.4 小结 2.5 习题与上机实践 第二篇 c51语言 程序设计指南 第3章 c51语言 程序设计基础 3.1 c51程序的基本结构 3.2 c51编程规范及注意事项 3.2.1 注释 3.2.2 命名 3.2.3 格式 3.3 c51的标识符与关键字 3.3.1 标识符 3.3.2 关键字 3.4 c51的变量类型 3.4.1 c51的数据类型 3.4.2 整型变量 3.4.3 浮点型变量 3.4.4 字符型变量 3.4.5 指针型变量 3.4.6 无值型变量 3.5 c51的常量类型 3.5.1 整型常量 3.5.2 浮点型常量 3.5.3 字符型常量 3.5.4 转义字符 3.6 变量作用域 3.6.1 变量作用域的基本规则 3.6.2 自动变量 3.6.3 全局变量 3.6.4 静态变量 3.6.5 寄存器变量 3.7 分隔符与const修饰符 3.7.1 c51分隔符 3.7.2 const修饰符 3.8 c51的运算符 3.8.1 算术运算符 3.8.2 逻辑运算符 3.8.3 关系运算符 3.8.4 位运算符 3.8.5 “,”运算符 3.8.6 “?”运算符 3.8.7 “sizeof”运算符 3.8.8 地址操作运算符 3.8.9 联合操作运算符 3.8.10 类型转换运算符 3.8.11 运算符优先级和结合性 3.9 c51的表达式 3.9.1 算术表达式 3.9.2 赋值表达式 3.9.3 逗号表达式 3.9.4 关系表达式 3.9.5 逻辑表达式 3.10 小结 3.11 上机实践 第4章 c51语句和流程 4.1 c51语句 4.1.1 变量声明语句 4.1.2 表达式语句 4.1.3 复合语句 4.1.4 循环语句 4.1.5 条件语句 4.1.6 开关语句 4.1.7 程序跳转语句 4.1.8 函数调用语句 4.1.9 函数返回语句 4.1.10 空语句 4.2 c51的流程控制结构及程序示例 4.2.1 顺序结构 4.2.2 选择结构 4.2.3 循环结构 4.2.4 流程控制结构程序示例 4.3 小结 4.4 上机实践 第5章 c51的数据结构 5.1 c51的数组 5.1.1 数组定义及数组元素 5.1.2 一维数组 5.1.3 一维字符串数组 5.1.4 二维数组 5.1.5 二维字符串数组 5.1.6 多维数组 5.2 c51的指针 5.2.1 指针及相关概念 5.2.2 指针变量的定义及赋值 5.2.3 取址运算符和取值运算符 5.2.4 指针变量的运算 5.2.5 c51的字符指针 5.2.6 c51的数组指针 5.2.7 c51的指针数组 5.3 c51的结构 5.3.1 结构的声明 5.3.2 结构变量的声明 5.3.3 结构变量的初始化 5.3.4 结构变量的使用 5.3.5 c51的结构数组 5.3.6 c51的结构指针 5.3.7 c51的嵌套式结构 5.3.8 c51的位结构 5.4 c51的联合 5.4.1 联合的声明和使用 5.4.2 结构和联合的区别 5.5 c51的枚举 5.5.1 枚举和枚举变量的声明 5.5.2 枚举变量的赋值和使用 5.6 c51的位域 5.6.1 位域和位域变量的声明 5.6.2 位域变量的使用 5.7 c51的自定义类型 5.7.1 自定义类型的声明 5.7.2 自定义类型的使用 5.8 小结 5.9 上机实践 第6章 c51的函数 6.1 函数 6.1.1 函数的概述 6.1.2 函数的分类 6.1.3 函数的定义 6.1.4 函数的参数 6.1.5 函数的返回值 6.2 函数的作用域 6.2.1 函数的作用范围 6.2.2 函数变量的作用域 6.3 函数的调用 6.3.1 赋值调用 6.3.2 引用调用 6.3.3 递归调用 6.3.4 嵌套调用 6.4 c51的main函数 6.4.1 无参main函数 6.4.2 有参main函数 6.5 c51的库函数 6.5.1 i/o函数库 6.5.2 标准函数库 6.5.3 字符函数库 6.5.4 字符串函数库 6.5.5 内部函数库 6.5.6 数学函数库 6.5.7 绝对地址访问函数库 6.5.8 变量参数表函数库 6.5.9 全程跳转函数库 6.5.10 偏移量函数库 6.6 小结 6.7 上机实践 第7章 c51的存储结构 7.1 单片机的存储器结构 7.1.1 51系列单片机的存储区域 7.1.2 片内ram的存储器结构 7.2 c51的存储类型 7.2.1 code存储类型 7.2.2 data存储类型 7.2.3 bdata存储类型 7.2.4 idata存储类型 7.2.5 pdata存储类型 7.2.6 xdata存储类型 7.3 c51的扩展数据类型 7.3.1 sfr和sfr16型变量 7.3.2 sbit型变量 7.3.3 bit型变量 7.3.4 51单片机寄存器的定义 7.4 c51变量的存储模式 7.4.1 small模式 7.4.2 compact模式 7.4.3 large模式 7.5 c51的存储器指针 7.5.1 一般指针 7.5.2 存储器指针 7.6 小结 7.7 上机实践 第8章 c51的预处理命令和用户配置文件 8.1 c51的预处理命令概述 8.2 文件包含指令 8.2.1 #include命令 8.2.2 c51常用的头文件 8.3 宏定义指令 8.3.1 #define命令 8.3.2 #undef命令 8.4 条件编译指令 8.4.1 #if、#else和#endif命令 8.4.2 #elif命令 8.4.3 #ifdef、#ifndef命令 8.5 其他编译指令 8.5.1 #line命令 8.5.2 #error命令 8.5.3 #pragma命令 8.6 c51的用户配置文件 8.6.1 c51的启动代码详解 8.6.2 c51的变量初始化文件 8.6.3 c51的基本i/o函数文件 8.6.4 c51的分组配置文件 8.7 小结 8.8 上机实践 第三篇 c51单片机编程指南 第9章 c51定时器/计数器 程序设计 9.1 定时器/计数器简介 9.1.1 定时器/计数器的结构 9.1.2 方式控制寄存器tmod 9.1.3 中断控制寄存器tcon 9.1.4 定时器/计数器的初值 9.1.5 定时器/计数器的初始化 9.2 定时器/计数器工作模式0的c51 程序设计 9.2.1 定时器/计数器工作模式0 9.2.2 定时器/计数器模式0的 程序设计 9.3 定时器/计数器工作模式1的c51 程序设计 9.3.1 定时器/计数器工作模式1 9.3.2 定时器/计数器模式1的 程序设计 9.4 定时器/计数器工作模式2的c51 程序设计 9.4.1 定时器/计数器工作模式2 9.4.2 定时器/计数器模式2的 程序设计 9.5 定时器/计数器工作模式3的c51 程序设计 9.5.1 定时器/计数器工作模式3 9.5.2 定时器/计数器模式3的 程序设计 9.6 小结 9.7 上机实践 第10章 c51中断 程序设计 10.1 单片机的中断系统 10.1.1 单片机的中断类型 10.1.2 中断请求标志及其c51访问 10.1.3 中断允许标志及其c51访问 10.1.4 中断优先级标志及其c51访问 10.1.5 中断的c51处理过程 10.2 外部中断源的c51 程序设计 10.3 定时中断源的c51 程序设计 10.4 串行中断源的c51 程序设计 10.5 小结 10.6 上机实践 第11章 c51串行接口 程序设计 11.1 51系列单片机的串行接口 11.1.1 单片机串行通信概述 11.1.2 单片机串行接口的内部结构 11.1.3 串行接口控制寄存器scon 11.1.4 特殊功能寄存器pcon 11.2 串行口工作模式0的c51 程序设计 11.2.1 模式0的波特率 11.2.2 模式0的数据发送及c51 程序设计 11.2.3 模式0的数据接收及c51 程序设计 11.3 串行口工作模式1的c51 程序设计 11.3.1 模式1的波特率 11.3.2 模式1的数据发送及c51 程序设计 11.3.3 模式1的数据接收及c51 程序设计 11.4 串行口工作模式2的c51 程序设计 11.4.1 模式2的波特率 11.4.2 模式2的数据发送及c51 程序设计 11.4.3 模式2的数据接收及c51 程序设计 11.5 串行口工作模式3的c51 程序设计 11.5.1 模式3的波特率 11.5.2 模式3的数据发送及c51 程序设计 11.5.3 模式3的数据接收及c51 程序设计 11.6 小结 11.7 上机实践 第12章 c51下的rtx-51实时多任务操作系统 12.1 rtx-51实时多任务操作系统简介 12.1.1 单任务程序与多任务程序的比较 12.1.2 rtx-51实时多任务操作系统种类 12.2 rtx-51的系统函数 12.2.1 中断调用的发送信号函数 12.2.2 清除信号标志函数 12.2.3 启动任务函数 12.2.4 删除任务函数 12.2.5 当前任务号函数 12.2.6 任务调用的发送信号函数 12.2.7 等待函数 12.3 rtx-51的任务调度 12.3.1 循环任务调度 12.3.2 事件任务调度 12.3.3 信号任务调度 12.3.4 优先级及抢先任务切换 12.3.5 rtx-51的主要概念和特性 12.4 rtx-51 tiny的任务管理 12.4.1 rtx-51 tiny的任务状态 12.4.2 rtx-51 tiny的事件 12.4.3 rtx-51 tiny的任务切换 12.5 rtx-51 tiny的系统配置 12.5.1 rtx-51 tiny系统配置文件 12.5.2 rtx-51 tiny系统参数 12.6 rtx-51 tiny的要求及注意事项 12.6.1 rtx-51 tiny的要求及技术参数 12.6.2 rtx-51 tiny的注意事项 12.7 rtx-51 full实时多任务操作系统简介 12.7.1 rtx-51 full函数一览 12.7.2 rtx-51的技术参数 12.8 小结 12.9 上机实践 第13章 keil m vision3的调试和仿真 13.1 keil m vision3的程序调试 13.1.1 keil m vision3的程序调试模式 13.1.2 断点 13.1.3 性能分析器 13.1.4 代码覆盖分析器 13.1.5 调试命令 13.2 系统资源仿真 13.2.1 并行i/o端口仿真 13.2.2 寄存器仿真 13.2.3 中断仿真 13.2.4 串行接口仿真 13.2.5 定时器/计数器仿真 13.2.6 看门狗定时器的仿真 13.2.7 低功耗仿真 13.3 小结 13.4 上机实践 第四篇 c51 程序设计典型案例 第14章 c51矩阵式键盘 程序设计 14.1 键盘接口概述 14.1.1 独立式按键和矩阵式键盘 14.1.2 键盘设计注意事项 14.2 矩阵式键盘c51 程序设计 14.2.1 扫描法及c51 程序设计 14.2.2 线反转法及c51 程序设计 14.2.3 中断法及c51 程序设计 14.3 c51矩阵式键盘设计实例 14.3.1 电路图 14.3.2 程序设计 14.4 小结 14.5 上机实践 第15章 c51液晶显示模块 15.1 液晶显示模块概述 15.1.1 液晶显示模块的分类 15.1.2 液晶显示模块的特点 15.2 液晶显示控制驱动器 15.2.1 液晶显示控制驱动器概述 15.2.2 液晶显示控制驱动器功能说明 15.3 液晶显示控制器指令集 15.3.1 基本指令集 15.3.2 扩充指令集 15.3.3 控制器指令操作方式 15.4 点阵图形型液晶操作子函数 15.4.1 指令操作子函数 15.4.2 数据操作子函数 15.4.3 初始化子函数 15.4.4 清屏子函数 15.4.5 汉字显示子函数 15.4.6 图形显示子函数 15.5 液晶汉字显示实例 15.5.1 电路设计 15.5.2 程序设计 15.6 液晶图形显示实例 15.6.1 图形数组的提取 15.6.2 图形显示 程序设计 15.7 小结 15.8 上机实践 第16章 c51模拟i2c总线 16.1 i2c总线概述 16.1.1 i2c总线工作原理 16.1.2 i2c总线器件的寻址方式 16.1.3 i2c总线数据操作 16.2 i2c总线接口ee prom存储器 16.3 c51模拟i2c总线协议 16.3.1 延时子函数 16.3.2 起始信号子函数 16.3.3 终止信号子函数 16.3.4 应答信号子函数 16.3.5 非应答信号子函数 16.3.6 应答位检查子函数 16.3.7 单字节写子函数 16.3.8 单字节读子函数 16.3.9 多字节写子函数 16.3.10 多字节读子函数 16.4 c51读写ee prom实例 16.4.1 电路设计 16.4.2 程序设计 16.4.3 仿真分析 16.5 小结 16.6 上机实践 第17章 c51模拟单总线接口 17.1 单总线接口概述 17.2 单总线温度传感器及c51操作 17.2.1 温度传感器ds18s20概述 17.2.2 ds18s20的数据操作及指令 17.2.3 ds18s20的访问流程 17.2.4 温度转换操作 17.2.5 c51模拟单总线操作子函数 17.3 c51单总线温度传感器实例 17.3.1 电路设计 17.3.2 程序设计 17.3.3 仿真分析 17.4 小结 17.5 上机实践 第18章 实时时钟芯片应用 18.1 实时时钟芯片ds1302概述 18.1.1 实时时钟芯片ds1302引脚 18.1.2 实时时钟芯片ds1302的日期操作 18.1.3 实时时钟芯片ds1302的控制操作 18.1.4 实时时钟芯片ds1302的ram操作 18.1.5 实时时钟芯片ds1302数据传输方式 18.2 ds1302的控制子函数 18.2.1 复位子函数 18.2.2 字节读取子函数 18.2.3 字节写入子函数 18.2.4 年设置子函数 18.2.5 月设置子函数 18.2.6 日设置子函数 18.2.7 星期设置子函数 18.2.8 小时设置子函数 18.2.9 分钟设置子函数 18.2.10 秒设置子函数 18.2.11 写保护子函数 18.2.12 写允许子函数 18.2.13 充电控制子函数 18.2.14 初始化子函数 18.2.15 ram字节写入子函数 18.2.16 时钟显示子函数 18.2.17 多字节突发方式读取ram子函数 18.2.18 多字节突发方式写入ram子函数 18.3 c51读写实时时钟芯片实例 18.3.1 电路图 18.3.2 程序设计 18.3.3 仿真分析 18.4 小结 18.5 上机实践 第19章 c51通信接口 程序设计 19.1 串行接口通信概述 19.1.1 串行接口通信标准 19.1.2 串行接口芯片 19.1.3 双机及多机通信原理 19.2 c51双机通信实例 19.2.1 电路原理图 19.2.2 发送方 程序设计 19.2.3 接收方 程序设计 19.3 c51多机通信实例 19.3.1 主机 程序设计 19.3.2 从机 程序设计 19.4 小结 19.5 上机实践 第20章 道路交通灯多任务控制系统 20.1 交通灯多任务控制系统概述 20.2 c51交通灯多任务控制系统 20.2.1 电路原理图 20.2.2 建立rtx-51 tiny项目 20.2.3 多任务划分 20.2.4 多任务 程序设计 20.2.5 串行通信及命令获取子函数 20.2.6 仿真调试 20.3 小结 20.4 上机实践 第21章 常见面试题及解答 21.1 c51编程类面试题 21.1.1 预处理 21.1.2 c51语言基础 21.1.3 循环 21.1.4 位操作 21.1.5 实用子函数 21.2 与mcs-51硬件相关的面试题 21.2.1 mcs-51硬件基础 21.2.2 硬件编程 ·由浅入深,循序渐进,从零开始学单片机编程,一点都不难 ·编程基础、编程进阶、编程应用、项目实战、上机练习、面试指南 ·210个实例、6个案例、80个练习题、39个面试题 本书主要由赵建领、薛园园编著,其他参与编著和资料整理的人员有冯华君、刘博、刘燕、叶青、张军、张立娟、张艺、彭涛、徐磊、戎伟、朱毅、李佳、李玉涵、杨利润、杨春娇、武鹏、潘中强、王丹、王宁、王西莉、石淑珍、程彩红、邵毅、郑丹丹、郑海平及顾旭光。 作 者 2012年1月
作者: Judith Rink (Author), Tina Hall (Author), Lori Williams (Author)
简介:Reference for K-12 PE and classroom teachers, directors, principals, and administrators overseeing physical activity programs and wellness policy compliance. Text for college PE majors and elementary classroom education majors. Also a reference for community youth program leaders. Physical activity doesn’t have to be confined to physical education class. Many schools are discovering the benefits of incorporating physical activity throughout the day. In fact, schools increasingly need to do so as requirements for weekly minutes of physical activity expand beyond the time available for physical education class. With Schoolwide Physical Activity: A Comprehensive Guide to Designing and Conducting Programs, K-12 classroom teachers and administrators will learn how to design and conduct activity programs that not only meet wellness policy requirements and goals but also motivate and encourage all students to be physically active. The premise of this innovative guide is that physical activity in schools is not the sole responsibility of the PE teacher. It is the responsibility of all administrators and teachers—and is most successful when it is integrated throughout the curriculum. To that end, Schoolwide Physical Activity highlights the role of elementary classroom teachers in providing opportunities for physical activity, and it offers an array of tools and programs for teachers to incorporate in their classrooms. At the secondary level, the book creates a vision of a good physical activity program and then shows secondary teachers and administrators how to achieve that vision. Through this text, teachers and administrators receive • a blueprint for building a comprehensive and coordinated K-12 physical activity program; • ready-to-use activities and forms; and • program ideas that address both the needs and desires of all children, not just the small percentage who gravitate toward physical activity. Schoolwide Physical Activity comes with a CD-ROM that contains all the printable activities, forms, and tools from the book and over 200 activities for classroom teachers, inclusive transitional activities, integrated lessons, and simple games and dances. The comprehensive guide includes a Web site with an instructor guide, presentation package, and test package. This resource will help teachers and administrators see their roles and responsibilities in a new light and gain stakeholder support for wellness and activity programs, and it will assist in coordinating efforts among all involved in providing students with safe and appropriate programs that will transform their schools into more active places for learning.
作者: 释德扬编著
出版社:成都时代出版社,2010
简介: 《少林罗汉拳》中所教传的功法套路是少林罗汉拳中最为传统同时也最为精华的小罗汉拳。少林小罗汉拳,亦名“三节罗汉拳”,又称“老架罗汉拳”。其特点是步型多,技法广,能应对对方千变万化之招,而且活动量较大,不仅适合青少年演练,对于提高实战技能颇有益处。 习练小罗汉拳,不仅能够获得健康的体魄,掌握克敌制胜的武功绝技,更能获得一种禅定的力量,澄清心志、净化身心、蓄精养气。 《少林罗汉拳》从最基础的身法、步法、脚法、腿法,到最精粹的拳法绝技,秘传套路二十九式,全程演绎。细致招式解说配独到功法点拨,循序渐进,让你迅速入门,助你快速提高,成为少林武功高手。
Winning with small tricks:IELTS listening
光盘作者: 檀琦主编;朱宁编著
出版社:天津大学出版社,2010
简介: 本书有以下几大亮点: ·目录鲜明、编排科学,为考生精心设计了4套听力模拟题和2套剑桥雅思听力真题,以供考生实战测试; ·练习题目以历年真题为参照,设计新颖灵活,具有超强的模拟性,可谓广大雅思考生提高听力水平的“模拟教练”; ·编排的“填空”、“简答”等题型,不仅有助于考生拓展思维和提高动笔能力,还有助于考生培养用缩略词等形式正确迅速地写出答案的习惯; ·对技巧的讲解以“温馨提示”的方式具体到每一道题,使之更具可操作性; ·只要熟练掌握书中的答题技巧,无论考题场景如何变换,考生仍可举一反三,以不变应万变; ·随书附赠光盘由著名英籍语言专家Richard Bishop专业朗读,适宜学生跟读、模仿和纠正发音。 本书全部素乖才‘均源白真题,不仅适于雅思考生,亦适于参加其他出国考试的考生、英语爱好者学习。备战雅思听力,此书在手,胜券在握! 本书能够顺利付梓,要特别感谢天津大学出版社的郭婷、向雅莉等的支持,没有他们的鼎力协助和紧密配合,这本书的出版不会如此顺利。在此也要感谢环球雅思总校副校长刘海华女士对卓尔图书孜孜不倦的付出,感谢环球卓尔英才文化传播有限公司所有同事的努力和帮助。最后,送给有志于迈向同际舞台实现自己雄心壮志的“考鸭们”一句话:“一份耕耘,一份收获。只要肯下功夫,必然取得成功!”
作者: 陈明计,周立功等编著
出版社:北京航空航天大学出版社,2004
简介:Small RTOS51是为51系列单片机而编写的。它是完全免费的、源代码公开的多任务实时操作系统。它可在无任何外部数据存储器的单片80C51系统上运行,并且是可移植的。全书分两部分。第一部分为基础篇,介绍Small RTOS51和一些基本概念,并详细分析Small RTOS51的工作原理。第二部分为应用篇,给出部分常用硬件在Small RTOS51下驱动程序的源代码。这些源代码在DP—51单片机仿真实验仪上全部调试通过,且只要经过很少的改动,或是不改动,就可以在其他环境下使用。应用篇还通过对这些源代码的分析,让读者理解基于RTOS的编程方法,并给出完整的例子让读者全面掌握基于RTOS的编程方法。 本书可以作为高等院校相关专业的课程教材、实验参考资料或课外读物,对嵌入工应用开发人员也有重要的参考价值。
出版社: 2008年9月
简介:"J.M. Barrie's fantasy adventure with pirates, mermaids, and fairies, brought to life in a new book-and-CD edition." Peter Pan refuses to grow up. Instead he spends his never-ending childhood making mischief and seeking out adventure as leader of the Lost Boys on the small island of Neverland. His only cares in the world are stopping the pirates, led by the dangerous Captain Hook, from hurting any of his friends. Occasionally he even gets to see kids from the ordinary world, but he has never brought one back. Until he meets Wendy Darling... With Hear It Read It, Sourcebooks is proud to introduce a new take on this classic story, in a sturdy hardcover that children will return to again and again. For generations parents and grandparents have shared the classics with children as they start to read and "graduate" from ABCs to picture books to chapter books. These tales need no introduction: they are the same stories that were read to them, the very same adventures that filled their imaginations and taught them the power of the word to change and challenge. Sourcebooks' Peter Pan is a bridge that introduces budding readers to chapter books. It includes not only the abridged story and 20 engaging black and white illustrations, but also the same version read on audio CD, letting kids choose how to enjoy: listen to the story, read along with the CD, or read the story to themselves. The CD is produced by Naxos, a leader in junior classics on audio, and read by film and television actor Samuel West, with music and occasional effects to set the mood. Each HEAR IT READ IT classic presents the world's greatest stories in an easy-to-read abridged format. The included CD contains a dramatic reading-with music and sound effects-that matches the text, word for word, so children of all ages and reading levels can read along. HEAR IT READ IT classics give young readers the best possible introduction to the world's timeless tales.
汤姆·索亚历险记:THE ADVENTURES OF TOM SAWYER
光盘作者: 马克·吐温 著
出版社:天津人民出版社 2016年3月
简介:《汤姆•索亚历险记》是著名小说家马克•吐温的代表作,发表于1876年。小说主人公汤姆•索亚天真活泼,富于幻想和冒险,不堪忍受束缚个性、枯燥乏味的生活,幻想干一番英雄事业。小说通过主人公的冒险经历,对美国虚伪庸俗的社会习俗、伪善的宗教仪式和刻板陈腐的学校教育进行了讽刺和批判,以欢快的笔调描写了少年儿童自由活泼的心灵。《汤姆•索亚历险记》以其浓厚的深具地方特色的幽默和对人物敏锐观察,一跃成为最伟大的文学作品,也是一首美国“黄金时代”的田园牧歌。在这部作品中,儿童的灵动活泼和周围现实生活的陈腐刻板形成了鲜明的对照。故事向人们展示了一些社会弊病和黑暗现实,揭示了的虚伪性,无情地嘲讽了庸俗的小市民习气。作品问世以来,一直受到读者的喜爱,成为一部。The Adventures of Tom Sawyer by Mark Twain is an 1876 novel about a youngboy growing up along the Mississippi River. The story is set in the fictionaltown of St. Petersburg, inspired by Hannibal, Missouri, where Twain lived. TomSawyer lives with his Aunt Polly and his half-brother Sid. Tom dirties hisclothes in a fight and is made to whitewash the fence the next day aspunishment. He cleverly persuades his friends to trade him small treasures forthe privilege of doing his work. He then trades the treasures for Sunday Schooltickets which one normally receives for memorizing verses, redeeming them for aBible, much to the surprise and bewilderment of the superintendent who thought“it was simply preposterous that this boy had warehoused two thousand sheavesof Scriptural wisdom on his premises—a dozen would strain his capacity, withouta doubt.”Tom falls in love with Becky Thatcher, a new girl in town, and persuadesher to get “engaged” by kissing him. But their romance collapses when shelearns Tom has been “engaged” previously to Amy Lawrence. Shortly after Beckyshuns him, he accompanies Huckleberry Finn to the graveyard at night, wherethey witness the murder of Dr. Robinson.
出版社:南海出版公司,2004
简介: 本书是一部介绍当代中式建筑设计理念与风格的画册。内容为展览馆的室内设计方案及展示图片。书中所选方案的设计者均为国内外一流的设计师,所有图片均为知名摄影师实景拍摄而成。
作者: Donaldson Julia
出版社:Macmillan 2015
简介:Charlie Cook is reading a book about a pirate captain, who is reading a book about Goldilocks, who is reading about a knight, who is reading about a frog ...From kings and queens to aliens and ghosts, there's something for everyone in Charlie's amazing book of adventure! Charlie Cook's Favourite Book is both entertaining and original - a sure-fire winner from the unparalleled picture-book partnership of Julia Donaldson and Axel Scheffler, creators of The Gruffalo. This edition features the classic story with a stunning, redesigned cover and beautiful finish, making it a must-have addition to the bookshelves of all Donaldson and Scheffler fans - big and small! Also available with redesigned covers are The Gruffalo, The Gruffalo's Child, Room on the Broom, The Snail and the Whale, The Smartest Giant in Town, Monkey Puzzle and A Squash and a Squeeze.
Small animal critical care medicine /
光盘作者: [edited by] Deborah C. Silverstein, Kate Hopper.
简介: Small Animal Critical Care Medicine is a comprehensive, concise guide to critical care, encompassing not only triage and stabilization, but also the entire course of care during the acute medical crisis and high-risk period. This clinically oriented manual assists practitioners in providing the highest standard of care for ICU patients. More than 150 recognized experts offer in-depth, authoritative guidance on clinical situations from a variety of perspectives. Consistent, user-friendly format ensures immediate access to essential information. Organ-system, problem-based approach incorporates only clinically relevant details. Features state-of-the-art invasive and non-invasive diagnostic and monitoring procedures, as well as an extensive section on pharmacology. Appendices provide conversion tables, continuous rate infusion determinations, reference ranges, and more.
作者: 张永红编著
出版社:成都时代出版社,2010
简介: 少林小洪拳是少林寺最具知名度、流传最广的武术套路之一,亦是少林 僧众学习少林武术必练的基本拳法。学会了小洪拳,就等于打开了少林功夫 的大门。 小洪拳素被视为少林十八拳之源,其形姿小巧玲珑,节奏严谨,技法刚 健有力,朴实无花架,招含攻防,动作实战,自始至终行在一线,突出了少 林拳术的全部特点。 整体套路紧凑,刚柔相济,动静分明,动如风,站如钉,拳脚相照,伸 缩性大,小如鼠,大如虎,一招一式非打即防,能制敌于无形之间。基本功 者,功底也,功底乃百拳百械之母,是习练武功必备条件,其中又尤以手部 、腿部、腰部的基本功最为关键。 掌型、掌法、拳法、步型、步法、腿法……逐一示范详解。 细致招式分解+功法要领点拨+攻防运用要诀揭示,少林武术大师全程演 练,图文招式精析。 整编几近失传的少林功夫拳谱,为你打开修习少林拳法的大门。 小洪拳必备基础功法,四十七式连贯套路逐迢不教。提点招式要领,揭 示格斗精髓,招招演示,步步跟学,让你轻松掌握惊世绝伦的少林功夫。
出版社:外语教学与研究出版社,2010
简介: 伦敦是个真正的“大城市”,但来自世界各地的一帮朋友都可以聚集在 此,就表明了这里实在是个“小世界”。 而这帮朋友们的世界中心就是Tony咖啡馆――一间忙碌的温馨小店。对 住在这个融合了各个种族和社会背景的大都市的居民来说,这里是他们常常 聚会之地。 九个朋友在这里结下了一生的友谊,在分享着一杯浓浓情意的咖啡同时 ,也分享着生命中的成功与失败、精彩与波折。
作者: 人民日报社评论部 (作者)
出版社:人民日报出版社2015年4月1日
简介:人民日报社评论部编著的《政论中国(附光盘2014人民日报评说党和国家重大举措)(精)》汇集了2014年人民日报对党和国家政治、经济、文化、社会等方面重大举措的评论,包括社论、任仲平、评论员文章等,并附有新闻背景。读者可通过阅读人民日报重要评论及其新闻背景,加深对党和国家重大举措的认识与理解。
出版社:暂无
简介: Dr Seuss's heartwarming tale of Horton the kindly elephant and the Whos of Who-ville, performed by Miranda Richardson with added music and sound effects. Horton has his work cut out saving the Whos who live on a speck of dust-no one else believes they're there! But Horton eventually convinces everyone that a person's a person, no matter how small! Creator of the wonderfully anarchic Cat in the Hat, and ranked among the UK's top ten favourite children's authors, Dr. Seuss is a global best-seller, with nearly half a billion books sold worldwide.
Working at a small-to-medium business or ISP CCNA discovery learning guide
光盘作者: (美)Allan Reid,(美)Jim Lorenz著;思科系统公司译
出版社:人民邮电出版社,2009
简介: 本书是思科网络技术学院在线课程《在中小型企业或ISP工作》的官方 补充教材,旨在方便学生随时随地学习该课程的内容,同时新增了大量帮 助读者理解概念和方便阅读的内容,如学习目标、总结和复习题等。 本书分两部分,第1部分对应在线课程的内容,第2部分包含在线课程 中的所有实验以及新增的挑战性实验。本书涵盖的主题包括Internet的发 展历程和用途、帮助台提供技术支持的流程以及各个帮助台小组的职责、 网络升级的流程、子网划分、NAT和PAT、使用Cisco IOS CLI和SDM配置网 络设备的步骤、路由选择协议的原理和配置方法、ISP提供的各种服务、 ISP在确保网络安全以及监视和维护网络方面的职责以及排除网络故障的方 法和流程等。 本书针对的主要是选修了思科网络技术学院课程《在中小型企业或ISP 工作》的读者,也可供网络爱好者学习基本网络知识时使用。
Saunders handbook of veterinary drugs / 2nd ed.
光盘作者: by Mark G.Papich
简介: Concise, pocket-sized, and easy to use, this handbook provides rapid access to the drug information needed in everyday veterinary practice. The 2nd edition includes completely revised and updated information, as well as coverage of 140 new drugs. It offers specific drug data for small and large animals and is alphabetically organized by generic drug name with three additional quick-reference indexes: alphabetical by drug class, alphabetical by trade/brand name, and alphabetical by therapeutic category. A companion CD-ROM provides customizable, easy-to-understand client handout instructions and information for nearly 100 of the most commonly prescribed medications. * All monographs are organized alphabetically and cross-referenced by classification, trade, and generic name for quick reference. * A therapeutic index helps identify all potential drug therapies for a specific condition. * Over 460 drug monographs are included in a new, easy access format.
Pride of place : how the lottery contributed f1 billion to the arts in England /
光盘简介: The Arts Council of England has allocated lottery-funded Capital grants totaling #1 billion to more than 2,000 projects over the last five years. Apart from putting the spotlight on the future of the arts, the distribution of lottery-funded grants has kick-started a vast programme of new building. This book looks at four cities that have benefited from the scheme, and introduces a selection of individual projects and the personalities that made them happen. The Arts Council's programme has led to the construction of new landmark buildings around England, from the New Gallery in Walsall to the Globe Theatre in London, as well as providing support for hundreds of small-scale projects. But has this additional money led to a better experience for visitors? Have the Lottery millions provided better environments for artists to show their work? Through a series of essays and photographic studies, this book analyses the successes and failures of this ambitious programme of investment.
作者: (法)施亨利(M. Henri See)原著;黎东方译;吴正良校对
出版社:全国图书馆文献缩微中心,2013(北京:国家图书馆,2013)
简介:Low- and no-cost tools that win customer loyalty Whether you're setting up shop or already have your business off the ground, you need proven marketing strategies that get new customers in the door and keep them coming back. The Ultimate Small Business Marketing Toolkit gives you the resources to do just that, with a wide variety of cost-effective marketing techniques you can use to turn your business vision into reality. Packed with dozens of worksheets, real-life examples, and step-by-step instructions, this all-in-one resource guides you through eight easy-to-follow marketing milestones. Armed with the tools in this book and on the CD-ROM, you'll be ready to Develop targeted customer profiles using affordable market research techniques Get inside the heads of customers and learn what makes them tick Navigate your marketplace and turn obstacles into opportunities Establish winning partnerships that support your company's growth Sell your brand to the world using brochures, Web sites, direct mail, and advertising "Pushes your bottom line to a breakthrough level of success."-Peter R. Russo, Director, Entrepreneurship Programs, Boston University School of Management
作者: 迪士尼
简介:
There’s a whole lot more to racin’ than just winnin’.除了赢得比赛,还有更多值得追求的东西。
Lightning McQueen is a hotshot young race car on his way to becoming the Piston Cup champion ... until he gets impounded in the small town of Radiator Springs. Now McQueen can only spin his wheels, thinking about the big race he’s going to miss. But if McQueen can slow down, the townsfolk of Radiator Springs just might teach him that being a champion has more to do with heart than with crossing the finish line first.
闪电麦坤是一辆前途无量的年轻赛车,他一心想夺取活塞杯冠军,在去参赛的路上却被困水箱温泉镇。现在,麦坤只能车轮空转,想想眼看就要错过的大决赛。然而,如果麦坤可以放慢脚步,水箱温泉小镇的居民也许可以使他明白――要成为冠军,美好的心灵比**个越过终点线更重要。
【媒体评论】
上海师范大学教授、博士生导师、翻译家朱振武说:
迪士尼电影故事具有强烈的吸引力,充满冒险和奇幻(Fantasy),满足了读者的想象,同时每个故事都传达了某些真善美的普世真理(Ethics),通过不同的寓言(Allegory)和象征(Symbol),表达鲜明的主题(Theme),这些要素构成了人们乐此不疲的饕餮盛宴(Feast)。
《迪士尼大电影双语阅读》、《迪士尼青少年英汉双语读物》、《迪士尼英文原版》系列图书保留了电影故事情节的完整性,这样也就保证青少年读者能够将对电影的喜爱延续到小说上。同样的精彩剧情,小说带来的是比电影更深的阅读感动!
而要想学好英语,*根本的方法就是阅读!这是不争的事实,但却被很多人忽视掉。学英语,不能指望课堂,更不能指望各种提高班!想真正提高英语的整体水平,*重要的当然就是阅读。阅读不像背词汇、句型等属于简单的量的积累,阅读到了一定的程度,你的大脑里会产生“化学反应”,一下子使你的各种语言水平整体拔高,进而做到信手拈来,随心所欲,驾轻就熟,甚至旁征博引。语言重在培养感觉和灵性,这迥异于数、理、化等学科。英语是用会的,不是学会的,更不是考会的。对于一个生活在非英语环境中的中国学生来说,怎样做到在使用中学习英语呢?这就是阅读,找自己感兴趣的东西读,迪士尼电影系列图书正满足了大家这样的诉求。这也是我们推出迪士尼双语阅读、全英文版系列图书的初衷。
【书摘与插画】