blog/content/post/2007/12/13/2007-12-13-00000685.md

19 KiB
Raw Blame History

title author date wordtwit_post_info categories
MLA書式にしてみた kazu634 2007-12-13
O:8:"stdClass":13:{s:6:"manual";b:0;s:11:"tweet_times";i:1;s:5:"delay";i:0;s:7:"enabled";i:1;s:10:"separation";s:2:"60";s:7:"version";s:3:"3.7";s:14:"tweet_template";b:0;s:6:"status";i:2;s:6:"result";a:0:{}s:13:"tweet_counter";i:2;s:13:"tweet_log_ids";a:1:{i:0;i:3453;}s:9:"hash_tags";a:0:{}s:8:"accounts";a:1:{i:0;s:7:"kazu634";}}
LaTeX
修論

 人文系の論文を書く人は「MLAで書いて」と言われることが多いみたい。自分もLaTeXでチャレンジして結構迷う部分が多かったので、とりあえずここに書き散らかしておきます。

実践

 基本は「英語論文――MLAフォーマットとICUの英語教育」を参考にすればよろしいみたい。ただし

Choose Times New Roman, 12-point font.

ということなので、ここだけ注意した方が良いのだろう。結局こんな感じになった(「パッケージが見あたらない」と言われたら、CTANで探してください)

\documentclass[12pt, a4paper, titlepage]{article}
% Timesを使うよ
\usepackage{txfonts}
% セクションが切り替わって最初の行もインデントさせる
\usepackage{indentfirst}
% 文献リストはMLA方式にする
\usepackage{mla}
% ページの余白設定
\setlength{\textwidth}{\paperwidth}
\addtolength{\textwidth}{-2in}
\setlength{\oddsidemargin}{0pt} % ここまででページの左右余白を各1インチに
\setlength{\textheight}{\paperheight}
\addtolength{\textheight}{-2in}
\setlength{\topmargin}{0pt} % 上下の余白も1インチずつに
\setlength{\headheight}{1em}
\setlength{\headsep}{1em}
\addtolength{\textheight}{-2em} % ヘッダ分のスペースを空ける
\setlength{\parindent}{5ex} % インデントは5文字分
% セクション関係
\makeatletter
\newcommand\mlasection{\@startsection{section}{1}{\z@}%
{-3.25ex\@plus -1ex \@minus -.2ex}%
{1.5ex \@plus .2ex}%
{\centering\Large\sffamily\bfseries}}
\newcommand\mlasubsection{\@startsection{subsection}{2}{\z@}%
{-3.25ex\@plus -1ex \@minus -.2ex}%
{1.5ex \@plus .2ex}%
{\large\sffamily\sffamily}}
\newcommand\mlasubsubsection{\@startsection{subsubsection}{3}{\z@}%
{-3.25ex\@plus -1ex \@minus -.2ex}%
{1.5ex \@plus .2ex}%
{\normalsize\sffamily}}
\makeatother
\renewcommand{\section}{\mlasection}
\renewcommand{\subsection}{\mlasubsection}
\renewcommand{\subsubsection}{\mlasubsubsection}
% ダブルスペース
\usepackage{doublespace}
% 尾注の設定
\usepackage{endnotes}
\let\footnote=\endnote
% 表題の設定
\title{\textit{Lord Jim}: \\Failure of Education}
\author{By \\ MUSASHI Kazuhiro } % 
\date{2007/12/21} % 日付は前に定義したMLAに合ったものを
% ヘッダ
\usepackage{fancyhdr}
\lhead{}
\chead{}
\rhead{Kazuhiro MUSASHI~\thepage} % 自分のfamily nameと半角空けてページ番号をページ右上に
\lfoot{}
\cfoot{}
\rfoot{}
\pagestyle{fancyplain}
\renewcommand{\headrulewidth}{0pt} % ヘッダに下線は引かない
% ドキュメント開始
\begin{document}
% タイトル
\maketitle
\thispagestyle{empty}
\newpage
% 目次
\tableofcontents
\thispagestyle{empty}
\newpage
% 本文
\include{intro}
\include{chap01}
\include{chap02}
\include{chap03}
\newpage
% 注
\addcontentsline{toc}{section}{Notes}
\begingroup
\parindent 0pt
\parskip 2ex
\def\enotesize{\normalsize}
\theendnotes
\thispagestyle{empty}
\endgroup
\newpage
% 引用文献
\addcontentsline{toc}{section}{Works Cited}
\bibliographystyle{mla}
\bibliography{biblio}
\thispagestyle{empty}
\newpage
% 参考文献
\addcontentsline{toc}{section}{Works Consulted}
a
\thispagestyle{empty}
% bibliographyに無条件で載せる本をここに
\nocite{LJim}
\nocite{HaggardButts199807}
\nocite{PSimple}
\end{document}

 MLAスタイルに合わせた結果、残り20ページほど書かなければならないことに気づいてちょっと憂鬱になってしまったりして(..;)

参考文献

[改訂第4版]  LaTeX2ε美文書作成入門

[改訂第4版] LaTeX2ε美文書作成入門