Minipage compatible with xy matrix? What may be an alternative fix?LaTeX equivalent of ConTeXt buffersFix the...
How can I use the arrow sign in my bash prompt?
how to analyze "是其于主也至忠矣"
Implement the Thanos sorting algorithm
What's a natural way to say that someone works somewhere (for a job)?
Hostile work environment after whistle-blowing on coworker and our boss. What do I do?
Why did Kant, Hegel, and Adorno leave some words and phrases in the Greek alphabet?
How does residential electricity work?
Curses work by shouting - How to avoid collateral damage?
Is there an Impartial Brexit Deal comparison site?
Was Spock the First Vulcan in Starfleet?
Why "be dealt cards" rather than "be dealing cards"?
Is there a good way to store credentials outside of a password manager?
There is only s̶i̶x̶t̶y one place he can be
Why are on-board computers allowed to change controls without notifying the pilots?
Will it be accepted, if there is no ''Main Character" stereotype?
Efficiently merge handle parallel feature branches in SFDX
Finding all intervals that match predicate in vector
Was the picture area of a CRT a parallelogram (instead of a true rectangle)?
Go Pregnant or Go Home
Failed to fetch jessie backports repository
What is the intuitive meaning of having a linear relationship between the logs of two variables?
How does a character multiclassing into warlock get a focus?
Should my PhD thesis be submitted under my legal name?
Unattended/Unattended to?
Minipage compatible with xy matrix? What may be an alternative fix?
LaTeX equivalent of ConTeXt buffersFix the height/length of a minipageXY matrix tampering with footnote counterTikZ/ERD: node (=Entity) label on the insidea commutative diagram compatible with group actionsminipage alignment with tikzpictureAlternative to a Minipage page breaksTikZ: Make “scopenode” compatible with matrixEnumerate graphs with minipageproblem with minipage
I have a minimal working environment below.
It fails to be compiled.
Is the minipage compatible with xy matrix? What may be an alternative fix?
Thanks for the help!
documentclass[14pt]{article}
usepackage[all, knot]{xy}
def Z{mathbb{Z}}
begin{document}
xymatrix{
&omega\
begin{minipage}[c]{5in}
1
end{minipage}ar[ru]&\
}
xymatrix{
&omega\
begin{minipage}[c]{5in}
$Delta=Z$:\
$boxed{delta}$
end{minipage}ar[ru]ar[rd]&\
&begin{minipage}[c]{5in}
$b=Z $:\
$boxed{delta(g,h)}$
end{minipage}\
}
end{document}
p.s. I may really need the 5 inch comment, since there is a long line of equation needs to be inserted there, like:
begin{minipage}[c]{5in}
abcdefghijklmnopqrstuvwxyzend{minipage}
tikz-pgf minipage xy-pic xymatrix
add a comment |
I have a minimal working environment below.
It fails to be compiled.
Is the minipage compatible with xy matrix? What may be an alternative fix?
Thanks for the help!
documentclass[14pt]{article}
usepackage[all, knot]{xy}
def Z{mathbb{Z}}
begin{document}
xymatrix{
&omega\
begin{minipage}[c]{5in}
1
end{minipage}ar[ru]&\
}
xymatrix{
&omega\
begin{minipage}[c]{5in}
$Delta=Z$:\
$boxed{delta}$
end{minipage}ar[ru]ar[rd]&\
&begin{minipage}[c]{5in}
$b=Z $:\
$boxed{delta(g,h)}$
end{minipage}\
}
end{document}
p.s. I may really need the 5 inch comment, since there is a long line of equation needs to be inserted there, like:
begin{minipage}[c]{5in}
abcdefghijklmnopqrstuvwxyzend{minipage}
tikz-pgf minipage xy-pic xymatrix
add a comment |
I have a minimal working environment below.
It fails to be compiled.
Is the minipage compatible with xy matrix? What may be an alternative fix?
Thanks for the help!
documentclass[14pt]{article}
usepackage[all, knot]{xy}
def Z{mathbb{Z}}
begin{document}
xymatrix{
&omega\
begin{minipage}[c]{5in}
1
end{minipage}ar[ru]&\
}
xymatrix{
&omega\
begin{minipage}[c]{5in}
$Delta=Z$:\
$boxed{delta}$
end{minipage}ar[ru]ar[rd]&\
&begin{minipage}[c]{5in}
$b=Z $:\
$boxed{delta(g,h)}$
end{minipage}\
}
end{document}
p.s. I may really need the 5 inch comment, since there is a long line of equation needs to be inserted there, like:
begin{minipage}[c]{5in}
abcdefghijklmnopqrstuvwxyzend{minipage}
tikz-pgf minipage xy-pic xymatrix
I have a minimal working environment below.
It fails to be compiled.
Is the minipage compatible with xy matrix? What may be an alternative fix?
Thanks for the help!
documentclass[14pt]{article}
usepackage[all, knot]{xy}
def Z{mathbb{Z}}
begin{document}
xymatrix{
&omega\
begin{minipage}[c]{5in}
1
end{minipage}ar[ru]&\
}
xymatrix{
&omega\
begin{minipage}[c]{5in}
$Delta=Z$:\
$boxed{delta}$
end{minipage}ar[ru]ar[rd]&\
&begin{minipage}[c]{5in}
$b=Z $:\
$boxed{delta(g,h)}$
end{minipage}\
}
end{document}
p.s. I may really need the 5 inch comment, since there is a long line of equation needs to be inserted there, like:
begin{minipage}[c]{5in}
abcdefghijklmnopqrstuvwxyzend{minipage}
tikz-pgf minipage xy-pic xymatrix
tikz-pgf minipage xy-pic xymatrix
edited Nov 22 '18 at 18:04
annie heart
asked Nov 22 '18 at 15:42
annie heartannie heart
32517
32517
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
There are two issues: one is that Xy-pic is not able to cope with cells so big as five inches.
However, I don't think you need a wide minipage, but rather an array; remember to brace it so as not to confuse Xy-pic.
documentclass{article}
usepackage{amsmath,amssymb,array}
usepackage[all,cmtip]{xy}
newcommand{Z}{mathbb{Z}}
begin{document}
xymatrix{
& omega\
{begin{array}{@{}l@{}}
Delta=Z{:}\
boxed{delta}
end{array}}ar[ru]ar[rd]&\
&{begin{array}{@{}l@{}}
b=Z{:}\
boxed{delta(g,h)}
end{array}}
}
end{document}

thanks!, may I also ask, what if I may really need the 5 inch comment, since there is a long line of equation needs to be inserted there, like: begin{minipage}[c]{5in} abcdefghijklmnopqrstuvwxyzend{minipage}
– annie heart
Nov 22 '18 at 18:05
@annieheart As I said, five inches is too much for Xy-pic. I don't think thatminipageis the right tool anyway.
– egreg
Nov 22 '18 at 18:16
Can you explain the meaning of "begin{array}{@{}l@{}}" ? thanks!
– annie heart
Nov 23 '18 at 0:14
@annieheart It builds a one left aligned column array with no padding on either side. It's the math mode analog oftabular.
– egreg
Nov 23 '18 at 0:18
thanks! happy thanks giving. How do I make your arrow ar as the doublelinearrow like Longrightarrow ?
– annie heart
Nov 23 '18 at 0:28
add a comment |
An alternative with tikz-cd.

documentclass[14pt]{article}
usepackage{tikz-cd,amsmath,amssymb}
defZ{mathbb{Z}}
begin{document}
begin{tikzcd}[minimum width=8em]
&hspace{-1.5cm} omega \
begin{matrix} Delta=Z!!: & \ boxed{delta} & end{matrix}
arrow[xshift=-4ex,yshift=1ex]{rd}arrow[xshift=-4ex,yshift=1ex]{ru}& \
[1.5em] & hspace{-1cm}begin{matrix} b=Z!!: & \ boxed{delta(g,h)} & end{matrix}
end{tikzcd}
end{document}
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f461300%2fminipage-compatible-with-xy-matrix-what-may-be-an-alternative-fix%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
There are two issues: one is that Xy-pic is not able to cope with cells so big as five inches.
However, I don't think you need a wide minipage, but rather an array; remember to brace it so as not to confuse Xy-pic.
documentclass{article}
usepackage{amsmath,amssymb,array}
usepackage[all,cmtip]{xy}
newcommand{Z}{mathbb{Z}}
begin{document}
xymatrix{
& omega\
{begin{array}{@{}l@{}}
Delta=Z{:}\
boxed{delta}
end{array}}ar[ru]ar[rd]&\
&{begin{array}{@{}l@{}}
b=Z{:}\
boxed{delta(g,h)}
end{array}}
}
end{document}

thanks!, may I also ask, what if I may really need the 5 inch comment, since there is a long line of equation needs to be inserted there, like: begin{minipage}[c]{5in} abcdefghijklmnopqrstuvwxyzend{minipage}
– annie heart
Nov 22 '18 at 18:05
@annieheart As I said, five inches is too much for Xy-pic. I don't think thatminipageis the right tool anyway.
– egreg
Nov 22 '18 at 18:16
Can you explain the meaning of "begin{array}{@{}l@{}}" ? thanks!
– annie heart
Nov 23 '18 at 0:14
@annieheart It builds a one left aligned column array with no padding on either side. It's the math mode analog oftabular.
– egreg
Nov 23 '18 at 0:18
thanks! happy thanks giving. How do I make your arrow ar as the doublelinearrow like Longrightarrow ?
– annie heart
Nov 23 '18 at 0:28
add a comment |
There are two issues: one is that Xy-pic is not able to cope with cells so big as five inches.
However, I don't think you need a wide minipage, but rather an array; remember to brace it so as not to confuse Xy-pic.
documentclass{article}
usepackage{amsmath,amssymb,array}
usepackage[all,cmtip]{xy}
newcommand{Z}{mathbb{Z}}
begin{document}
xymatrix{
& omega\
{begin{array}{@{}l@{}}
Delta=Z{:}\
boxed{delta}
end{array}}ar[ru]ar[rd]&\
&{begin{array}{@{}l@{}}
b=Z{:}\
boxed{delta(g,h)}
end{array}}
}
end{document}

thanks!, may I also ask, what if I may really need the 5 inch comment, since there is a long line of equation needs to be inserted there, like: begin{minipage}[c]{5in} abcdefghijklmnopqrstuvwxyzend{minipage}
– annie heart
Nov 22 '18 at 18:05
@annieheart As I said, five inches is too much for Xy-pic. I don't think thatminipageis the right tool anyway.
– egreg
Nov 22 '18 at 18:16
Can you explain the meaning of "begin{array}{@{}l@{}}" ? thanks!
– annie heart
Nov 23 '18 at 0:14
@annieheart It builds a one left aligned column array with no padding on either side. It's the math mode analog oftabular.
– egreg
Nov 23 '18 at 0:18
thanks! happy thanks giving. How do I make your arrow ar as the doublelinearrow like Longrightarrow ?
– annie heart
Nov 23 '18 at 0:28
add a comment |
There are two issues: one is that Xy-pic is not able to cope with cells so big as five inches.
However, I don't think you need a wide minipage, but rather an array; remember to brace it so as not to confuse Xy-pic.
documentclass{article}
usepackage{amsmath,amssymb,array}
usepackage[all,cmtip]{xy}
newcommand{Z}{mathbb{Z}}
begin{document}
xymatrix{
& omega\
{begin{array}{@{}l@{}}
Delta=Z{:}\
boxed{delta}
end{array}}ar[ru]ar[rd]&\
&{begin{array}{@{}l@{}}
b=Z{:}\
boxed{delta(g,h)}
end{array}}
}
end{document}

There are two issues: one is that Xy-pic is not able to cope with cells so big as five inches.
However, I don't think you need a wide minipage, but rather an array; remember to brace it so as not to confuse Xy-pic.
documentclass{article}
usepackage{amsmath,amssymb,array}
usepackage[all,cmtip]{xy}
newcommand{Z}{mathbb{Z}}
begin{document}
xymatrix{
& omega\
{begin{array}{@{}l@{}}
Delta=Z{:}\
boxed{delta}
end{array}}ar[ru]ar[rd]&\
&{begin{array}{@{}l@{}}
b=Z{:}\
boxed{delta(g,h)}
end{array}}
}
end{document}

