I disagree. If you'd put, say,
\chi_{\mathcal{E}} \chi_E y_{\mathcal{E}} y_E X_{\mathcal{E}} X_E
all on the same line you'd see that all of those subscripted letters sit on the same line.
If anything, your problem stems from putting a capital letter into the subscript to a lowercase letter that ...
Search found 419 matches
- Sun Apr 14, 2024 6:06 pm
- Forum: Text Formatting
- Topic: Improve baseline position for subscripted calligraphic letter
- Replies: 1
- Views: 4845
- Mon Apr 08, 2024 9:40 pm
- Forum: Document Classes
- Topic: Latex document class issue
- Replies: 3
- Views: 16864
Latex document class issue
Well, if you wish to discuss your problem here, you should present it here. A link to join your project won't do, IMHO.
KR
Rainer
KR
Rainer
- Thu Apr 04, 2024 9:35 pm
- Forum: Graphics, Figures & Tables
- Topic: Table is not working with my .sty file
- Replies: 5
- Views: 3138
Table is not working with my .sty file
this was a joke, right? As in `April 1st', you know, fool's day?bmajeed92 wrote: Following is the copy of .sty file
[..]
KR
Rainer
- Thu Apr 04, 2024 9:25 pm
- Forum: Document Classes
- Topic: Latex document class issue
- Replies: 3
- Views: 16864
Latex document class issue
You could try
before your \documentclass line.
If that doesn't help, please provide a
minimal working example that demonstrates your problem and a link to the class file you're using.
KR
Rainer
Code: Select all
\PassOptionsToPackage{numbers}{natbib}
If that doesn't help, please provide a

KR
Rainer
- Thu Apr 04, 2024 8:10 pm
- Forum: Fonts & Character Sets
- Topic: Danish characters "æ,ø,å" arent compiled after \rightarrow
- Replies: 1
- Views: 63946
Danish characters "æ,ø,å" arent compiled after \rightarrow
Hi there,
\rightarrow requires math mode, so if your pdfLaTeX isn''t stopping at errors, the first use of \rightarrow switches output to math mode---and in math mode, there aren't many language-specific characters defined (except for math, of course).
Either enclose all those \rightarrow commands by ...
\rightarrow requires math mode, so if your pdfLaTeX isn''t stopping at errors, the first use of \rightarrow switches output to math mode---and in math mode, there aren't many language-specific characters defined (except for math, of course).
Either enclose all those \rightarrow commands by ...
- Mon Mar 18, 2024 9:18 am
- Forum: Graphics, Figures & Tables
- Topic: Fixing warning associatd with manually defined figure labels.
- Replies: 2
- Views: 58155
Fixing warning associatd with manually defined figure labels.
Hi Bob,
I can't help but wonder...why do you define labels in this manner at all?
It doesn't look like you're referencing any of them---or if you do, the real question should have been ``why do my \ref{whatever} all point to the last use of \label{whatever} ?'' or so.
Besides, it would take quite ...
I can't help but wonder...why do you define labels in this manner at all?
It doesn't look like you're referencing any of them---or if you do, the real question should have been ``why do my \ref{whatever} all point to the last use of \label{whatever} ?'' or so.
Besides, it would take quite ...
- Mon Mar 04, 2024 10:22 am
- Forum: General
- Topic: Unexplained Vertical spacing outside of minipage
- Replies: 2
- Views: 5399
Unexplained Vertical spacing outside of minipage
Well, \parsep has no effect, because it's used as vertical skip between paragraphs within an item of a list environment, such as enumerate or itemize.
\parindent would be a horizontal, not vertical skip at the beginning of a new paragraph.
\abovedisplayskip / \belowdisplayskip are only inserted ...
\parindent would be a horizontal, not vertical skip at the beginning of a new paragraph.
\abovedisplayskip / \belowdisplayskip are only inserted ...
- Wed Feb 21, 2024 7:02 pm
- Forum: Text Formatting
- Topic: Normal and large hat
- Replies: 4
- Views: 60961
Normal and large hat
Well, I don't really see a difference using lmodern or not. Your
\newcommand{\wh}{\widehat}
just creates a shorter name `\wh' for `\widehat', you can see that \wh uses \widhat internally. Unless either is changed later, \wh and \widehat should produce exactly the same.
On the other hand, if you ...
\newcommand{\wh}{\widehat}
just creates a shorter name `\wh' for `\widehat', you can see that \wh uses \widhat internally. Unless either is changed later, \wh and \widehat should produce exactly the same.
On the other hand, if you ...
- Sun Feb 18, 2024 2:12 pm
- Forum: BibTeX, biblatex and biber
- Topic: Citation keys not converting to citations in text
- Replies: 7
- Views: 29330
- Sun Feb 18, 2024 2:03 pm
- Forum: Text Formatting
- Topic: Normal and large hat
- Replies: 4
- Views: 60961
Normal and large hat
Here's an idea:
\documentclass{article}
\newlength\hwhatcwidth% half wide hat's contents width
\newlength\hwhatuwidth% half wide hat's contents width with contents upright
\newcommand*\halfwidehat[1]{%
\settowidth\hwhatcwidth{\ensuremath{#1}}%
\settowidth\hwhatuwidth{\ensuremath{\mathrm{#1 ...
\documentclass{article}
\newlength\hwhatcwidth% half wide hat's contents width
\newlength\hwhatuwidth% half wide hat's contents width with contents upright
\newcommand*\halfwidehat[1]{%
\settowidth\hwhatcwidth{\ensuremath{#1}}%
\settowidth\hwhatuwidth{\ensuremath{\mathrm{#1 ...