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?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- 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 277 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: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Graphic issue beamer in LYX
Stefan