当前位置:文档之家› 旅行社管理系统中英文对照外文翻译文献

旅行社管理系统中英文对照外文翻译文献

旅行社管理系统中英文对照外文翻译文献
旅行社管理系统中英文对照外文翻译文献

中英文对照外文翻译

(文档含英文原文和中文翻译)

https://www.doczj.com/doc/39583168.html, Overview

https://www.doczj.com/doc/39583168.html, is a unified Web development model that includes the services necessary for you to build enterprise-class Web applications with a minimum of coding. https://www.doczj.com/doc/39583168.html, is part of the .NET Framework, and when coding https://www.doczj.com/doc/39583168.html, applications you have access to classes in the .NET Framework. You can code your applications in any language compatible with the common language runtime (CLR), including Microsoft Visual Basic, C#, JScript .NET, and J#. These languages enable you to develop https://www.doczj.com/doc/39583168.html, applications that benefit from the common language runtime, type safety, inheritance, and so on. https://www.doczj.com/doc/39583168.html, includes:

? A page and controls framework

?The https://www.doczj.com/doc/39583168.html, compiler

?Security infrastructure

?State-management facilities

?Application configuration

?Health monitoring and performance features

?Debugging support

?An XML Web services framework

?Extensible hosting environment and application life cycle management

?An extensible designer environment

The https://www.doczj.com/doc/39583168.html, page and controls framework is a programming framework that runs on a Web server to dynamically produce and render https://www.doczj.com/doc/39583168.html, Web pages. https://www.doczj.com/doc/39583168.html, Web pages can be requested from any browser or client device, and https://www.doczj.com/doc/39583168.html, renders markup (such as HTML) to the requesting browser. As a rule, you can use the same page for multiple browsers, because https://www.doczj.com/doc/39583168.html, renders the appropriate markup for the browser making the request. However, you can design your https://www.doczj.com/doc/39583168.html, Web page to target a specific browser, such as Microsoft Internet Explorer 6, and take advantage of the features of that browser. https://www.doczj.com/doc/39583168.html, supports mobile controls for Web-enabled devices such as cellular phones, handheld computers, and personal digital assistants (PDAs).

https://www.doczj.com/doc/39583168.html, Web pages are completely object-oriented. Within https://www.doczj.com/doc/39583168.html, Web pages you can work with HTML elements using properties, methods, and events. The https://www.doczj.com/doc/39583168.html, page framework removes the implementation details of the separation of client and server inherent in Web-based applications by presenting a unified model for responding to client events in code that runs at the server. The framework also automatically maintains the state of a page and the controls on that page during the page processing life cycle.

The https://www.doczj.com/doc/39583168.html, page and controls framework also enables you to encapsulate common UI functionality in easy-to-use, reusable controls. Controls are written once, can be used in many pages, and are integrated into the https://www.doczj.com/doc/39583168.html, Web page that they are placed in during rendering.

The https://www.doczj.com/doc/39583168.html, page and controls framework also provides features to control the overall look and feel of your Web site via themes and skins. You can define themes and skins and then apply them at a page level or at a control level.

In addition to themes, you can define master pages that you use to create a consistent layout for the pages in your application. A single master page defines the layout and standard behavior that you want for all the pages (or a group of pages) in your application. You can then create individual content pages that contain the page-specific content you want to display. When users request the content pages, they merge with the master page

to produce output that combines the layout of the master page with the content from the content page.

All https://www.doczj.com/doc/39583168.html, code is compiled, which enables strong typing, performance optimizations, and early binding, among other benefits. Once the code has been compiled, the common language runtime further compiles https://www.doczj.com/doc/39583168.html, code to native code, providing improved performance.

https://www.doczj.com/doc/39583168.html, includes a compiler that will compile all your application components including pages and controls into an assembly that the https://www.doczj.com/doc/39583168.html, hosting environment can then use to service user requests.

In addition to the security features of .NET, https://www.doczj.com/doc/39583168.html, provides an advanced security infrastructure for authenticating and authorizing user access as well as performing other security-related tasks. You can authenticate users using Windows authentication supplied by IIS, or you can manage authentication using your own user database using https://www.doczj.com/doc/39583168.html, forms authentication and https://www.doczj.com/doc/39583168.html, membership. Additionally, you can manage the authorization to the capabilities and information of your Web application using Windows groups or your own custom role database using https://www.doczj.com/doc/39583168.html, roles. You can easily remove, add to, or replace these schemes depending upon the needs of your application.

https://www.doczj.com/doc/39583168.html, always runs with a particular Windows identity so you can secure your application using Windows capabilities such as NTFS Access Control Lists (ACLs), database permissions, and so on. For more information on the identity of https://www.doczj.com/doc/39583168.html,, https://www.doczj.com/doc/39583168.html, provides intrinsic state management functionality that enables you to store information between page requests, such as customer information or the contents of a shopping cart. You can save and manage application-specific, session-specific,

page-specific, user-specific, and developer-defined information. This information can be independent of any controls on the page.

https://www.doczj.com/doc/39583168.html, offers distributed state facilities, which enable you to manage state information across multiple instances of the same application on one computer or on several computers.

https://www.doczj.com/doc/39583168.html, applications use a configuration system that enables you to define configuration settings for your Web server, for a Web site, or for individual applications. You can make configuration settings at the time your https://www.doczj.com/doc/39583168.html, applications are deployed and can add or revise configuration settings at any time with minimal impact on operational Web applications and servers. https://www.doczj.com/doc/39583168.html, configuration settings are stored in XML-based files. Because these XML files are ASCII text files, it is simple to make configuration changes to your Web applications. You can extend the configuration scheme to suit your requirements.

https://www.doczj.com/doc/39583168.html, includes features that enable you to monitor health and performance of your https://www.doczj.com/doc/39583168.html, application. https://www.doczj.com/doc/39583168.html, health monitoring enables reporting of key events that provide information about the health of an application and about error conditions. These events show a combination of diagnostics and monitoring characteristics and offer a high degree of flexibility in terms of what is logged and how it is logged.

