LyX ⇒ double f looks strange in align setting
double f looks strange in align setting
I quite new to LyX and have the following problem.
When entering a word in the align setting that contains a double f, in my case the word affine, the result shows in the exported .pdf as af fine. I don't have the same problem outside of the of the align setting.
For general information, I'm using version 2.0.3 of LyX and write in the document class ams article under opensuse 12.2.
Thanks in advance for any help. I did use the search function, but it didn't come up with any usable results.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
double f looks strange in align setting
welcome to the board!
Instead of directly writing affine in math mode, write it in text mode within math environments, such as
\text{affine}
. If you need italic, use \textit{affine}
, or \mathit{affine}
if it has to be in math font. However, as it's a text word, I would use \text
, to let look different to a product of math variables.The reason is, in text mode ff is a ligature, but math variables f and f are typeset with more inter-character space.
Stefan
double f looks strange in align setting
The window: The source: The pdf: I inserted it via »Edit > Math > Text Style > Text Normal Font«
Regards
(Bah -- this is the second Time I used LyX and it drives me crazy!)
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Re: double f looks strange in align setting
Stefan
Re: double f looks strange in align setting
As an explanation why i did use the math environment: it is common in mathematics to write the actual word you are defining highlighted in the actual definition body. the results with \mathit and \textit are actually way better then what I achieved so far.