Hi all,
whenever I add more than about 10 acronyms to my acronym list in a lyx
document, I can't compile the .pdf anymore. The program doesn't produce
an error but the pdf button isn't responsive anymore.
would appreciate any help!
thanks
commands used:
\usepackage{acronym} %in the document's latex preamble
\begin{acronym}[UML]
\acro{xxx}{does not work}
.
.
.
\end{acronym}
LyX ⇒ Problem with acronyms
Problem with acronyms
Please, provide a full MWE, in this case a .lyx file with some dummy text and acronyms, so people can test it. Also, specify your operating system, TeX installation and LyX version you're using.
Re: Problem with acronyms
hi meho_r
Mac OS X 10.6.3
Lyx version: 1.6.5
Tex distribution: TexLive-2009
and an attached file
hope that helps.
Mac OS X 10.6.3
Lyx version: 1.6.5
Tex distribution: TexLive-2009
and an attached file
hope that helps.
- Attachments
-
- acronyms.lyx.zip
- (1.2 KiB) Downloaded 283 times
Problem with acronyms
Seems as an encoding problem. Go to Document > Settings... > Language, then set the encoding to utf8.
Note: Check the apostrophe after 3,3 in:
since it is not recognized as a valid character and causes an error.
Note: Check the apostrophe after 3,3 in:
Code: Select all
\acro{DiO}{3,3′-dioctadecyloxacarbocyanine perchlorate}
Re: Problem with acronyms
thanks meho_r!
is there any way that I can work around this issue to
have primes (') and greek letters in my acronym list?
is there any way that I can work around this issue to
have primes (') and greek letters in my acronym list?
Problem with acronyms
Sure, just type them as text formulas, i.e., enclose them by $$:
Code: Select all
$'$ and $\gamma$
Re: Problem with acronyms
thanks meho_r, helped me a lot!