Graphics, Figures & Tables ⇒ Graphic issue beamer in LYX
-
- Posts: 2
- Joined: Sat Feb 14, 2015 3:03 pm
Graphic issue beamer in LYX
Why isn't it the same in LYX editor and in pdf preview or html preview? Why the graphic is shrinked?
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
Re: Graphic issue beamer in LYX
I don't have LyX right here, but if you would make a LaTeX export and post it, as attachment to a post, I could see the reason, I suppose.
Stefan
-
- Posts: 2
- Joined: Sat Feb 14, 2015 3:03 pm
Re: Graphic issue beamer in LYX
it's very messy because its based on a template
- Attachments
-
- Borel.tex
- (4.39 KiB) Downloaded 271 times
Graphic issue beamer in LYX
Code: Select all
$\stackrel[n=1]{\infty}{\bigcup}X_{n}\in R.$
\stackrel
expects exactly two parameters, and doesn't have an optional one.Thus, you're telling
\stackrel
to put an opening bracket over n---the rest of that statement above is not seen by \stackrel
.Perhaps you were looking for something like
Code: Select all
$\bigcup\limits^\infty_{n=1}X_{n}\in R.$
KR
Rainer
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Graphic issue beamer in LYX
Stefan