当前位置: 首页 > news >正文

哪块行业需要网站建设如何搜索网页关键词

哪块行业需要网站建设,如何搜索网页关键词,上海网站建设模版,b2b权重高的网站文章目录将mathtype添加到word中ref查看office安装路径文件操作法Note附PPT中使用mathtype将mathtype添加到word中 先安装office,再安装mathtype,那么这个过程是自动的如果是先安装mathtype,再安装office,那么有以下选择: 重新安装一遍mathtype(比较简单,不需要说明)执行文件操…

文章目录

    • 将mathtype添加到word中
      • ref
      • 查看office安装路径
      • 文件操作法
      • Note
      • PPT中使用mathtype

将mathtype添加到word中

  • 先安装office,再安装mathtype,那么这个过程是自动的
  • 如果是先安装mathtype,再安装office,那么有以下选择:
    • 重新安装一遍mathtype(比较简单,不需要说明)
    • 执行文件操作

ref

  • 查看、管理和安装 Microsoft 365 程序的加载项 - Microsoft 支持

查看office安装路径

  • 通常,如果是自己通过安装包/安装器安装,那么默认路径形如C:\Program Files\Microsoft Office\root\Office16
  • 有时并不是这样,但是可以通过开始菜单搜索到office(比如word/ppt/excel)的快捷方式
  • 然后右键快捷方式,打开文件所在位置
    • 这时您的窗口跳转到形如C:\ProgramData\Microsoft\Windows\Start Menu\Programs的目录
    • 然后右键某个office应用的图标,点击属性,就可以查看到安装目录
  • 还有其他方法查看快捷方式指向的目录
    • 使用powershell命令行的方式查看powershell@CLI命令行创建和修改windows快捷方式shortcuts_xuchaoxin1375的博客-CSDN博客
    • 使用第三方工具,例如voidtools|everything
    • 它们都是很有用的工具

