I'm trying to edit the abnt style so that the printed reference
- looses the "<" and ">" around a url
- S.l.: s.n. in italic
- how can I change citation (Instruments, 2019) to (National Instuments, 2019), like how bibtex is doing with red hat.
- when there are two articles with the same author it prints the author's name for each refernce( now the second reference has _______ in place of the authers name) I created a reduced tex file so i could fiddle with the code to find a solution but i wasn't able to here are the tex and bib files I'm working on. thanks for any help.
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[brazil]{babel}
\usepackage{csquotes}
\usepackage[style=abnt,backend=biber,citecounter=true,backrefstyle=three]{biblatex}
\DefineBibliographyStrings{brazil}{%
}
\bibliography{ref}
\begin{document}
\section{Introduction}
\cite{website:ArduinoLabview}
\cite{website:OPENSOURCESW}
\cite{website:OPENSOURCEHW}
\printbibliography
\end{document}
and the bib file
@misc{website:ArduinoLabview,
author = "National Instruments",
title = "Arduino™ Compatible Compiler for LabVIEW by Aledyne-TSXperts",
year = "2019",
url = "https://www.tsxperts.com/arduino-compatible-compiler-for-labview/",
urldate = {2019-06-07}
}
@misc{website:OPENSOURCEHW,
author = "Red Hat, Inc.",
title = "What is open hardware?",
%year = "2012",
url = "https://opensource.com/resources/what-open-hardware",
urldate = {2019-06-07}
}
@misc{website:OPENSOURCESW,
author = "Red Hat, Inc.",
title = "What is open source?",
%year = "2012",
url = "https://opensource.com/resources/what-open-source",
urldate = {2019-06-07}
}

{...}.author="{National Instruments}"You should actually do that for the Red Hat example too. – Alan Munn Jun 14 '19 at 23:47\DeclareFieldFormat{url}{\bibstring{urlfrom}\addcolon\addspace\url{#1}}. The other two questions require more work. – Alan Munn Jun 15 '19 at 03:38