How to write dimensions below a matrix Announcing the arrival of Valued Associate #679: Cesar...
What is the effect of altitude on true airspeed?
Disembodied hand growing fangs
Should I use a zero-interest credit card for a large one-time purchase?
How to write this math term? with cases it isn't working
What is the Characteristic of a local ring?
Denied boarding although I have proper visa and documentation. To whom should I make a complaint?
Modified Intersection Puzzle
Would "destroying" Wurmcoil Engine prevent its tokens from being created?
Does the Weapon Master feat grant you a fighting style?
Did MS DOS itself ever use blinking text?
Is CEO the "profession" with the most psychopaths?
What does this Jacques Hadamard quote mean?
Drawing without replacement: why the order of draw is irrelevant?
What is the appropriate index architecture when forced to implement IsDeleted (soft deletes)?
Is it fair for a professor to grade us on the possession of past papers?
Benefits of using sObject.clone versus creating a new record
Why did Roosevelt decide to implement a maximum wage through taxation rather than a simple ceiling?
Using audio cues to encourage good posture
Can a new player join a group only when a new campaign starts?
Sum letters are not two different
Why is it faster to reheat something than it is to cook it?
How do living politicians protect their readily obtainable signatures from misuse?
Amount of permutations on an NxNxN Rubik's Cube
How come Sam didn't become Lord of Horn Hill?
How to write dimensions below a matrix
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Label matrix dimensionsWriting a formula below a matrixMatrix decomposition dimensions diagramWhat's the best way to write matrix together with its dimensions on top and left?How to write below bulletDimensions of parts of a matrixPrinting matrix labels below itHow to write a matrix norm?Aligning underset below matrix equationHow to write a matrix like this
I would like to write the dimensions of a matrix below the matrix itself, but I managed only to either:
- write the dimensions below the matrix with underbrace (see matrix A in my code)
- write the dimensions as a subscript of the matrix (see matrix B in my code)
What I want is (1) but without any underbrace sign, and possibly the n*n written in a smaller font. I attach below a MWE
documentclass{beamer}
usepackage{amssymb}
usepackage{mathpazo}
usepackage{multimedia}
usepackage{amsfonts}
usepackage{amsmath}
setcounter{MaxMatrixCols}{10}
title{Title}
subtitle{Subtitle}
author{Author}
date{}
institute[Universities Here and There]{Your Institution}
begin{document}
begin{frame}
titlepage
end{frame}
section{Introduction}
begin{frame}frametitle{Write dimensions below matrix}
begin{center}
$
begin{bmatrix}
underbrace{A}_{ntimes n} & B_{ntimes n} \
C & D%
end{bmatrix}%
$
end{center}
end{frame}
end{document}
matrices subscripts underbrace
add a comment |
I would like to write the dimensions of a matrix below the matrix itself, but I managed only to either:
- write the dimensions below the matrix with underbrace (see matrix A in my code)
- write the dimensions as a subscript of the matrix (see matrix B in my code)
What I want is (1) but without any underbrace sign, and possibly the n*n written in a smaller font. I attach below a MWE
documentclass{beamer}
usepackage{amssymb}
usepackage{mathpazo}
usepackage{multimedia}
usepackage{amsfonts}
usepackage{amsmath}
setcounter{MaxMatrixCols}{10}
title{Title}
subtitle{Subtitle}
author{Author}
date{}
institute[Universities Here and There]{Your Institution}
begin{document}
begin{frame}
titlepage
end{frame}
section{Introduction}
begin{frame}frametitle{Write dimensions below matrix}
begin{center}
$
begin{bmatrix}
underbrace{A}_{ntimes n} & B_{ntimes n} \
C & D%
end{bmatrix}%
$
end{center}
end{frame}
end{document}
matrices subscripts underbrace
add a comment |
I would like to write the dimensions of a matrix below the matrix itself, but I managed only to either:
- write the dimensions below the matrix with underbrace (see matrix A in my code)
- write the dimensions as a subscript of the matrix (see matrix B in my code)
What I want is (1) but without any underbrace sign, and possibly the n*n written in a smaller font. I attach below a MWE
documentclass{beamer}
usepackage{amssymb}
usepackage{mathpazo}
usepackage{multimedia}
usepackage{amsfonts}
usepackage{amsmath}
setcounter{MaxMatrixCols}{10}
title{Title}
subtitle{Subtitle}
author{Author}
date{}
institute[Universities Here and There]{Your Institution}
begin{document}
begin{frame}
titlepage
end{frame}
section{Introduction}
begin{frame}frametitle{Write dimensions below matrix}
begin{center}
$
begin{bmatrix}
underbrace{A}_{ntimes n} & B_{ntimes n} \
C & D%
end{bmatrix}%
$
end{center}
end{frame}
end{document}
matrices subscripts underbrace
I would like to write the dimensions of a matrix below the matrix itself, but I managed only to either:
- write the dimensions below the matrix with underbrace (see matrix A in my code)
- write the dimensions as a subscript of the matrix (see matrix B in my code)
What I want is (1) but without any underbrace sign, and possibly the n*n written in a smaller font. I attach below a MWE
documentclass{beamer}
usepackage{amssymb}
usepackage{mathpazo}
usepackage{multimedia}
usepackage{amsfonts}
usepackage{amsmath}
setcounter{MaxMatrixCols}{10}
title{Title}
subtitle{Subtitle}
author{Author}
date{}
institute[Universities Here and There]{Your Institution}
begin{document}
begin{frame}
titlepage
end{frame}
section{Introduction}
begin{frame}frametitle{Write dimensions below matrix}
begin{center}
$
begin{bmatrix}
underbrace{A}_{ntimes n} & B_{ntimes n} \
C & D%
end{bmatrix}%
$
end{center}
end{frame}
end{document}
matrices subscripts underbrace
matrices subscripts underbrace
asked 3 hours ago
AlessandroAlessandro
495
495
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
with using of the package stackengine
:
documentclass{beamer}
usepackage{amssymb}
usepackage{mathpazo}
%usepackage{multimedia} not relevant for your problem
%usepackage{amsfonts} loaded by amssymb
usepackage{amsmath}
%setcounter{MaxMatrixCols}{10}
usepackage{stackengine}
begin{document}
begin{frame}
frametitle{Write dimensions below matrix}
[stackMath
begin{bmatrix}
stackunder{A}{_{ntimes n}} & stackunder{B}{_{ntimes n}} \[2ex]
C & D
end{bmatrix}%
]
end{frame}
end{document}
or see, if writing matrix symbol in mathbf{...}
better emphasize matrices:
begin{frame}
frametitle{Write dimensions below matrix}
[stackMath
begin{bmatrix}
stackunder{mathbf{A}}{_{ntimes n}} & stackunder{mathbf{B}}{_{ntimes n}} \[2ex]
C & D
end{bmatrix}%
]
end{frame}
which gives
add a comment |
Use underset
, with scriptscriptstyle
in order to reduce the size.
Note that loading mathpazo
does nothing unless you select suitable font themes.
documentclass{beamer}
usefonttheme{serif}
usefonttheme{professionalfonts}
usepackage{mathpazo}
begin{document}
begin{frame}frametitle{Write dimensions below matrix}
[
begin{bmatrix}
underset{scriptscriptstyle ntimes n}{A} &
underset{scriptscriptstyle ntimes n}{B} \[1.5ex]
C & D
end{bmatrix}
]
end{frame}
end{document}
Avoid awkward constructions such as begin{center}$<formula>$end{center}
: displaymath
is much better, with its shorthand [...]
.
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%2f485469%2fhow-to-write-dimensions-below-a-matrix%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
with using of the package stackengine
:
documentclass{beamer}
usepackage{amssymb}
usepackage{mathpazo}
%usepackage{multimedia} not relevant for your problem
%usepackage{amsfonts} loaded by amssymb
usepackage{amsmath}
%setcounter{MaxMatrixCols}{10}
usepackage{stackengine}
begin{document}
begin{frame}
frametitle{Write dimensions below matrix}
[stackMath
begin{bmatrix}
stackunder{A}{_{ntimes n}} & stackunder{B}{_{ntimes n}} \[2ex]
C & D
end{bmatrix}%
]
end{frame}
end{document}
or see, if writing matrix symbol in mathbf{...}
better emphasize matrices:
begin{frame}
frametitle{Write dimensions below matrix}
[stackMath
begin{bmatrix}
stackunder{mathbf{A}}{_{ntimes n}} & stackunder{mathbf{B}}{_{ntimes n}} \[2ex]
C & D
end{bmatrix}%
]
end{frame}
which gives
add a comment |
with using of the package stackengine
:
documentclass{beamer}
usepackage{amssymb}
usepackage{mathpazo}
%usepackage{multimedia} not relevant for your problem
%usepackage{amsfonts} loaded by amssymb
usepackage{amsmath}
%setcounter{MaxMatrixCols}{10}
usepackage{stackengine}
begin{document}
begin{frame}
frametitle{Write dimensions below matrix}
[stackMath
begin{bmatrix}
stackunder{A}{_{ntimes n}} & stackunder{B}{_{ntimes n}} \[2ex]
C & D
end{bmatrix}%
]
end{frame}
end{document}
or see, if writing matrix symbol in mathbf{...}
better emphasize matrices:
begin{frame}
frametitle{Write dimensions below matrix}
[stackMath
begin{bmatrix}
stackunder{mathbf{A}}{_{ntimes n}} & stackunder{mathbf{B}}{_{ntimes n}} \[2ex]
C & D
end{bmatrix}%
]
end{frame}
which gives
add a comment |
with using of the package stackengine
:
documentclass{beamer}
usepackage{amssymb}
usepackage{mathpazo}
%usepackage{multimedia} not relevant for your problem
%usepackage{amsfonts} loaded by amssymb
usepackage{amsmath}
%setcounter{MaxMatrixCols}{10}
usepackage{stackengine}
begin{document}
begin{frame}
frametitle{Write dimensions below matrix}
[stackMath
begin{bmatrix}
stackunder{A}{_{ntimes n}} & stackunder{B}{_{ntimes n}} \[2ex]
C & D
end{bmatrix}%
]
end{frame}
end{document}
or see, if writing matrix symbol in mathbf{...}
better emphasize matrices:
begin{frame}
frametitle{Write dimensions below matrix}
[stackMath
begin{bmatrix}
stackunder{mathbf{A}}{_{ntimes n}} & stackunder{mathbf{B}}{_{ntimes n}} \[2ex]
C & D
end{bmatrix}%
]
end{frame}
which gives
with using of the package stackengine
:
documentclass{beamer}
usepackage{amssymb}
usepackage{mathpazo}
%usepackage{multimedia} not relevant for your problem
%usepackage{amsfonts} loaded by amssymb
usepackage{amsmath}
%setcounter{MaxMatrixCols}{10}
usepackage{stackengine}
begin{document}
begin{frame}
frametitle{Write dimensions below matrix}
[stackMath
begin{bmatrix}
stackunder{A}{_{ntimes n}} & stackunder{B}{_{ntimes n}} \[2ex]
C & D
end{bmatrix}%
]
end{frame}
end{document}
or see, if writing matrix symbol in mathbf{...}
better emphasize matrices:
begin{frame}
frametitle{Write dimensions below matrix}
[stackMath
begin{bmatrix}
stackunder{mathbf{A}}{_{ntimes n}} & stackunder{mathbf{B}}{_{ntimes n}} \[2ex]
C & D
end{bmatrix}%
]
end{frame}
which gives
edited 2 hours ago
answered 2 hours ago
ZarkoZarko
130k869169
130k869169
add a comment |
add a comment |
Use underset
, with scriptscriptstyle
in order to reduce the size.
Note that loading mathpazo
does nothing unless you select suitable font themes.
documentclass{beamer}
usefonttheme{serif}
usefonttheme{professionalfonts}
usepackage{mathpazo}
begin{document}
begin{frame}frametitle{Write dimensions below matrix}
[
begin{bmatrix}
underset{scriptscriptstyle ntimes n}{A} &
underset{scriptscriptstyle ntimes n}{B} \[1.5ex]
C & D
end{bmatrix}
]
end{frame}
end{document}
Avoid awkward constructions such as begin{center}$<formula>$end{center}
: displaymath
is much better, with its shorthand [...]
.
add a comment |
Use underset
, with scriptscriptstyle
in order to reduce the size.
Note that loading mathpazo
does nothing unless you select suitable font themes.
documentclass{beamer}
usefonttheme{serif}
usefonttheme{professionalfonts}
usepackage{mathpazo}
begin{document}
begin{frame}frametitle{Write dimensions below matrix}
[
begin{bmatrix}
underset{scriptscriptstyle ntimes n}{A} &
underset{scriptscriptstyle ntimes n}{B} \[1.5ex]
C & D
end{bmatrix}
]
end{frame}
end{document}
Avoid awkward constructions such as begin{center}$<formula>$end{center}
: displaymath
is much better, with its shorthand [...]
.
add a comment |
Use underset
, with scriptscriptstyle
in order to reduce the size.
Note that loading mathpazo
does nothing unless you select suitable font themes.
documentclass{beamer}
usefonttheme{serif}
usefonttheme{professionalfonts}
usepackage{mathpazo}
begin{document}
begin{frame}frametitle{Write dimensions below matrix}
[
begin{bmatrix}
underset{scriptscriptstyle ntimes n}{A} &
underset{scriptscriptstyle ntimes n}{B} \[1.5ex]
C & D
end{bmatrix}
]
end{frame}
end{document}
Avoid awkward constructions such as begin{center}$<formula>$end{center}
: displaymath
is much better, with its shorthand [...]
.
Use underset
, with scriptscriptstyle
in order to reduce the size.
Note that loading mathpazo
does nothing unless you select suitable font themes.
documentclass{beamer}
usefonttheme{serif}
usefonttheme{professionalfonts}
usepackage{mathpazo}
begin{document}
begin{frame}frametitle{Write dimensions below matrix}
[
begin{bmatrix}
underset{scriptscriptstyle ntimes n}{A} &
underset{scriptscriptstyle ntimes n}{B} \[1.5ex]
C & D
end{bmatrix}
]
end{frame}
end{document}
Avoid awkward constructions such as begin{center}$<formula>$end{center}
: displaymath
is much better, with its shorthand [...]
.
answered 21 mins ago
![](https://i.stack.imgur.com/wJWMb.png?s=32&g=1)
![](https://i.stack.imgur.com/wJWMb.png?s=32&g=1)
egregegreg
735k8919343257
735k8919343257
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%2f485469%2fhow-to-write-dimensions-below-a-matrix%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