BibTeX, biblatex and biberCustomize bst for be shown year after Title

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
fabioled
Posts: 14
Joined: Sat Sep 15, 2012 2:51 am

Customize bst for be shown year after Title

Post by fabioled »

Hello!

I need of change master thesis are shown. I'm used the ABNT-ALF with some modifications ex: abnt-my.bst.

I need that YEAR shown (date) after o TITLE and before of type. However, such change not modify another types : (Article, Book, etc)

like stay:

CORDEIRO, F. L. R. Cluster trivial database. Dissertação (Mestrado) — Pontifícia Universidade Católica, Programa de Pós-graduação em Informática, 2010.

How it must be:

CORDEIRO, F. L. R. Cluster trivial database . 2010. Dissertação (Mestrado) — Pontifícia Universidade Católica, Programa de Pós-graduação em Informática.

My main document:

Code: Select all

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

\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{Programa de Pós-graduação em Engenharia Elétrica, 
 Pontifícia Universidade Católica de Minas Gerais. 
Caixa Postal 00000, CEP 81531-990, Belo Horizonte, Minas Gerais, Brasil. 
E-mail: fabioleandro@oucminas.br}\\
}

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

\section{Introducao}

Testando referencias \cite{fabio}

\section{metodologia}

\bibliographystyle{abnt-alf} 

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

\end{document}
My bibliography file:

Code: Select all

@MASTERSTHESIS{fabio,
author = {Fabio Cordeiro},
title = {Representações neural e fuzzy de controle},
school = {Pontifícia Universidade Católica de Minas Gerais},
year = {2010}
}
Thanks for the help.

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

fabioled
Posts: 14
Joined: Sat Sep 15, 2012 2:51 am

Customize bst for be shown year after Title

Post by fabioled »

Guys, One more time I can resolve the problem.
Case someone need these information, the parameter that used was:

Code: Select all

\usepackage[alf,abnt-emphasize=bf,abnt-thesis-year=title]{abntcite}
Last edited by cgnieder on Sat Nov 10, 2012 6:07 pm, edited 1 time in total.
Post Reply