英文技术资料翻译(模版)

英文技术资料翻译(模版)
英文技术资料翻译(模版)

附录:英文技术资料翻译

英文原文:

An Overview of Servlet and JSP Technology

1.1 A Servlet's Job

Servlets are Java programs that run on Web or application servers, acting as a middle layer between requests coming from Web browsers or other HTTP clients and databases or applications on the HTTP server. Their job is to perform the following tasks, as illustrated in Figure 1-1.

Figure 1-1

1.Read the explicit data sent by the client.

The end user normally enters this data in an HTML form on a Web page. However, the data could also come from an applet or a custom HTTP client program.

2.Read the implicit HTTP request data sent by the browser.

Figure 1-1 shows a single arrow going from the client to the Web server (the layer where servlets and JSP execute), but there are really two varieties of data: the explicit data that the end user enters in a form and the behind-the-scenes HTTP information. Both varieties are critical. The HTTP information includes cookies, information about media types and compression schemes the browser understands, and so on.

3.Generate the results.

This process may require talking to a database, executing an

RMI or EJB call, invoking a Web service, or computing the response directly. Your real data may be in a relational database. Fine. But your database probably doesn't speak HTTP or return results in HTML, so the Web browser can't talk directly to the database. Even if it could, for security reasons, you probably would not want it to. The same argument applies to most other applications. You need the Web middle layer to extract the incoming data from the HTTP stream, talk to the application, and embed the results inside a document.

4.Send the explicit data (i.e., the document) to the client.

This document can be sent in a variety of formats, including text (HTML or XML), binary (GIF images), or even a compressed format like gzip that is layered on top of some other underlying format. But, HTML is by far the most common format, so an important servlet/JSP task is to wrap the results inside of HTML.

5.Send the implicit HTTP response data.

Figure 1-1 shows a single arrow going from the Web middle layer (the servlet or JSP page) to the client. But, there are really two varieties of data sent: the document itself and the behind-the-scenes HTTP information. Again, both varieties are critical to effective development. Sending HTTP response data involves telling the browser or other client what type of document is being returned (e.g., HTML), setting cookies and caching parameters, and other such tasks.

1.2 Why Build Web Pages Dynamically?

Many client requests can be satisfied by prebuilt documents, and the server would handle these requests without invoking servlets. In many cases, however, a static result is not sufficient, and a page needs to be generated for each request. There are a number of reasons why Web pages need to be built on-the-fly:

1. The Web page is based on data sent by the client.

For instance, the results page from search engines and order-confirmation pages at online stores are specific to particular user requests. You don't know what to display until you read the data that the user submits. Just remember that the user submits two kinds of data: explicit (i.e., HTML form data) and implicit (i.e., HTTP request headers). Either kind of input can be used to build the output page. In particular, it is quite common to build a user-specific page based on a cookie value.

2.The Web page is derived from data that changes frequently.

If the page changes for every request, then you certainly need to build the response at request time. If it changes only periodically, however, you could do it two ways: you could periodically build a new Web page on the server (independently of client requests), or you could wait and only build the page when the user requests it. The right approach depends on the situation, but sometimes it is more convenient to do the latter: wait for the user request. For example, a weather report or news headlines site might build the pages dynamically, perhaps returning a previously built page if that page is still up to date.

3.The Web page uses information from corporate databases or other server-side sources.

If the information is in a database, you need server-side processing even if the client is using dynamic Web content such as an applet. Imagine using an applet by itself for a search engine site:

"Downloading 50 terabyte applet, please wait!" Obviously, that is silly; you need to talk to the database. Going from the client to the Web tier to the database (a three-tier approach) instead of from an applet directly to a database (a two-tier approach) provides increased flexibility and security with little or no performance penalty. After all, the database call is usually the rate-limiting

step, so going through the Web server does not slow things down. In fact, a three-tier approach is often faster because the middle tier can perform caching and connection pooling.

