Obtener símbolos en la parte superior de un Sigma

Intentando que esta ecuación funcione dentro del látex, pero teniendo problemas para hacerlo, intenté lo siguiente

\begin{equation} \mathlarger {( I * K)_{xy} = \Sigma^{h}_{i=1} \Sigma^{w}_{j=1} K} \end{equation}{} 

ingrese la descripción de la imagen aquí

Comentarios

  • ¡Bienvenido! Reemplaza \Sigma por \sum.
  • Por favor, siempre en lugar del fragmento de código, proporciona un documento pequeño completo que comience con \documentclass{...} seguido de paquetes relacionados con su problema, \begin{document} su fragmento de código y terminando con ˙ \ document} . by this you will help us to help you. if \ sum ^ {h} _ {i = 1} `no ayudará, tra \sum\limits^{h}_{i=1}

Respuesta

El símbolo correcto es \sum (para «suma»), no \Sigma. Además, no hay ninguna razón para \mathlarger. No agregue {} después de \end{equation}.

\documentclass{article} \usepackage{amsmath} % recommended \usepackage{relsize} % for \mathlarger \begin{document} The following display is wrong under many respects: the symbol should be \verb|\sum| and not \verb|\Sigma|; also there is no reason to make the symbols larger. \begin{equation} \mathlarger {( I * K)_{xy} = \Sigma^{h}_{i=1} \Sigma^{w}_{j=1} K} \end{equation}{} This is the correct way to typeset the formula \begin{equation} (I * K)_{xy} = \sum^{h}_{i=1} \sum^{w}_{j=1} K \end{equation} Note that the empty group like in \verb|\end{equation}{}| is actually harmful: can you spot the misalignment? \end{document} 

ingrese la descripción de la imagen aquí

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *