Linked Questions
102 questions linked to/from The mysteries of \mathpalette
0
votes
1
answer
171
views
The "^" sign over the "=" sign [duplicate]
I want to have the "^" sign over the "=" sign.
I have tried \newcommand{\defeq}{\overset{^}{=}}, \newcommand{\defeq}{\stackrel{\text{^}}{=}}, \newcommand{\defeq}{\overset{\^}{=}} and different ...
2
votes
1
answer
214
views
Where are basic mathmode symbols stored
What I want to do: I want to take two basic LaTeX mathmode characters, take their vector picture file, and edit them together to form a new symbol, which I want to behave as any other mathmode symbol ...
1
vote
1
answer
143
views
TColorBox - Respecting the text colour and font size
I want to keep the same colour and font size being used prior to entering a \tcboxmath. The objective is to get the right side of the output image while having the x^2+1 highlighted.
\documentclass{...
1
vote
3
answers
172
views
Extracting \downmapsto from MnSymbol
How do I extract the \downmapsto symbol from MnSymbol? I cannot use the entire package as it conflicts with other packages I am using. There are questions on here about extracting other symbols but I ...
2
votes
1
answer
108
views
Command for fontsize-dependent code selection
I have heard of a LaTeX-command which provides font-dependent code selection in math mode, but I forgot the name of it and cannot find it – Here is what I mean:
\unknownCommand{display size code}{...
3
votes
1
answer
89
views
Math contents does not align when subscripts are used
\documentclass{book}
\usepackage{calc}
\newlength{\widthBlank}
\usepackage[x11names]{xcolor}
\usepackage{amsmath}
\NewDocumentCommand{\blankAnswerMath}{m}
{%
\setlength{\widthBlank}{\widthof{$#...
2
votes
1
answer
104
views
mathpalette-version for fontstyle instead of fontsize
The link the-mysteries-of-mathpalette gives a nice overview of the mathpalette command. My question is pseudo-related. Is there a version of mathpalette where instead of "preserving the font size&...
2
votes
2
answers
114
views
How to align equation number to come at bottom when equation contains cases/rcases?
How to align equation number to come at the bottom when the equation contains cases/rcases?
\documentclass{article}
\usepackage[french,USenglish]{babel}
\usepackage[mmddyyyy]{datetime}
\usepackage{...
1
vote
1
answer
167
views
Vertical positioning of \dashv and \vdash with kpfonts-otf
The symbols \dashv and \vdash with kpfonts-otf appear to be too low, instead of being vertically centered. But as the classical kpfonts package produces the same result, it seems to be part of the ...
4
votes
1
answer
75
views
horizontally align same variables among equations in align
I want to align same texts between equations, like ET, E, and T in this situation.
\documentclass[12pt]{article}
\usepackage{mathtools}
\begin{document}
\begin{align}
ET &= E+ T &\\
...
3
votes
1
answer
96
views
How can I align multiple aligned environments?
I have this equations:
\begin{align}
\begin{aligned}
x&=y & z&=w & k&=j \\
a&=b & c&=d & e&=f \\
\end{aligned}
\\
\begin{aligned}
x+a&=y+...
0
votes
0
answers
84
views
Define macro inside \mathchoice
When I'm in mathmode, I want to get whether I'm using displaystyle or textstyle and save it to a macro \mystyle
To do so, I use \mathchoice and define \mystyle accordingly as follow:
\documentclass{...