answered Nov 22 '18 at 16:06
egregegreg
729k8819263237
729k8819263237
thanks!, may I also ask, what if I may really need the 5 inch comment, since there is a long line of equation needs to be inserted there, like: begin{minipage}[c]{5in} abcdefghijklmnopqrstuvwxyzend{minipage}
– annie heart
Nov 22 '18 at 18:05
@annieheart As I said, five inches is too much for Xy-pic. I don't think thatminipageis the right tool anyway.
– egreg
Nov 22 '18 at 18:16
Can you explain the meaning of "begin{array}{@{}l@{}}" ? thanks!
– annie heart
Nov 23 '18 at 0:14
@annieheart It builds a one left aligned column array with no padding on either side. It's the math mode analog oftabular.
– egreg
Nov 23 '18 at 0:18
thanks! happy thanks giving. How do I make your arrow ar as the doublelinearrow like Longrightarrow ?
– annie heart
Nov 23 '18 at 0:28
add a comment |
thanks!, may I also ask, what if I may really need the 5 inch comment, since there is a long line of equation needs to be inserted there, like: begin{minipage}[c]{5in} abcdefghijklmnopqrstuvwxyzend{minipage}
– annie heart
Nov 22 '18 at 18:05
@annieheart As I said, five inches is too much for Xy-pic. I don't think thatminipageis the right tool anyway.
– egreg
Nov 22 '18 at 18:16
Can you explain the meaning of "begin{array}{@{}l@{}}" ? thanks!
– annie heart
Nov 23 '18 at 0:14
@annieheart It builds a one left aligned column array with no padding on either side. It's the math mode analog oftabular.
– egreg
Nov 23 '18 at 0:18
thanks! happy thanks giving. How do I make your arrow ar as the doublelinearrow like Longrightarrow ?
– annie heart
Nov 23 '18 at 0:28
thanks!, may I also ask, what if I may really need the 5 inch comment, since there is a long line of equation needs to be inserted there, like: begin{minipage}[c]{5in} abcdefghijklmnopqrstuvwxyzend{minipage}
– annie heart
Nov 22 '18 at 18:05
thanks!, may I also ask, what if I may really need the 5 inch comment, since there is a long line of equation needs to be inserted there, like: begin{minipage}[c]{5in} abcdefghijklmnopqrstuvwxyzend{minipage}
– annie heart
Nov 22 '18 at 18:05
@annieheart As I said, five inches is too much for Xy-pic. I don't think that
minipage is the right tool anyway.– egreg
Nov 22 '18 at 18:16
@annieheart As I said, five inches is too much for Xy-pic. I don't think that
minipage is the right tool anyway.– egreg
Nov 22 '18 at 18:16
Can you explain the meaning of "begin{array}{@{}l@{}}" ? thanks!
– annie heart
Nov 23 '18 at 0:14
Can you explain the meaning of "begin{array}{@{}l@{}}" ? thanks!
– annie heart
Nov 23 '18 at 0:14
@annieheart It builds a one left aligned column array with no padding on either side. It's the math mode analog of
tabular.– egreg
Nov 23 '18 at 0:18
@annieheart It builds a one left aligned column array with no padding on either side. It's the math mode analog of
tabular.– egreg
Nov 23 '18 at 0:18
thanks! happy thanks giving. How do I make your arrow ar as the doublelinearrow like Longrightarrow ?
– annie heart
Nov 23 '18 at 0:28
thanks! happy thanks giving. How do I make your arrow ar as the doublelinearrow like Longrightarrow ?
– annie heart
Nov 23 '18 at 0:28
add a comment |
An alternative with tikz-cd.

documentclass[14pt]{article}
usepackage{tikz-cd,amsmath,amssymb}
defZ{mathbb{Z}}
begin{document}
begin{tikzcd}[minimum width=8em]
&hspace{-1.5cm} omega \
begin{matrix} Delta=Z!!: & \ boxed{delta} & end{matrix}
arrow[xshift=-4ex,yshift=1ex]{rd}arrow[xshift=-4ex,yshift=1ex]{ru}& \
[1.5em] & hspace{-1cm}begin{matrix} b=Z!!: & \ boxed{delta(g,h)} & end{matrix}
end{tikzcd}
end{document}
add a comment |
An alternative with tikz-cd.

documentclass[14pt]{article}
usepackage{tikz-cd,amsmath,amssymb}
defZ{mathbb{Z}}
begin{document}
begin{tikzcd}[minimum width=8em]
&hspace{-1.5cm} omega \
begin{matrix} Delta=Z!!: & \ boxed{delta} & end{matrix}
arrow[xshift=-4ex,yshift=1ex]{rd}arrow[xshift=-4ex,yshift=1ex]{ru}& \
[1.5em] & hspace{-1cm}begin{matrix} b=Z!!: & \ boxed{delta(g,h)} & end{matrix}
end{tikzcd}
end{document}
add a comment |
An alternative with tikz-cd.

documentclass[14pt]{article}
usepackage{tikz-cd,amsmath,amssymb}
defZ{mathbb{Z}}
begin{document}
begin{tikzcd}[minimum width=8em]
&hspace{-1.5cm} omega \
begin{matrix} Delta=Z!!: & \ boxed{delta} & end{matrix}
arrow[xshift=-4ex,yshift=1ex]{rd}arrow[xshift=-4ex,yshift=1ex]{ru}& \
[1.5em] & hspace{-1cm}begin{matrix} b=Z!!: & \ boxed{delta(g,h)} & end{matrix}
end{tikzcd}
end{document}
An alternative with tikz-cd.

documentclass[14pt]{article}
usepackage{tikz-cd,amsmath,amssymb}
defZ{mathbb{Z}}
begin{document}
begin{tikzcd}[minimum width=8em]
&hspace{-1.5cm} omega \
begin{matrix} Delta=Z!!: & \ boxed{delta} & end{matrix}
arrow[xshift=-4ex,yshift=1ex]{rd}arrow[xshift=-4ex,yshift=1ex]{ru}& \
[1.5em] & hspace{-1cm}begin{matrix} b=Z!!: & \ boxed{delta(g,h)} & end{matrix}
end{tikzcd}
end{document}
answered 4 mins ago
SebastianoSebastiano
11.1k42164
11.1k42164
add a comment |
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f461300%2fminipage-compatible-with-xy-matrix-what-may-be-an-alternative-fix%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown