This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[slide]{beamer} | |
\usepackage{apalike} | |
\usepackage{luatexja} | |
%\usepackage[hiragino-pro]{luatexja-preset} | |
\usepackage[ipa]{luatexja-preset} | |
%%%% 見た目の設定 | |
\usetheme{Pittsburgh} | |
\setbeamertemplate{frametitle}[default][center] | |
\setbeamertemplate{navigation symbols}{} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
server_name domain; | |
charset UTF-8; | |
index index.php index.html index.htm; | |
root /公開パス; | |
try_files $uri $uri/ /index.php?q=$uri&$args; | |
location ~ \.php$ { | |
root /公開パス; | |
fastcgi_pass 環境に合わせて書く; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var user_id = "自分のユーザーID"; | |
function yomiyomi(text){ | |
var synthes = new SpeechSynthesisUtterance(); | |
synthes.voiceURI = 'native'; | |
synthes.volume = 0.3; | |
synthes.rate = 1.3; | |
synthes.pitch = 1; | |
synthes.text = text; | |
synthes.lang = 'ja-JP'; |
NewerOlder