LyX ⇒ problem export to pdf
problem export to pdf
i´m using lyx on a macbook. Since a few days i have problems to make a pdf from a new lyx´s document. I select export -> pdflatex, and no response. However, i open a document of example and the export go ok.
Where is the problem?
Thanks!
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
problem export to pdf
Code: Select all
View > PDF (pdflatex)
Re: problem export to pdf
Re: problem export to pdf
Re: problem export to pdf
On the other hand, does not generate any error log.
problem export to pdf
Also, check your settings for exporting in .pdf (see screenshots provided in the attachment for reference; Tools > Preferences). I'm using Ubuntu, but I believe settings should be similar.
You may also try to remove LyX user settings (just rename the folder, no need to delete it). Check here for paths, folder names and other details.
- Attachments
-
- Settings.zip
- Screenshots of settings for exporting in .pdf
- (93.41 KiB) Downloaded 187 times
-
- test.lyx.zip
- .lyx file for testing.
- (541 Bytes) Downloaded 183 times
Re: problem export to pdf
The settings are the same, and I can make a pdf from your example. How ever is not posible to do from my files... this is my code and your code:
% Vista preliminar del código fuente
%% LyX 1.6.5 created this file. For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[spanish]{article}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{babel}
\addto\shorthandsspanish{\spanishdeactivate{~<>}}
\begin{document}
my test.
\end{document}
__________________________________________
% Vista preliminar del código fuente
%% LyX 1.6.5 created this file. For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{babel}
\begin{document}
Test.
\end{document}
problem export to pdf
In the meantime, check your encoding settings (latin9, utf8?). Try commenting out the line:
Code: Select all
\addto\shorthandsspanish{\spanishdeactivate{~<>}}
So, basically, there are three possible problems:
1. input encoding,
2. language,
3. spanish shorthands + babel.
Re: problem export to pdf
Maybe it's a problem with pdflatex or another plugin, because I've changed nothing from lyx and now it works...
Thank you very much for your help!