How to apply `limits` to `parallel`? [duplicate]
up vote
3
down vote
favorite
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 42 mins ago
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 |
up vote
3
down vote
favorite
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 42 mins ago
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 |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
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 1 hour ago
Roboticist
1,58521131
1,58521131
marked as duplicate by TeXnician, Troy, Sebastiano, Kurt, Stefan Pinnow 42 mins ago
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 42 mins ago
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
up vote
4
down vote
accepted
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 |
up vote
2
down vote
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
1 hour ago
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
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 |
up vote
4
down vote
accepted
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 |
up vote
4
down vote
accepted
up vote
4
down vote
accepted
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 1 hour ago
egreg
705k8618763155
705k8618763155
add a comment |
add a comment |
up vote
2
down vote
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
1 hour ago
add a comment |
up vote
2
down vote
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
1 hour ago
add a comment |
up vote
2
down vote
up vote
2
down vote
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 1 hour ago
TeXnician
24k63084
24k63084
For all other situations, see tex.stackexchange.com/questions/23432/….
– TeXnician
1 hour ago
add a comment |
For all other situations, see tex.stackexchange.com/questions/23432/….
– TeXnician
1 hour ago
For all other situations, see tex.stackexchange.com/questions/23432/….
– TeXnician
1 hour ago
For all other situations, see tex.stackexchange.com/questions/23432/….
– TeXnician
1 hour ago
add a comment |