新建"博客文章"

点击"文件-> 新建 -> 博客文章 -> 创建":

新窗口的编辑区和不同模式的word有所不同,如果你还没有设置博客账号(初次使用,还会在弹出一个向导框):

新建博客账户

点击"立即注册"即可设置博客账号:


(如果不小心将刚才弹出的向导框关闭了,可以点击编辑区上方,工具栏中的"管理账户"-> "新建",同样会弹出"新建博客账户"框。)

这里"博客"下拉列表选择"其他"(根据具体博客API选择),点击"下一步",弹出"新建账户"对话框:

可以看到,这里的API只有MetaWebLog(没有Windows Live Writer支持的API多),与博客园的API相同;
"博客文章(URL)"填博客的API链接,比如我的是"
http://www.cnblogs.com/xusw/services/metaweblog.aspx"(这一点和Windows Live Writer不同,Writer会自动检测),可以在博客登陆后;
用户名和密码就是你的博客登陆账户和密码,不用多说,这里可以上"记住密码"(如果不勾,每次发布要单独输入密码),填好点"确定":

 

有格式代码直接粘贴测试

下面,我们选取同样一段代码,进行测试

Eclipse

void
stringTest() {

    std::string str1("abcdefg");

 

    std::string str2 = str1;

 

    printf("str1: %s: %p\n", str1.c_str(), str1.c_str());

    printf("str2: %s: %p\n", str2.c_str(), str2.c_str());

 

    str2[0] = 'A';

    printf("str1: %s: %p\n", str1.c_str(), str1.c_str());

    printf("str2: %s: %p\n", str2.c_str(), str2.c_str());

}

 

Visual Studio

void stringTest() {

    std::string str1("abcdefg");

 

    std::string str2 = str1;

 

    printf("str1: %s: %p\n", str1.c_str(), str1.c_str());

    printf("str2: %s: %p\n", str2.c_str(), str2.c_str());

 

    str2[0] = 'A';

    printf("str1: %s: %p\n", str1.c_str(), str1.c_str());

    printf("str2: %s: %p\n", str2.c_str(), str2.c_str());

}

本机预览结果

为了能够对比发布前后效果,最后附上上面两端代码在word 2010下的截图:

表格测试

发布后:

发布前:

 

单格代码测试:

void stringTest() {

    std::string str1("abcdefg");

 

    std::string str2 = str1;

 

    printf("str1: %s: %p\n", str1.c_str(), str1.c_str());

    printf("str2: %s: %p\n", str2.c_str(), str2.c_str());

 

    str2[0] = 'A';

    printf("str1: %s: %p\n", str1.c_str(), str1.c_str());

    printf("str2: %s: %p\n", str2.c_str(), str2.c_str());

}

Word 2010 发布博文测试的更多相关文章

  1. Word 2010发布博客文章

    只测试了cnblog 1.新建文件选择word 2010自带的博客文章模板 2.在管理账户中新建一个博客账户,也就是你自己在博客园的账户,博客选其他 3.然后选择下一步,博客的URL在自己的博客设置里 ...

  2. 使用word 2010 发布csdn博客

    目前大部分的博客作者在用Word写博客这件事情上都会遇到以下3个痛点: 1.所有博客平台关闭了文档发布接口,用户无法使用Word,Windows Live Writer等工具来发布博客.使用Word写 ...

  3. 测试通过Word直接发布博文

    这里是来自word 2013的一篇测试文章. 测试直接通过Word自带的bloger功能发布博客文章. 这里插入一张图片

  4. Word 2010发布博客文章(修正)

    目前大部分的博客作者在写博客这件事情上都会遇到以下3个痛点:1.所有博客平台关闭了文档发布接口,用户无法使用Word,Windows Live Writer等工具来发布博客.2.发布到博客或公众号平台 ...

  5. 测试word 2013发布blog

    测试图片和各种格式   使用Windows Live Writer 2012和Office Word 2013 发布文章到博客园全面总结 (亲测可用)   我的一些感受: 缺点 (1) Word201 ...

  6. 这是我在word 2010上发布的第一篇文章

    1.设置word 2010,添加cnblogs帐户 配置参考链接 其中URL地址为: http://rpc.cnblogs.com/metaweblog/fariver,在cnblogs配置的最下方可 ...

  7. Word直接发布新浪博客(以Word 2010为例)

    目前大部分的博客作者在用Word写博客这件事情上都会遇到以下3个痛点: 1.所有博客平台关闭了文档发布接口,用户无法使用Word,Windows Live Writer等工具来发布博客.使用Word写 ...

  8. Word直接发布新浪博客(以Wo…

    原文地址:Word直接发布新浪博客(以Word 2013为例)作者:paulke2011 注意:这篇博客直接由Word 2013发出!这虽然也算是一个教程,但更多的是一个试验品. 老早就知道Word有 ...

  9. [转载]Word直接发布新浪博客(以Word 2013为例)

    原文地址:Word直接发布新浪博客(以Word 2013为例)作者:paulke2011 注意:这篇博客直接由Word 2013发出!这虽然也算是一个教程,但更多的是一个试验品. 老早就知道Word有 ...

随机推荐

  1. Javascript四舍五入(Math.round()与Math.pow())

    代码 Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ ...

  2. 仿原生app,native特效

    为解决手机端wap项目中页面跳转响应慢的问题,基于jquery开发了fr.routeApp.js,使得wap项目拥有原生app的流畅,跳转时亦有native的特效 html部分 <!--定义容器 ...

  3. javascript 中断函数的使用 setInterval();

    <script type="text/javascript"> var i=1; var IR1 = setInterval("myMethod()" ...

  4. 风口之下,猪都能飞。当今中国股市牛市,真可谓“错过等七年”。 给你一个回顾历史的机会,已知一支股票连续n天的价格走势,以长度为n的整数数组表示,

    转自:http://www.cnblogs.com/ranranblog/p/5845010.html 风口之下,猪都能飞.当今中国股市牛市,真可谓“错过等七年”. 给你一个回顾历史的机会,已知一支股 ...

  5. C#的访问级别

    可访问性级别有 public                       访问不受限制.  protected                 访问仅限于包含类或从包含类派生的类型.  interna ...

  6. 【转】ubuntu vpn自动切换路由

    需要的工作有以下三項 Ubuntu Network Manager Client (nmcli)用來建立VPN連線的工具其實在UBUNTU在桌面上就有VPN連線可以用, 為什麼我們還要這麼大費周章的用 ...

  7. ng-switch

    <p>ng-switch : </p> <div ng-switch="isShow"><!--isShow是boolean值--> ...

  8. ubuntu14.04 下安装有道词典

    安装步骤 1.ubuntu14.04.1版本下是不能直接安装有道词典的,首先需要把14.04.版升级为14.04.2版. 在终端窗口中输入以下命令: sudo apt-get update sudo ...

  9. win10 64位安装memcache扩展和开启redis扩展

    前面有关于win10下搭建wamp环境的介绍,在此不在赘述,php操作memcache有memcache库和memcached库,其中memcache是php内置的扩展库,支持面向对象和面向过程两种操 ...

  10. [Unity3D]添加音效说明

    添加音效组件并添加音乐资源 其中Pitch用来提高和降低音调的,比如可以和赛车游戏的轮胎绑定,当轮胎越快,则音调越高 2D/3D音效:2D音效和摄影家的距离无关,可以看做是一个背景音乐:而3D音效则是 ...