This file contains 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[a4paper,10.5pt,uplatex]{jsarticle} | |
%--脚注の設定 | |
\usepackage{natbib} | |
\bibpunct[, ]{(}{)}{;}{and}{}{,} %本文での引用の体裁はここで整えられるみたい | |
\bibliographystyle{apsr2006Edited} | |
\usepackage{amsmath} | |
%--余白の設定 | |
\usepackage[truedimen,margin=20truemm]{geometry} | |
%--図の設定 | |
\usepackage[dvipdfmx]{graphicx} % PDFの利用もOKに |
This file contains 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
if [ "$(uname)" != "Darwin" ] ; then | |
echo 'Not macOS!' | |
exit 1 | |
fi | |
# Homebrew | |
# see https://brew.sh/index_ja.html | |
brew update | |
brew install asdf | |
brew install git |