How to apply `limits` to `parallel`? [duplicate]
This question already has an answer here:
How to create my own math operator with limits?
5 answers
LaTeX complains Limit controls must follow a math operator. textbf{G} := parallellimits
about the following snippet.
documentclass{article}
usepackage{mathtools}
begin{document}
begin{equation}
textbf{G} := parallellimits_{pi in mathcal{P}} textbf{G}^{pi}
end{equation}
end{document}
What is a possible workaround to apply limits
to parallel
?
symbols
marked as duplicate by TeXnician, Troy, Sebastiano, Kurt, Stefan Pinnow Dec 16 at 16:41
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
How to create my own math operator with limits?
5 answers
LaTeX complains Limit controls must follow a math operator. textbf{G} := parallellimits
about the following snippet.
documentclass{article}
usepackage{mathtools}
begin{document}
begin{equation}
textbf{G} := parallellimits_{pi in mathcal{P}} textbf{G}^{pi}
end{equation}
end{document}
What is a possible workaround to apply limits
to parallel
?
symbols
marked as duplicate by TeXnician, Troy, Sebastiano, Kurt, Stefan Pinnow Dec 16 at 16:41
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
How to create my own math operator with limits?
5 answers
LaTeX complains Limit controls must follow a math operator. textbf{G} := parallellimits
about the following snippet.
documentclass{article}
usepackage{mathtools}
begin{document}
begin{equation}
textbf{G} := parallellimits_{pi in mathcal{P}} textbf{G}^{pi}
end{equation}
end{document}
What is a possible workaround to apply limits
to parallel
?
symbols
This question already has an answer here:
How to create my own math operator with limits?
5 answers
LaTeX complains Limit controls must follow a math operator. textbf{G} := parallellimits
about the following snippet.
documentclass{article}
usepackage{mathtools}
begin{document}
begin{equation}
textbf{G} := parallellimits_{pi in mathcal{P}} textbf{G}^{pi}
end{equation}
end{document}
What is a possible workaround to apply limits
to parallel
?
This question already has an answer here:
How to create my own math operator with limits?
5 answers
symbols
symbols
asked Dec 16 at 15:39
Roboticist
1,59121131
1,59121131
marked as duplicate by TeXnician, Troy, Sebastiano, Kurt, Stefan Pinnow Dec 16 at 16:41
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by TeXnician, Troy, Sebastiano, Kurt, Stefan Pinnow Dec 16 at 16:41
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Maybe you want a symbol similar to sum
:
documentclass{article}
usepackage{mathtools,graphicx}
makeatletter
newcommand{parop}{DOTSBparop@slimits@}
newcommand{parop@}{mathop{vphantom{sum}mathpalettedelimiter@to@opVert}}
newcommand{delimiter@to@op}[2]{%
begingroup
sboxz@{$#1sum$}%
vcenter{hbox{resizebox{!}{htz@}{$m@th#2$}}}%
endgroup
}
makeatother
begin{document}
begin{equation}
textbf{G} coloneqq parop_{pi in mathcal{P}} textbf{G}^{pi}
end{equation}
begin{equation}
sum_{pi in mathcal{P}} parop_{pi in mathcal{P}}
end{equation}
begin{equation}
textstyle sum_{pi in mathcal{P}} parop_{pi in mathcal{P}}
scriptstyle sum_{pi in mathcal{P}} parop_{pi in mathcal{P}}
scriptscriptstyle sum_{pi in mathcal{P}} parop_{pi in mathcal{P}}
end{equation}
end{document}
add a comment |
For a quick and dirty one-time-use solution, make it a math operator.
documentclass{article}
usepackage{mathtools}
begin{document}
begin{equation}
textbf{G} := mathop{parallel}limits_{pi in mathcal{P}} textbf{G}^{pi}
end{equation}
end{document}
For all other situations, see tex.stackexchange.com/questions/23432/….
– TeXnician
Dec 16 at 15:44
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Maybe you want a symbol similar to sum
:
documentclass{article}
usepackage{mathtools,graphicx}
makeatletter
newcommand{parop}{DOTSBparop@slimits@}
newcommand{parop@}{mathop{vphantom{sum}mathpalettedelimiter@to@opVert}}
newcommand{delimiter@to@op}[2]{%
begingroup
sboxz@{$#1sum$}%
vcenter{hbox{resizebox{!}{htz@}{$m@th#2$}}}%
endgroup
}
makeatother
begin{document}
begin{equation}
textbf{G} coloneqq parop_{pi in mathcal{P}} textbf{G}^{pi}
end{equation}
begin{equation}
sum_{pi in mathcal{P}} parop_{pi in mathcal{P}}
end{equation}
begin{equation}
textstyle sum_{pi in mathcal{P}} parop_{pi in mathcal{P}}
scriptstyle sum_{pi in mathcal{P}} parop_{pi in mathcal{P}}
scriptscriptstyle sum_{pi in mathcal{P}} parop_{pi in mathcal{P}}
end{equation}
end{document}
add a comment |
Maybe you want a symbol similar to sum
:
documentclass{article}
usepackage{mathtools,graphicx}
makeatletter
newcommand{parop}{DOTSBparop@slimits@}
newcommand{parop@}{mathop{vphantom{sum}mathpalettedelimiter@to@opVert}}
newcommand{delimiter@to@op}[2]{%
begingroup
sboxz@{$#1sum$}%
vcenter{hbox{resizebox{!}{htz@}{$m@th#2$}}}%
endgroup
}
makeatother
begin{document}
begin{equation}
textbf{G} coloneqq parop_{pi in mathcal{P}} textbf{G}^{pi}
end{equation}
begin{equation}
sum_{pi in mathcal{P}} parop_{pi in mathcal{P}}
end{equation}
begin{equation}
textstyle sum_{pi in mathcal{P}} parop_{pi in mathcal{P}}
scriptstyle sum_{pi in mathcal{P}} parop_{pi in mathcal{P}}
scriptscriptstyle sum_{pi in mathcal{P}} parop_{pi in mathcal{P}}
end{equation}
end{document}
add a comment |
Maybe you want a symbol similar to sum
:
documentclass{article}
usepackage{mathtools,graphicx}
makeatletter
newcommand{parop}{DOTSBparop@slimits@}
newcommand{parop@}{mathop{vphantom{sum}mathpalettedelimiter@to@opVert}}
newcommand{delimiter@to@op}[2]{%
begingroup
sboxz@{$#1sum$}%
vcenter{hbox{resizebox{!}{htz@}{$m@th#2$}}}%
endgroup
}
makeatother
begin{document}
begin{equation}
textbf{G} coloneqq parop_{pi in mathcal{P}} textbf{G}^{pi}
end{equation}
begin{equation}
sum_{pi in mathcal{P}} parop_{pi in mathcal{P}}
end{equation}
begin{equation}
textstyle sum_{pi in mathcal{P}} parop_{pi in mathcal{P}}
scriptstyle sum_{pi in mathcal{P}} parop_{pi in mathcal{P}}
scriptscriptstyle sum_{pi in mathcal{P}} parop_{pi in mathcal{P}}
end{equation}
end{document}
Maybe you want a symbol similar to sum
:
documentclass{article}
usepackage{mathtools,graphicx}
makeatletter
newcommand{parop}{DOTSBparop@slimits@}
newcommand{parop@}{mathop{vphantom{sum}mathpalettedelimiter@to@opVert}}
newcommand{delimiter@to@op}[2]{%
begingroup
sboxz@{$#1sum$}%
vcenter{hbox{resizebox{!}{htz@}{$m@th#2$}}}%
endgroup
}
makeatother
begin{document}
begin{equation}
textbf{G} coloneqq parop_{pi in mathcal{P}} textbf{G}^{pi}
end{equation}
begin{equation}
sum_{pi in mathcal{P}} parop_{pi in mathcal{P}}
end{equation}
begin{equation}
textstyle sum_{pi in mathcal{P}} parop_{pi in mathcal{P}}
scriptstyle sum_{pi in mathcal{P}} parop_{pi in mathcal{P}}
scriptscriptstyle sum_{pi in mathcal{P}} parop_{pi in mathcal{P}}
end{equation}
end{document}
answered Dec 16 at 16:09
egreg
706k8618783160
706k8618783160
add a comment |
add a comment |
For a quick and dirty one-time-use solution, make it a math operator.
documentclass{article}
usepackage{mathtools}
begin{document}
begin{equation}
textbf{G} := mathop{parallel}limits_{pi in mathcal{P}} textbf{G}^{pi}
end{equation}
end{document}
For all other situations, see tex.stackexchange.com/questions/23432/….
– TeXnician
Dec 16 at 15:44
add a comment |
For a quick and dirty one-time-use solution, make it a math operator.
documentclass{article}
usepackage{mathtools}
begin{document}
begin{equation}
textbf{G} := mathop{parallel}limits_{pi in mathcal{P}} textbf{G}^{pi}
end{equation}
end{document}
For all other situations, see tex.stackexchange.com/questions/23432/….
– TeXnician
Dec 16 at 15:44
add a comment |
For a quick and dirty one-time-use solution, make it a math operator.
documentclass{article}
usepackage{mathtools}
begin{document}
begin{equation}
textbf{G} := mathop{parallel}limits_{pi in mathcal{P}} textbf{G}^{pi}
end{equation}
end{document}
For a quick and dirty one-time-use solution, make it a math operator.
documentclass{article}
usepackage{mathtools}
begin{document}
begin{equation}
textbf{G} := mathop{parallel}limits_{pi in mathcal{P}} textbf{G}^{pi}
end{equation}
end{document}
answered Dec 16 at 15:41
TeXnician
24k63084
24k63084
For all other situations, see tex.stackexchange.com/questions/23432/….
– TeXnician
Dec 16 at 15:44
add a comment |
For all other situations, see tex.stackexchange.com/questions/23432/….
– TeXnician
Dec 16 at 15:44
For all other situations, see tex.stackexchange.com/questions/23432/….
– TeXnician
Dec 16 at 15:44
For all other situations, see tex.stackexchange.com/questions/23432/….
– TeXnician
Dec 16 at 15:44
add a comment |