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
Is it correct to write "is not focus on"?
The Riley Riddle Mine
MaTeX, font size, and PlotLegends
Valid Badminton Score?
How could Frankenstein get the parts for his _second_ creature?
Mapping a list into a phase plot
Hostile work environment after whistle-blowing on coworker and our boss. What do I do?
Go Pregnant or Go Home
How to prove that the query oracle is unitary?
Select empty space and change color in vector
Can I convert a rim brake wheel to a disc brake wheel?
Modify casing of marked letters
Why "be dealt cards" rather than "be dealing cards"?
how to analyze "是其于主也至忠矣"
What is the intuitive meaning of having a linear relationship between the logs of two variables?
Applicability of Single Responsibility Principle
How do I rename a LINUX host without needing to reboot for the rename to take effect?
How can I replace every global instance of "x[2]" with "x_2"
Was the picture area of a CRT a parallelogram (instead of a true rectangle)?
The plural of 'stomach"
What's the purpose of "true" in bash "if sudo true; then"
Star/Wye electrical connection math symbol
How will losing mobility of one hand affect my career as a programmer?
Is there a measurement for the vocal speed of a song?
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 ZmathbbZ
begindocument
xymatrix
&omega\
beginminipage[c]5in
1
endminipagear[ru]&\
xymatrix
&omega\
beginminipage[c]5in
$Delta=Z$:\
$boxeddelta$
endminipagear[ru]ar[rd]&\
&beginminipage[c]5in
$b=Z $:\
$boxeddelta(g,h)$
endminipage\
enddocument
p.s. I may really need the 5 inch comment, since there is a long line of equation needs to be inserted there, like:
beginminipage[c]5in
abcdefghijklmnopqrstuvwxyzendminipage
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 ZmathbbZ
begindocument
xymatrix
&omega\
beginminipage[c]5in
1
endminipagear[ru]&\
xymatrix
&omega\
beginminipage[c]5in
$Delta=Z$:\
$boxeddelta$
endminipagear[ru]ar[rd]&\
&beginminipage[c]5in
$b=Z $:\
$boxeddelta(g,h)$
endminipage\
enddocument
p.s. I may really need the 5 inch comment, since there is a long line of equation needs to be inserted there, like:
beginminipage[c]5in
abcdefghijklmnopqrstuvwxyzendminipage
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 ZmathbbZ
begindocument
xymatrix
&omega\
beginminipage[c]5in
1
endminipagear[ru]&\
xymatrix
&omega\
beginminipage[c]5in
$Delta=Z$:\
$boxeddelta$
endminipagear[ru]ar[rd]&\
&beginminipage[c]5in
$b=Z $:\
$boxeddelta(g,h)$
endminipage\
enddocument
p.s. I may really need the 5 inch comment, since there is a long line of equation needs to be inserted there, like:
beginminipage[c]5in
abcdefghijklmnopqrstuvwxyzendminipage
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 ZmathbbZ
begindocument
xymatrix
&omega\
beginminipage[c]5in
1
endminipagear[ru]&\
xymatrix
&omega\
beginminipage[c]5in
$Delta=Z$:\
$boxeddelta$
endminipagear[ru]ar[rd]&\
&beginminipage[c]5in
$b=Z $:\
$boxeddelta(g,h)$
endminipage\
enddocument
p.s. I may really need the 5 inch comment, since there is a long line of equation needs to be inserted there, like:
beginminipage[c]5in
abcdefghijklmnopqrstuvwxyzendminipage
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.
documentclassarticle
usepackageamsmath,amssymb,array
usepackage[all,cmtip]xy
newcommandZmathbbZ
begindocument
xymatrix
& omega\
beginarray@l@
Delta=Z:\
boxeddelta
endarrayar[ru]ar[rd]&\
&beginarray@l@
b=Z:\
boxeddelta(g,h)
endarray
enddocument
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: beginminipage[c]5in abcdefghijklmnopqrstuvwxyzendminipage
– annie heart
Nov 22 '18 at 18:05
@annieheart As I said, five inches is too much for Xy-pic. I don't think thatminipage
is the right tool anyway.
– egreg
Nov 22 '18 at 18:16
Can you explain the meaning of "beginarray@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
usepackagetikz-cd,amsmath,amssymb
defZmathbbZ
begindocument
begintikzcd[minimum width=8em]
&hspace-1.5cm omega \
beginmatrix Delta=Z!!: & \ boxeddelta & endmatrix
arrow[xshift=-4ex,yshift=1ex]rdarrow[xshift=-4ex,yshift=1ex]ru& \
[1.5em] & hspace-1cmbeginmatrix b=Z!!: & \ boxeddelta(g,h) & endmatrix
endtikzcd
enddocument
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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.
documentclassarticle
usepackageamsmath,amssymb,array
usepackage[all,cmtip]xy
newcommandZmathbbZ
begindocument
xymatrix
& omega\
beginarray@l@
Delta=Z:\
boxeddelta
endarrayar[ru]ar[rd]&\
&beginarray@l@
b=Z:\
boxeddelta(g,h)
endarray
enddocument
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: beginminipage[c]5in abcdefghijklmnopqrstuvwxyzendminipage
– annie heart
Nov 22 '18 at 18:05
@annieheart As I said, five inches is too much for Xy-pic. I don't think thatminipage
is the right tool anyway.
– egreg
Nov 22 '18 at 18:16
Can you explain the meaning of "beginarray@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.
documentclassarticle
usepackageamsmath,amssymb,array
usepackage[all,cmtip]xy
newcommandZmathbbZ
begindocument
xymatrix
& omega\
beginarray@l@
Delta=Z:\
boxeddelta
endarrayar[ru]ar[rd]&\
&beginarray@l@
b=Z:\
boxeddelta(g,h)
endarray
enddocument
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: beginminipage[c]5in abcdefghijklmnopqrstuvwxyzendminipage
– annie heart
Nov 22 '18 at 18:05
@annieheart As I said, five inches is too much for Xy-pic. I don't think thatminipage
is the right tool anyway.
– egreg
Nov 22 '18 at 18:16
Can you explain the meaning of "beginarray@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.
documentclassarticle
usepackageamsmath,amssymb,array
usepackage[all,cmtip]xy
newcommandZmathbbZ
begindocument
xymatrix
& omega\
beginarray@l@
Delta=Z:\
boxeddelta
endarrayar[ru]ar[rd]&\
&beginarray@l@
b=Z:\
boxeddelta(g,h)
endarray
enddocument
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.
documentclassarticle
usepackageamsmath,amssymb,array
usepackage[all,cmtip]xy
newcommandZmathbbZ
begindocument
xymatrix
& omega\
beginarray@l@
Delta=Z:\
boxeddelta
endarrayar[ru]ar[rd]&\
&beginarray@l@
b=Z:\
boxeddelta(g,h)
endarray
enddocument
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: beginminipage[c]5in abcdefghijklmnopqrstuvwxyzendminipage
– annie heart
Nov 22 '18 at 18:05
@annieheart As I said, five inches is too much for Xy-pic. I don't think thatminipage
is the right tool anyway.
– egreg
Nov 22 '18 at 18:16
Can you explain the meaning of "beginarray@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: beginminipage[c]5in abcdefghijklmnopqrstuvwxyzendminipage
– annie heart
Nov 22 '18 at 18:05
@annieheart As I said, five inches is too much for Xy-pic. I don't think thatminipage
is the right tool anyway.
– egreg
Nov 22 '18 at 18:16
Can you explain the meaning of "beginarray@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: beginminipage[c]5in abcdefghijklmnopqrstuvwxyzendminipage
– 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: beginminipage[c]5in abcdefghijklmnopqrstuvwxyzendminipage
– 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 "beginarray@l@" ? thanks!
– annie heart
Nov 23 '18 at 0:14
Can you explain the meaning of "beginarray@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
usepackagetikz-cd,amsmath,amssymb
defZmathbbZ
begindocument
begintikzcd[minimum width=8em]
&hspace-1.5cm omega \
beginmatrix Delta=Z!!: & \ boxeddelta & endmatrix
arrow[xshift=-4ex,yshift=1ex]rdarrow[xshift=-4ex,yshift=1ex]ru& \
[1.5em] & hspace-1cmbeginmatrix b=Z!!: & \ boxeddelta(g,h) & endmatrix
endtikzcd
enddocument
add a comment |
An alternative with tikz-cd
.
documentclass[14pt]article
usepackagetikz-cd,amsmath,amssymb
defZmathbbZ
begindocument
begintikzcd[minimum width=8em]
&hspace-1.5cm omega \
beginmatrix Delta=Z!!: & \ boxeddelta & endmatrix
arrow[xshift=-4ex,yshift=1ex]rdarrow[xshift=-4ex,yshift=1ex]ru& \
[1.5em] & hspace-1cmbeginmatrix b=Z!!: & \ boxeddelta(g,h) & endmatrix
endtikzcd
enddocument
add a comment |
An alternative with tikz-cd
.
documentclass[14pt]article
usepackagetikz-cd,amsmath,amssymb
defZmathbbZ
begindocument
begintikzcd[minimum width=8em]
&hspace-1.5cm omega \
beginmatrix Delta=Z!!: & \ boxeddelta & endmatrix
arrow[xshift=-4ex,yshift=1ex]rdarrow[xshift=-4ex,yshift=1ex]ru& \
[1.5em] & hspace-1cmbeginmatrix b=Z!!: & \ boxeddelta(g,h) & endmatrix
endtikzcd
enddocument
An alternative with tikz-cd
.
documentclass[14pt]article
usepackagetikz-cd,amsmath,amssymb
defZmathbbZ
begindocument
begintikzcd[minimum width=8em]
&hspace-1.5cm omega \
beginmatrix Delta=Z!!: & \ boxeddelta & endmatrix
arrow[xshift=-4ex,yshift=1ex]rdarrow[xshift=-4ex,yshift=1ex]ru& \
[1.5em] & hspace-1cmbeginmatrix b=Z!!: & \ boxeddelta(g,h) & endmatrix
endtikzcd
enddocument
answered 11 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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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