usign documentclass extarticle 如何将书目标题格式化为节、小节

usign documentclass extarticle 如何将书目标题格式化为节、小节

我该如何格式化标题“图书“ 和 ”论文“ 表现为\subsections?

我认为有类似的包多围兜,但它不适用于reference.bib 我想按照以下规则划分参考书目:

图书

他们将参加所有与书籍有关的约会。

@BOOK{}

论文 以下是与文章有关的所有约会

@article{}

好的,我的文本文档

\documentclass[14pt,a4paper]{extarticle}
\usepackage[utf8]{inputenc}

\begin{document}
\section{Hi Group}
\subsection{Hi}
\subsubsection{I only}
\begin{quote}
 reference article ~\cite{2018_tailand}, other book ~\cite{fred_invs}.
\end{quote}
\section{Bibliography}
\nocite{*}
%-----add action------
\section{Bibliography}
\nocite{*}
\bibliography{referency}  %---reference ---
\bibliographystyle{alpha}
\end{document}

参照性。围兜

@article{2018_tailand,
author = {Jaichuen, Nongnuch and Chaiyasong},
year = {2018},
month = {06},
pages = {},
title = {ALCOHOL CONSUMPTION AMONG THAI UNIVERSITY STUDENTS},
volume = {sport participation}

@article{usa_2012,
title = "Alcohol use among college students",
author = "Mette Gilla",
year = "2012"
}

@BOOK{fred_invs,
author = "FRED N. KERLINGER; HOWARD B. LEE",
title = "Alcoholism from a gender perspective",
journal = "Spanish Journal of Drug Addiction",
volume = "4ed",
journal = "McGraw-Hill",
year = "2002"
}

我需要的结果如下图所示

在此处输入图片描述

相关内容