Ottenere simboli sopra un Sigma

Cercando di far funzionare questa equazione con il latex ma avendo problemi a farlo funzionare, ho provato quanto segue

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

inserisci qui la descrizione dellimmagine

Commenti

  • Benvenuto! Sostituisci \Sigma con \sum.
  • al posto dello snippet di codice fornisci sempre un piccolo documento completo che inizia con \documentclass{...} segue i pacchetti relativi al tuo problema, \begin{document} lo snippet di codice e termina con ˙ \ document} . by this you will help us to help you. if \ sum ^ {h} _ {i = 1} `non aiuterà, tra \sum\limits^{h}_{i=1}

Risposta

Il simbolo corretto è \sum (per “sommatoria”), non \Sigma. Inoltre non vi è alcun motivo per \mathlarger. Non aggiungere {} dopo \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} 

inserisci qui la descrizione dellimmagine

Lascia un commento

Il tuo indirizzo email non sarà pubblicato. I campi obbligatori sono contrassegnati *