https://www.doczj.com/doc/39583168.html, supports two groups of performance counters accessible to your applications: The https://www.doczj.com/doc/39583168.html, system performance counter group

The https://www.doczj.com/doc/39583168.html, application performance counter group

https://www.doczj.com/doc/39583168.html, takes advantage of the run-time debugging infrastructure to provide cross-language and cross-computer debugging support. You can debug both managed and unmanaged objects, as well as all languages supported by the common language runtime and script languages.

In addition, the https://www.doczj.com/doc/39583168.html, page framework provides a trace mode that enables you to insert instrumentation messages into your https://www.doczj.com/doc/39583168.html, Web pages.

https://www.doczj.com/doc/39583168.html, supports XML Web services. An XML Web service is a component containing business functionality that enables applications to exchange information across firewalls using standards like HTTP and XML messaging. XML Web services are not tied to a particular component technology or object-calling convention. As a result, programs written in any language, using any component model, and running on any operating system can access XML Web services.

https://www.doczj.com/doc/39583168.html, includes an extensible hosting environment that controls the life cycle of an application from when a user first accesses a resource (such as a page) in the application to the point at which the application is shut down. While https://www.doczj.com/doc/39583168.html, relies on a Web server (IIS) as an application host, https://www.doczj.com/doc/39583168.html, provides much of the hosting functionality itself. The architecture of https://www.doczj.com/doc/39583168.html, enables you to respond to application events and create custom HTTP handlers and HTTP modules.

https://www.doczj.com/doc/39583168.html, includes enhanced support for creating designers for Web server controls for use with a visual design tool such as Visual Studio. Designers enable you to build a design-time user interface for a control, so that developers can configure your control's properties and content in the visual design tool.

Introduction to the C# Language and the .NET Framework C# is an elegant and type-safe object-oriented language that enables developers to build a wide range of secure and robust applications that run on the .NET Framework. You can use C# to create traditional Windows client applications, XML Web services, distributed components,

client-server applications, database applications, and much, much more. Microsoft Visual C# 2005 provides an advanced code editor, convenient user interface designers, integrated debugger, and many other tools to facilitate rapid application development based on version 2.0 of the C# language and the .NET Framework.

Note

C# syntax is highly expressive, yet with less than 90 keywords, it is also simple and easy to learn. The curly-brace syntax of C# will be instantly recognizable to anyone familiar with C, C++ or Java. Developers who know any of these languages are typically able to begin working productively in C# within a very short time. C# syntax simplifies many of the complexities of C++ while providing powerful features such as nullable value types, enumerations, delegates, anonymous methods and direct memory access, which are not found in Java. C# also supports generic methods and types, which provide increased type safety and performance, and iterators, which enable implementers of collection classes to define custom iteration behaviors that are simple to use by client code.

As an object-oriented language, C# supports the concepts of encapsulation, inheritance and polymorphism. All variables and methods, including the Main method, the application's entry point, are encapsulated within class definitions. A class may inherit directly from one parent class, but it may implement any number of interfaces. Methods

that override virtual methods in a parent class require the override keyword as a way to avoid accidental redefinition. In C#, a struct is like a lightweight class; it is a

stack-allocated type that can implement interfaces but does not support inheritance.

In addition to these basic object-oriented principles, C# facilitates the development of software components through several innovative language constructs, including:

?Encapsulated method signatures called delegates, which enable type-safe event notifications.

?Properties, which serve as accessors for private member variables.

?Attributes, which provide declarative metadata about types at run time.

?Inline XML documentation comments.

If you need to interact with other Windows software such as COM objects or native Win32 DLLs, you can do this in C# through a process called "Interop." Interop enables C# programs to do just about anything that a native C++ application can do. C# even supports pointers and the concept of "unsafe" code for those cases in which direct memory access is absolutely critical.

The C# build process is simple compared to C and C++ and more flexible than in Java. There are no separate header files, and no requirement that methods and types be declared in a particular order. A C# source file may define any number of classes, structs, interfaces, and events.

C# programs run on the .NET Framework, an integral component of Windows that includes a virtual execution system called the common language runtime (CLR) and a unified set of class libraries. The CLR is Microsoft's commercial implementation of the common language infrastructure (CLI), an international standard that is the basis for creating execution and development environments in which languages and libraries work together seamlessly.

Source code written in C# is compiled into an intermediate language (IL) that conforms to the CLI specification. The IL code, along with resources such as bitmaps and strings, is stored on disk in an executable file called an assembly, typically with an extension of .exe or .dll. An assembly contains a manifest that provides information on the assembly's types, version, culture, and security requirements.

When the C# program is executed, the assembly is loaded into the CLR, which might take various actions based on the information in the manifest. Then, if the security requirements are met, the CLR performs just in time (JIT) compilation to convert the IL code into native machine instructions. The CLR also provides other services related to automatic garbage collection, exception handling, and resource management. Code that is executed by the CLR is sometimes referred to as "managed code," in contrast to "unmanaged code" which is compiled into native machine language that targets a specific system. The following diagram illustrates the compile-time and run time relationships of C# source code files, the base class libraries, assemblies, and the CLR.

Language interoperability is a key feature of the .NET Framework. Because the IL code produced by the C# compiler conforms to the Common Type Specification (CTS), IL code generated from C# can interact with code that was generated from the .NET versions of Visual Basic, Visual C++, Visual J#, or any of more than 20 other

CTS-compliant languages. A single assembly may contain multiple modules written in different .NET languages, and the types can reference each other just as if they were written in the same language.

In addition to the run time services, the .NET Framework also includes an extensive library of over 4000 classes organized into namespaces that provide a wide variety of useful functionality for everything from file input and output to string manipulation to XML parsing, to Windows Forms controls. The typical C# application uses the .NET Framework class library extensively to handle common "plumbing" chores.

