如何把wordword文档转化为excell

怎么将Word转为Excel_百度文库
两大类热门资源免费畅读
续费一年阅读会员,立省24元!
怎么将Word转为Excel
阅读已结束,下载文档到电脑
想免费下载更多文档?
定制HR最喜欢的简历
你可能喜欢怎么将Word转为Excel_Excel转换成Word?_百度文库
两大类热门资源免费畅读
续费一年阅读会员,立省24元!
怎么将Word转为Excel_Excel转换成Word?
阅读已结束,下载文档到电脑
想免费下载本文?
定制HR最喜欢的简历
你可能喜欢如何将word,excel,powerpoint等转换成html或pdf - ITeye问答
如何将word,excel,powerpoint等转换成html或pdf
最项目要实现在线预览word,excel等功能,类似163邮箱的附件预览功能,找了很长时间也就是 POI 解析,但是都是解析为txt 纯文本的信息,虽然也可以解析图片出来,但样式已经破坏了。单单再window上部署的话可以有jcom,jacob这个几种方法来实现,但都依赖于 dll文件,在linux部署不了。想用Flexpaper来实践,但有几点疑问:
如果使用 Flexpaper 是不是要先将 word, excel等转换成 PDF,然后在使用 swftools 将PDF转换成 swf
疑问:
1. 将 word, excel, ppt 等转换成 PDF 应该使用什么开源的java类库?
2. java 如何调用 swftools 在 Linux 上将PDF转换成 swf文件?
问题补充:sam.ds.chen 写道不妨试试FlashPaper,它可以把任意可打印的文档转换成PDF或SWF。而SWF能满足你的“在线浏览”需求。
在windows xp下的示例(不知道FlashPaper有没有Linux版的):
E:\Portable\flashpaper2.2&FlashPrinter.exe z:/temp/i.xlsx -o z:/temp/o.swf
成功地将一XLSX文档转换成了SWF文件。
如果使用 Flexpaper 是不是要先将 word, excel等转换成 PDF,然后在使用 swftools 将PDF转换成 swf
疑问:
1. 将 word, excel, ppt 等转换成 PDF 应该使用什么开源的java类库?
2. java 如何调用 swftools 在 Linux 上将PDF转换成 swf文件?
问题补充:lxbccsu 写道POI在Excel转换操作方面还可以,但在Word、powerpoint转换操作上还不完善,特别是格式输出,非常的不方便;至于jcom、jacob、swftools等tools,我没有使用过,就不好发表意见了。
下面说一下前不久我在项目上使用过的方法,并介绍一种后来学习过的方法,希望能帮助你:
第一种方法:
需求是要产生格式一致的文档、报表(word和excel),要求是字体、颜色、缩进、大小等等都要一致,对于这些文档来说,其样式基本都是固定的,变化的也就是那些实际的业务数据;
采用的技术是 xml + servlet + dom4j;
思路:先制作一份模版,另存为xml格式(注意是另存为产生xml),以这个xml文件为模版,预览请求时读取出数据,dom4j来解析操作xml模版转换成一份包含有业务数据的xml,最后servlet用那份xml来响应生成你要的文档;
word和excel都可以转换为xml,如果懂WordML, SpreadsheetML,可以直接编写xml,为什么能转换成xml参考/china/msdn/library/office/office/Word2007XMLFormat.mspx?mfr=true
上面方法对于样式是不用考虑的,所以生成的文档样式风格高度一致;只需要把数据放到相应的元素标签中(如果是多个相同的item,就是clone出相应的xml元素标签,填充数据,再放入相应的父元素中,注意dom4j clone出的元素不能读取操作,所以一般不要对clone的元素操作),一切共有的元素直接定义修改xml模版就可以了.
第二种方法:
采用技术:jodconverter + OpenOffice
至于怎样做,可以参考这里:
/opensource/jodconverter
对于java开发人员来说,这是很好的转换方法.推荐这种方法.
这里也介绍了操作方法:
/wordtech/1207
xml + servlet + dom4j转换的有没有什么例子可以参考下?
采纳的答案
生成响应的Servlet:
DownloadServlet.java
import java.io.IOE
import javax.servlet.ServletE
import javax.servlet.http.HttpS
import javax.servlet.http.HttpServletR
import javax.servlet.http.HttpServletR
import org.dom4j.D
import org.dom4j.io.OutputF
import org.dom4j.io.XMLW
@SuppressWarnings("serial")
public class DownloadServlet extends HttpServlet {
// static BaseCVFactory&XWPFDocument& wordFactory =
static BaseCVFactory&Document& wordMLFactory =
public DownloadServlet() {
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
doPost(request, response);
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("application/msword");
response.setHeader("Content-disposition","filename=ExampleCV.doc");
OutputFormat xmlFormat = new OutputFormat();
xmlFormat.setEncoding("UTF-8");
XMLWriter xmlWriter = new XMLWriter(response.getOutputStream(),xmlFormat);
xmlWriter.write(wordMLFactory.generate());
xmlWriter.flush();
xmlWriter.close();
public void init() throws ServletException {
wordFactory = new WordCVFactory(DownloadServlet.getPerson());
wordMLFactory = new WordMLCVFactory();
public void destroy() {
super.destroy();
&description&&/description&
&display-name&DownServlet&/display-name&
&servlet-name&DownServlet&/servlet-name&
&servlet-class&test.DownloadServlet&/servlet-class&
&/servlet&
&servlet-mapping&
&servlet-name&DownServlet&/servlet-name&
&url-pattern&/download&/url-pattern&
&/servlet-mapping&
JSP页面:
test.jsp
&%@ page language="java" contentType="text/ charset=UTF-8"
pageEncoding="UTF-8"%&
&!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&
&meta http-equiv="Content-Type" content="text/ charset=UTF-8"&
&title&Insert title here&/title&
&a href="&%=request.getContextPath() %&/download"&download&/a&
文档生成类:
BaseCVFactory.java
public abstract class BaseCVFactory&T& {
protected T cvFile =
public abstract T generate();
WordMLCVFactory.java
import java.io.F
import java.io.FileInputS
import java.io.FileNotFoundE
import java.util.ArrayL
import java.util.L
import org.dom4j.D
import org.dom4j.DocumentE
import org.dom4j.E
import org.dom4j.io.SAXR
public class WordMLCVFactory extends BaseCVFactory&Document& {
public Document generate() {
cvFile = readWordML();
getBodyElement();
generateHead();
generateHighLight();
genertateWorkHistory();
generateEducation();
generateLanguage();
generateSkill();
return cvF
* Generate word CV head
private void generateHead() {
Element element = getHeadNameElement();
element.setText("XXX");
* Generate word CV HighLight
private void generateHighLight() {
List&String& highLights = new ArrayList&String&();
highLights.add("HighLight1");
highLights.add("HighLight2");
highLights.add("HighLight3");
Element element = getHighLightContentElement();
Element textElement = (Element)((Element)(element.elements().get(1))).elements().get(1);
Element parent = element.getParent();
parent.remove(element);
for (String hl : highLights) {
textElement.setText(hl);
parent.add((Element)element.clone());
* Generate word CV Work History
private void genertateWorkHistory() {
* Generate word CV Educations
private void generateEducation() {
* Generate word CV Languages
private void generateLanguage() {
List&LanguageAndDesc& languages = new ArrayList&LanguageAndDesc&();
LanguageAndDesc la = new LanguageAndDesc("Language1(good)");
languages.add(la);
la = new LanguageAndDesc("Language2(reading)");
languages.add(la);
Element languageElement = getLanguageElement();
Element languageContentElement = (Element)languageElement.elements().get(1);
Element languageText = (Element)((Element)((Element)languageContentElement.elements().get(1))).elements().get(0);
languageElement.remove(languageContentElement);
for (LanguageAndDesc language : languages) {
languageText.setText(language.getLanguageTypeAndDesc());
languageElement.add((Element)languageContentElement.clone());
* Generate word CV Skills
private void generateSkill() {
private Document readWordML(){
Document wordML =
SAXReader reader = new SAXReader();
wordML = reader.read(new FileInputStream(new File("D:/Workspaces/eclipseforjee/javaApp/src/cn/javaeye/test/CVWordML.xml")));
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (DocumentException e) {
e.printStackTrace();
return wordML;
private Element getHeadNameElement(){
Element element = (Element)this.element.elements().get(0);
element = (Element)((Element)(element.elements().get(0))).elements().get(2);
element = (Element)((Element)element.elements().get(1));
private Element getHighLightContentElement(){
Element element = (Element)((Element)(this.element.elements().get(1))).elements().get(1);
private void getBodyElement() {
element = (Element)cvFile.getRootElement().elements().get(10);
private Element getLanguageElement(){
Element element = (Element)(this.element.elements().get(5));
LanguageAndDesc.java
public class LanguageAndDesc {
private String languageTypeAndD
public LanguageAndDesc(String languageTypeAndDesc){
this.languageTypeAndDesc = languageTypeAndD
public String getLanguageTypeAndDesc() {
return languageTypeAndD
现在poi3.8已经支持将word转化为html了哦,不过对于word中包含表格的,表格中的数据显示有时有点问题,我现在就遇到这个问题,不知道如何解决,你的问题解决了吗?谢谢!!
&wsp:rsid wsp:val="00EE1D62" /&
&wsp:rsid wsp:val="00F93A89" /&
&/wsp:rsids&
&/w:docPr&
&wx:sub-section&
&w:p wsp:rsidR="004F16BB" wsp:rsidRDefault="004F16BB"&
&w:widowControl /&
&w:spacing w:before="120" /&
&w:jc w:val="center" /&
&w:outlineLvl w:val="0" /&
&w:sz w:val="36" /&
&w:sz-cs w:val="36" /&
&w:noProof /&
&w:sz w:val="36" /&
&w:sz-cs w:val="36" /&
&w:lang w:fareast="JA" /&
&v:shapetype id="_x" coordsize="" o:spt="75"
o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
stroked="f"&
&v:stroke joinstyle="round" /&
&v:formulas&
&v:f eqn="if lineDrawn pixelLineWidth 0" /&
&v:f eqn="sum @0 1 0" /&
&v:f eqn="sum 0 0 @1" /&
&v:f eqn="prod @2 1 2" /&
&v:f eqn="prod @3 21600 pixelWidth" /&
&v:f eqn="prod @3 21600 pixelHeight" /&
&v:f eqn="sum @0 0 1" /&
&v:f eqn="prod @6 1 2" /&
&v:f eqn="prod @7 21600 pixelWidth" /&
&v:f eqn="sum @8 21600 0" /&
&v:f eqn="prod @7 21600 pixelHeight" /&
&v:f eqn="sum @10 21600 0" /&
&/v:formulas&
&v:path o:extrusionok="f" gradientshapeok="t"
o:connecttype="rect" /&
&o:lock v:ext="edit" aspectratio="t" /&
&/v:shapetype&
&w:r wsp:rsidR="00EE1D62"&
&w:rFonts w:hint="fareast" /&
&w:sz w:val="36" /&
&w:sz-cs w:val="36" /&
&w:t&Name&/w:t&
&/wx:sub-section&
&wx:sub-section&
&wx:pBdrGroup&
&wx:borders&
&wx:bottom wx:val="solid" wx:bdrwidth="10" wx:space="1"
wx:color="auto" /&
&/wx:borders&
&w:p wsp:rsidR="004F16BB" wsp:rsidRDefault="00EE1D62"&
&w:widowControl /&
&w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="1"
w:color="auto" /&
&w:spacing w:before="480" /&
&w:outlineLvl w:val="0" /&
&w:b-cs /&
&w:sz w:val="28" /&
&w:sz-cs w:val="28" /&
&w:b-cs /&
&w:sz w:val="28" /&
&w:sz-cs w:val="28" /&
&w:t&HIGHLIGHTS OF QUALIFICATIONS&/w:t&
&/wx:pBdrGroup&
&w:p wsp:rsidR="004F16BB" wsp:rsidRDefault="00EE1D62"&
&w:widowControl /&
&w:listPr&
&w:ilvl w:val="0" /&
&w:ilfo w:val="9" /&
&wx:t wx:val="·" /&
&wx:font wx:val="Symbol" /&
&/w:listPr&
&w:tab w:val="clear" w:pos="360" /&
&w:tab w:val="list" w:pos="315" /&
&w:spacing w:before="200" /&
&w:ind w:left="317" w:hanging="317" /&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&w:rFonts w:hint="fareast" /&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&w:t&5 years in applying OOP (object-oriented programming) techniques to build small, medium and large scale enterprise applications using MS SQL Server, Oracle, Sybase, C# and Java.&/w:t&
&/wx:sub-section&
&wx:sub-section&
&wx:pBdrGroup&
&wx:borders&
&wx:bottom wx:val="solid" wx:bdrwidth="10" wx:space="1"
wx:color="auto" /&
&/wx:borders&
&w:p wsp:rsidR="004F16BB" wsp:rsidRDefault="00EE1D62"&
&w:widowControl /&
&w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="1"
w:color="auto" /&
&w:spacing w:before="480" /&
&w:outlineLvl w:val="0" /&
&w:b-cs /&
&w:sz w:val="28" /&
&w:sz-cs w:val="28" /&
&w:b-cs /&
&w:sz w:val="28" /&
&w:sz-cs w:val="28" /&
&w:t&WORK HISTORY&/w:t&
&/wx:pBdrGroup&
&w:p wsp:rsidR="004F16BB" wsp:rsidRDefault="00EE1D62"&
&w:widowControl /&
&w:tab w:val="right" w:pos="9026" /&
&w:spacing w:before="360" /&
&w:sz w:val="22" /&
&w:u w:val="single" /&
&w:rFonts w:hint="fareast" /&
&w:sz w:val="22" /&
&w:u w:val="single" /&
&w:t&XXX Co.,Ltd.&/w:t&
&w:sz w:val="22" /&
&w:u w:val="single" /&
&w:rFonts w:hint="fareast" /&
&w:sz w:val="22" /&
&w:u w:val="single" /&
&w:t&Oct 2007 &/w:t&
&w:rFonts w:hint="fareast" /&
&wx:font wx:val="宋体" /&
&w:sz w:val="22" /&
&w:u w:val="single" /&
&w:t&–&/w:t&
&w:rFonts w:hint="fareast" /&
&w:sz w:val="22" /&
&w:u w:val="single" /&
&w:t& Present&/w:t&
&/wx:sub-section&
&wx:sub-section&
&w:p wsp:rsidR="004F16BB" wsp:rsidRDefault="00EE1D62"&
&w:widowControl /&
&w:spacing w:before="40" /&
&w:outlineLvl w:val="0" /&
&w:b-cs /&
&w:i-cs /&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&w:b-cs /&
&w:i-cs /&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&w:t&Senior D&/w:t&
&w:b-cs /&
&w:i-cs /&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&w:t&eveloper / DBA&/w:t&
&w:p wsp:rsidR="004F16BB" wsp:rsidRDefault="00EE1D62"&
&w:widowControl /&
&w:listPr&
&w:ilvl w:val="0" /&
&w:ilfo w:val="9" /&
&wx:t wx:val="·" /&
&wx:font wx:val="Symbol" /&
&/w:listPr&
&w:tab w:val="clear" w:pos="360" /&
&w:tab w:val="list" w:pos="315" /&
&w:spacing w:before="200" /&
&w:ind w:left="317" w:hanging="317" /&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&w:u w:val="single" /&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&w:u w:val="single" /&
&w:t&TEVA (Direct Energy, a gas/electric utility)&/w:t&
&w:p wsp:rsidR="004F16BB" wsp:rsidRDefault="00EE1D62"
wsp:rsidP="00F93A89"&
&w:pStyle w:val="3" /&
&w:widowControl /&
&w:listPr&
&w:ilvl w:val="0" /&
&w:ilfo w:val="0" /&
&/w:listPr&
&w:tab w:val="left" w:pos="360" /&
&w:spacing w:before="160" /&
&w:ind w:left-chars="150" w:left="315" /&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&w:t&Project Description: TEVA is DE’s system for [energy] futures contract valuation and reporting. 80% of the system logic was implemented as Oracle 10g stored procedures, which had low performance d&/w:t&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&w:t&ue to a legacy of inefficient coding, making it difficult to maintain. The purpose of this project is to implement additional business logic and re-factor the stored procedures to streamline its operation and maintainability&/w:t&
&w:p wsp:rsidR="004F16BB" wsp:rsidRDefault="00EE1D62"&
&w:widowControl /&
&w:spacing w:before="160" /&
&w:ind w:left="317" /&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&w:rFonts w:hint="fareast" /&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&w:t&Responsibilities:&/w:t&
&w:p wsp:rsidR="004F16BB" wsp:rsidRDefault="00EE1D62"&
&w:widowControl /&
&w:listPr&
&w:ilvl w:val="0" /&
&w:ilfo w:val="11" /&
&wx:t wx:val="-" /&
&wx:font wx:val="Symbol" /&
&/w:listPr&
&w:tab w:val="clear" w:pos="360" /&
&w:tab w:val="left" w:pos="945" /&
&w:spacing w:before="80" /&
&w:ind w:left="951" w:hanging="317" /&
&w:sz w:val="22" /&
&w:rFonts w:hint="fareast" /&
&w:sz w:val="22" /&
&w:t&Maintain and optimize the database performance.&/w:t&
&w:p wsp:rsidR="004F16BB" wsp:rsidRDefault="00EE1D62"&
&w:widowControl /&
&w:spacing w:before="160" /&
&w:ind w:left="317" /&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&w:rFonts w:hint="fareast" /&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&w:t&Technologies: Oracle 10g.&/w:t&
&/wx:sub-section&
&wx:sub-section&
&wx:pBdrGroup&
&wx:borders&
&wx:bottom wx:val="solid" wx:bdrwidth="10" wx:space="1"
wx:color="auto" /&
&/wx:borders&
&w:p wsp:rsidR="004F16BB" wsp:rsidRDefault="00EE1D62"&
&w:widowControl /&
&w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="1"
w:color="auto" /&
&w:spacing w:before="480" /&
&w:outlineLvl w:val="0" /&
&w:b-cs /&
&w:sz w:val="28" /&
&w:sz-cs w:val="28" /&
&w:b-cs /&
&w:sz w:val="28" /&
&w:sz-cs w:val="28" /&
&w:t&EDUCATION&/w:t&
&/wx:pBdrGroup&
&w:p wsp:rsidR="004F16BB" wsp:rsidRDefault="00EE1D62"&
&w:widowControl /&
&w:spacing w:before="200" /&
&w:ind w:left="2520" w:hanging="2520" /&
&w:jc w:val="left" /&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&w:t&Sep 1999 – Jun 2003&/w:t&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&st1:place w:st="on"&
&st1:City w:st="on"&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&w:u w:val="single" /&
&w:t&XXX University of Technology&/w:t&
&/st1:City&
&/st1:place&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&w:u w:val="single" /&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&w:t&BS, Computer Science and Technology&/w:t&
&/wx:sub-section&
&wx:sub-section&
&wx:pBdrGroup&
&wx:borders&
&wx:bottom wx:val="solid" wx:bdrwidth="10" wx:space="1"
wx:color="auto" /&
&/wx:borders&
&w:p wsp:rsidR="004F16BB" wsp:rsidRDefault="00EE1D62"&
&w:widowControl /&
&w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="1"
w:color="auto" /&
&w:spacing w:before="480" /&
&w:outlineLvl w:val="0" /&
&w:b-cs /&
&w:sz w:val="28" /&
&w:sz-cs w:val="28" /&
&w:b-cs /&
&w:sz w:val="28" /&
&w:sz-cs w:val="28" /&
&w:t&LANGUAGES&/w:t&
&/wx:pBdrGroup&
&w:p wsp:rsidR="004F16BB" wsp:rsidRDefault="00EE1D62"&
&w:pStyle w:val="C" /&
&w:widowControl /&
&w:listPr&
&w:ilvl w:val="0" /&
&w:ilfo w:val="9" /&
&wx:t wx:val="·" /&
&wx:font wx:val="Symbol" /&
&/w:listPr&
&w:tab w:val="list" w:pos="315" /&
&w:spacing w:before="160" /&
&w:ind w:left="317" w:hanging="317" /&
&w:t&English (CET-4, reading/writing)&/w:t&
&/wx:sub-section&
&wx:sub-section&
&wx:pBdrGroup&
&wx:borders&
&wx:bottom wx:val="solid" wx:bdrwidth="10" wx:space="1"
wx:color="auto" /&
&/wx:borders&
&w:p wsp:rsidR="004F16BB" wsp:rsidRDefault="00EE1D62"&
&w:widowControl /&
&w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="1"
w:color="auto" /&
&w:spacing w:before="480" /&
&w:outlineLvl w:val="0" /&
&w:b-cs /&
&w:sz w:val="28" /&
&w:sz-cs w:val="28" /&
&w:b-cs /&
&w:sz w:val="28" /&
&w:sz-cs w:val="28" /&
&w:t&TECHNICAL & BUSINESS SKILLS&/w:t&
&/wx:pBdrGroup&
&w:p wsp:rsidR="004F16BB" wsp:rsidRDefault="00EE1D62"&
&w:pStyle w:val="3" /&
&w:widowControl /&
&w:listPr&
&w:ilvl w:val="0" /&
&w:ilfo w:val="0" /&
&/w:listPr&
&w:tab w:val="left" w:pos="420" /&
&w:spacing w:before="200" /&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&w:t&Java, JSP, JSF, Spring, Hibernate, Struts, WebService, Junit, Log4j, Ant, Ajax, C#, Web UI, HTML, CSS, JavaScript, JBoss, Tomcat, Oracle, MS SQL Server, SQL, PL/SQL, Trans-SQL&/w:t&
&/wx:sub-section&
&w:sectPr wsp:rsidR="004F16BB" wsp:rsidSect="004F16BB"&
&w:ftr w:type="even"&
&wx:pBdrGroup&
&wx:jc wx:val="right" /&
&w:p wsp:rsidR="004F16BB" wsp:rsidRDefault="004F16BB"&
&w:pStyle w:val="a3" /&
&w:framePr w:wrap="around" w:vanchor="text" w:hanchor="margin"
w:x-align="right" w:y="1" /&
&w:rStyle w:val="a4" /&
&w:rStyle w:val="a4" /&
&w:fldChar w:fldCharType="begin" /&
&w:r wsp:rsidR="00EE1D62"&
&w:rStyle w:val="a4" /&
&w:instrText&PAGE
&/w:instrText&
&w:rStyle w:val="a4" /&
&w:fldChar w:fldCharType="end" /&
&/wx:pBdrGroup&
&w:p wsp:rsidR="004F16BB" wsp:rsidRDefault="004F16BB"&
&w:pStyle w:val="a3" /&
&w:ind w:right="360" /&
&w:ftr w:type="odd"&
&w:p wsp:rsidR="004F16BB" wsp:rsidRDefault="00EE1D62"&
&w:pStyle w:val="a3" /&
&w:jc w:val="right" /&
&w:t&Page &/w:t&
&w:r wsp:rsidR="004F16BB"&
&w:sz w:val="24" /&
&w:sz-cs w:val="24" /&
&w:fldChar w:fldCharType="begin" /&
&w:instrText& PAGE &/w:instrText&
&w:r wsp:rsidR="004F16BB"&
&w:sz w:val="24" /&
&w:sz-cs w:val="24" /&
&w:fldChar w:fldCharType="separate" /&
&w:r wsp:rsidR="00F93A89"&
&w:noProof /&
&w:t&1&/w:t&
&w:r wsp:rsidR="004F16BB"&
&w:sz w:val="24" /&
&w:sz-cs w:val="24" /&
&w:fldChar w:fldCharType="end" /&
&w:t& of &/w:t&
&w:r wsp:rsidR="004F16BB"&
&w:sz w:val="24" /&
&w:sz-cs w:val="24" /&
&w:fldChar w:fldCharType="begin" /&
&w:instrText& NUMPAGES
&/w:instrText&
&w:r wsp:rsidR="004F16BB"&
&w:sz w:val="24" /&
&w:sz-cs w:val="24" /&
&w:fldChar w:fldCharType="separate" /&
&w:r wsp:rsidR="00F93A89"&
&w:noProof /&
&w:t&1&/w:t&
&w:r wsp:rsidR="004F16BB"&
&w:sz w:val="24" /&
&w:sz-cs w:val="24" /&
&w:fldChar w:fldCharType="end" /&
&w:pgSz w:w="11906" w:h="16838" w:code="9" /&
&w:pgMar w:top="1152" w:right="1440" w:bottom="1296" w:left="1440"
w:header="720" w:footer="720" w:gutter="0" /&
&w:cols w:space="425" /&
&w:docGrid w:line-pitch="312" /&
&/w:sectPr&
&/w:wordDocument&
示例如下:
一个简单的简历生成,使用word格式,只修改了模版中Name,HighLight,和L
简历模版:CVWordML.xml
&?xml version="1.0" encoding="UTF-8" standalone="yes"?&
&?mso-application progid="Word.Document"?&
&w:wordDocument xmlns:aml="/aml/2001/core"
xmlns:dt="uuid:C2F-11d1-A29F-00AA00C14882"
xmlns:ve="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:w10="urn:schemas-microsoft-com:office:word"
xmlns:w="/office/word/2003/wordml"
xmlns:wx="/office/word/2003/auxHint"
xmlns:wsp="/office/word/2003/wordml/sp2"
xmlns:sl="/schemaLibrary/2003/core"
xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
w:macrosPresent="no" w:embeddedObjPresent="no" w:ocxPresent="no"
xml:space="preserve"&
&w:ignoreSubtree w:val="/office/word/2003/wordml/sp2" /&
&o:SmartTagType o:namespaceuri="urn:schemas-microsoft-com:office:smarttags" o:name="place" /&
&o:SmartTagType o:namespaceuri="urn:schemas-microsoft-com:office:smarttags" o:name="City" /&
&o:DocumentProperties&
&o:LastAuthor&XXX&/o:LastAuthor&
&o:Revision&2&/o:Revision&
&o:TotalTime&0&/o:TotalTime&
&o:Created&T11:30:00Z&/o:Created&
&o:LastSaved&T11:30:00Z&/o:LastSaved&
&o:Pages&1&/o:Pages&
&o:Words&180&/o:Words&
&o:Characters&1028&/o:Characters&
&o:Lines&8&/o:Lines&
&o:Paragraphs&2&/o:Paragraphs&
&o:CharactersWithSpaces&1206&/o:CharactersWithSpaces&
&o:Version&12&/o:Version&
&/o:DocumentProperties&
&w:defaultFonts w:ascii="Times New Roman" w:fareast="宋体"
w:h-ansi="Times New Roman" w:cs="Times New Roman" /&
&w:font w:name="Times New Roman"&
&w:panose-1 w:val="" /&
&w:charset w:val="00" /&
&w:family w:val="Roman" /&
&w:pitch w:val="variable" /&
&w:sig w:usb-0="E0002AFF" w:usb-1="C0007841" w:usb-2=""
w:usb-3="" w:csb-0="000001FF" w:csb-1="" /&
&w:font w:name="Courier New"&
&w:panose-1 w:val="" /&
&w:charset w:val="00" /&
&w:family w:val="Modern" /&
&w:notTrueType /&
&w:pitch w:val="fixed" /&
&w:sig w:usb-0="" w:usb-1="" w:usb-2=""
w:usb-3="" w:csb-0="" w:csb-1="" /&
&w:font w:name="Symbol"&
&w:panose-1 w:val="" /&
&w:charset w:val="02" /&
&w:family w:val="Roman" /&
&w:pitch w:val="variable" /&
&w:sig w:usb-0="" w:usb-1="" w:usb-2=""
w:usb-3="" w:csb-0="" w:csb-1="" /&
&w:font w:name="Wingdings"&
&w:panose-1 w:val="" /&
&w:charset w:val="02" /&
&w:family w:val="auto" /&
&w:pitch w:val="variable" /&
&w:sig w:usb-0="" w:usb-1="" w:usb-2=""
w:usb-3="" w:csb-0="" w:csb-1="" /&
&w:font w:name="宋体"&
&w:altName w:val="SimSun" /&
&w:panose-1 w:val="" /&
&w:charset w:val="86" /&
&w:family w:val="auto" /&
&w:pitch w:val="variable" /&
&w:sig w:usb-0="" w:usb-1="288F0000" w:usb-2=""
w:usb-3="" w:csb-0="" w:csb-1="" /&
&w:font w:name="Cambria Math"&
&w:panose-1 w:val="" /&
&w:charset w:val="01" /&
&w:family w:val="Roman" /&
&w:notTrueType /&
&w:pitch w:val="variable" /&
&w:sig w:usb-0="" w:usb-1="" w:usb-2=""
w:usb-3="" w:csb-0="" w:csb-1="" /&
&w:font w:name="@宋体"&
&w:panose-1 w:val="" /&
&w:charset w:val="86" /&
&w:family w:val="auto" /&
&w:pitch w:val="variable" /&
&w:sig w:usb-0="" w:usb-1="288F0000" w:usb-2=""
w:usb-3="" w:csb-0="" w:csb-1="" /&
&/w:fonts&
&w:listDef w:listDefId="0"&
&w:lsid w:val="" /&
&w:plt w:val="Multilevel" /&
&w:tmpl w:val="2620FB22" /&
&w:lvl w:ilvl="0"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="840" /&
&w:ind w:left="840" w:hanging="420" /&
&w:rFonts w:ascii="Symbol" w:h-ansi="Symbol" w:hint="default" /&
&w:lvl w:ilvl="1"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="1260" /&
&w:ind w:left="1260" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="2"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="1680" /&
&w:ind w:left="1680" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="3"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2100" /&
&w:ind w:left="2100" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="4"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2520" /&
&w:ind w:left="2520" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="5"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2940" /&
&w:ind w:left="2940" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="6"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="3360" /&
&w:ind w:left="3360" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="7"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="3780" /&
&w:ind w:left="3780" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="8"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="4200" /&
&w:ind w:left="4200" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&/w:listDef&
&w:listDef w:listDefId="1"&
&w:lsid w:val="" /&
&w:plt w:val="Multilevel" /&
&w:tmpl w:val="" /&
&w:lvl w:ilvl="0"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:pStyle w:val="3" /&
&w:lvlText w:val="-" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="360" /&
&w:ind w:left="360" w:hanging="360" /&
&w:rFonts w:ascii="Times New Roman" w:h-ansi="Times New Roman"
w:hint="default" /&
&w:b w:val="off" /&
&w:i w:val="off" /&
&w:sz w:val="22" /&
&w:lvl w:ilvl="1"&
&w:start w:val="1" /&
&w:nfc w:val="4" /&
&w:lvlText w:val="%2)" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="840" /&
&w:ind w:left="840" w:hanging="420" /&
&w:lvl w:ilvl="2"&
&w:start w:val="1" /&
&w:nfc w:val="2" /&
&w:lvlText w:val="%3." /&
&w:lvlJc w:val="right" /&
&w:tab w:val="list" w:pos="1260" /&
&w:ind w:left="1260" w:hanging="420" /&
&w:lvl w:ilvl="3"&
&w:start w:val="1" /&
&w:lvlText w:val="%4." /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="1680" /&
&w:ind w:left="1680" w:hanging="420" /&
&w:lvl w:ilvl="4"&
&w:start w:val="1" /&
&w:nfc w:val="4" /&
&w:lvlText w:val="%5)" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2100" /&
&w:ind w:left="2100" w:hanging="420" /&
&w:lvl w:ilvl="5"&
&w:start w:val="1" /&
&w:nfc w:val="2" /&
&w:lvlText w:val="%6." /&
&w:lvlJc w:val="right" /&
&w:tab w:val="list" w:pos="2520" /&
&w:ind w:left="2520" w:hanging="420" /&
&w:lvl w:ilvl="6"&
&w:start w:val="1" /&
&w:lvlText w:val="%7." /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2940" /&
&w:ind w:left="2940" w:hanging="420" /&
&w:lvl w:ilvl="7"&
&w:start w:val="1" /&
&w:nfc w:val="4" /&
&w:lvlText w:val="%8)" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="3360" /&
&w:ind w:left="3360" w:hanging="420" /&
&w:lvl w:ilvl="8"&
&w:start w:val="1" /&
&w:nfc w:val="2" /&
&w:lvlText w:val="%9." /&
&w:lvlJc w:val="right" /&
&w:tab w:val="list" w:pos="3780" /&
&w:ind w:left="3780" w:hanging="420" /&
&/w:listDef&
&w:listDef w:listDefId="2"&
&w:lsid w:val="06AA48BF" /&
&w:plt w:val="Multilevel" /&
&w:tmpl w:val="0BE0FB10" /&
&w:listStyleLink w:val="Projectexperiencelist" /&
&/w:listDef&
&w:listDef w:listDefId="3"&
&w:lsid w:val="06DE107F" /&
&w:plt w:val="Multilevel" /&
&w:tmpl w:val="C156AD52" /&
&w:lvl w:ilvl="0"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="420" /&
&w:ind w:left="420" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:sz w:val="20" /&
&w:sz-cs w:val="20" /&
&w:lvl w:ilvl="1"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="840" /&
&w:ind w:left="840" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="2"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="1260" /&
&w:ind w:left="1260" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="3"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="1680" /&
&w:ind w:left="1680" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="4"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2100" /&
&w:ind w:left="2100" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="5"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2520" /&
&w:ind w:left="2520" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="6"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2940" /&
&w:ind w:left="2940" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="7"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="3360" /&
&w:ind w:left="3360" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="8"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="3780" /&
&w:ind w:left="3780" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&/w:listDef&
&w:listDef w:listDefId="4"&
&w:lsid w:val="0B7D5E4D" /&
&w:plt w:val="HybridMultilevel" /&
&w:tmpl w:val="C156AD52" /&
&w:lvl w:ilvl="0" w:tplc="670CCD56"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="420" /&
&w:ind w:left="420" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:sz w:val="20" /&
&w:sz-cs w:val="20" /&
&w:lvl w:ilvl="1" w:tplc="0E485C16" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="840" /&
&w:ind w:left="840" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="2" w:tplc="3912AF4A" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="1260" /&
&w:ind w:left="1260" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="3" w:tplc="16BEC88E" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="1680" /&
&w:ind w:left="1680" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="4" w:tplc="7B92363E" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2100" /&
&w:ind w:left="2100" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="5" w:tplc="4C9EBAAC" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2520" /&
&w:ind w:left="2520" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="6" w:tplc="FF866B1C" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2940" /&
&w:ind w:left="2940" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="7" w:tplc="7B7495AC" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="3360" /&
&w:ind w:left="3360" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="8" w:tplc="8AF682FA" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="3780" /&
&w:ind w:left="3780" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&/w:listDef&
&w:listDef w:listDefId="5"&
&w:lsid w:val="10A072A1" /&
&w:plt w:val="HybridMultilevel" /&
&w:tmpl w:val="7D303C92" /&
&w:lvl w:ilvl="0" w:tplc="AE44D712"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="360" /&
&w:ind w:left="360" w:hanging="360" /&
&w:rFonts w:ascii="Symbol" w:h-ansi="Symbol" w:hint="default" /&
&w:b w:val="off" /&
&w:i w:val="off" /&
&w:color w:val="auto" /&
&w:sz w:val="18" /&
&w:sz-cs w:val="18" /&
&w:lvl w:ilvl="1" w:tplc=""&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="840" /&
&w:ind w:left="840" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:b w:val="off" /&
&w:i w:val="off" /&
&w:color w:val="auto" /&
&w:sz w:val="18" /&
&w:sz-cs w:val="18" /&
&w:lvl w:ilvl="2" w:tplc="" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="1260" /&
&w:ind w:left="1260" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="3" w:tplc="" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="1680" /&
&w:ind w:left="1680" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="4" w:tplc="" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2100" /&
&w:ind w:left="2100" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="5" w:tplc="" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2520" /&
&w:ind w:left="2520" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="6" w:tplc="" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2940" /&
&w:ind w:left="2940" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="7" w:tplc="" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="3360" /&
&w:ind w:left="3360" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="8" w:tplc="" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="3780" /&
&w:ind w:left="3780" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&/w:listDef&
&w:listDef w:listDefId="6"&
&w:lsid w:val="292A6F54" /&
&w:plt w:val="Multilevel" /&
&w:tmpl w:val="0BE0FB10" /&
&w:listStyleLink w:val="Projectexperiencelist" /&
&/w:listDef&
&w:listDef w:listDefId="7"&
&w:lsid w:val="2F0D5183" /&
&w:plt w:val="HybridMultilevel" /&
&w:tmpl w:val="" /&
&w:lvl w:ilvl="0" w:tplc="238AB5CA"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:pStyle w:val="Hightline" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="360" /&
&w:ind w:left="360" w:hanging="360" /&
&w:rFonts w:ascii="Symbol" w:h-ansi="Symbol" w:hint="default" /&
&w:b w:val="off" /&
&w:i w:val="off" /&
&w:color w:val="auto" /&
&w:sz w:val="18" /&
&w:sz-cs w:val="18" /&
&w:lvl w:ilvl="1" w:tplc="877C2436"&
&w:start w:val="1" /&
&w:nfc w:val="4" /&
&w:lvlText w:val="%2)" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="840" /&
&w:ind w:left="840" w:hanging="420" /&
&w:lvl w:ilvl="2" w:tplc="95A2DB4E" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="2" /&
&w:lvlText w:val="%3." /&
&w:lvlJc w:val="right" /&
&w:tab w:val="list" w:pos="1260" /&
&w:ind w:left="1260" w:hanging="420" /&
&w:lvl w:ilvl="3" w:tplc="CB425ACE" w:tentative="on"&
&w:start w:val="1" /&
&w:lvlText w:val="%4." /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="1680" /&
&w:ind w:left="1680" w:hanging="420" /&
&w:lvl w:ilvl="4" w:tplc="EE223D92" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="4" /&
&w:lvlText w:val="%5)" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2100" /&
&w:ind w:left="2100" w:hanging="420" /&
&w:lvl w:ilvl="5" w:tplc="9BCA263C" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="2" /&
&w:lvlText w:val="%6." /&
&w:lvlJc w:val="right" /&
&w:tab w:val="list" w:pos="2520" /&
&w:ind w:left="2520" w:hanging="420" /&
&w:lvl w:ilvl="6" w:tplc="59F43BCE" w:tentative="on"&
&w:start w:val="1" /&
&w:lvlText w:val="%7." /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2940" /&
&w:ind w:left="2940" w:hanging="420" /&
&w:lvl w:ilvl="7" w:tplc="DFDCB24C" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="4" /&
&w:lvlText w:val="%8)" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="3360" /&
&w:ind w:left="3360" w:hanging="420" /&
&w:lvl w:ilvl="8" w:tplc="AEA228F2" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="2" /&
&w:lvlText w:val="%9." /&
&w:lvlJc w:val="right" /&
&w:tab w:val="list" w:pos="3780" /&
&w:ind w:left="3780" w:hanging="420" /&
&/w:listDef&
&w:listDef w:listDefId="8"&
&w:lsid w:val="319B510B" /&
&w:plt w:val="Multilevel" /&
&w:tmpl w:val="919E068C" /&
&w:lvl w:ilvl="0"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="360" /&
&w:ind w:left="360" w:hanging="360" /&
&w:rFonts w:ascii="Symbol" w:h-ansi="Symbol" w:hint="default" /&
&w:b w:val="off" /&
&w:i w:val="off" /&
&w:color w:val="auto" /&
&w:sz w:val="18" /&
&w:sz-cs w:val="18" /&
&w:lvl w:ilvl="1"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="1680" /&
&w:ind w:left="1680" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="2"&
&w:start w:val="1" /&
&w:nfc w:val="2" /&
&w:lvlText w:val="%3." /&
&w:lvlJc w:val="right" /&
&w:tab w:val="list" w:pos="2100" /&
&w:ind w:left="2100" w:hanging="420" /&
&w:lvl w:ilvl="3"&
&w:start w:val="1" /&
&w:lvlText w:val="%4." /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2520" /&
&w:ind w:left="2520" w:hanging="420" /&
&w:lvl w:ilvl="4"&
&w:start w:val="1" /&
&w:nfc w:val="4" /&
&w:lvlText w:val="%5)" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2940" /&
&w:ind w:left="2940" w:hanging="420" /&
&w:lvl w:ilvl="5"&
&w:start w:val="1" /&
&w:nfc w:val="2" /&
&w:lvlText w:val="%6." /&
&w:lvlJc w:val="right" /&
&w:tab w:val="list" w:pos="3360" /&
&w:ind w:left="3360" w:hanging="420" /&
&w:lvl w:ilvl="6"&
&w:start w:val="1" /&
&w:lvlText w:val="%7." /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="3780" /&
&w:ind w:left="3780" w:hanging="420" /&
&w:lvl w:ilvl="7"&
&w:start w:val="1" /&
&w:nfc w:val="4" /&
&w:lvlText w:val="%8)" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="4200" /&
&w:ind w:left="4200" w:hanging="420" /&
&w:lvl w:ilvl="8"&
&w:start w:val="1" /&
&w:nfc w:val="2" /&
&w:lvlText w:val="%9." /&
&w:lvlJc w:val="right" /&
&w:tab w:val="list" w:pos="4620" /&
&w:ind w:left="4620" w:hanging="420" /&
&/w:listDef&
&w:listDef w:listDefId="9"&
&w:lsid w:val="33FC151A" /&
&w:plt w:val="Multilevel" /&
&w:tmpl w:val="98DC9436" /&
&w:lvl w:ilvl="0"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="780" /&
&w:ind w:left="780" w:hanging="360" /&
&w:rFonts w:ascii="Symbol" w:h-ansi="Symbol" w:hint="default" /&
&w:kern w:val="2" /&
&w:sz w:val="22" /&
&w:lvl w:ilvl="1"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="1260" /&
&w:ind w:left="1260" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="2"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="1680" /&
&w:ind w:left="1680" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="3"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2100" /&
&w:ind w:left="2100" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="4"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2520" /&
&w:ind w:left="2520" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="5"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2940" /&
&w:ind w:left="2940" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="6"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="3360" /&
&w:ind w:left="3360" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="7"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="3780" /&
&w:ind w:left="3780" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="8"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="4200" /&
&w:ind w:left="4200" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&/w:listDef&
&w:listDef w:listDefId="10"&
&w:lsid w:val="406D5DE0" /&
&w:plt w:val="HybridMultilevel" /&
&w:tmpl w:val="69348B62" /&
&w:lvl w:ilvl="0" w:tplc="E02EC262"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="-" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="738" /&
&w:ind w:left="738" w:hanging="420" /&
&w:rFonts w:ascii="Courier New" w:h-ansi="Courier New"
w:hint="default" /&
&w:b w:val="off" /&
&w:i w:val="off" /&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&w:lvl w:ilvl="1" w:tplc="A47A703C"&
&w:start w:val="1" /&
&w:nfc w:val="4" /&
&w:lvlText w:val="%2)" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="840" /&
&w:ind w:left="840" w:hanging="420" /&
&w:lvl w:ilvl="2" w:tplc="35A6AF66"&
&w:start w:val="1" /&
&w:nfc w:val="2" /&
&w:lvlText w:val="%3." /&
&w:lvlJc w:val="right" /&
&w:tab w:val="list" w:pos="1260" /&
&w:ind w:left="1260" w:hanging="420" /&
&w:lvl w:ilvl="3" w:tplc="641E4336" w:tentative="on"&
&w:start w:val="1" /&
&w:lvlText w:val="%4." /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="1680" /&
&w:ind w:left="1680" w:hanging="420" /&
&w:lvl w:ilvl="4" w:tplc="E8B875FA" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="4" /&
&w:lvlText w:val="%5)" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2100" /&
&w:ind w:left="2100" w:hanging="420" /&
&w:lvl w:ilvl="5" w:tplc="7CB22032" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="2" /&
&w:lvlText w:val="%6." /&
&w:lvlJc w:val="right" /&
&w:tab w:val="list" w:pos="2520" /&
&w:ind w:left="2520" w:hanging="420" /&
&w:lvl w:ilvl="6" w:tplc="90E06458" w:tentative="on"&
&w:start w:val="1" /&
&w:lvlText w:val="%7." /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2940" /&
&w:ind w:left="2940" w:hanging="420" /&
&w:lvl w:ilvl="7" w:tplc="FC3087CA" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="4" /&
&w:lvlText w:val="%8)" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="3360" /&
&w:ind w:left="3360" w:hanging="420" /&
&w:lvl w:ilvl="8" w:tplc="E0F6F71A" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="2" /&
&w:lvlText w:val="%9." /&
&w:lvlJc w:val="right" /&
&w:tab w:val="list" w:pos="3780" /&
&w:ind w:left="3780" w:hanging="420" /&
&/w:listDef&
&w:listDef w:listDefId="11"&
&w:lsid w:val="49BF604C" /&
&w:plt w:val="HybridMultilevel" /&
&w:tmpl w:val="9010514A" /&
&w:lvl w:ilvl="0" w:tplc="5B86A7D2"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="900" /&
&w:ind w:left="900" w:hanging="480" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:sz w:val="20" /&
&w:sz-cs w:val="20" /&
&w:lvl w:ilvl="1" w:tplc="" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="-60" /&
&w:ind w:left="-60" w:hanging="480" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="420" /&
&w:ind w:left="420" w:hanging="480" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="900" /&
&w:ind w:left="900" w:hanging="480" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="4" w:tplc="" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="1380" /&
&w:ind w:left="1380" w:hanging="480" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="1860" /&
&w:ind w:left="1860" w:hanging="480" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2340" /&
&w:ind w:left="2340" w:hanging="480" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="7" w:tplc="" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2820" /&
&w:ind w:left="2820" w:hanging="480" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="3300" /&
&w:ind w:left="3300" w:hanging="480" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&/w:listDef&
&w:listDef w:listDefId="12"&
&w:lsid w:val="5A6E7C47" /&
&w:plt w:val="HybridMultilevel" /&
&w:tmpl w:val="64BAC20E" /&
&w:lvl w:ilvl="0" w:tplc="D4A8B876"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="900" /&
&w:ind w:left="900" w:hanging="480" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:sz w:val="20" /&
&w:sz-cs w:val="20" /&
&w:lvl w:ilvl="1" w:tplc="" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="-60" /&
&w:ind w:left="-60" w:hanging="480" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="2" w:tplc="" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="420" /&
&w:ind w:left="420" w:hanging="480" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="3" w:tplc="" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="900" /&
&w:ind w:left="900" w:hanging="480" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="4" w:tplc="" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="1380" /&
&w:ind w:left="1380" w:hanging="480" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="5" w:tplc="" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="1860" /&
&w:ind w:left="1860" w:hanging="480" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="6" w:tplc="" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2340" /&
&w:ind w:left="2340" w:hanging="480" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="7" w:tplc="" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2820" /&
&w:ind w:left="2820" w:hanging="480" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="8" w:tplc="" w:tentative="on"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="3300" /&
&w:ind w:left="3300" w:hanging="480" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&/w:listDef&
&w:listDef w:listDefId="13"&
&w:lsid w:val="" /&
&w:plt w:val="Multilevel" /&
&w:tmpl w:val="0BE0FB10" /&
&w:styleLink w:val="Projectexperiencelist" /&
&w:lvl w:ilvl="0"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="840" /&
&w:ind w:left="840" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:fareast="宋体" w:h-ansi="Wingdings"
w:hint="default" /&
&w:kern w:val="2" /&
&w:sz w:val="22" /&
&w:lvl w:ilvl="1"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="1260" /&
&w:ind w:left="1260" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="2"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="1680" /&
&w:ind w:left="1680" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="3"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2100" /&
&w:ind w:left="2100" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="4"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2520" /&
&w:ind w:left="2520" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="5"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="2940" /&
&w:ind w:left="2940" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="6"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="3360" /&
&w:ind w:left="3360" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="7"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="3780" /&
&w:ind w:left="3780" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&w:lvl w:ilvl="8"&
&w:start w:val="1" /&
&w:nfc w:val="23" /&
&w:lvlText w:val="?" /&
&w:lvlJc w:val="left" /&
&w:tab w:val="list" w:pos="4200" /&
&w:ind w:left="4200" w:hanging="420" /&
&w:rFonts w:ascii="Wingdings" w:h-ansi="Wingdings" w:hint="default" /&
&/w:listDef&
&w:listDef w:listDefId="14"&
&w:lsid w:val="6E656F0D" /&
&w:plt w:val="Multilevel" /&
&w:tmpl w:val="0BE0FB10" /&
&w:listStyleLink w:val="Projectexperiencelist" /&
&/w:listDef&
&w:list w:ilfo="1"&
&w:ilst w:val="4" /&
&w:list w:ilfo="2"&
&w:ilst w:val="12" /&
&w:list w:ilfo="3"&
&w:ilst w:val="11" /&
&w:list w:ilfo="4"&
&w:ilst w:val="13" /&
&w:list w:ilfo="5"&
&w:ilst w:val="6" /&
&w:list w:ilfo="6"&
&w:ilst w:val="2" /&
&w:list w:ilfo="7"&
&w:ilst w:val="14" /&
&w:list w:ilfo="8"&
&w:ilst w:val="3" /&
&w:list w:ilfo="9"&
&w:ilst w:val="5" /&
&w:list w:ilfo="10"&
&w:ilst w:val="9" /&
&w:list w:ilfo="11"&
&w:ilst w:val="8" /&
&w:list w:ilfo="12"&
&w:ilst w:val="1" /&
&w:list w:ilfo="13"&
&w:ilst w:val="7" /&
&w:list w:ilfo="14"&
&w:ilst w:val="10" /&
&w:list w:ilfo="15"&
&w:ilst w:val="0" /&
&/w:lists&
&w:styles&
&w:versionOfBuiltInStylenames w:val="7" /&
&w:latentStyles w:defLockedState="off" w:latentStyleCount="267"&
&w:lsdException w:name="Normal" /&
&w:lsdException w:name="heading 1" /&
&w:lsdException w:name="heading 2" /&
&w:lsdException w:name="heading 3" /&
&w:lsdException w:name="heading 4" /&
&w:lsdException w:name="heading 5" /&
&w:lsdException w:name="heading 6" /&
&w:lsdException w:name="heading 7" /&
&w:lsdException w:name="heading 8" /&
&w:lsdException w:name="heading 9" /&
&w:lsdException w:name="caption" /&
&w:lsdException w:name="Title" /&
&w:lsdException w:name="Subtitle" /&
&w:lsdException w:name="Strong" /&
&w:lsdException w:name="Emphasis" /&
&w:lsdException w:name="Placeholder Text" /&
&w:lsdException w:name="No Spacing" /&
&w:lsdException w:name="Light Shading" /&
&w:lsdException w:name="Light List" /&
&w:lsdException w:name="Light Grid" /&
&w:lsdException w:name="Medium Shading 1" /&
&w:lsdException w:name="Medium Shading 2" /&
&w:lsdException w:name="Medium List 1" /&
&w:lsdException w:name="Medium List 2" /&
&w:lsdException w:name="Medium Grid 1" /&
&w:lsdException w:name="Medium Grid 2" /&
&w:lsdException w:name="Medium Grid 3" /&
&w:lsdException w:name="Dark List" /&
&w:lsdException w:name="Colorful Shading" /&
&w:lsdException w:name="Colorful List" /&
&w:lsdException w:name="Colorful Grid" /&
&w:lsdException w:name="Light Shading Accent 1" /&
&w:lsdException w:name="Light List Accent 1" /&
&w:lsdException w:name="Light Grid Accent 1" /&
&w:lsdException w:name="Medium Shading 1 Accent 1" /&
&w:lsdException w:name="Medium Shading 2 Accent 1" /&
&w:lsdException w:name="Medium List 1 Accent 1" /&
&w:lsdException w:name="Revision" /&
&w:lsdException w:name="List Paragraph" /&
&w:lsdException w:name="Quote" /&
&w:lsdException w:name="Intense Quote" /&
&w:lsdException w:name="Medium List 2 Accent 1" /&
&w:lsdException w:name="Medium Grid 1 Accent 1" /&
&w:lsdException w:name="Medium Grid 2 Accent 1" /&
&w:lsdException w:name="Medium Grid 3 Accent 1" /&
&w:lsdException w:name="Dark List Accent 1" /&
&w:lsdException w:name="Colorful Shading Accent 1" /&
&w:lsdException w:name="Colorful List Accent 1" /&
&w:lsdException w:name="Colorful Grid Accent 1" /&
&w:lsdException w:name="Light Shading Accent 2" /&
&w:lsdException w:name="Light List Accent 2" /&
&w:lsdException w:name="Light Grid Accent 2" /&
&w:lsdException w:name="Medium Shading 1 Accent 2" /&
&w:lsdException w:name="Medium Shading 2 Accent 2" /&
&w:lsdException w:name="Medium List 1 Accent 2" /&
&w:lsdException w:name="Medium List 2 Accent 2" /&
&w:lsdException w:name="Medium Grid 1 Accent 2" /&
&w:lsdException w:name="Medium Grid 2 Accent 2" /&
&w:lsdException w:name="Medium Grid 3 Accent 2" /&
&w:lsdException w:name="Dark List Accent 2" /&
&w:lsdException w:name="Colorful Shading Accent 2" /&
&w:lsdException w:name="Colorful List Accent 2" /&
&w:lsdException w:name="Colorful Grid Accent 2" /&
&w:lsdException w:name="Light Shading Accent 3" /&
&w:lsdException w:name="Light List Accent 3" /&
&w:lsdException w:name="Light Grid Accent 3" /&
&w:lsdException w:name="Medium Shading 1 Accent 3" /&
&w:lsdException w:name="Medium Shading 2 Accent 3" /&
&w:lsdException w:name="Medium List 1 Accent 3" /&
&w:lsdException w:name="Medium List 2 Accent 3" /&
&w:lsdException w:name="Medium Grid 1 Accent 3" /&
&w:lsdException w:name="Medium Grid 2 Accent 3" /&
&w:lsdException w:name="Medium Grid 3 Accent 3" /&
&w:lsdException w:name="Dark List Accent 3" /&
&w:lsdException w:name="Colorful Shading Accent 3" /&
&w:lsdException w:name="Colorful List Accent 3" /&
&w:lsdException w:name="Colorful Grid Accent 3" /&
&w:lsdException w:name="Light Shading Accent 4" /&
&w:lsdException w:name="Light List Accent 4" /&
&w:lsdException w:name="Light Grid Accent 4" /&
&w:lsdException w:name="Medium Shading 1 Accent 4" /&
&w:lsdException w:name="Medium Shading 2 Accent 4" /&
&w:lsdException w:name="Medium List 1 Accent 4" /&
&w:lsdException w:name="Medium List 2 Accent 4" /&
&w:lsdException w:name="Medium Grid 1 Accent 4" /&
&w:lsdException w:name="Medium Grid 2 Accent 4" /&
&w:lsdException w:name="Medium Grid 3 Accent 4" /&
&w:lsdException w:name="Dark List Accent 4" /&
&w:lsdException w:name="Colorful Shading Accent 4" /&
&w:lsdException w:name="Colorful List Accent 4" /&
&w:lsdException w:name="Colorful Grid Accent 4" /&
&w:lsdException w:name="Light Shading Accent 5" /&
&w:lsdException w:name="Light List Accent 5" /&
&w:lsdException w:name="Light Grid Accent 5" /&
&w:lsdException w:name="Medium Shading 1 Accent 5" /&
&w:lsdException w:name="Medium Shading 2 Accent 5" /&
&w:lsdException w:name="Medium List 1 Accent 5" /&
&w:lsdException w:name="Medium List 2 Accent 5" /&
&w:lsdException w:name="Medium Grid 1 Accent 5" /&
&w:lsdException w:name="Medium Grid 2 Accent 5" /&
&w:lsdException w:name="Medium Grid 3 Accent 5" /&
&w:lsdException w:name="Dark List Accent 5" /&
&w:lsdException w:name="Colorful Shading Accent 5" /&
&w:lsdException w:name="Colorful List Accent 5" /&
&w:lsdException w:name="Colorful Grid Accent 5" /&
&w:lsdException w:name="Light Shading Accent 6" /&
&w:lsdException w:name="Light List Accent 6" /&
&w:lsdException w:name="Light Grid Accent 6" /&
&w:lsdException w:name="Medium Shading 1 Accent 6" /&
&w:lsdException w:name="Medium Shading 2 Accent 6" /&
&w:lsdException w:name="Medium List 1 Accent 6" /&
&w:lsdException w:name="Medium List 2 Accent 6" /&
&w:lsdException w:name="Medium Grid 1 Accent 6" /&
&w:lsdException w:name="Medium Grid 2 Accent 6" /&
&w:lsdException w:name="Medium Grid 3 Accent 6" /&
&w:lsdException w:name="Dark List Accent 6" /&
&w:lsdException w:name="Colorful Shading Accent 6" /&
&w:lsdException w:name="Colorful List Accent 6" /&
&w:lsdException w:name="Colorful Grid Accent 6" /&
&w:lsdException w:name="Subtle Emphasis" /&
&w:lsdException w:name="Intense Emphasis" /&
&w:lsdException w:name="Subtle Reference" /&
&w:lsdException w:name="Intense Reference" /&
&w:lsdException w:name="Book Title" /&
&w:lsdException w:name="Bibliography" /&
&w:lsdException w:name="TOC Heading" /&
&/w:latentStyles&
&w:style w:type="paragraph" w:default="on" w:styleId="a"&
&w:name w:val="Normal" /&
&wx:uiName wx:val="正文" /&
&w:rsid w:val="00E46B02" /&
&w:widowControl w:val="off" /&
&w:jc w:val="both" /&
&wx:font wx:val="Times New Roman" /&
&w:kern w:val="2" /&
&w:sz w:val="21" /&
&w:sz-cs w:val="24" /&
&w:lang w:val="EN-US" w:fareast="ZH-CN" w:bidi="AR-SA" /&
&/w:style&
&w:style w:type="character" w:default="on" w:styleId="a0"&
&w:name w:val="Default Paragraph Font" /&
&wx:uiName wx:val="默认段落字体" /&
&/w:style&
&w:style w:type="table" w:default="on" w:styleId="a1"&
&w:name w:val="Normal Table" /&
&wx:uiName wx:val="普通表格" /&
&wx:font wx:val="Times New Roman" /&
&w:lang w:val="EN-US" w:fareast="ZH-CN" w:bidi="AR-SA" /&
&w:tblInd w:w="0" w:type="dxa" /&
&w:tblCellMar&
&w:top w:w="0" w:type="dxa" /&
&w:left w:w="108" w:type="dxa" /&
&w:bottom w:w="0" w:type="dxa" /&
&w:right w:w="108" w:type="dxa" /&
&/w:tblCellMar&
&/w:tblPr&
&/w:style&
&w:style w:type="list" w:default="on" w:styleId="a2"&
&w:name w:val="No List" /&
&wx:uiName wx:val="无列表" /&
&/w:style&
&w:style w:type="paragraph" w:styleId="a3"&
&w:name w:val="footer" /&
&wx:uiName wx:val="页脚" /&
&w:basedOn w:val="a" /&
&w:link w:val="Char" /&
&w:rsid w:val="00E46B02" /&
&w:tab w:val="center" w:pos="4153" /&
&w:tab w:val="right" w:pos="8306" /&
&w:snapToGrid w:val="off" /&
&w:jc w:val="left" /&
&wx:font wx:val="Times New Roman" /&
&w:sz w:val="18" /&
&w:sz-cs w:val="18" /&
&/w:style&
&w:style w:type="character" w:styleId="a4"&
&w:name w:val="page number" /&
&wx:uiName wx:val="页码" /&
&w:basedOn w:val="a0" /&
&w:rsid w:val="00E46B02" /&
&/w:style&
&w:style w:type="paragraph" w:styleId="a5"&
&w:name w:val="header" /&
&wx:uiName wx:val="页眉" /&
&w:basedOn w:val="a" /&
&w:link w:val="Char0" /&
&w:rsid w:val="00E46B02" /&
&w:tab w:val="center" w:pos="4680" /&
&w:tab w:val="right" w:pos="9360" /&
&wx:font wx:val="Times New Roman" /&
&/w:style&
&w:style w:type="character" w:styleId="Char0"&
&w:name w:val="页眉 Char" /&
&w:basedOn w:val="a0" /&
&w:link w:val="a5" /&
&w:rsid w:val="00E46B02" /&
&w:rFonts w:fareast="宋体" /&
&w:kern w:val="2" /&
&w:sz w:val="21" /&
&w:sz-cs w:val="24" /&
&w:lang w:val="EN-US" w:fareast="ZH-CN" w:bidi="AR-SA" /&
&/w:style&
&w:style w:type="character" w:styleId="Char"&
&w:name w:val="页脚 Char" /&
&w:basedOn w:val="a0" /&
&w:link w:val="a3" /&
&w:rsid w:val="00E46B02" /&
&w:rFonts w:fareast="宋体" /&
&w:kern w:val="2" /&
&w:sz w:val="18" /&
&w:sz-cs w:val="18" /&
&w:lang w:val="EN-US" w:fareast="ZH-CN" w:bidi="AR-SA" /&
&/w:style&
&w:style w:type="list" w:styleId="Projectexperiencelist"&
&w:name w:val="Project experience list" /&
&w:basedOn w:val="a2" /&
&w:rsid w:val="00E46B02" /&
&w:listPr&
&w:ilfo w:val="4" /&
&/w:listPr&
&/w:style&
&w:style w:type="paragraph" w:styleId="3"&
&w:name w:val="List Bullet 3" /&
&wx:uiName wx:val="列表项目符号 3" /&
&w:basedOn w:val="a" /&
&w:rsid w:val="00E46B02" /&
&w:listPr&
&w:ilfo w:val="12" /&
&/w:listPr&
&wx:font wx:val="Times New Roman" /&
&w:sz-cs w:val="20" /&
&/w:style&
&w:style w:type="paragraph" w:styleId="Hightline"&
&w:name w:val="带点带Hightline" /&
&w:basedOn w:val="3" /&
&w:link w:val="HightlineChar" /&
&w:rsid w:val="00E46B02" /&
&w:listPr&
&w:ilfo w:val="13" /&
&/w:listPr&
&w:spacing w:before="200" /&
&wx:font wx:val="Times New Roman" /&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&w:u w:val="single" /&
&/w:style&
&w:style w:type="character" w:styleId="HightlineChar"&
&w:name w:val="带点带Hightline Char" /&
&w:basedOn w:val="Char0" /&
&w:link w:val="Hightline" /&
&w:rsid w:val="00E46B02" /&
&w:rFonts w:fareast="宋体" /&
&w:kern w:val="2" /&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&w:u w:val="single" /&
&w:lang w:val="EN-US" w:fareast="ZH-CN" w:bidi="AR-SA" /&
&/w:style&
&w:style w:type="paragraph" w:styleId="C"&
&w:name w:val="C" /&
&w:basedOn w:val="3" /&
&w:rsid w:val="00E46B02" /&
&w:tab w:val="list" w:pos="315" /&
&w:spacing w:before="200" /&
&w:ind w:left="317" w:hanging="317" /&
&wx:font wx:val="Times New Roman" /&
&w:sz w:val="22" /&
&w:sz-cs w:val="22" /&
&/w:style&
&/w:styles&
&w:div w:id=""&
&w:bodyDiv w:val="on" /&
&w:marLeft w:val="0" /&
&w:marRight w:val="0" /&
&w:marTop w:val="0" /&
&w:marBottom w:val="0" /&
&w:divBdr&
&w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0"
w:color="auto" /&
&w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0"
w:color="auto" /&
&w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0"
w:color="auto" /&
&w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0"
w:color="auto" /&
&/w:divBdr&
&w:div w:id=""&
&w:bodyDiv w:val="on" /&
&w:marLeft w:val="0" /&
&w:marRight w:val="0" /&
&w:marTop w:val="0" /&
&w:marBottom w:val="0" /&
&w:divBdr&
&w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0"
w:color="auto" /&
&w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0"
w:color="auto" /&
&w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0"
w:color="auto" /&
&w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0"
w:color="auto" /&
&/w:divBdr&
&w:shapeDefaults&
&o:shapedefaults v:ext="edit" spidmax="11266" /&
&o:shapelayout v:ext="edit"&
&o:idmap v:ext="edit" data="2" /&
&/o:shapelayout&
&/w:shapeDefaults&
&w:view w:val="print" /&
&w:zoom w:percent="100" /&
&w:bordersDontSurroundHeader /&
&w:bordersDontSurroundFooter /&
&w:defaultTabStop w:val="420" /&
&w:drawingGridHorizontalSpacing w:val="105" /&
&w:drawingGridVerticalSpacing w:val="156" /&
&w:displayHorizontalDrawingGridEvery w:val="0" /&
&w:displayVerticalDrawingGridEvery w:val="2" /&
&w:punctuationKerning /&
&w:characterSpacingControl w:val="CompressPunctuation" /&
&w:optimizeForBrowser /&
&w:validateAgainstSchema /&
&w:saveInvalidXML w:val="off" /&
&w:ignoreMixedContent w:val="off" /&
&w:alwaysShowPlaceholderText w:val="off" /&
&w:hdrShapeDefaults&
&o:shapedefaults v:ext="edit" spidmax="11266" /&
&/w:hdrShapeDefaults&
&w:footnotePr&
&w:footnote w:type="separator"&
&w:p wsp:rsidR="00EE1D62" wsp:rsidRDefault="00EE1D62"&
&w:separator /&
&/w:footnote&
&w:footnote w:type="continuation-separator"&
&w:p wsp:rsidR="00EE1D62" wsp:rsidRDefault="00EE1D62"&
&w:continuationSeparator /&
&/w:footnote&
&/w:footnotePr&
&w:endnotePr&
&w:en

我要回帖

更多关于 excel转化为word 的文章

 

随机推荐