Created
February 5, 2012 18:44
-
-
Save kmaed/1747125 to your computer and use it in GitHub Desktop.
biblatex で日本語を使ってみる
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
@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="数学出版" | |
} |
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{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