英字フォントのおすすめ
- 2014/07/17 11:44
- カテゴリー:Diary
発表資料用にフォントで悩んだ時の参考に
結局Times New Romanが無難かな
これだけは抑えておきたい!定番英字フォント18選
http://www.actzero.jp/developer/report-4142.html
暇つぶしに公開されているページ
SNSでは書かないようなことを書いていきます.備忘録
履歴
13/06/15 サイト管理システムをWeb Diary Professionalからfreoに変更
04/06/24 サイト開設
2014年07月の記事は以下のとおりです。
発表資料用にフォントで悩んだ時の参考に
結局Times New Romanが無難かな
これだけは抑えておきたい!定番英字フォント18選
http://www.actzero.jp/developer/report-4142.html
クズみたいなTipsを貼り付けてみる
用途はタイトル通り.なかなか便利ですはい()
function [name] = Dataread() % Dataread.m % 2012/05/21 Ver1.0 jimmie % Read in named file(.wav) dim=[]; if nargin==2 name=varargin{1}; dim=varargin{2}; else filefilter={ '*.wav','wav file (*.wav)'; '*.*','ALL Files (*.*)'; }; %read in FileDLG='Open Data File'; [name,path]=uigetfile(filefilter,FileDLG); %if push cancel if name==0 error('ファイル名がキャンセルされましたので終了します'); varargout={[],[]}; return; end end name=[path,name];