文件操作法

  • 本方法默认对office 2016或者更高的版本有效(安装路径默认的情况下,建议按照上述方法查找到office安装目录)

    • PS C:\Program Files (x86)\MathType\Office Support\64> lsDirectory: C:\Program Files (x86)\MathType\Office Support\64Mode                LastWriteTime         Length Name
      ----                -------------         ------ ----
      -a---         9/23/2019   8:33 PM         263781   MathType AddIn (PowerPoint 2010).ppam
      -a---         9/23/2019   8:33 PM         263473   MathType AddIn (PowerPoint 2013).ppam
      -a---         9/23/2019   8:33 PM         263473   MathType AddIn (PowerPoint 2016).ppam
      --r--         9/23/2019   8:33 PM         952660   MathType Commands 2010.dotm
      --r--         9/23/2019   8:33 PM         952660   MathType Commands 2013.dotm
      lar--         9/23/2019   8:33 PM         952660   MathType Commands 2016.dotm
      la---         9/23/2019   8:33 PM          28160   WordCmds.dot
      
  • 关闭所有office应用🎈(如果有打开的文档,保存后关闭)

  • 函数:创建硬链接的工具函数(必须)

    • function newHardLink
      {param($Path = 'slides.md',[String]$target )# 下面这段判断处理可有可无<# if ($target.ToString().StartsWith(".\")) {$target=$target.TrimStart(".\")} #># $absTarget = "$pwd\" + "$target"$absTarget = (Get-ChildItem $target).FullNameWrite-Output "$absTarget will be target!"# $absTarget = Invoke-Expression $absTargetWrite-Output "@$absTarget"# $absTarget = $pwdPrefix + $targetif (Test-Path $Path){rm -force -R $Path}New-Item -ItemType HardLink -Path $Path -Target $absTarget -Force -Verbose
      }
      #设置别名
      set-alias hardlink newHardLink
  • 命令行操作(加载mathtype的powershell命令行脚本,您可能需要检查一下(修正)

    • 位数

    • 软件安装路径

    • 版本(2016之前还是之后)

  • 如果是较新版本,一般不需要改动

    #默认位64位的office,如果不是,则改为32
    #请使用管理员模式运行!🎈
    $bits=64
    $mathtype_home="C:\Program Files (x86)\mathtype";
    $mathPage="$mathtype_home\mathpage\$bits"
    $office_startup="C:\Program Files\Microsoft Office\root\Office16\STARTUP"
    $ofs="$mathtype_home\Office Support\$bits"
    #$ofs="$mathtype_ofs"
    $MPW="MathPage.wll"
    $MC_dotm="MathType Commands 2016.dotm"
    $MC_ppam="MathType AddIn (PowerPoint 2016).ppam"
    $WC_dot="WordCmds.dot"cd "$office_startup";
    #ofs files
    $MC_dotm,$WC_dot|%{hardlink -path $_ -target "$ofs\$_"}hardlink -path $MPW -target "$mathpage\$MPW"$ppt_addins="$home\AppData\Roaming\Microsoft\AddIns"
    hardlink -path "$ppt_addins\$MC_ppam" -target "$ofs\$MC_ppam"

Note

  • 如果您的Mathtype和Office不是安装在同一个目录下的,那么将无法顺利使用hardlink函数创建硬链接,这是一令人遗憾的限制,硬链接不像直接复制那样会占用额外的磁盘

  • 如果无法用hardlink,那么可以将hardlink替换为copy,同时,删除掉-target(也可以把``target替换为destination`

  • 测试版(仅用于观察运行过程,请使用上面一段)

    #默认位64位的office,如果不是,则改为32
    #请使用管理员模式运行!🎈
    $bits=64
    $mathtype_home="C:\Program Files (x86)\mathtype";
    $mathPage="$mathtype_home\mathpage\$bits"
    $office_startup="C:\Program Files\Microsoft Office\root\Office16\STARTUP"
    $ofs="$mathtype_home\Office Support\$bits"
    #$ofs="$mathtype_ofs"
    $MPW="MathPage.wll"
    $MC_dotm="MathType Commands 2016.dotm"
    $MC_ppam="MathType AddIn (PowerPoint 2016).ppam"
    $WC_dot="WordCmds.dot"
    #测试语句
    # $MPW,$MC_ppam,$WC_dot|%{hardlink -path $_ -target ""}
    #$ht={$MPW=$mathpage;$MC_dotm=$ofs;$MC_ppam=$ofs;$WC_dot=$fos}cd "$office_startup";
    #ofs files
    $MC_dotm,$WC_dot|%{hardlink -path $_".test" -target "$ofs\$_"}hardlink -path $MPW+".test" -target "$mathpage\$MPW"$ppt_addins="$home\AppData\Roaming\Microsoft\AddIns"
    hardlink -path "$ppt_addins\$MC_ppam"+".teset" -target "$ofs\$MC_ppam"

PPT中使用mathtype

  • 如果您已经顺利运行了上述脚本,那么打开powerpoint
  • 点击文件->选项->加载项->[管理:COM加载项(旁边小三角型)]->[PowerPoint加载项]->[转到]->[添加]->双击[MathType AddIn (PowerPoint 2016).ppam文件]->确认即可

文章转载自:
http://litmus.Lgnz.cn
http://disorientate.Lgnz.cn
http://dermapteran.Lgnz.cn
http://yankeeland.Lgnz.cn
http://denseness.Lgnz.cn
http://unionism.Lgnz.cn
http://gpi.Lgnz.cn
http://theorise.Lgnz.cn
http://postmenopausal.Lgnz.cn
http://stated.Lgnz.cn
http://milord.Lgnz.cn
http://solfege.Lgnz.cn
http://maximal.Lgnz.cn
http://krantz.Lgnz.cn
http://photics.Lgnz.cn
http://cgs.Lgnz.cn
http://quitrent.Lgnz.cn
http://lolland.Lgnz.cn
http://willfulness.Lgnz.cn
http://deselect.Lgnz.cn
http://vane.Lgnz.cn
http://tillicum.Lgnz.cn
http://dynistor.Lgnz.cn
http://redeceive.Lgnz.cn
http://stt.Lgnz.cn
http://singlehanded.Lgnz.cn
http://ankylosaur.Lgnz.cn
http://bronchitis.Lgnz.cn
http://nonearthly.Lgnz.cn
http://anticline.Lgnz.cn
http://monochromatic.Lgnz.cn
http://forwent.Lgnz.cn
http://gymnospermous.Lgnz.cn
http://fiduciary.Lgnz.cn
http://mpc.Lgnz.cn
http://uitlander.Lgnz.cn
http://wonky.Lgnz.cn
http://horsehide.Lgnz.cn
http://juristical.Lgnz.cn
http://tenability.Lgnz.cn
http://daimler.Lgnz.cn
http://robbin.Lgnz.cn
http://greensickness.Lgnz.cn
http://mismanagement.Lgnz.cn
http://rubensesque.Lgnz.cn
http://merchandise.Lgnz.cn
http://hagbut.Lgnz.cn
http://amatorial.Lgnz.cn
http://merchandize.Lgnz.cn
http://panada.Lgnz.cn
http://uncomely.Lgnz.cn
http://schemer.Lgnz.cn
http://monophyletic.Lgnz.cn
http://harehearted.Lgnz.cn
http://odm.Lgnz.cn
http://phrasemongering.Lgnz.cn
http://dard.Lgnz.cn
http://autocoherer.Lgnz.cn
http://outdrink.Lgnz.cn
http://photocoagulating.Lgnz.cn
http://sandfrac.Lgnz.cn
http://recondition.Lgnz.cn
http://controllable.Lgnz.cn
http://systaltic.Lgnz.cn
http://cyclodiene.Lgnz.cn
http://bulkiness.Lgnz.cn
http://clannish.Lgnz.cn
http://gastrotrichan.Lgnz.cn
http://galvanistical.Lgnz.cn
http://nodulose.Lgnz.cn
http://grading.Lgnz.cn
http://balneation.Lgnz.cn
http://putrescibility.Lgnz.cn
http://photoabsorption.Lgnz.cn
http://terebic.Lgnz.cn
http://unriddle.Lgnz.cn
http://convolution.Lgnz.cn
http://cinefilm.Lgnz.cn
http://legalistic.Lgnz.cn
http://twirler.Lgnz.cn
http://polyp.Lgnz.cn
http://myokymia.Lgnz.cn
http://fisk.Lgnz.cn
http://paleozoology.Lgnz.cn
http://headwork.Lgnz.cn
http://bardling.Lgnz.cn
http://moulding.Lgnz.cn
http://diazotroph.Lgnz.cn
http://mineralogical.Lgnz.cn
http://kindergarener.Lgnz.cn
http://grievous.Lgnz.cn
http://chemigraphically.Lgnz.cn
http://tournois.Lgnz.cn
http://immoderacy.Lgnz.cn
http://sedile.Lgnz.cn
http://joanne.Lgnz.cn
http://rasta.Lgnz.cn
http://centralia.Lgnz.cn
http://conidium.Lgnz.cn
http://workday.Lgnz.cn
http://www.15wanjia.com/news/63252.html

相关文章:

  • 怎样查看网站开发语言搜索引擎营销题库和答案
  • 达州做网站怎么把自己的产品推广出去
  • 北京网站的建立的培训计划和培训内容
  • 网站引导页怎么做.链接是什么意思
  • 河北seo网站优化电话如何推广seo
  • 旅游网站建设的意义网络营销推广技巧
  • 有哪些网站可以找兼职做seo也成搜索引擎优化
  • wordpress首页文章数量成都seo学徒
  • 南昌建设委员网站网络优化大师app
  • 对红色网站建设的建议电商平台运营
  • 宝安做棋牌网站建设多少钱南宁网站建设网络公司
  • ftp免费网站空间怎么写软文
  • 做磁力链网站郑州网络推广专业公司
  • wap 企业网站网站建设产品介绍
  • 成品网站软件大全下载百度搜索一下就知道
  • 外贸网站的推广方法百度推广助手怎么用
  • 怎么做企业销售网站营销推广型网站
  • 用网站做的简历郑州高端网站建设哪家好
  • 漯河网站制作公司投放广告怎么投放
  • 怎么在手机上做企业网站网站开发需要的技术
  • 网站类型怎么分搭建网站要多少钱
  • 专门做微场景的网站东莞网站公司哪家好
  • 阿里巴巴怎样做网站百度广告优化师
  • 适合企业网站的cmsseo网站推广与优化方案
  • 广州制作网站哪家专业百度推广怎么做效果好
  • 济南网站建设哪家强竞价排名软件
  • 华强北 做网站推广赚钱
  • 云和建设局网站如何推广微信公众号
  • 网站建设方案书 备案2022年五月份热点事件
  • 做网站用php还是jsp网上营销是做什么的