https://www.doczj.com/doc/39583168.html, 概述

https://www.doczj.com/doc/39583168.html, 是一个统一的 Web 开发模型,它包括您使用尽可能少的代码生成企业级 Web 应用程序所必需的各种服务。https://www.doczj.com/doc/39583168.html, 作为 .NET Framework 的一部分提供。当您编写 https://www.doczj.com/doc/39583168.html, 应用程序的代码时,可以访问 .NET Framework 中的类。您可以使用与公共语言运行库 (CLR) 兼容的任何语言来编写应用程序的代码,这些语言包括 Microsoft Visual Basic、C#、JScript .NET 和 J#。使用这些语言,可以开发利用公共语言运行库、类型安全、继承等方面的优点的 https://www.doczj.com/doc/39583168.html, 应用程序。https://www.doczj.com/doc/39583168.html, 包括:

?页和控件框架

?https://www.doczj.com/doc/39583168.html, 编译器

?安全基础结构

?状态管理功能

?应用程序配置

?运行状况监视和性能功能

?调试支持

?XML Web services 框架

?可扩展的宿主环境和应用程序生命周期管理

?可扩展的设计器环境

https://www.doczj.com/doc/39583168.html, 页和控件框架是一种编程框架,它在 Web 服务器上运行,可以动态地生成和呈现 https://www.doczj.com/doc/39583168.html, 网页。可以从任何浏览器或客户端设备请求 https://www.doczj.com/doc/39583168.html, 网页,https://www.doczj.com/doc/39583168.html, 会向请求浏览器呈现标记(例如 HTML)。通常,您可以对多个浏览器使用相同的页,因为 https://www.doczj.com/doc/39583168.html, 会为发出请求的浏览器呈现适当的标记。但是,您可以针对诸如 Microsoft Internet Explorer 6 的特定浏览器设计 https://www.doczj.com/doc/39583168.html, 网页,并利用该浏览器的功能。https://www.doczj.com/doc/39583168.html, 支持基于 Web 的设备(如移动电话、手持型计算机和个人数字助理 (PDA))的移动控件。

中英文参考文献格式

中文参考文献格式 参考文献(即引文出处)的类型以单字母方式标识: M——专著,C——论文集,N——报纸文章,J——期刊文章,D——学位论文,R——报告,S——标准,P——专利;对于不属于上述的文献类型,采用字母“Z”标识。 参考文献一律置于文末。其格式为: (一)专著 示例 [1] 张志建.严复思想研究[M]. 桂林:广西师范大学出版社,1989. [2] 马克思恩格斯全集:第1卷[M]. 北京:人民出版社,1956. [3] [英]蔼理士.性心理学[M]. 潘光旦译注.北京:商务印书馆,1997. (二)论文集 示例 [1] 伍蠡甫.西方文论选[C]. 上海:上海译文出版社,1979. [2] 别林斯基.论俄国中篇小说和果戈里君的中篇小说[A]. 伍蠡甫.西方文论选:下册[C]. 上海:上海译文出版社,1979. 凡引专著的页码,加圆括号置于文中序号之后。 (三)报纸文章 示例 [1] 李大伦.经济全球化的重要性[N]. 光明日报,1998-12-27,(3) (四)期刊文章 示例 [1] 郭英德.元明文学史观散论[J]. 北京师范大学学报(社会科学版),1995(3). (五)学位论文 示例 [1] 刘伟.汉字不同视觉识别方式的理论和实证研究[D]. 北京:北京师范大学心理系,1998. (六)报告 示例 [1] 白秀水,刘敢,任保平. 西安金融、人才、技术三大要素市场培育与发展研究[R]. 西安:陕西师范大学西北经济发展研究中心,1998. (七)、对论文正文中某一特定内容的进一步解释或补充说明性的注释,置于本页地脚,前面用圈码标识。 参考文献的类型 根据GB3469-83《文献类型与文献载体代码》规定,以单字母标识: M——专著(含古籍中的史、志论著) C——论文集 N——报纸文章 J——期刊文章 D——学位论文 R——研究报告 S——标准 P——专利 A——专著、论文集中的析出文献 Z——其他未说明的文献类型 电子文献类型以双字母作为标识: DB——数据库 CP——计算机程序 EB——电子公告

企业创新战略外文翻译文献

企业创新战略外文翻译文献(文档含中英文对照即英文原文和中文翻译) 翻译之一: Choosing an innovation strategy: theory and practice Author:Joseph T. Gilbert Nationality:America Derivation:Business Horizons, Nov-Dec, 1994 Innovations come as both inventions and adoptions. They come in many types and vary greatly in complexity and scope. Companies attempting to

make a profit cannot continue for long periods without innovating. If they try, their customers will leave them for firms with more up-to-date products or services. It is an observed fact that different companies take different approaches to the use of innovation in attempting to improve their performance. Both academic and practitioner publications in recent years have contained a great deal of writing about innovation, the subjects of which have ranged from comparisons of national patterns of innovation to studies of individual innovations. However, little has been published regarding one issue of both theoretical and practical importance: the innovation policy or strategy of individual firms. Business strategy as a field of study is concerned with how a company competes in its chosen business. It deals with the analysis of a firm's strengths and weaknesses and the opportunities and threats presented by the firm's environment. Strategy looks toward consistent execution of broad plans to achieve certain levels of performance. Innovation strategy determines to what degree and in what way a firm attempts to use innovation to execute its business strategy and improve its performance. To choose an innovation strategy, managers might logically start by thinking about various kinds of innovations and their requirements. We shall discuss three major features of innovation, and analyze each in terms of distinct opposites, even though innovations found in the real world more often appear at various points between these opposites. Innovation is sometimes used in a limited sense to refer only to inventions (products, services, or administrative procedures that no other firm has introduced). More often, however, it applies in a more general sense that includes both invention as described above and imitation (adoption by a firm of a product, service, or administrative procedure that is not an invention but is new to that firm). We use the term in this second sense. Innovations can be characterized in a variety of ways. In the following

