人文系で伝統的に用いられている著者・表題方式での文献引用をLaTeXで用いる方法を考える.
少し手間がかかるが次のようにする.
\makeatletter
\def\@cite#1#2{#2}
\renewenvironment{thebibliography}{%
\global\let\presectionname\relax
\global\let\postsectionname\relax
\section*{\refname}\@mkboth{\refname}{\refname}%
\list{}%
{\leftmargin2em
\itemindent-2em
\labelwidth\z@
\labelsep\z@
\@openbib@code
\usecounter{enumiv}%
\let\p@enumiv\@empty
\renewcommand\theenumiv{\@arabic\c@enumiv}}%
\sloppy
\clubpenalty4000
\@clubpenalty\clubpenalty
\widowpenalty4000%
\sfcode`\.\@m}
{\def\@noitemerr
{\@latex@warning{Empty `thebibliography' environment}}%
\endlist}
\makeatother
\def\AuthorITitleI{AuthorI}
\def\AuthorIITitleII{AuthorII}
Author1は……と言い\footnote{\cite[\AuthorITitleI, p.~123]{AuthorITitleI}.},
Author2は……と言っている\footnote{\cite[\AuthorIITitleII, p.~345]{AuthorIITitleII}.}.
\begin{thebibliography}
\bibitem{AuthorITitleI} AuthorI, A., \textit{Title I} (Oxford, 2012).
\bibitem{AuthorIITitleII} AuthorII, B., \textit{Title II} (Cambridge, 2011).
\end{thebibliography}