更改我的 \bibliography 标题

更改我的 \bibliography 标题

我正在尝试更改我的 的标题\bibliography,目前显示为“参考文献”。但是,这是一篇论文,必须将所有内容保留为大写字母,即“参考文献”。

这是我的代码的序言:

\documentclass[12pt,a4paper]{report}   %[oneside]{book}
\usepackage[portuguese, brazil]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{fancyhdr}
\usepackage{verbatim}
\usepackage{float}
\usepackage{xcolor}
\usepackage{listings}
\usepackage{geometry}
\usepackage{pdflscape}
\usepackage[center]{caption}
\usepackage[labelfont=bf]{caption}
\captionsetup{font=footnotesize}
\usepackage[hyphens]{url}
\usepackage{hyperref}
\usepackage{epsfig}
\usepackage{graphics}
\usepackage{graphicx}
\usepackage{booktabs}
\usepackage{rotating}
\usepackage{url}
\usepackage{natbib}
\usepackage{indentfirst}
\usepackage{color}
\usepackage{caption}
\usepackage{subcaption}
\usepackage[nottoc,notlot,notlof]{tocbibind}
\usepackage{soul}
\usepackage{pifont}
\usepackage{bm}
\usepackage{enumerate}
\usepackage[page,toc,titletoc,title]{appendix}
\usepackage{booktabs, makecell, multirow, rotating}
\usepackage{array}
\usepackage{colortbl}
\usepackage{amsmath}
\usepackage{notoccite}
\usepackage{acro}
\usepackage{tocloft}
\counterwithout{footnote}{chapter}
\usepackage[labelformat=simple]{subcaption}
\renewcommand\thesubfigure{(\alph{subfigure})}
\usepackage{titlesec}

\titleformat*{\section}{\mdseries\large}
\titleformat*{\subsubsection}{\mdseries\large}
\titleformat{\chapter}[display]{\normalfont\large\bfseries}{}{1em}{\thechapter~}
\titlespacing{\chapter}{0pt}{-50pt}{8pt}


%configuração do pacote listings
\lstset{numbers=left,stepnumber=1,firstnumber=1,numberstyle=\tiny,extendedchars=true,breaklines=true,frame=tb,basicstyle=\footnotesize,stringstyle=\ttfamily,showstringspaces=false,morecomment=[l]{//},morecomment=[s]{/*}{*/},}
%fim da configuração

\setlength{\oddsidemargin }{17mm}  % margem esquerda para paginas impares
\setlength{\evensidemargin}{17mm}  % margem esquerda para paginas espelho
\setlength{\topmargin}{8mm}       % distancia da margem superior ao cabecalho 0
\setlength{\footskip}{20mm}       % distancia do texto ao rodape  15
\setlength{\headheight}{10mm}     % tamanho do cabecalho
\setlength{\headsep}{0mm}         % distancia do cabecalho ao inicio do texto
\setlength{\textheight}{205mm}    % comprimento do texto na pagina230
\setlength{\textwidth}{137mm}     % largura do texto na pagina 154
\setlength{\parskip}{2ex}         % distancia entre dois paragrafos
\setlength{\parindent}{10mm}


\newcommand{\fix}[1]{{\color{red}{#1}}}
\newcommand{\remover}[1]{\st{#1}}
\newcommand{\incluir}[1]{{\color{green}{#1}}}
\newcommand{\trocar}[2]{\remover{#1} \incluir{#2}}



\newcommand{\qed}{\hfill\rule{2.5mm}{2.5mm}}
\pagenumbering{arabic}

\input{8-Abreviacoes}

\renewcommand{\cfttoctitlefont}{\hspace*{\fill}\Huge\bfseries}
\renewcommand{\cftaftertoctitle}{\hspace*{\fill}}
\renewcommand{\cftlottitlefont}{\hspace*{\fill}\Huge\bfseries}
\renewcommand{\cftafterlottitle}{\hspace*{\fill}}
\renewcommand{\cftloftitlefont}{\hspace*{\fill}\Huge\bfseries}
\renewcommand{\cftafterloftitle}{\hspace*{\fill}}

\renewcommand{\cftfigpresnum}{Figura\ }
\renewcommand{\cfttabpresnum}{Tabela\ }

\newlength{\mylenf}
\settowidth{\mylenf}{\cftfigpresnum}
\setlength{\cftfignumwidth}{\dimexpr\mylenf+2.4em}
\setlength{\cfttabnumwidth}{\dimexpr\mylenf+2.3em}
\renewcommand{\cftfigaftersnum}{:}
\renewcommand{\cfttabaftersnum}{:}

\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}

\makeatletter
\newcommand\subsubsubsection{\@startsection{paragraph}{4}{\z@}{-2.5ex\@plus-1ex\@minus -.25ex}{1.25ex \@plus .25ex}{\large\bfseries\itshape}}
\newcommand\subsubsubsubsection{\@startsection{subparagraph}{5}{\z@}{-2.5ex\@plus-1ex \@minus -.25ex}{1.25ex \@plus .25ex}{\large\mdseries\itshape}}
\makeatother

以下是我的文档的其余部分:

\begin{document}
\sloppy
\input{1-capa.tex}
\input{2-ContraCapa}
\input{3-Agradecimentos}
\input{4-Resumo}
\input{5-Abstract}

% LISTA DE FIGURAS
\listoffigures\thispagestyle{empty}
\addtocontents{lof}{\protect\thispagestyle{empty}}
\clearpage

% LISTA DE TABELAS
\listoftables\thispagestyle{empty}
\addtocontents{lot}{\protect\thispagestyle{empty}}
\clearpage
\thispagestyle{empty}\pagestyle{empty}
\printacronyms[name= \centering Lista de Abreviaturas e Siglas\thispagestyle{empty}]
\clearpage   
\thispagestyle{empty}\pagestyle{empty}
\tableofcontents\thispagestyle{empty}
\addtocontents{toc}{\protect\thispagestyle{empty}}
\clearpage
\pagestyle{plain}
% CAPÍTULOS
\input{10-Introdução}
\input{11-ReferencialTeoricoEducacional}
\input{12-0-ReferencialTeoricoML}
\input{13-TrabRelac}
\input{14-DescricaoExperimentos}
\input{15-AnaliseResultados}
\input{16-Conclusão}    
\bibliographystyle{unsrt}
\bibliography{sbc-template}
\input{17-Apendice}
\input{18-Anexos}
\end{document}

答案1

由于我无法编译您的示例文档,因此很难验证该解决方案是否适合您。

您似乎正在使用natbib但是。在这种情况下,您可以使用以下内容更改参考书目标题,改编自先前类似的答案(另见另一个类似的答案,带有解释)。

\renewcommand{\bibsection}{\section*{BIBLIOGRAPHIC REFERENCES}}

或者,以下命令应自动将任何现有的(natbib)参考书目部分名称设置为全大写:

\renewcommand{\bibsection}{\section*{\MakeUppercase{\bibname}}}

您最好改用更加现代 BibLaTeX

相关内容