中英文论文参考文献标准格式 超详细

超详细中英文论文参考文献标准格式 1、参考文献和注释。按论文中所引用文献或注释编号的顺序列在论文正文之后,参考文献之前。图表或数据必须注明来源和出处。 (参考文献是期刊时,书写格式为: [编号]、作者、文章题目、期刊名(外文可缩写)、年份、卷号、期数、页码。参考文献是图书时,书写格式为: [编号]、作者、书名、出版单位、年份、版次、页码。) 2、附录。包括放在正文内过份冗长的公式推导,以备他人阅读方便所需的辅助性数学工具、重复性数据图表、论文使用的符号意义、单位缩写、程序全文及有关说明等。 参考文献(即引文出处)的类型以单字母方式标识,具体如下: [M]--专著,著作 [C]--论文集(一般指会议发表的论文续集,及一些专题论文集,如《***大学研究生学术论文集》[N]-- 报纸文章 [J]--期刊文章:发表在期刊上的论文,尽管有时我们看到的是从网上下载的(如知网),但它也是发表在期刊上的,你看到的电子期刊仅是其电子版 [D]--学位论文:不区分硕士还是博士论文 [R]--报告:一般在标题中会有"关于****的报告"字样 [S]-- 标准 [P]--专利 [A]--文章:很少用,主要是不属于以上类型的文章 [Z]--对于不属于上述的文献类型,可用字母"Z"标识,但这种情况非常少见 常用的电子文献及载体类型标识: [DB/OL] --联机网上数据(database online) [DB/MT] --磁带数据库(database on magnetic tape) [M/CD] --光盘图书(monograph on CDROM) [CP/DK] --磁盘软件(computer program on disk) [J/OL] --网上期刊(serial online) [EB/OL] --网上电子公告(electronic bulletin board online) 很显然,标识的就是该资源的英文缩写,/前面表示类型,/后面表示资源的载体,如OL表示在线资源 二、参考文献的格式及举例 1.期刊类 【格式】[序号]作者.篇名[J].刊名,出版年份,卷号(期号)起止页码. 【举例】 [1] 周融,任志国,杨尚雷,厉星星.对新形势下毕业设计管理工作的思考与实践[J].电气电子教学学报,2003(6):107-109. [2] 夏鲁惠.高等学校毕业设计(论文)教学情况调研报告[J].高等理科教育,2004(1):46-52. [3] Heider, E.R.& D.C.Oliver. The structure of color space in naming and memory of two languages [J]. Foreign Language Teaching and Research, 1999, (3): 62 67. 2.专著类

营销策略外文翻译文献

营销策略外文翻译文献 (文档含中英文对照即英文原文和中文翻译)

译文: 营销策略 内容提要:为了组织的销售能是成功的,它需要根据一个营销策略计划来帮助保证其努力的目标和宗旨与市场的需要想吻合。营销策略审查市场以确定潜在顾客的需要,竞争者的战略和市场地位,并且尝试制定出一套能使组织在市场上获取或维护竞争优势的相关战略。有一些因素会对营销策略计划的发展造成冲击性的影响,它包括内部因素例如组织的财产、技能和组织文化,外在因素例如各种各样的市场驱动者、市场或产业运作方式、战略窗口和竞争的本质。一个优选的营销策略计划也需具备一套意外情况防备策略以应对市场治理及组织生产能力的不确定性。 关键词:竞争优势竞争策略市场地位市场份额营销销售计划组织文化营销策略 营销策略简述 无论组织的产品或服务多么好,除非它们的价值能被传达给潜在的顾客,否则组织依然无法实现它的使命。这种传达和交流是组织内市场营销功能的职责。根据美国市场协会,营销是“一个组织效能和一套创造过程、交流和传达产品价值给顾客、处理与顾客关系的有益于组织和它的利益共享者的方式”。营销作用包括相辅相成的两方面。营销策略在市场上审查市场来确定潜在顾客和竞争者本质的需要,并且试图开发

出在市场上将使组织获取或维护竞争优势的战略。操作的营销被建立在营销策略作用和贯彻各种各样的计划和策略(包括适当的混合营销的发展)吸引顾客和促进顾客忠实的基础之上的。 产品和服务营销的方法 有很多的方式能用来销售你的产品或服务包括做广告,直接响应、推销活动和宣传。然而,除非你能了解顾客、市场和产业的需要并且竞争的优势和劣势,否则这些方法是不太可能成功的。营销策略帮助一个组织尖化它的焦点和在市场顺利地竞争。营销策略与二个组分有关:目标市场和用最佳的方式传达你的产品价值或服务到那个市场。一个可实行的销售方针的发展取决于几个关键维度。首先,与组织之内的所有全球性战略一样,一个成功的销售方针需要由在组织之内的最高管理层签名。销售方针本质上也具有政治性的色彩:在组织之内的强有力的单位在最佳的销售方针也许不同意,并且协议也许需要谈判达成。销售方针也许受组织文化的也影响,并且那得假定这发生。例如,如果组织总是销售它的装饰物给商业主管,它也许就看不到组织之内的低层人员甚至是成人或少年的个人消费潜力。 实施战略销售计划发展的因素 存在一些能冲击战略销售计划发展的因素,这些因素首先包括组织已经拥有或它可能欣然获取的财产和技能。例如,如果组织拥有一个重大编程的部门,就为它能做和销售应用软件提供了可行性的条件。然而,如果这些人员已经在其他工作介入并且不能自由研究一个新的软件项目,并且组织没能力聘用另外的程序员,起始一条新的软件线是不妥当

中英文参考文献格式

中英文参考文献格式! (細節也很重要啊。。)来源:李菲玥的日志 规范的参考文献格式 一、参考文献的类型 参考文献(即引文出处)的类型以单字母方式标识,具体如下: M——专著C——论文集N——报纸文章J——期刊文章 D——学位论文R——报告S——标准P——专利 A——文章 对于不属于上述的文献类型,采用字母“Z”标识。 常用的电子文献及载体类型标识: [DB/OL]——联机网上数据(database online) [DB/MT]——磁带数据库(database on magnetic tape) [M/CD]——光盘图书(monograph on CD ROM) [CP/DK]——磁盘软件(computer program on disk) [J/OL]——网上期刊(serial online) [EB/OL]——网上电子公告(electronic bulletin board online) 对于英文参考文献,还应注意以下两点: ①作者姓名采用“姓在前名在后”原则,具体格式是:姓,名字的首字母. 如:Malcolm R ichard Cowley 应为:Cowley, M.R.,如果有两位作者,第一位作者方式不变,&之后第二位作者名字的首字母放在前面,姓放在后面,如:Frank Norris 与Irving Gordon应为:Norri s, F. & I.Gordon.; ②书名、报刊名使用斜体字,如:Mastering English Literature,English Weekly。二、参考文献的格式及举例 1.期刊类 【格式】[序号]作者.篇名[J].刊名,出版年份,卷号(期号):起止页码. 【举例】 [1] 周融,任志国,杨尚雷,厉星星.对新形势下毕业设计管理工作的思考与实践[J].电气电子教学学报,2003(6):107-109.

战略管理参考文献

战略管理研究参考文献 (总目录) 项保华2003-5-31 重要说明:本目录经过多届博士生的共同努力,于2003年5月整理完成,主要提供本人指导的战略管理研究方向的博士生学习参考之用。可以认为,只要通读了本目录的大部分文献,必将能够对战略管理领域的当前及经典理论、方法有比较系统的把握。若能在此基础上潜心感悟,加强与同行的交流探索,定可具备解决具体战略理论与实践问题的创新思路与实用技能,从而顺利完成博士学位论文的选题与撰写。作为战略管理研究方向博士生培养的业务目标定位为,通过对战略理论与实践的系统学习,达到胜任国内重点高等院校战略领域的教学、研究、咨询工作之要求。所以,对于硕士生以及非战略管理研究方向的博士生而言,不作全面通读本目录文献之要求,各位可以根据自己的兴趣,从本目录中选取部分文献阅读,以作为参与战略课程学习之补充。 学习建议:以具体老师为师的范围终有限,而以文献为师则可延请古今中外名家赐教,广泛借鉴吸收多方面的见解。多读、多思、多写,书山无路勤为径,以学为乐恒则成!谨以此与各位共勉! 1、中文部分 为人经世 ?孔子, 论语(网上下载) ?老子, 道德经(网上下载) ?孙子, 孙子兵法(网上下载) ?马基雅维里(1469-1527), 君主论, 中国社会出版社, 1999 ?葛拉西安(1601-1658), 智慧书——永恒的处世经典(网上下载) ?何兆武, 西方哲学精神, 清华大学出版社, 2002 ?墨顿·亨特, 心理学的故事, 海南人民出版社, 1999 ?维克托·E.弗兰克尔, 人生的真谛, 中国对外翻译出版公司, 1994

? E. 迈尔, 生物学思想发展的历史, 四川教育人民出版社, 1990(网上下载) ?威尔逊, 新的综合:社会生物学(李昆峰编译), 四川人民出版社, 1985(网上下载) 战略总论 ?项保华, 战略管理——艺术与实务(第3版), 华夏出版社, 2003 ?明茨伯格等, 战略历程:纵览战略管理学派, 机械工业出版社, 2002 ?拜瑞·J·内勒巴夫;亚当·M·布兰登勃格, 合作竞争(Co-Opetition), 安徽人民出版社, 2000 ?迈克尔·波特, 竞争战略(原著1980年出版), 华夏出版社, 2003 ?迈克尔·波特, 竞争优势(原著1985年出版), 华夏出版社, 2003 ?迈克尔·波特, 国家竞争优势(原著1990年出版), 华夏出版社, 2002 ?迈克尔·波特等, 未来的战略, 四川人民出版社, 2000 ?格里·约翰逊;凯万·斯科尔斯, 公司战略教程, 华夏出版社, 1998 ?小乔治·斯托尔克等, 企业成长战略, 中国人民大学出版社、哈佛商学院出版社, 1999 专题探讨 ?保罗·索尔曼、托马斯·弗利德曼, 企业竞争战略, 中国友谊出版公司, 1985 ?罗伯特·艾克斯罗德, 对策中的制胜之道:合作的进化, 上海人民出版社, 1996 ?约瑟夫·巴达拉克, 界定时刻——两难境地的选择, 经济日报出版社、哈佛商学院出版社, 1998 ?芝加哥大学商学院、欧洲管理学院、密歇根大学商学院、牛津大学赛德商学院, 把握战略:MBA战略精要, 北京大学出版社, 2003 ?哈默尔、普拉哈拉德, 竞争大未来, 昆仑出版社, 1998 ?尼尔·瑞克曼, 合作竞争大未来, 经济管理出版社, 1998 ?卡尔·W.斯特恩、小乔治·斯托克, 公司战略透视, 上海远东出版社, 1999 ?乔尔·布利克、戴维·厄恩斯特, 协作型竞争, 中国大百科全书出版社, 1998

英语毕业论文引用和参考文献格式

英语毕业论文引用和参考文献格式 英语专业毕业论文引用和参考文献格式采用APA格式及规。 一、文中夹注格式 英语学位论文引用别人的观点、方法、言论必须注明出处,注明出处时使用括号夹注的方法(一般不使用脚注或者尾注),且一般应在正文后面的参考文献中列出。关于夹注,采用APA格式。 (一)引用整篇文献的观点 引用整篇文献(即全书或全文)观点时有两种情况: 1.作者的姓氏在正文中没有出现,如: Charlotte and Emily Bronte were polar opposites, not only in their personalities but in their sources of inspiration for writing (Taylor, 1990). 2. 作者的姓氏已在正文同一句中出现,如: Taylor claims that Charlotte and Emily Bronte were polar opposites, not only in their personalities but in their sources of inspiration for writing (1990). 3. 如果作者的姓氏和文献出版年份均已在正文同一句中出现,按APA的规不需使用括号夹注,如: In a 1990 article, Taylor claims that Charlotte and Emily Bronte were polar opposites, not only in their personalities but in their sources of inspiration for writing. 4. 在英文撰写的论文中引用中文著作或者期刊,括号夹注中只需用汉语拼音标明作者的姓氏,不得使用汉字,如:(Zhang, 2005) (二)引用文献中具体观点或文字 引用文献中某一具体观点或文字时必须注明该观点或者该段文字出现的页码出版年份,没有页码是文献引用不规的表现。 1.引用一位作者的文献 (1)引用容在一页,如: Emily Bronte “expressed increasing hostility for the world of human relationships, whether sexual or social” (Taylor, 1988:11). (2)引用容在多页上,如: Newmark (1988:39-40) notes three characteristically expressive text-types: (a) serious imaginative literature (e.g. lyrical poetry); (b) authoritative statements (political speeches and documents, statutes and legal documents, philosophical and academic works by acknowledged authorities); (c) autobiography, essays, personal correspondence (when these are personal effusions).

英语优秀论文参考文献格式要求

英语优秀论文参考文献格式要求

————————————————————————————————作者:————————————————————————————————日期:

英语专业本科毕业论文 参考文献格式要求 I.文内引用 (一)直接引用 1.引用中的省略 原始资料的引用:在正文中直接引用时,应给出作者、年份,并用带括号的数字标出页码。若有任何资料省略,使用英文时,应用3个省略号在句中标出(…),中文用6个(……);若两句间的资料省略,英文应用4个省略号标出(‥‥),中文用6个(……)。若要在直接引用插入自己的解释,应使用方括号[ ]。若在资料中有什么错误拼写、错误语法或标点错误会使读者糊涂,应在引用后立即插入[sic],中文用[原文如此]。下面是一些示例: 例一:The DSM IV defines the disorder [dysthymic] as being in a chronically depressed mood that occurs for "most of the day more days than not for at least two years (Criterion A) .... In children, the mood may be irritable rather than depressed, and the required minimum duration is only one year" (APA, 1994, p. 345). 例二:Issac (1995) states that bipolar disorder "is not only uncommon but may be the most diagnostic entity in children and adolescents in similar settings .... and may be the most common diagnosis in adolescents who are court-remanded to such settings" (p.275). 2.大段落引用 当中文引用超过160字时,不使用引号,而使用“块”的形式(引用起于新的一行,首行缩进4个空格,两端对齐,之后每行都缩进)。 当英文引用超过40字时,不使用引号,而使用“块”的形式(引用起于新的一行,首行缩进5个空格,左对齐,之后每行都缩进)。 Elkind (1978) states:

英文引用及参考文献格式要求

英文引用及参考文献格式要求 一、参考文献的类型 参考文献(即引文出处)的类型以单字母方式标识,具体如下: M——专著C——论文集N——报纸文章 J——期刊文章D——学位论文R——报告 对于不属于上述的文献类型,采用字母“Z”标识。 对于英文参考文献,还应注意以下两点: ①作者姓名采用“姓在前名在后”原则,具体格式是:姓,名字的首字母.如:MalcolmRichardCowley应为:Cowley,M.R.,如果有两位作者,第一位作者方式不变,&之后第二位作者名字的首字母放在前面,姓放在后面,如:FrankNorris与IrvingGordon应为:Norris,F.&I.Gordon.; ②书名、报刊名使用斜体字,如:MasteringEnglishLiterature,EnglishWeekly。 二、参考文献的格式及举例 1.期刊类 【格式】[序号]作者.篇名[J].刊名,出版年份,卷号(期号):起止页码. 【举例】 [1]王海粟.浅议会计信息披露模式[J].财政研究,2004,21(1):56-58. [2]夏鲁惠.高等学校毕业论文教学情况调研报告[J].高等理科教育,2004(1):46-52. [3]Heider,E.R.&D.C.Oliver.Thestructureofcolorspaceinnamingandmemo ryoftwolanguages[J].ForeignLanguageTeachingandResearch,1999,(3):62–6 7. 2.专著类 【格式】[序号]作者.书名[M].出版地:出版社,出版年份:起止页码. 【举例】[4]葛家澍,林志军.现代西方财务会计理论[M].厦门:厦门大学出版社,2001:42. [5]Gill,R.MasteringEnglishLiterature[M].London:Macmillan,1985:42-45. 3.报纸类 【格式】[序号]作者.篇名[N].报纸名,出版日期(版次). 【举例】 [6]李大伦.经济全球化的重要性[N].光明日报,1998-12-27(3). [7]French,W.BetweenSilences:AVoicefromChina[N].AtlanticWeekly,198 715(33). 4.论文集 【格式】[序号]作者.篇名[C].出版地:出版者,出版年份:起始页码. 【举例】 [8]伍蠡甫.西方文论选[C].上海:上海译文出版社,1979:12-17. [9]Spivak,G.“CantheSubalternSpeak?”[A].InC.Nelson&L.Grossberg(e ds.).VictoryinLimbo:Imigism[C].Urbana:UniversityofIllinoisPress,1988, pp.271-313.

第三方物流问题战略外文翻译文献

第三方物流问题战略外文翻译文献 (文档含英文原文和中文翻译) 我国第三方物流中存在的问题、原因及战略选择 【摘要】我国物流业发展刚刚起步,第三方物流的理论和实践等方面都比较薄弱。本文指出我国第三方物流存在的问题在于国内外第三方物流企业差距、物流效率不高、缺乏系统性管理、物流平台构筑滞后、物流管理观念落后等。分析了产生上述问题的原因,并提出了精益物流、中小型第三方物流企业价值链联盟、大型第三方物流企业虚拟化战等三种可供选择的第三方物流企业发展战略。【关键词】第三方物流;精益物流战略;价值链联盟;虚拟化战略 1引言 长期以来,我国国内企业对采购、运输、仓储、代理、包装、加工、配送等

环节控制能力不强,在“采购黑洞”、“物流陷井”中造成的损失浪费难以计算。因此,对第三方物流的研究,对于促进我国经济整体效益的提高有着非常重要的理论和实践意义。本文试图对我国策三方物流存在的问题及原因进行分析探讨,并提出第三方物流几种可行的战略选择。 2 我国第三方物流业存在的主要问题 (一)我国策三方物流企业与国外第三方物流企业的差距较大,具体表现在以下几个方面: 1、规模经济及资本差距明显。由于国外的大型第三方物流企业从全球经营的战略出发,其规模和资本优势是毫无疑问的,尤其初创时期的我国策三方物流业,本身的规模就很小,国外巨头雄厚的资本令国内企业相形见绌。 2、我国策三方物流业企业提供的物流服务水准及质量控制远不如国外同行。当国内一些企业还在把物流理解成“卡车加仓库“的时候,国外的物流企业早已完成了一系列标准化的改造。同时,国外的物流组织能力非常强大,例如德国一家第三方物流公司,公司各方面的物流专家遍布欧洲各地。如果有客户的货物需要经达不同的国家,那么欧洲各地的这些专家就在网上设计出一个最佳的物流解决方案。这种提供解决方案的能力就是这第三方物流公司的核心能力,而不像国内公司号称拥有多少条船,多少辆车。 3、我国加入 WTO 后物流产业的门槛降低。在物流服务业方面:我国承诺所有的服务行业,在经过合理过渡期后,取消大部分外国股权限制,不限制外国服务供应商进入目前的市场,不限制所有服务行业的现有市场准入和活动。同时在辅助分销的服务方面也作出了类似的承诺。这些方面的限制将在以后 3—4 年内逐步取消,在此期间,国外的服务供应商可以建立百分之百的全资拥有的分支机构或经营机构,国内物流服务业将直面国际竞争。 (二)资源浪费严重,第三方物流效率不高。 从微观上看,由于受计划经济体制的影响,长期以来许多企业,尤其是国有企业走的是“大而全”、“小而全”的路子,它们拥有自己的仓库、车队、甚至远洋船队,造成物流过程的大量浪费,具体表现为仓库的闲置,物流业经营分散,组织化程度低,横向联合薄弱。而能够提供一体化、现代化、专业化、准时化、高效服务的第三方物流企业则很少。从宏观上看第三方物流未能跟上经

单片机-英文参考文献

Structure and function of the MCS-51series Structure and function of the MCS-51series one-chip computer MCS-51is a name of a piece of one-chip computer series which Intel Company produces.This company introduced8top-grade one-chip computers of MCS-51series in1980after introducing8one-chip computers of MCS-48series in1976.It belong to a lot of kinds this line of one-chip computer the chips have,such as8051,8031,8751, 80C51BH,80C31BH,etc.,their basic composition,basic performance and instruction system are all the same.8051daily representatives-51serial one-chip computers. An one-chip computer system is made up of several following parts:(1)One microprocessor of8(CPU).(2)At slice data memory RAM(128B/256B),it use not depositting not can reading/data that write,such as result not middle of operation, final result and data wanted to show,etc.(3)Procedure memory ROM/EPROM (4KB/8KB),is used to preserve the procedure,some initial data and form in slice. But does not take ROM/EPROM within some one-chip computers,such as8031, 8032,80C,etc..(4)Four8run side by side I/O interface P0four P3,each mouth can use as introduction,may use as exporting too.(5)Two timer/counter,each timer/ counter may set up and count in the way,used to count to the external incident,can set up into a timing way too,and can according to count or result of timing realize the control of the computer.(6)Five cut off cutting off the control system of the source. (7)One all duplexing serial I/O mouth of UART(universal asynchronous receiver/transmitter(UART)),is it realize one-chip computer or one-chip computer and serial communication of computer to use for.(8)Stretch oscillator and clock produce circuit,quartz crystal finely tune electric capacity need outer.Allow oscillation frequency as12megahertas now at most.Every the above-mentioned part was joined through the inside data bus.Among them,CPU is a core of the one-chip computer,it is the control of the computer and command centre,made up of such parts as arithmetic unit and controller,etc..The arithmetic unit can carry on8persons of arithmetic operation and unit ALU of logic operation while including one,the1 storing device temporarilies of8,storing device2temporarily,8's accumulation

外文翻译--家族企业战略管理:过去的研究和未来的挑战(节选)

中文2715字 外文翻译: 家族企业战略管理:过去的研究和未来的挑战(节选) 原文来源:CALIS外文期刊网 译文正文: 包含家庭成员 在战略实施过程中,家族企业有选择使用家族或非家族成员的自由。兰兹伯格(1983)建议给所有的亲戚提供学习的机会,但公司只能录用那些最有能力的人。从战略管理的角度来看可以作为一个起点,但也应考虑家庭成员纳入或排除在政治方面的事务(麦克米兰和琼斯,1986)。 总的来说,研究发现家庭成员是比非家族成员有更多的产出(羅森布莱特,deMik、安德森、和约翰逊,1985分;基尔和基尔,1987)。然而,在劳动补偿的问题上,罗森布莱特得出这样的结论:家庭成员相信他们更劳累,薪酬较低。然而基尔确认为家庭成员能得到更高的工资和额外的补贴。这一问题矛盾还值得进一步研究,因为如果不能意识到和处理好认知与现实之间的明显差异,可能会导致战略实施出现问题。 相反,在基于家的企业工作者的研究中,赫克和沃克(1993)发现家庭成员和无关的工作者比相关的工作者(即,表兄弟)有更好的绩效。他们提醒说通过家庭关系而就业的亲戚可能是最不能干的。虽然它提供了家业企业的一个聘用战略,这样研究还有待于在大家庭企业中去证实。我们也知道否认亲属就业机会导致的后果。因为招聘决定是一个公司人力资源决策中最重要的部分,为了公司的业绩,进一步研究这个问题,显然需要的。 从一个战略管理方面,对于家族中妇女的研究是另一个卓有成效的区域。各种各样的研究报告认为妇女不适合被考虑成为家族企业的首席执行官。其他研究员建议,女性成员作为家庭生活的看守者比男性成员对家业的有更好的效果。对于妇女自己来说,就应该获得适当的企业技能、训练和经验。如何最好地训练和部署家庭女性成员的商业、政治影响以及职业发展机会和对家族企业绩效的影响,在这些领域都值得关注。 代际问题 虽然他们是密切的继承关系,但我们已列为战略实施的一部分,而不是因为他们对公司日常的日常运作的潜在影响战略制定的代际问题。许多在这方面所做的研究一直是父亲和儿子之间的关系,明显是片面的。研究人员报告说,创始人是一般的专制、不愿分享权力)和战略保守的。另一方面,儿子一般不耐烦战略转变,个人独立性,并希望有机会证明自己的价值。绝大多数的家族文献似乎认为,冲突是有害的,破坏性的。这可能是真的。然而,冲突也可以驱动改变的力量。判决之前的研究,从战略管理的角度研究的程度和类型的冲突发生在双方家庭和商业情况。更重要的是,这种研究可以探讨冲突影响战略的实施与企业绩效。 杜马(1989)得出结论认为,父子关系,不能一概而论,还要推广到父女关系。她建议,父女关系更加和谐和性质不同。女儿愿意承担起照顾父亲责任的作用。因此,他们不太可能像儿子一样在与父亲的冲突中出现权力和控制的问题。这是非常重要的,因为它提供了一个基础比较研究代际关系的基础。在什么样的背景下考虑战略的实施?通过仔细匹配父子、父女情况类似的企业,研究可以回答这样的问题。 当一个领导者离开时,离开风格可能有所不同。索南费尔德和斯彭斯(1989)确定了

