Questions tagged [displaystyle]
{displaystyle} is about the `\displaystyle` and `\textstyle` commands for switching the style of math in LaTeX. For questions about display math in general, use {math-mode}.
227 questions
7 votes
0 answers
56 views
fourier-otf font package: incorrect size of integral symbol in \displaystyle math mode
For the past few weeks, my integrals have not been displaying in display-style math mode. I can reproduce the issue with this small minimal example. How can I fix this? \documentclass[11pt]{report} \...
3 votes
1 answer
55 views
align mode styling crashes everything
I'm writing some notes and to make them more readable, I have changed the colour of in-text math and equation environments. I got the following off of ChatGPT: \colorlet{mathcolor}{red} \everymath{\...
2 votes
0 answers
68 views
ConTeXt sqrt and frac interaction [closed]
There is a strange behavior in ConTeXt with the \frac and \sqrt commands, or when I try to frame an equation : the fraction is displayed as in inline mode. Here is a MWE and its result : \...
0 votes
1 answer
132 views
Is it possible to interrupt display mathmode without breaking the formatting
I am looking to write a command that will allow me to process the contents of that command as if it was not in mathmode, and then use that command inside of a display math environment. MWE: \...
5 votes
1 answer
296 views
When is it appropriate to use inline or display math?
I am new to the stack exchange and to LaTeX itself. I would like to know when it is appropriate to use display mode or text mode. For example, let's say I write \[ \frac{\mathrm{d}}{\mathrm{d}x}\int_a^...
2 votes
0 answers
61 views
Integral with overbar from Cambria Math (range) is not displayed in equation
I use integral signs from Cambria Math instead of Libertinus Math, but I have problems with \upint and \lowint in the displayed formulas. Nevertheless, \int, also comes from Cambria Math, but it is ...
1 vote
0 answers
49 views
Weird spacing for Chinese characters in the display
When using Chinese characters in the display style with \text{}, I noticed a weird spacing issue. Here is a minimal example. \documentclass{article} \usepackage[UTF8]{ctex} % Enables Chinese support \...
0 votes
0 answers
25 views
how to make a dollar sign in a .pdf in emtex [duplicate]
For example using emtex to create a .tex file to got to a .pdf where i want a dollar sign to appear in the .pdf file. But since the $ is a special symbol then it seems that it would be impossible to ...
3 votes
2 answers
217 views
Why do the following two statements have different display effects?
Why do the following two statements have different display effects? \[ \overline{\lim}_{k\rightarrow\infty} \] and \[ \overline{\lim_{k\rightarrow\infty}} \] Why the former looked like in inline ...
2 votes
0 answers
54 views
Presence of inline math seems to unset Umath primitives for displaystyle
The following MWE for LuaLaTeX \documentclass{scrartcl} \usepackage{unicode-math} \everydisplay=\expandafter{% \the\everydisplay% \Umathsubshiftdown\displaystyle=0ex% } \begin{document} \[a_x=\...
0 votes
0 answers
44 views
Math mode 'a' in Beamer [duplicate]
In the math mode of Beamer, 'a' is displayed as 'a' instead of as '$a$' which is displayed in the math mode of Latex. Any suggestions for how to display '$a$' in the math mode of Beamer?
4 votes
3 answers
1k views
Old math books fonts
I am currently working on a book/articles. I really (really!) enjoy the styling of the Nagoya Math Journal from the late 80s-90s. Here's an example : https://www.cambridge.org/core/services/aop-...
0 votes
1 answer
138 views
Overleaf: Why isn’t {\displaystyle \prod_{n=1}^{\infinity} a_n} working for pdflatex 2024? [closed]
I read the only answer given at the following link: How to get n=1 under Product character (\prod or \Pi) The answer isn’t working for us in overleaf. Here’s our code snippet: “So if we say that ${\...
0 votes
0 answers
78 views
Why is Minitoc not appearing?
Blockquote \usepackage[utf8]{inputenc} \usepackage{graphicx} \usepackage{geometry} \usepackage{setspace} \usepackage{fancyhdr} \usepackage{titlesec} \usepackage{hyperref} \usepackage{tocloft} \...
1 vote
0 answers
73 views
How to let all displayed formulas be inline style?
Maybe the problem is more out of fun/curiosity, but, how to make every display formula be of inline style, except for typing \textstyle every time? One possible solution is \everydisplay{\textstyle}, ...