I want to cite software in APA style, this is what APA requires (Example for R):
R Core Team. (2019). R: A Language and Environment for Statistical Computing. Version 3.6.1 [Computer Software]. Vienna, Austria. Retrieved from https://www.R-project.org/ (EPEL Repo)
The following prints [Computer Software Manual] - is there are way to have "Manual" removed?
@Manual{RCT2019,
author = {{R Core Team}},
title = {{R: A Language and Environment for Statistical Computing. Version 3.6.1}},
year = {2019},
howpublished = {Vienna, Austria},
date = {2019},
organization = {R Foundation for Statistical Computing},
location = {Vienna, Austria},
url = {https://www.R-project.org/ (EPEL Repo)},
}
Ref: https://blog.apastyle.org/apastyle/2015/01/how-to-cite-software-in-apa-style.html
\documentclass[doc,natbib,floatsintext,12pt,noextraspace]{apa6}
\section*{REFERENCES}
\label{sec:REFERENCES}
\addcontentsline{toc}{section}{REFERENCES}
\end{center}
\renewcommand{\bibsection}{} % hides/removes References from the bibliography
\urlstyle{same} % needed to surpress the typewrite style of ULR
\raggedright % without it, spaces between authors and titles too wide.
\bibliography{../Diss-Bibliography.bib}
biblatex, but it isn't quite clear to me which style you are using. Could you turn the code snippets shown so far into a fully compilable example document (an MWE https://tex.meta.stackexchange.com/q/228/35864 or MWEB https://tex.meta.stackexchange.com/q/4407/35864), please? – moewe Nov 14 '19 at 22:22