中英文论文参考文献范例

https://www.doczj.com/doc/39583168.html, 中英文论文参考文献 一、中英文论文期刊参考文献 [1].面向中英文混合环境的多模式匹配算法. 《软件学报》.被中信所《中国科技期刊引证报告》收录ISTIC.被EI收录EI.被北京大学《中文核心期刊要目总览》收录PKU.2008年3期.孙钦东.黄新波.王倩. [2].基于自适应特征与多级反馈模型的中英文混排文档分割. 《自动化学报》.被中信所《中国科技期刊引证报告》收录ISTIC.被EI收录EI.被北京大学《中文核心期刊要目总览》收录PKU.2006年3期.夏勇.王春恒.戴汝为. [3].基于最大熵方法的中英文基本名词短语识别. 《计算机研究与发展》.被中信所《中国科技期刊引证报告》收录ISTIC.被EI 收录EI.被北京大学《中文核心期刊要目总览》收录PKU.2003年3期.周雅倩.郭以昆.黄萱菁.吴立德. [4].中英文指代消解中待消解项识别的研究. 《计算机研究与发展》.被中信所《中国科技期刊引证报告》收录ISTIC.被EI 收录EI.被北京大学《中文核心期刊要目总览》收录PKU.2012年5期.孔芳.朱巧明.周国栋. [5].基于树核函数的中英文代词消解?. 《软件学报》.被中信所《中国科技期刊引证报告》收录ISTIC.被EI收录EI.被北京大学《中文核心期刊要目总览》收录PKU.2013年5期.孔芳.周国栋. [6].基于树核函数的中英文代词消解. 《软件学报》.被中信所《中国科技期刊引证报告》收录ISTIC.被EI收录EI.被北京大学《中文核心期刊要目总览》收录PKU.2012年5期.孔芳.周国栋. [7].一种并行中英文混合多模式匹配算法. 《计算机工程》.被中信所《中国科技期刊引证报告》收录ISTIC.被北京大学《中文核心期刊要目总览》收录PKU.2014年4期.王震.李仁发.李彦彪.田峥. [8].中英文混合文章识别问题. 《软件学报》.被中信所《中国科技期刊引证报告》收录ISTIC.被EI收录EI.被北京大学《中文核心期刊要目总览》收录PKU.2005年5期.王恺.王庆人.

