23
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

PowerPoint for Mac 2016でユーザ定義の「テーマのフォント」を作る

Last updated at Posted at 2016-11-14

自分用メモ

#やりたいこと
PowerPointのスライドにおける「見出しのフォント」とか「本文のフォント」の組み合わせを自分で設定する

スクリーンショット 2016-11-14 14.58.12.png (こんなのを作る。)

やること

「テーマのフォント」の設定を書いたxmlファイルを作って所定の場所に置く。(置き場所はPowerPointのバージョンで違う。for Mac 2016であれば以下の場所。)

~/Library/Group Containers/UBF8T346G9.Office/User Content.localized/Themes.localized/Theme Fonts

xmlファイルの記述

サンプルは以下の通り。

Hiragino_Century.xml
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<a:fontScheme xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" name="ヒラギノ_Century">
  <a:majorFont>
    <a:latin typeface="Century"/>
    <a:ea typeface="HiraKakuPro-W3"/>
    <a:cs typeface=""/>
  </a:majorFont>
  <a:minorFont>
    <a:latin typeface="Century"/>
    <a:ea typeface="HiraKakuPro-W3"/>
    <a:cs typeface=""/>
  </a:minorFont>
</a:fontScheme>

majorFontが「見出しのフォント」、minorFontが「本文のフォント」。

typeface="(フォント名)"

とする。latinが英語、eaが日本語、csはその他言語用フォントの指定。
フォント名の記述はPostScript名という奴を書く。(あまり詳しくわからないのだが、)Macに標準で入っていたFontBookというアプリケーションで大体のフォントのPostScript名はすぐわかる。
スクリーンショット 2016-11-14 15.22.13.png

参考にさせていただいたサイト

http://researchmap.jp/jox7s44se-52108/

(参考にさせていただいたというか、このメモはほとんどこのサイトの内容を自分用に書き直しただけの内容になってしまっている…)

23
16
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
23
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?