In principle, servlets are not restricted to Web or application servers that handle HTTP requests but can be used for other types of servers as well. For example, servlets could be embedded in FTP or mail servers to extend their functionality. And, a servlet API for SIP (Session Initiation Protocol) servers was recently standardized (see https://www.360docs.net/doc/7e12038176.html,/en/jsr/detail?id=116). In practice, however, this use of servlets has not caught on, and we'll only be discussing HTTP servlets.

1.3 The Advantages of Servlets Over "Traditional" CGI

Java servlets are more efficient, easier to use, more powerful, more portable, safer, and cheaper than traditional CGI and many alternative CGI-like technologies.

1.Efficient

With traditional CGI, a new process is started for each HTTP request. If the CGI program itself is relatively short, the overhead of starting the process can dominate the execution time. With servlets, the Java virtual machine stays running and handles each request with a lightweight Java thread, not a heavyweight operating system process. Similarly, in traditional CGI, if there are N requests to the same CGI program, the code for the CGI program is loaded into memory N times. With servlets, however, there would be N threads, but only a single copy of the servlet class would be loaded. This approach reduces server memory requirements and saves time by instantiating fewer objects. Finally, when a CGI program finishes handling a request, the program terminates. This approach makes it difficult to cache computations, keep database connections open, and perform other optimizations that rely on persistent data.

Servlets, however, remain in memory even after they complete a response, so it is straightforward to store arbitrarily complex data between client requests.

2.Convenient

Servlets have an extensive infrastructure for automatically parsing and decoding HTML form data, reading and setting HTTP headers, handling cookies, tracking sessions, and many other such high-level utilities. In CGI, you have to do much of this yourself. Besides, if you already know the Java programming language, why learn Perl too? You're already convinced that Java technology makes for more reliable and reusable code than does Visual Basic, VBScript, or C++. Why go back to those languages for server-side programming?

3.Powerful

Servlets support several capabilities that are difficult or impossible to accomplish with regular CGI. Servlets can talk directly to the Web server, whereas regular CGI programs cannot, at least not without using a server-specific API. Communicating with the Web server makes it easier to translate relative URLs into concrete path names, for instance. Multiple servlets can also share data, making it easy to implement database connection pooling and similar resource-sharing optimizations. Servlets can also maintain information from request to request, simplifying techniques like session tracking and caching of previous computations.

4.Portable

Servlets are written in the Java programming language and follow a standard API. Servlets are supported directly or by a plugin on virtually every major Web server. Consequently, servlets written for, say, Macromedia JRun can run virtually unchanged on Apache Tomcat, Microsoft Internet Information Server (with a separate plugin), IBM WebSphere, iPlanet Enterprise Server, Oracle9i AS, or StarNine WebStar. They are part of the Java 2 Platform, Enterprise

Edition, so industry support for servlets is becoming even more pervasive.

5.Inexpensive

A number of free or very inexpensive Web servers are good for development use or deployment of low- or medium-volume Web sites. Thus, with servlets and JSP you can start with a free or inexpensive server and migrate to more expensive servers with high-performance capabilities or advanced administration utilities only after your project meets initial success. This is in contrast to many of the other CGI alternatives, which require a significant initial investment for the purchase of a proprietary package.

Price and portability are somewhat connected. For example, Marty tries to keep track of the countries of readers that send him questions by email. India was near the top of the list, probably #2 behind the U.S. Marty also taught one of his JSP and servlet training courses (see https://www.360docs.net/doc/7e12038176.html,/) in Manila, and there was great interest in servlet and JSP technology there.

Now, why are India and the Philippines both so interested? We surmise that the answer is twofold. First, both countries have large pools of well-educated software developers. Second, both countries have (or had, at that time) highly unfavorable currency exchange rates against the U.S. dollar. So, buying a special-purpose Web server from a U.S. company consumed a large part of early project funds.

But, with servlets and JSP, they could start with a free server: Apache Tomcat (either standalone, embedded in the regular Apache Web server, or embedded in Microsoft IIS). Once the project starts to become successful, they could move to a server like Caucho Resin that had higher performance and easier administration but that is not free. But none of their servlets or JSP pages have to be rewritten. If their project becomes even larger, they might want to move to

a distributed (clustered) environment. No problem: they could move to Macromedia JRun Professional, which supports distributed applications (We

b farms). Again, none of their servlets or JSP pages have to be rewritten. If the project becomes quite large and complex, they might want to use Enterprise JavaBeans (EJB) to encapsulate their business logic. So, they might switch to BEA WebLogi

c or Oracle9i AS. Again, none of their servlets or JSP pages have to be rewritten. Finally, if their project becomes even bigger, they might move it off of their Linux box an

d onto an IBM mainfram

e running IBM WebSphere. But once again, none o

f their servlets or JSP pages have to be rewritten.

6.Secure

One of the main sources of vulnerabilities in traditional CGI stems from the fact that the programs are often executed by general-purpose operating system shells. So, the CGI programmer must be careful to filter out characters such as backquotes and semicolons that are treated specially by the shell. Implementing this precaution is harder than one might think, and weaknesses stemming from this problem are constantly being uncovered in widely used CGI libraries.

A second source of problems is the fact that some CGI programs are processed by languages that do not automatically check array or string bounds. For example, in C and C++ it is perfectly legal to allocate a 100-element array and then write into the 999th "element," which is really some random part of program memory. So, programmers who forget to perform this check open up their system to deliberate or accidental buffer overflow attacks.

Servlets suffer from neither of these problems. Even if a servlet executes a system call (e.g., with Runtime.exec or JNI) to invoke a program on the local operating system, it does not use a shell to do so. And, of course, array bounds checking and other

memory protection features are a central part of the Java programming language.

7.Mainstream

There are a lot of good technologies out there. But if vendors don't support them and developers don't know how to use them, what good are they? Servlet and JSP technology is supported by servers from Apache, Oracle, IBM, Sybase, BEA, Macromedia, Caucho, Sun/iPlanet, New Atlanta, ATG, Fujitsu, Lutris, Silverstream, the World Wide Web Consortium (W3C), and many others. Several low-cost plugins add support to Microsoft IIS and Zeus as well. They run on Windows, Unix/Linux, MacOS, VMS, and IBM mainframe operating systems. They are the single most popular application of the Java programming language. They are arguably the most popular choice for developing medium to large Web applications. They are used by the airline industry (most United Airlines and Delta Airlines Web sites), e-commerce (https://www.360docs.net/doc/7e12038176.html,), online banking (First USA Bank, Banco Popular de Puerto Rico), Web search engines/portals (https://www.360docs.net/doc/7e12038176.html,), large financial sites (American Century Investments), and hundreds of other sites that you visit every day.

Of course, popularity alone is no proof of good technology. Numerous counter-examples abound. But our point is that you are not experimenting with a new and unproven technology when you work with server-side Java.

注:本文来源于https://www.360docs.net/doc/7e12038176.html,

中文译文:

Servlet和JSP技术简述

1.1 Servlet的功能

Servlets是运行在Web或应用服务器上的Java程序,它是一个中间层,负责连接来自Web浏览器或其他HTTP客户程序的请求和HTTP服务器上的数据库或应用程序。Servlet的工作是执行如下的任务,如图1-1所示。

图1-1 Web中间件的作用

1、读取客户发送的显式数据。

最终用户一般在页面的HTML表单中输入这些数据。然而,数据还有可能来自applet或定制的HTTP客户程序。

2、读取由浏览器发送的隐式请求数据。

图1.1中显示了一条从客户端到Web服务器的单箭头,但实际上从客户端传送到Web服务器的数据有两种,它们分别为用户在表单中输入的显式数据,以及后台的HTTP信息。两种数据都很重要。HTTP信息包括cookie、浏览器所能识别的媒体类型和压缩模式等。

3、生成结果。

这个过程可能需要访问数据库、执行RMI或EJB调用、调用Web服务,或者直接计算得出对应的响应。实际的数据可能存储在关系型数据库中。该数据库可能不理解HTTP,或者不能返回HTML形式的结果,所有Web浏览器不能直接与数据库进行会话。即使它能够做到这一点,为了安全上的考虑,我们也不希望让它这么做。对应大多数其他应用程序,也存在类似的问题。因此,我们需要Web 中间层从HTTP流中提取输入数据,与应用程序会话,并将结果嵌入到文档中。

4、向客户发送显式数据(即文档)。

这个文档可以用各种格式发送,包括文本(HTML或XML),二进制(GIF图),甚至可以是建立在其他底层格式之上的压缩格式,如gzip。但是,到目前为止,

HTML是最常用的格式,故而servlet和JSP的重要任务之一就是将结果包装到HTML中。

5、发送隐式的HTTP响应数据。

图1.1中显示了一条从Web中间层到客户端的单箭头。但是,实际发送的数据有两种:文档本身,以及后台的HTTP信息。同样,两种数据对开发来说都是至关重要的。HTTP响应数据的发送过程涉及告知浏览器或其他客户程序所返回文档的类型(如HTML),设置cookie和缓存参数,以及其他类似的任务。

1.2 动态构建网页的原因

预先建立的文档可以满足客户的许多请求,服务器无需调用servlet就可以处理这些请求。然而,许多情况下静态的结果不能满足要求,我们需要针对每个请求生成一个页面。实时构建页面的理由有很多种:

1、网页基于客户发送的数据。

例如,搜索引擎生成的页面,以及在线商店的订单确认页面,都要针对特定的用户请求而产生。在没有读取到用户提交的数据之前,我们不知道应该显示什么。要记住,用户提交两种类型的数据:显示(即HTML表单的数据)和隐式(即HTTP请求的报头)。两种输入都可用来构建输出页面。基于cookie值针对具体用户构建页面的情况尤其普遍。

2、页面由频繁改变的数据导出。

如果页面需要根据每个具体的请求做出相应的改变,当然需要在请求发生时构建响应。但是,如果页面周期性地改变,我们可以用两种方式来处理它:周期性地在服务器上构建新的页面(和客户请求无关),或者仅仅在用户请求该页面时再构建。具体应该采用哪种方式要根据具体情况而定,但后一种方式常常更为方便,因为它只需简单地等待用户的请求。例如,天气预报或新闻网站可能会动态地构建页面,也有可能会返回之前构建的页面(如果它还是最新的话)。

3、页面中使用了来自公司数据库或其他服务器端数据源的信息。

如果数据存储在数据库中,那么,即使客户端使用动态Web内容,比如applet,我们依旧需要执行服务器端处理。想象以下,如果一个搜索引擎网站完全使用applet,那么用户将会看到:“正在下载50TB的applet,请等待!”。显然,这样很愚蠢;这种情况下,我们需要与数据库进行会话。从客户端到Web 层再到数据库(三层结构),要比从applet直接到数据库(二层结构)更灵活,

也更安全,而性能上的损失很少甚至没有。毕竟数据库调用通常是对速度影响最大的步骤,因而,经过中间层可以执行高速缓存和连接共享。

理论上讲,servlet并非只能用于处理HTTP请求的Web服务器或应用服务器,它同样可以用于其他类型的服务器。例如,servlet能够嵌入到FTP或邮件服务器中,扩展他们的功能。而且,用于会话启动协议服务器的servlet API 最近已经被标准化(参见https://www.360docs.net/doc/7e12038176.html,/en/jsr/detail?id=116)。但在实践中,servlet的这种用法尚不流行,在此,我们只论述HTTP Servlet。

1.3 Servlet相对于“传统”CGI的优点

和传统CGI及许多类CGI技术相比,Java servelt效率更高、更易用、更强大、更容易移植、更安全、也更廉价。

1、效率

应用传统的CGI,针对每个HTTP请求都用启动一个新的进程。如果CGI程序自身相对比较简短,那么启动进程的开销会占用大部分执行时间。而使用servelt,Java虚拟机会一直运行,并用轻量级的Java线程处理每个请求,而非重量级的操作系统进程。类似地,应用传统的CGI技术,如果存在对同一CGI 程序的N个请求,那么CGI程序的代码会载入内存N次。同样的情况,如果使用servlet则启动N个线程,仅仅载入servlet类的单一副本。这种方式减少了服务器的内存需求,通过实例化更少的对象从而节省了时间。最后,当CGI程序结束对请求的处理之后,程序结束。这种方式难以缓存计算结果,保持数据库连接打开,或是执行依靠持续性数据的其他优化。然而,servlet会一直停留在内存中(即使请求处理完毕),因而可以直接存储客户请求之间的任意复杂数据。

2、便利

Servlet提供大量的基础构造,可以自动分析和解码HTML的表单数据,读取和设置HTTP报头,处理cookie,跟踪会话,以及其他的高级功能。而在CGI 中,大部分工作都需要我们自己完成。另外,如果您已经了解了Java编程语言,为什么还学Perl呢?您已经承认应用Java技术编写的代码要比Visual Basic,VBScript或C++编写的代码更可靠,且更易重用,为什么还有倒退回去选择那些语言来开发服务器端的程序呢?

3、强大

Servlet支持常规CGI难以实现或根本不能实现的几项功能。Servlet能够直接与Web服务器对话,而常规的CGI程序做不到这一点,至少在不使用服务器专有API的情况下是这样。例如,与Web服务器的通信使得将相对URL转换成具体的路径名变得更为容易。多个servelt还可以共享数据,从而易于实现数据库连接共享和类似的资源共享优化。Servelt还能维护请求之间的信息,使得诸如会话跟踪和计算结果缓存等技术变得更为简单。

4、可移植性

Servelt使用Java编程语言,并且遵循标准的API。所有主要的Web服务器,实际上都直接或通过插件支持servlet。因此。为Macromedia JRun编写的servlet,可以不经过任何修改地在Apache Tomcat,Microsoft Internet Information Server,IBM WebSphere ,iPlanet Enterprise Server,Oracle9i AS 或者StarNine WebStar上运行。他们是Java2平台企业版的一部分,所以对servlet的支持越来越普遍。

5、廉价

对于开发用的网站、低容量或中等容量网站的部署,有大量免费或极为廉价的Web服务器可供选择。因此,通过使用servlet和jsp,我们可以从免费或廉价的服务器开始,在项目获得初步成功后,再移植到具有更高性能或高级管理工具的昂贵的服务器上。这与其他CGI方案形成鲜明的对比,这些CGI方案在初期都需要为购买专利软件包投入大量的资金。

价格和可移植性在某种程度上是相互关联的。例如,Marty记录了所有通过电子邮件向他发送问题的读者的所在国。印度接近列表的顶端,可能仅次于美国。Marty曾在马尼拉讲授过JSP和servlet培训课程(参见https://www.360docs.net/doc/7e12038176.html,/),那儿对servelt和jsp技术抱有很大的兴趣。

那么,为什么印度和菲律宾都对这项技术这么感兴趣呢?我们推测答案可能分两部分。首先,这两个国家都拥有大量训练有素的软件开发人员。其次,这两个国家的货币对美元的汇率都极为不利。因此,从美国公司那里购买专用Web 服务器会消耗掉项目的大部分前期资金。

但是,使用servlet 和JSP,他们能够从免费的服务器开始:Apache Tomcat。项目取得成功之后,他们可以转移到性能更高、管理更容易,但需要付费的服务器。他们的servlet和JSP不需要重新编写。如果他们的项目变得更庞大,他们

或许希望转移到分布式环境。没有问题:他们可以转而使用Macromedia JRun

Professional,该服务器支持分布式应用。同样,他们的servlet和jsp没有任何部分需要重写。如果项目变得极为庞大,错综复杂,他们或许希望使用Enterprise JavaBeans来封装他们的商业逻辑。因此,他们可以切换到BEA WebLogic或Oracle9i AS。同样,不需要对servlet和JSP做出更改。最后,如果他们的项目变得更庞大,他们或许将他从Linux转移到运行IBM WebSphere 的IBM大型机上,他们还是不需要做出任何更改。

6、安全

传统CGI程序中主要的漏洞来源之一就是,CGI程序常常由通用的操作系统外壳来执行。因此,CGI程序必须仔细地过滤掉那些可能被外壳特殊处理的字符,如反引导和分号。实现这项预防措施的难度可能超出我们的想象,在广泛应用的CGI库中,不断发现由这类问题引发的弱点。

问题的第二个来源是,一些CGI程序用不自动检查数组和字符串边界的语言编写而成。例如,在C和C++中,可以分配一个100个元素的数组,然后向第999个“元素“写入数据——实际上是程序内存的随机部分,这完全合法。因而,如果程序员忘记执行这项检查,就会将系统暴露在蓄意或偶然的缓冲区溢出攻击之下。

Servelt不存在这些问题。即使servelt执行系统调用激活本地操作系统上的程序,它也不会用到外壳来完成这项任务。当然,数组边界的检查以及其他内存保护特性是Java编程语言的核心部分。

7、主流

虽然存在许多很好的技术,但是,如果提供商不支持他们,或开发人员不知道如何使用这些技术,那么它们的优点又如何体现呢?servelt和JSP技术得到服务器提供商的广泛支持,包括Apache,Oracle,IBM,Sybase,BEA,Maromedia,Causho,Sun/iPlanet,New Atlanta,ATG,Fujitsu,Lutris,Silverstream,World Wide Web Consortinrm ,以及其他服务器。存在几种低廉的插件,通过应用这些插件,Microsoft IIS和Zeus也同样支持servlet和jsp技术,它们运行在Windows,Unix/Linus,MacOS,VMS,和IBM大型机操作系统之上。它们用在航空业、电子商务、在线银行、web搜索引擎、门户、大型金融网站、以及成

百上千您日常光顾的其他网站。

当然,仅仅是流行并不能证明技术的优越性。众多的反例比比皆是。但我们的立场是:服务器端Java本非一项新的、未经证实的技术。

证明用英语怎么说

证明用英语怎么说 篇一:在读证明英文翻译 在读证明英文翻译在读证明 兹证明xx(学号xxxx)与20XX年被录取于xxxx大学服装学院服装设计与贸易专业学习,现是xxxx大学xxx系四年级本科生,拟毕业时间20XX年7月。特此证明。 xxx大学服装学院 Towhomitmayconcern, Thisistocertifythatmr.xxx/mixxxwasmatriculatedbythefashioncollegeofxx xuniversityin20XX,majoringinFashiondesignandtrading.he/sheisstudying asaseniorstudentofxxxxdepartmentinxxxxuniversitynow,andwillgraduatei nJuly20XX. Fashioncollegeofxxxuniversity 20XX-11.26 大学在读证明 兹证明:学生##现就读于##大学四年制本科。自20XX年9月至今,该生在我校##学院##系##专业学习。如成绩合格将于20XX年7月取得毕业证书。我校是被中华人民共和国教育部认可的全日制高等学校。 ##大学教务处

educationcertificate Thisistocertifythatms##isnowstudyinginthefour-yearundergraduateprogra mat##university.shehasbeeneolledintheDepartmentof##,majoringin##fromseptember20XXtopresent.ms#willgetthebachelor’sdegreeinJuly20XXifshepassestheexaminationsintherequiredcourses.##un iversityisafull-timeaccreditedschoolforhighereducationapprovedbytheedu cationministryofthepeople'sRepublicofchina. studystatuscertificate Thisistocertifythat□□,female,wrotetheentranceexaminationofuniversityin20□,waseolledat□□universityof□□.Thestudentspecializesin□intheschoolof□□,grade:□,class:□,Reg.no:□□□,lengthofschooling:4□Years. □□universityof□□(seal) sept.□.20□ 在读证明 兹证明xx(学号xxxx)与20XX年被录取于xxxx大学服装学院服装设计与贸易专业学习,现是xxxx大学xxx系四年级本科生,拟毕业时间20XX年7月。特此证明。 xxx大学服装学院 Towhomitmayconcern, Thisistocertifythatmr.xxx/mixxxwasmatriculatedbythefashioncollegeofxx xuniversityin20XX,majoringinFashiondesignandtrading.he/sheisstudying

完税证明-证明范本.doc

完税证明-证明范本 第一篇:完税证明 证明 兹有(单位或个人名称)为我单位实施工程,合同造价为肆万壹仟玖佰伍拾贰元整(41952元)。现工程已完工,验收合格。请贵单位办理完税手续。特此证明。 单位盖章 时间 第二篇:完税证明 完税证明 兹有本单位职工冯云,性别:男,身份证号码 532*********6061832 ,为我所专职律师,现本单位和冯云提出解除合同关系,冯云税务均由单位代缴,不欠税费! 特此证明。 用人单位盖章年月日 第三篇:完税证明

完税证明 林西县统壹工贸有限责任公司于2014年增值税完成情况:销项税额:17,061,413.86元 进项税额:15,339,617.86元 应缴增值税额为: 拖欠税款。 特此证明 ,721,796.00元,此税款已于当年全部交清,无林西县国家税务局2014年7月30日1 完税证明 林西县统壹工贸有限责任公司于2014年地方税完成情况:城建税:86,089.80元 教育附加费:51,653.88元 地方教育附加费:17,217.96元 印花税:30,108.37元 水利建设基金:100,361.25元

以上税款已经全额缴纳,无拖欠税款。 特此证明 林西县地方税务局2014年7月30日 第四篇:完税证明 证明 我辖区陕西燕氏农牧科技发展有限公司,纳税识别号: 610*********7091,该企业属区级龙头企业。该企业财务制度规范,自开业以来按照税收相关法律要求,照章纳税,无拖欠税款情况。 特此证明 故市税务所 2014年4月7日 第五篇:完税证明 完税证明 债权人承建我校工程项目,工程款已付清,工程税款已完税。 特此证明。

05 英文翻译模板 供参考

毕业设计(论文) 外文翻译 题目一种配电网小电流故障 选线新方法 专业电气工程及其自动化 班级 学生 指导教师 年

一种配电网小电流故障选线的新方法 I. Zamora, Member, IEEE, A. J. Mazón, Member, IEEE, K. J. Sagastabeitia, and J. J. Zamora 摘要:在配电网系统中,故障点经经高阻接地或者中性点经消弧线圈接地使得故障电流比较小。以前高的故障电阻主要由于非有效接地或者绝缘降低引起。到后来,中性点就不接地或者经消弧线圈接地,然而,由于这样使得故障电流很小,无法使传统的过流继电器动作或者熔断熔断。本文提出了一种适用于辐射状配电网的基于特定频率电压信号叠加原理的单相接地故障选线新方法,计算机仿真和实验室试验都证明这种方法对于任何形式的接地故障选线都比较准确。 关键词:配电网,故障诊断,小电流接地,信号叠加 符号说明 R fbi馈线i单相对地电阻 Iresi 馈线i残余电流 VNG中性点电压 VpG相电压 Vh参考电压 Ki 馈线i的不对称度 △Kri 馈线i对称度的相对变化率 (a) Prefault situation 故障前 (b) Superposition situation叠加信号时

1简介 配电网的维护和运行里面两个必须要考虑的关键问题是公网安全和电能质量。在最大限度内输送电能必须协调好电能质量和苛刻的安全极限之间的矛盾。所有这些实现都要以新的立法形势和把握好技术改进和经济维护为前提。 然而,设计一种完全可靠的电力系统是不可能的,所以就要发展在最短时间内找到故障点并恢复供电的各种技术,短路故障情况下,短路电流变化比较明显,所以很容易找出故障线路。但是,由于故障的特殊性,配电网中的小电流接地不能被通常的保护监测到。 小电流接地故障通常发生在于高阻接地或有中性点有补偿装置的系统中。在第一种情况下,间接接地或弧光接地使得故障电阻很大,从而限制了故障电流。在第二种情况下,独立的系统或者中性点经电抗接地的系统在发生单相接地故障时,允许系统急需运行相负荷供电一段时间。 无论如何,如果对小电流接地不进行监控,有可能使巨大的电能危及人身安全和设备安全,即使短路电路很小,对设备来说是安全的,但是故障时刻的高电压已经威胁到人身的安全。因此,研究小电流接地选线装置对公众安全是必要的。 目前,有很多人从事这方面的研究工作,期望找出最好的办法来解决这个问题。利用神经网络,小波变换和人工智能的方法已经越来越重要了。低频信号分析也已经被用来分析故障特征,在中性点经消弧线圈接地系统中,利用改变消弧线圈的档位或者在中性点向系统注入工频电流信号,通过检测其对地的流通回路,但是,大部分这种技术只是用于一些小电流接地故障或者仅仅用于特定的情况下和特定类型的配电网中。 本文提出了一种基于电压信号叠加原理来监测小电流故障的的新方法,该方法适用配电网中的任何接地故障类型。

毕业论文外文翻译模版

吉林化工学院理学院 毕业论文外文翻译English Title(Times New Roman ,三号) 学生学号:08810219 学生姓名:袁庚文 专业班级:信息与计算科学0802 指导教师:赵瑛 职称副教授 起止日期:2012.2.27~2012.3.14 吉林化工学院 Jilin Institute of Chemical Technology

1 外文翻译的基本内容 应选择与本课题密切相关的外文文献(学术期刊网上的),译成中文,与原文装订在一起并独立成册。在毕业答辩前,同论文一起上交。译文字数不应少于3000个汉字。 2 书写规范 2.1 外文翻译的正文格式 正文版心设置为:上边距:3.5厘米,下边距:2.5厘米,左边距:3.5厘米,右边距:2厘米,页眉:2.5厘米,页脚:2厘米。 中文部分正文选用模板中的样式所定义的“正文”,每段落首行缩进2字;或者手动设置成每段落首行缩进2字,字体:宋体,字号:小四,行距:多倍行距1.3,间距:前段、后段均为0行。 这部分工作模板中已经自动设置为缺省值。 2.2标题格式 特别注意:各级标题的具体形式可参照外文原文确定。 1.第一级标题(如:第1章绪论)选用模板中的样式所定义的“标题1”,居左;或者手动设置成字体:黑体,居左,字号:三号,1.5倍行距,段后11磅,段前为11磅。 2.第二级标题(如:1.2 摘要与关键词)选用模板中的样式所定义的“标题2”,居左;或者手动设置成字体:黑体,居左,字号:四号,1.5倍行距,段后为0,段前0.5行。 3.第三级标题(如:1.2.1 摘要)选用模板中的样式所定义的“标题3”,居左;或者手动设置成字体:黑体,居左,字号:小四,1.5倍行距,段后为0,段前0.5行。 标题和后面文字之间空一格(半角)。 3 图表及公式等的格式说明 图表、公式、参考文献等的格式详见《吉林化工学院本科学生毕业设计说明书(论文)撰写规范及标准模版》中相关的说明。

学校准假证明样式

办理英国、欧洲、澳洲签证学生所在学校《准假证明》样式 --------------------------------------------------------------------------------------------- 学校抬头信纸 -------------------------------------------------------------------------------------------------------------------------------------- Certificate of Furlough Consulate-General Visa Office, Dear Sir or Madam, Herewith we confirm that 护照上英文姓名(Name of the student)intend to visit __________ from ________(Day and Month), _______(Year) to ________(Day an d Month), _______(Year) with his / her parent, He or She is the student of our school, majoring in _______(course) in Class _____, Grade _____. We guarantee that he or she will abide by the laws and rules aboard and after his / her trip in__________, he / she will come back to China on schedule and continue to study in our school. Yours Sincerely, _________ (signature) ________________ (Name of school / institute / university) Tel: _____________ Add :____________ -------------------------------------------------------------------------------------------------------------------- 准假证明 XX领馆签证处: 兹有XXX同学,在我校XXX专业或X年级X班就读。此次利用学校假期(从XXXX 年X月X日至XXXX年X月X日)自费与父母前往XX旅游。该学生回国后将继续就读 本校。 XXXXXXXXXXXX学校 负责人(姓名):XXX 亲笔签名: XXXX年X月X日 学校地址: XXXXXXXXXXXX 学校电话:12345678 __________________________________________________________________________________ 提示:赴英国、欧洲用英文版。赴澳大利亚用中文版。

学士学位证书及毕业证英文翻译模板

学士学位证书及毕业证英文翻译模板 附录:今天老师给我们留了个作业,让我们把本科毕业证书翻译成英文的,怎么翻译啊~所以请大家帮帮忙吧~谁能给我提供一个毕业证书的英文模版啊~本科毕业证书的啊~越快越好,如果老师满意,多少钱我都不在乎~包括专升本证书,能有工商管理硕士的最好!学士学位证书英语翻译与毕业证英文翻译模板,为爱大学本科生及研究生提供英文毕业证翻译样本。首先请看《办理中英文成绩单、英文毕业证学位证书的须知》。涉及中文或英文成绩单翻译,含英文毕业证书学位证书的证明。学生学位证书英文翻译模板BACHELOR’S DEGREE CERTIFICATE This is to certify that Ms. Wang Danli, born in October 1977, has studied in the Department of Law, xxx University with a specialty of Law from September 1996 to June 2000. Upon completing and passing all the required courses of the 4-year undergraduate program, she is granted graduation. In accordance with the academic degree act of the People’s Republic of China, the aforesaid student is awarded the Bachelor’s Degree in Law. xxx Chairman of Degree Appraising Committee of xx University June 30, 2000 Certificate No.: 103354003888 本科毕业证书翻译模板DIPLOMA This is to certify that Ms. Wang Lan, born on February 29, 1980, has studied in the Department of Foreign Languages,xxxUniversity with a specialty of English from September 1997 to June 2000. Upon completing and passing all the required

毕业论文外文翻译模板

农村社会养老保险的现状、问题与对策研究社会保障对国家安定和经济发展具有重要作用,“城乡二元经济”现象日益凸现,农村社会保障问题客观上成为社会保障体系中极为重要的部分。建立和完善农村社会保障制度关系到农村乃至整个社会的经济发展,并且对我国和谐社会的构建至关重要。我国农村社会保障制度尚不完善,因此有必要加强对农村独立社会保障制度的构建,尤其对农村养老制度的改革,建立健全我国社会保障体系。从户籍制度上看,我国居民养老问题可分为城市居民养老和农村居民养老两部分。对于城市居民我国政府已有比较充足的政策与资金投人,使他们在物质和精神方面都能得到较好地照顾,基本实现了社会化养老。而农村居民的养老问题却日益突出,成为摆在我国政府面前的一个紧迫而又棘手的问题。 一、我国农村社会养老保险的现状 关于农村养老,许多地区还没有建立农村社会养老体系,已建立的地区也存在很多缺陷,运行中出现了很多问题,所以完善农村社会养老保险体系的必要性与紧迫性日益体现出来。 (一)人口老龄化加快 随着城市化步伐的加快和农村劳动力的输出,越来越多的农村青壮年人口进入城市,年龄结构出现“两头大,中间小”的局面。中国农村进入老龄社会的步伐日渐加快。第五次人口普查显示:中国65岁以上的人中农村为5938万,占老龄总人口的67.4%.在这种严峻的现实面前,农村社会养老保险的徘徊显得极其不协调。 (二)农村社会养老保险覆盖面太小 中国拥有世界上数量最多的老年人口,且大多在农村。据统计,未纳入社会保障的农村人口还很多,截止2000年底,全国7400多万农村居民参加了保险,占全部农村居民的11.18%,占成年农村居民的11.59%.另外,据国家统计局统计,我国进城务工者已从改革开放之初的不到200万人增加到2003年的1.14亿人。而基本方案中没有体现出对留在农村的农民和进城务工的农民给予区别对待。进城务工的农民既没被纳入到农村养老保险体系中,也没被纳入到城市养老保险体系中,处于法律保护的空白地带。所以很有必要考虑这个特殊群体的养老保险问题。

英文签证申请翻译参考

在职及准假证明 致:签证官 XX女士/先生在XXX公司工作,职位是XXXX。她/他自XXXX年X月进入我公司。我公司批准XX女士/先生XXXX年XX月赴意大利旅游,所有费用包括:机票费,运输费,住宿费和医疗保险等均由她/他本人承担。她/他将会按时回国并继续在我公司工作。 姓名出生日期护照号职位月薪 XXXXXX.XX.XXGXXXXXXXXXXXXXXXXXXX.XX 在此我们担保她/他会在当地遵守意大利的法律。旅游后她/他会回到中国并继续在我单位上班。所有的旅游费用均由她/他本人承担。 希望您能够予以签证 领导人签名 领导人职位XXXXXXX 单位盖章 单位电话:XXXX XXXX 单位地址:北京市XXXXX 单位名称:XXXXXXXXXX

CERTIFICATION Dear Visa Officer: Hereby we certify that Mr./Ms.XXX is the (Title)of (Company Name). He/She joined our company since (Date). We certificate Mr./Ms. XXX take his/her holiday to Italy from (date) to (date). We make sure that he/she will obey the local rules and come back to China on Time. We will also keep his/her position till his/her coming back. Name Date of Birth Passport-No .Position Salary XXXXXXX.XX.XXGXXXXXXXXXXXXRMBXXXX.XX Hereby we guarantee that he/she will abide by the laws of Italy. He/She is going to visit and will come back to China on schedule and still working in our units. All the cost of the travel will be borne by him/herself. Your kind approval of this application will be highly appreciated. Name of leader: Position of leader Company stamp: Best Regards, Signature: Title: XXXX Tel: XXXXXXXX

完税证明格式.doc

关直接征收税款的(如个体户生产经营所得、自行纳税申报纳税的)、纳税人申请开具完税凭证的,税务机关应当为纳税人开具通用完税证或缴款书、完税证明。 凡是扣缴义务人已经实行扣缴明细申报,且具备条件的地区,从2010年起应当向纳税人告知个人所得税纳税情况。具体方式为直接为纳税人开具完税证明;通过税务网站,由纳税人网络查询、打印纳税情况,并告知纳税人开具完税证明的方法和途径;通过手机短信等方式告知纳税人纳税情况,并告知纳税人到税务机关开具完税证明的方法和途径;各地也可以结合实际,确定告知纳税人纳税情况的方式。 对扣缴义务人未实行全员全额扣缴明细申报和实行明细申报但不具备开具条件的地区,税务总局在通知中明确,应积极创造条件,推广应用个人所得税管理系统,扩大全员全额扣缴明细申报覆盖面,尽快实现直接为纳税人开具完税证明。同时,要做好宣传解释工作,说明不能直接开具完税证明的原因,并采取有效措施,保护纳税人的税收知情权。 通知要求各地税务机关要督促扣缴义务人履行告知义务。一方面,要督促扣缴义务人在发放工资扣缴个人所得税后,在工资单上注明个人已扣缴税款的金额;另一方面,纳税人要求扣缴义务人开具代扣、代收税款凭证的,扣缴义务人必须开具。 国家税务总局所得税司相关人士在接受采访时表示,由税务

机关直接向个人所得税纳税人开具完税凭证,告知其纳税情况,是贯彻落实“服务科学发展、共建和-谐税收”的工作要求的具体体现,是优化纳税服务的客观需要,更是进一步推动全员全额扣缴明细申报、提升个人所得税征管质量和效率的重要举措,也为个人所得税制改革奠定基矗各级税务机关要进一步统一思想,提高认识,按照“明确目标、全力推进、多措并举、逐步到位”的基本原则,以强化全员全额扣缴明细申报为契机,创造条件,采取多种方式,坚定不移地推进完税凭证的开具工作,加大工作力度,切实满足纳税人税收知情权的诉求。

毕业论文(英文翻译)排版格式

英文翻译说明 1. 英文翻译文章输成word,5号新罗马(New Times Roman)字体,1.5倍行间距,将来方便打印和一起装订;英文中的图表要重新画,禁止截图。 2. 整篇论文1.5倍行间距,打印时,用B5纸,版面上空2.5cm,下空2cm,左空2.5cm,右空2cm(左装订)。 3. 论文翻译后的摘要用五号宋体,正文小四号宋体、英文和数字用新罗马(New Times Roman)12、参考文献的内容用五号字体。图和表头用五号字体加粗并居中,图和表中的内容用五号字体。论文翻译的作者用五号字体加粗。 论文大标题………小三号黑体、加黑、居中 第二层次的题序和标题………小四号黑体、加黑、居中 第三层次的题序和标题………小四号宋体、加黑、居中 正文……………………………小四号宋体、英文用新罗马12 页码……………………………小五号居中,页码两边不加修饰符 4. 论文中参考文献严格按照下述排版。 专著格式:序号.编著者.书名[M].出版地: 出版社, 年代, 起止页码 期刊论文格式:序号.作者.论文名称[J]. 期刊名称, 年度, 卷(期): 起止页码 学位论文格式:序号.作者.学位论文名称[D]. 发表地: 学位授予单位, 年度 例子: (1).胡千庭, 邹银辉, 文光才等. 瓦斯含量法预测突出危险新技术[J]. 煤炭学报, 2007.32(3): 276-280. (2). 胡千庭. 煤与瓦斯突出的力学作用机理及应用研究[D]. 北京: 中国矿业大学(北京), 2007. (3). 程伟. 煤与瓦斯突出危险性预测及防治技术[M]. 徐州: 中国矿业大学出版社, 2003.

山东建筑大学本科毕业设计说明书外文文献及翻译格式模版

附件3: (本科毕业论文)文献、资料题目: 院(部) 专 班 姓名:张三 学号: 指导教师:张九光 翻译日期:2005.6.30

,the National Institute of Standards and Technology (NIST) has been working to develop a new encryption standard to keep government information secure .The organization is in the final stages of an open process of selecting one or more algorithms ,or data-scrambling formulas ,for the new Advanced Encryption Standard (AES) and plans to make adecision by late summer or early fall .The standard is slated to go into effect next year . AES is intended to be a stronger ,more efficient successor to Triple Data Encryption Standard (3DES),which replaced the aging DES ,which was cracked in less than three days in July 1998. “Until we have the AES ,3DES will still offer protection for years to come .So there is no need to immediately switch over ,”says Edward Roback , acting chief of the computer security division at NIST and chairman of the AES selection committee .“What AES will offer is a more efficient algorithm .It will be a federal standard ,but it will be widely implemented in the IT community .” According to Roback ,efficiency of the proposed algorithms is measured by how fast they can encrypt and decrypt information ,how fast they can present an encryption key and how much information they can encrypt . The AES review committee is also looking at how much space the algorithm takes up on a chip and how much memory it requires .Roback says the selection of a more efficient AES will also result in cost savings and better use of resources . “DES w as designed for hardware implementations ,and we are now living in a world of much more efficient software ,and we have learned an awful lot about the design of algorithms ,”says Roback .“When you start multiplying this with the billions of implementations done daily ,the saving on overhead on the networks will be enormous .” ……

研究生中英文在读证明(正式 版)

TIANJIN UNIVERSITY 研究生在读证明 兹有(硕/博)士研究生,性别,学号,出生日期,于年月入学,在学院专业学习,学制年,特此证明。 此证明用于_________________,有效期至:年月日。 经办人: Certificate This is to certify that the Ph.D/Master student _________________ (Gender__________, Date of birth ______________, Student No. ________________ ) is currently an enrolled, full-time graduate student at Tianjin University, majoring in _________________________ ( ____ years) , in the School of __________________________. The study period began from _________________. End of this certificate’s validity: ____________________ 研究生院培养办公室(章):学院(章): Office of Graduate Education ( Seal ) 201 年月日 通讯地址:天津市南开区卫津路92号邮政编码:300072 https://www.360docs.net/doc/7e12038176.html, Address: No. 92 Weijin Road, Nankai District, Tianjin 300072, P. R. China

中英文版在读证明

在读证明 兹证明李小强,男,生于1989年12月11日。该生于2007年9月经全国高等院校入学考试录取进入我校学习,学制4年;现为我校矿业工程学院采矿工程专业本科四年级学生,学号09070000。若按时修满学校规定相应学分并达到中国矿业大学毕业条件和学位授予条件,将于2011年7月毕业并获得相应学士学位。特此证明。 学院审核人签字: XXXX大学矿业工程学院XXXX大学教务部 20 年月日20 年月日 Registration Certificate of China University of Mining & Technology This is to certify that student LI Xiaoqiang, male, born on May 17,1990,passed the National College Entrance Examination and was enrolled into China University of Mining & Technology (CUMT) in September, 2007 as a fulltime undergraduate student with a four-year length of schooling. Now, he is in his fourth year study and majors in Mining Technology in the School of Mining Engineering, CUMT. His Student Registration Number is 09070000. If he/she obtains all the required credits and satisfies CUMT’s requirements for undergraduate graduation and degree conferring, he/she will graduate in July 2011 with bachelor degree. College Checker (Signature): School of Mining Technology Office of Teaching Administration (Seal): China University of Mining & Technology China University of Mining & Technology 03/ 02/ 2010(dd/mm/yyyy) 03/ 02/ 2010(dd/mm/yyyy)

【最新】特此证明落款英文-word范文模板 (3页)

【最新】特此证明落款英文-word范文模板 本文部分内容来自网络,本司不为其真实性负责,如有异议或侵权请及时联系,本司将予以删除! == 本文为word格式,下载后可随意编辑修改! == 特此证明落款英文 特此证明落款英文 准假证明参考样本【1】 Certification XXX is a student in claXX grade XX in XXXXXX (学校名称).He/ She will travel to America from XX.XX.XXXX to XX.XX.XXXX(出国具体日期某年某月某日)with his / her parents. According to the schedule, he/she will stay in there for almost XX days. All the expenses including the transportation, the accommodation, the meals and the health insurance will be furnished by his / her parents. We hereby guarantee that he /she will obey the laws in your country and will come back to China on time. He /she will continue to study in our school after he /she comes back. Yours sincerely; Name of the leader (领导人姓名) Position of the leader (领导人职位) Signature(领导的签名) School Stamp (学校盖章) Tel: XXX-XXXXXX Add: XXXXXX

毕业论文外文翻译模版

长江大学工程技术学院 毕业设计(论文)外文翻译 外 文 题 目 Matlab Based Interactive Simulation Program for 2D Multisegment Mechanical Systems 译 文 题 目 二维多段机械系统基于Matlab 的 交互式仿真程序 系 部 化学工程系 专 业 班 级 化工60801 学 生 姓 名 李泽辉 指 导 教 师 张 铭 辅 导 教 师 张 铭 完 成 日 期 2012.4.15 顶层配置在管路等,要求设备,所有设要求,对调整使案,编是指机确保机组中资料试

外文翻译 二维多段机械系统基于Matlab 的交互式仿真程序 Henryk Josiński, Adam ?witoński, Karol J?drasiak 著;李泽辉 译 摘要:本文介绍了多段机械系统设计原则,代表的是一个模型的一部分的设计系统,然后扩展 形成的几个部分和模型算法的分类与整合的过程,以及简化步骤的过程叫多段系统。本文还介绍了设计过程的二维多段机械系统的数字模型,和使用Matlab 的软件包来实现仿真。本文还讨论测试运行了一个实验,以及几种算法的计算,实现了每个单一步骤的整合。 1 简介 科学家创造了物理模型和数学模型来表示人类在运动中的各种形式。数学模型 使创建数字模型和进行计算机仿真成为可能。模型试验,可以使人们不必真正的实 验就可以虚拟的进行力和力矩的分解。 本文研究的目的是建立一个简单的多段运动模型,以增加模型的连续性和如何 避免不连续为原则。这是创建一个人类运动模型系统的冰山一角。其使用matlab 程 序包创建的数字模型,可以仿真人类运动。 文献中关于这一主题的内容很广泛。运动的模式和力矩的分解在这些文献中都 有涉猎。动态的平面人体运动模型,提出了解决了迭代矩阵的方法。还值得一提的 是这类项目的参考书目,布鲁贝克等人提出了一个模型——人腿模型,这个以人的 物理运动为基础的平面模型仿真了人腿——一个单一的扭簧和冲击碰撞模型。人腿 模型虽然简单,但是它展示人类的步态在水平地面上的运动特征。布鲁贝克等人还 介绍,在人腿模型的双足行走的基础上,从生物力学的角度而言,符合人体步行的 特征。这个模型具有一个躯干,双腿膝盖和脚踝。它能够合理的表现出人多样的步 态风格。一个仿真人类运动的数学模型反应出了人的部分运动状态。 图1. 力的分解 2 力的分解

证件翻译成英文

证件翻译成英文 “中国人的一生要办多少证件” 这个问题曾经在网络上掀起了一股讨论的热潮。最终广州市政协两个专委会和政协委员曹志伟调研数月得出了令人震惊的答案,中国人的一生最多可能要办400个证件。“中国式办证”一定程度上与过去的单位制度有关,个体做任何事都需要组织的证明,现今则主要是因为社会诚信体系和行政管理水平不高,为了挡住一些造假和便于管理,政府部门不断提高门槛,而提高门槛的办法就是出具各种官方的证明。 可以说过去的中国人,如果要做某件事不是在办证就是在办证的路上,不过随着近年来互联网信息技术的发展,大数据的广泛应用,各部门之间信息通道的逐渐打通,未来需要办理的证件会越来越少,电子化证件代替纸质化证件将会成为新的社会趋势。但是,现阶段“证件”作为用来证明身份、经历的证书和文件,仍然有着重要的作用,尤其是在涉外事宜上,很多证件还要翻译成英文。

证件翻译成英文有哪些特点? 1.证件作为个人身份、经历的证明文件,具有一定的法律小效力,信息在翻译过程中应绝对保证翻译件与原件内容保持绝对一致,用词准确,不允许出现错译漏译现象。 2.证件一般拥有全国统一的固定样式,翻译件不允许私自改变原件的排版,应严格按照原件格式进行排版,涉及印章、徽章、签字等信息时,应截图予以保留,并附翻译说明。 3.证件英语翻译件常被用于申请国外签证、留学、旅游、移民等涉外事宜上,材料提交单位多为各国驻华使领馆或签证中心,因此对于证件英文翻译件都有相应的文件要求,比如英属联邦制国家一般要求提交的翻译件文末附译员声明和译员的个人信息,包括译员签名、译员所在机构地址、联系方式、翻译日期。澳大利亚新西兰等国则要求翻译件必须由NAATI资质的译员翻译,并加盖NAATI 蓝色方形印章。 4.为保证证件英文翻译件的权威性,证件翻译件一般不允许私人翻译,一般需由有资质的正规翻译公司进行翻译,并加盖翻译公司中英文公章,公安部和国家工商总局备案的13位编码翻译专用章和涉外专用章,加盖印章的证件被各国驻华使领馆和签证中心认可,具有一定的权威性。正规翻译公司会附赠公司的工商营业执照副本的复印件,以便于执法机关审核翻译资质。 5.正规的证件翻译公司,是经国家工商总局批准依法设立,拥有统一社会信用代码的工商营业执照,经营范围包含“翻译服务”类目,公司英文名称包含“TRANSLATION”字样。 证件类型

【2018最新】在职证明英文翻译-易修改word版 (2页)

【2018最新】在职证明英文翻译-易修改word版 本文部分内容来自网络,本司不为其真实性负责,如有异议或侵权请及时联系,本司将予以删除! == 本文为word格式,下载后可随意编辑修改! == 在职证明英文翻译 在职证明英文翻译 incumbency certification 你需要看看我的在职证明和请假证明吗? Do you want to have a look of my employment certificate and annual leave certificate? 一份由目前中方雇主出具的准假的在职证明原件,其中包含以下信息:申请人的姓名、职务及目前薪金。 One original employment letter from current employer in China granting leave of absence, and including the following information; applicant's name, position and current salary. 参加选拔者须提供最近三年内有国内、外在职进修结业证明者。 The persons who participate in choosing must offer there is domestic, other in-service training to complete a course certifiers in the most recent three years. 其二,本文将管理层权力与在职消费相结合,证实了管理层权力提高了上市公司在职消费水平,证明了管理层权力理论在我国的适用性,同时丰富了有关在职消费的研究文献。 Second, this paper combines with the management power and non-pecuniary compensation, and confirms that the power of

个人所得税完税证明翻译模板

中华人民共和国个人所得税完税证明 Certificate of Individual Income Tax Payment People’s Republic of China (2009)京地税个征05688310 No. (2009)BLTI-05688310 填发日期: 译法说明: 一、关于“完税”:译为tax payment或tax clearance均可。 二、关于完税证明编号的翻译:此处“(2009)京地税个征05688310”译为“No. (2009)BLTI-05688310”,其中BLT表示“北京地方税务”、I表示“个人所得税”,仅供参考。怎么译都可以,只要像那么回事。 三、关于“税款所属时期”:这里按其涵义译为“charging period of tax”。此外,译者还见过描述性译法,如“which period of time the taxation belongs to”,也是可以的,只不过生硬了一些,belong to不如charge专业和贴切一些。 四、关于“工资薪金所得”:不建议单独用salary或wage。在英语里,salary指公职人员或公司白领工人按星期、月度等固定时段所领的固定报酬;wage指工厂蓝领工人的计件、计时工资。除此之外,加班工资、补贴、津贴等也属于劳动报酬性收入。这些都统称labor compensation。国外很多大公司的工资单、工资条,上面用的就是compensation。 五、关于“实缴税金”:译为paid-in tax / cleared tax等均可。此处译为amount of tax payment。

相关文档
最新文档