Skip to content

Instantly share code, notes, and snippets.

@kmaed
Created February 5, 2012 18:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kmaed/1747125 to your computer and use it in GitHub Desktop.
Save kmaed/1747125 to your computer and use it in GitHub Desktop.
biblatex で日本語を使ってみる
@article{piyo,
title="The world of {PIYO}",
author="Piyo, T.",
journal="J. Piyo",
volume="1",
pages="1--10",
year="2012",
publisher="Piyopiyo"
}
@book{hoge,
title="ほげの世界",
author="保毛太郎",
sortname="Hoge, T.",
year="2012",
publisher="保毛書店"
}
@book{hogetheory,
title="ほげ理論入門",
author="保毛太郎,保毛次郎,保毛三郎",
sortname="Hoge, T. and Hoge, J. and Hoge, S.",
year="2012",
publisher="数学出版"
}
Display the source blob
Display the rendered blob
Raw
\documentclass{ltjarticle}
\usepackage[backend=biber]{biblatex} % default: style=numeric
\addbibresource{numeric-ja-examples.bib}
\begin{document}
\cite{piyo,hoge,hogetheory}
\printbibliography[title=参考文献]
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment