GeneralChange style bibliographies

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
fabioled
Posts: 14
Joined: Sat Sep 15, 2012 2:51 am

Change style bibliographies

Post by fabioled »

Hi,

I want to change the style of font for "References". I want the title of books and Articles stay in BOLD and dont in ITALIC BOLD how stay on my document.

My style stay:
KNUTH, D. E. The art of computer programming, Volume 16: Fundamental Algorithms.
[S.l.]: Addison-Wesley, 1968.

I would like:
KNUTH, D. E. The art of computer programming, Volume 16: Fundamental Algorithms.
[S.l.]: Addison-Wesley, 1968.


Document main (example):

Code: Select all

\documentclass[a4paper]{article}
\usepackage[brazil,brazilian]{babel}
\usepackage[ansinew]{inputenc}
 \usepackage{abnt-alf}
\usepackage[alf]{abntcite}

\hyphenation{vi-zi-nhos }

\newcommand{\qcounts}{{\normalfont\textit{quadrat counts}}{}}
\newcommand{\q}{{\normalfont\textit{quadrat}}{}}
\newcommand{\qs}{{\normalfont\textit{quadrats}}{}}
\newcommand{\citrus}{{\normalfont\textit{Citrus}}{}}
\newcommand{\msc}{{\normalfont\textit{Morte Súbita dos Citrus}}{}}
\newcommand{\MSC}{\acronym{MSC}{}}
\newcommand{\geoR}{{\normalfont\textsf{geoR}}{}}
\newcommand{\geoRglm}{{\normalfont\textsf{geoRglm}}{}}
\newcommand{\splancs}{{\normalfont\textsf{splancs}}{}}
\title{Modelo autologístico para dados de citrus}

\author{
Fabio CORDEIRO 
\footnote{Laboratório de Estatística e Geoinformação, 
Departamento de Estatística, Universidade Federal do Paraná-UFPR. 
Caixa Postal 19081, CEP 81531-990, Curitiba, Paraná, Brasil. 
E-mail: fabioleandro@oucminas.br}\\
}

\begin{document}
\maketitle
\section{resumo} 

Testando referencias \cite{knuth}

\section{introducao}
\section{metodologia}
\bibliographystyle{abnt-alf} 

\bibliography{bibliografia} %%%%%%%%%

\end{document}

Example Bibliography file: (bibliografia.tex)

Code: Select all

@book{knuth,
	author = {Donald E. Knuth},
	title = {\textbf{The art of computer programming}, Volume 16: Fundamental Algorithms},
	publisher = {Addison-Wesley},
	year = {1968}
}


Thanks!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Post Reply