战略管理会计探析外文翻译文献

战略管理会计探析外文翻译文献(文档含中英文对照即英文原文和中文翻译) 企业战略管理与战略管理会计探析中英文翻译 Strategic management and strategic management accounting literature translation in both Chinese and English [论文关键词]战略管理会计企业战略内容方法 [key words] strategic management accounting strategy content method [论文摘要]战略管理会计是当今企业经营环境更加复杂多变、全球性市场

战略管理会计探析外文翻译文献 竞争空前广泛激烈的情况下,为满足现代企业实施战略管理的特定信息需要而建立的新的管理会计信息系统。本文从战略管理会计的内涵、目标及特点阐述到战略管理会计的主要内容和方法对战略管理会计进行论述。 / paper pick to strategic management accounting is the enterprise management environment is more complex, an unprecedented high competitive global market, to meet the modern enterprise to implement strategic management specific information need and establish a new management accounting information system. This article from connotation, goals and characteristics of strategic management accounting to the main content of strategic management accounting and methods of strategic management accounting in this paper. 一、从企业战略的高度来看战略管理会计 One, from the perspective of the height of business strategy, strategic management accounting 1981年,英国学者西蒙斯最早将管理会计与战略管理相结合,提出战略管理会计之说。战略管理会计是明确强调战略问题及相关重点的一种管理会计方

相关主题
文本预览
相关文档 最新文档