maybe I am already looking at it, but I can't see it, so I would be glad if someone can give me a short hint.
\documentclass[12pt]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[german]{babel}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\renewcommand{\theequation}{\textit{Eq. \thesection.\arabic{equation}}}
\begin{document}
\section{Vogelpohlsche Volumenformel}
\begin{equation}
n = \frac{10^{-8} F}{6 C \cdot \eta \cdot V}
\label{eq:Example}
\end{equation}
A reference to the equation \ref{eq:Example} is helpful.
\end{document}
As with this MWE, I redefined the numeration of the equation that it appears on the right as "Eq. 1.1", which works fine. But when I am referencing the equation inside text, I normally write the whole word "equation" and add the reference. Here it gives me also the abbrevation for the reference ("A reference to the equation Eq. 1.1 is helpful."). What is the way to have the "Eq." in the numeration but not in the reference?
I want to avoid additional packages or so and I also looked up former questions like this one without seeing the solution
How to style equation label and reference differently?
Thanks for your input and have a nive day to you all!




\tagform@contains an at-sign, not an ampersand (&). also, wondering why the equation number is given in italic; upright is more traditional in publications i'm used to. – barbara beeton Dec 14 '16 at 14:33