新建"博客文章"

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

新窗口的编辑区和不同模式的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. ubuntu系统升级记录

    之前在openstack中安装了ubuntu 12.04虚拟机,版本较低,需要升级为高版本.下面分享下升级过程: ubuntu系统升级操作:$ cat /etc/issueUbuntu 12.04.5 ...

  2. 用纯css改变下拉列表select框的默认样式(不兼容IE10以下)

    在这篇文章里,我将介绍如何不依赖JavaScript用纯css来改变下拉列表框的样式.     事情是这样的,您的设计师团队向您发送一个新的PSD(Photoshop文档),它是一个新的网站的最终设计 ...

  3. 也谈面试必备问题之 JavaScript 数组去重

    Why underscore (觉得这部分眼熟的可以直接跳到下一段了...) 最近开始看 underscore.js 源码,并将 underscore.js 源码解读 放在了我的 2016 计划中. ...

  4. Windows Iot:让Raspberry Pi跑起来(1)

    首先请大家原谅我的"不务正业",放着RabbitHub不写,各种系列的文章不写搞什么Iot,哈哈,最近心血来潮想搞个速度极快的遥控车玩,望着在角落的Raspberry Pi恶狠狠的 ...

  5. django static文件的引入方式

    1. 在django project中创建 static文件夹 2.settings.py中配置要在 STATIC_URL = '/static/'  下边 STATICFILES_DIRS = [ ...

  6. 推公式 HDU 2552

    T 给你2个值 求另外一个 需要推一下 tan(a+b)=(tan(a)+tan(b))/(1-tan(a)*tan(b)); 等式左右取tan tan(atan(a))=a 1/s=tan(...) ...

  7. hbase shell 常见命令

    quick start from official Hbase  hbase(main):003:0> create 'test', 'cf' 0 row(s) in 1.2200 second ...

  8. zend studio(Eclipse)和PyDev搭建Python开发环境

    原文是用Eclipse作开发环境,由于我已经装了zs,而zs也是基于Eclipse的,一试之下发现可以用,呵呵省事了.原文:http://www.cnblogs.com/Realh/archive/2 ...

  9. BZOJ 4568 幸运数字

    题目传送门 4568: [Scoi2016]幸运数字 Time Limit: 60 Sec Memory Limit: 256 MB Description A 国共有 n 座城市,这些城市由 n-1 ...

  10. Android开发笔记之《远程控制(MQTT|mosquitto) && (ProtocalBuffer | GRPC)》

    Android推送方案分析(MQTT/XMPP/GCM): http://www.open-open.com/lib/view/open1410848945601.htmlMQTT官网: http:/ ...