Is there a command for citing in biblatex that somewhat can do what \citeauthor does but with a little bit more. I am looking for something like \cite[85-86][2017]{mehlich2017}. So the output is something like
(Mehlich, 2017, p. 85-86)
Or that it can take the year itself from the biblatex eintry so its just \cite[85-86]{mehlich2017}. I tried looking at the documentation, but I am not sure how I would create a command, since I don't seem to find one that does what I need.
I am using biblatex and the memoir class and currently using this basic setup (I've used this for quite some time, and I don't think its this one creating problems). Thanks in advance.
\documentclass[11pt,openright,oneside,british,a4paper]{memoir}
% Packages
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{import}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage[colorlinks=true, allcolors=blue]{hyperref}
\usepackage[backend=biber,
style=chem-acs, % Citation style as (AUTHOR YEAR)
sorting=none, % Sort citations as YEAR-NAME-TITLE
sortcites=true,
%dashed=false,
maxcitenames=3, % Increase/decrease to include more/fewer authors in cites
maxbibnames=5, % As above, but in the bibliography
uniquelist=false,
uniquename=false,
doi=false,
isbn=false,
eprint=false,
autocite=superscript,
biblabel=brackets,
hyperref=true]{biblatex}
%\usepackage[backend=biber]{biblatex}
\addbibresource{bibliography.bib}
\title{Your Paper}
\author{Me}
%----------------------------------------------------------------------------------------
\begin{document}
\maketitle
Your introduction goes here! Simply start writing your document and use the Recompile button to view the updated PDF preview \parencite[85]{mehlich2017}
\end{document}


Citation style as (AUTHOR YEAR). If it is a numeric style, you should perhaps switch to authoryear instead. – Ulrike Fischer Nov 16 '21 at 11:32style=chem-acs,selects a numeric citation style, so that most 'normal'\...citecommands produce output based on a numeric designation for your sources. If you want author-year citations, you should probably look into using a different style. Trystyle=authoryear,and use the\autocitecommand. Because different styles support different options, I suggest you start small and replace your wholebiblatexloading block with\usepackage[backend=biber, style=authoryear]{biblatex}(then add options as needed). – moewe Nov 16 '21 at 12:05bibliography.bib. See this answer for how to include it in your MWE. – schtandard Nov 16 '21 at 12:07style=authoryear into the options for \usepackage[backend=biber,style=authoryear]{biblatex}which created (Mehlich et al, 2017, p. 85) by using the \parencite. Great, it was just that little difference in style. Though I am surprised this isn't the default method by just using \usepackage{backend=biber]{biblatex} when I tried that. Anyways, thanks for all the help :) I am quite new here, so I appreciate it all with creating MWE and such. Have a nice day – JonasDenmark Nov 16 '21 at 12:51