更改 LaTeX 书中的参考书目格式

更改 LaTeX 书中的参考书目格式

在此处输入图片描述

如何将参考文献的格式改成像截图那样(放到那个方形位置,字体14,并且“参考文献”一词变成“DAFTAR PUSTAKA”。以及如何将第2行的水平间距设置为1厘米。

这是我的 main.tex

\documentclass[12pt,twoside]{book}
  \usepackage[style=authoryear,natbib=true]{biblatex}
  \addbibresource{references.bib}
  \begin{document}
  Someone have found a simple solution  \parencite{Gill}.

  Someone has found a simple solution  \citep[see page 47]{Gill}.

  A simple solution has been found by \citeauthor{Gill} in \citeyear{Gill}.
  \printbibliography

  \end{document}

这是文件references.bib

@ARTICLE{Gill,
   author    = "A. E. Gill",
   title     = "Some Simple Solutions for Heat-Induced Tropical Circulation",
   journal   = "Quart. J. R. Met. Soc.",
   volume    = 106,
   year      = 1980,
   pages     = "447-462",
}

相关内容