Re: Lyx command line question

2005-10-19 Thread Georg Baum
Geoffrey Lloyd wrote: Yes it should but you must note that Export-Pdflatex is different to Export-latex followed by running pdflatex on the file. In the second case the only Export that Lyx is performing is Lyx-tex. This will not convert any graphics file formats. This is true for 1.3.x,

Re: Drawing of polynomials

2005-10-19 Thread Herbert Voss
Gunnar wrote: I've written a simple C++ program that can make eepic graphs of polynomials. So if you need to do this you can get my program here: http://web.comhem.se/~u46307480/RitaGraf.tgz There is a very short postscript manual in the tgz-file for those who can't speak swedish. The

Re: [need help with wiki] Re: Excel data sheets

2005-10-19 Thread Sven Schreiber
Its great that you are visualising putting this on the wiki. I just wonder if it might be a better idea to scan through the lists and summarize all cut and paste tips and put them together on the wiki if you can spare the time. In principle I could do that, but with the (hopefully)

Re: Lyx command line question

2005-10-19 Thread Jose' Matos
On Wednesday 19 October 2005 06:04, Roy Schestowitz wrote: That said, I can't understand why people steer away from encapsulated PostScript, which in most cases ought to be used as it preserves and incorporates vectors rather than pixels. If used properly, it is also far smaller in terms of

Re: [need help with wiki] Re: Excel data sheets

2005-10-19 Thread samar j. singh
On Wednesday 19 October 2005 13:13, Sven Schreiber wrote: Its great that you are visualising putting this on the wiki. I just wonder if it might be a better idea to scan through the lists and summarize all cut and paste tips and put them together on the wiki if you can spare the time.

RE: Lyx command line question: summarized

2005-10-19 Thread Sanders, Maarten (M.J.L.)
Thank you for all the contribution, Summarized: The latex export command line option works fine for regular latex, latex myfile.tex generates a valid dvi file. If you want to use pdflatex you should either: 1) edit the resulting .tex file and replace \usepackage{graphicx} with

RE: Lyx command line question: summarized

2005-10-19 Thread Mike Meyer
In [EMAIL PROTECTED], Sanders, Maarten (M.J.L.) [EMAIL PROTECTED] typed: 2) run, before you run pdflatex, something like for FILE in `find . -name '*\.gif'`; do convert $FILE `echo $FILE | sed 's/\(.*\.\)gif/\1png/'`; done basename is safer: for file in $(find . -name *.gif) do convert

RE: Lyx command line question: summarized

2005-10-19 Thread Angus Leeming
Mike Meyer wrote: 2) run, before you run pdflatex, something like for FILE in `find . -name '*\.gif'`; do convert $FILE `echo $FILE | sed 's/\(.*\.\)gif/\1png/'`; done basename is safer: for file in $(find . -name *.gif) do convert $file $(basename $file .gif).png done Hi, Mike.

Aspell personal dictionnaires OsX 10.4.2

2005-10-19 Thread Alexander Gahr
- Original Message - From: Alexander Gahr [EMAIL PROTECTED] To: lyx-users@lists.lyx.org Sent: Tuesday, October 18, 2005 1:29 AM Subject: Aspell personal dictionnaires OsX 10.4.2 How do I get a Personal dictionnaires in Aspell to use with lyx. I don't want to tell the program every time

Add Function Aspell (was Aspell personal dictionnaires OsX 10.4.2)

2005-10-19 Thread Alexander Gahr
So i tried some more and i'm thinking that cocoaspell is working again and i have choosen the en.pws file that cocaspell creates. I can perfectly add some word to this personal word list from outside of lyx but If i try it from within lyx the situation is that lyx know all new words

Re: Add Function Aspell (was Aspell personal dictionnaires OsX 10.4.2)

2005-10-19 Thread Andre Berger
* Alexander Gahr [EMAIL PROTECTED], 2005-10-19 17:40 +0200: So i tried some more and i'm thinking that cocoaspell is working again and i have choosen the en.pws file that cocaspell creates. I can perfectly add some word to this personal word list from outside of lyx but If i try

Add Function Aspell (was Aspell personal dictionnaires OsX 10.4.2)

2005-10-19 Thread Alexander Gahr
Hm tried this before but gave it another try. I installed lyx cocoaspell or aspell only. Removed /Users/gahr/Library/Application Support/LyX this is the place where in the apple installation the perferences are stored. But i have the same problem i can't add word to a dictionary from within

Re: Lyx command line question

2005-10-19 Thread Paul
PS: Please always reply to the list I second that. I noticed a tendency to reply off-list. This leaves gaps in the mailing list archives and puts off a subset of list subscribers. css-discuss, on the contrary, adopted some different habits. The main question to ask is would the group or the

Re: Lyx command line question

2005-10-19 Thread Paul Smith
On 10/19/05, Paul [EMAIL PROTECTED] wrote: PS: Please always reply to the list I second that. I noticed a tendency to reply off-list. This leaves gaps in the mailing list archives and puts off a subset of list subscribers. css-discuss, on the contrary, adopted some different habits.

[OT Mail List header rewriting ] Re: Lyx command line question

2005-10-19 Thread Todd Denniston
Paul Smith wrote: On 10/19/05, Paul [EMAIL PROTECTED] wrote: PS: Please always reply to the list I second that. I noticed a tendency to reply off-list. This leaves gaps in the mailing list archives and puts off a subset of list subscribers. css-discuss, on the contrary, adopted

Re: Lyx command line question

2005-10-19 Thread Mike Meyer
In [EMAIL PROTECTED], Paul [EMAIL PROTECTED] typed: Maybe it's just my mail client, but this list seems to default for a reply to the sender instead of to the list, unlike all the other lists I've ever been on. I accidently sent a reply intended for the list to the sender and didn't realise

Re: Lyx command line question

2005-10-19 Thread Lars Gullik Bjønnes
Paul [EMAIL PROTECTED] writes: | PS: Please always reply to the list | | I second that. I noticed a tendency to reply off-list. This leaves | gaps in the mailing list archives and puts off a subset of list | subscribers. css-discuss, on the contrary, adopted some different | habits. The

Re: Lyx command line question: summarized

2005-10-19 Thread Lars Gullik Bjønnes
Angus Leeming [EMAIL PROTECTED] writes: | find foo -name '*.gif' | while read file | do | pngfile=`basename $file .gif`.png | convert $file pngfile | done Hmm... I thought thiw was usually written as a for-loop. for file in `find foo -name \*.gif` ; do pngfile=`basename $file

Re: [OT Mail List header rewriting ] Re: Lyx command line question

2005-10-19 Thread Paul
Todd Denniston wrote: I agree, Paul. The reply address should be occupied by the list's address. I could agree ... if I had not seen the problems it can cause. example: the MUSCLE list (smart cards) http://lists.drizzle.com/mailman/listinfo/muscle First: to me this breaks the rule of

Re: Lyx command line question

2005-10-19 Thread Lars Gullik Bjønnes
Paul Smith [EMAIL PROTECTED] writes: | On 10/19/05, Paul [EMAIL PROTECTED] wrote: | PS: Please always reply to the list | | I second that. I noticed a tendency to reply off-list. This leaves | gaps in the mailing list archives and puts off a subset of list | subscribers. css-discuss, on

Re: Add Function Aspell (was Aspell personal dictionnaires OsX 10.4.2)

2005-10-19 Thread Stephen Harris
- Original Message - From: Alexander Gahr [EMAIL PROTECTED] To: lyx-users@lists.lyx.org Sent: Wednesday, October 19, 2005 11:03 AM Subject: Add Function Aspell (was Aspell personal dictionnaires OsX 10.4.2) Hm tried this before but gave it another try. I installed lyx cocoaspell or

Re: [OT Mail List header rewriting ] Re: Lyx command line question

2005-10-19 Thread Kayvan A. Sylvan
On Wed, Oct 19, 2005 at 08:32:06PM +0100, Paul wrote: My experience of lists is that 99% of the time I want to reply to the whole list, so it makes sense to me to have that as the default. If someone really decides to make the change, please set the rewriter to put both the originator and

Re: Add Function Aspell (was Aspell personal dictionnaires OsX 10.4.2)

2005-10-19 Thread Stephen Harris
- Original Message - From: Alexander Gahr [EMAIL PROTECTED] To: lyx-users@lists.lyx.org Sent: Wednesday, October 19, 2005 11:03 AM Subject: Add Function Aspell (was Aspell personal dictionnaires OsX 10.4.2) Hm tried this before but gave it another try. I installed lyx cocoaspell or

Re: Lyx command line question: summarized

2005-10-19 Thread Angus Leeming
Lars Gullik Bjønnes wrote: Angus Leeming writes: | find foo -name '*.gif' | while read file | do | pngfile=`basename $file .gif`.png | convert $file pngfile | done Hmm... I thought thiw was usually written as a for-loop. for file in `find foo -name \*.gif` ; do

Re: Lyx command line question

2005-10-19 Thread Georg Baum
Am Mittwoch, 19. Oktober 2005 20:51 schrieb Paul Smith: I agree, Paul. The reply address should be occupied by the list's address. I don't agree. Read http://www.unicom.com/pw/reply-to-harmful.html, and then get a decent email program (or news client, if you read the list via gmane). For

Re: Lyx command line question

2005-10-19 Thread Paul Smith
On 10/19/05, Georg Baum [EMAIL PROTECTED] wrote: I agree, Paul. The reply address should be occupied by the list's address. I don't agree. Read http://www.unicom.com/pw/reply-to-harmful.html, and then get a decent email program (or news client, if you read the list via gmane). For example,

Re: Lyx command line question: summarized

2005-10-19 Thread Mike Meyer
[drifting off-topic] In [EMAIL PROTECTED], Angus Leeming [EMAIL PROTECTED] typed: The problem is that for splits the returned list of files using whitespace... Perhaps the bigger problem is that you can overrun the internal array size used by for to store the list of returned list of

Re: Lyx command line question: summarized

2005-10-19 Thread Lars Gullik Bjønnes
Angus Leeming [EMAIL PROTECTED] writes: | The problem is that for splits the returned list of files using | whitespace... find foo -name \*.gif -print -exec convert {} `basename {}`.png \; then (ha!) | (and you forgot a '$') | | Right :) (And restricted the search to the foo directory rather

Re: Lyx command line question

2005-10-19 Thread Angus Leeming
Paul Smith wrote: I don't agree. Read http://www.unicom.com/pw/reply-to-harmful.html, and then get a decent email program (or news client, if you read the list via gmane). For example, I press L in kmail when I want to answer to the list. I ignored all those details (discussed at the site

Re: Lyx command line question: summarized

2005-10-19 Thread Angus Leeming
Lars Gullik Bjønnes wrote: | The problem is that for splits the returned list of files using | whitespace... find foo -name \*.gif -print -exec convert {} `basename {}`.png \; then (ha!) Thanks. I've just learnt something. Don't you have to quote the args passed to convert? Bet you still

Clever quotes

2005-10-19 Thread Paul
Suppose I have some text that has a lot of quoted speech in it, but it's supplied using standard () straight single and double quotes. Is there some pre-processing tool that will try to convert them to proper curly quotes suitable for LaTeX (``) and ('')? I know it can't be done perfectly and

Re: Clever quotes

2005-10-19 Thread Rich Shepard
On Thu, 20 Oct 2005, Paul wrote: Is there a command-line tool that does this using some heuristics to cover most areas that could be problematic? Paul sed. tr, too, but sed would work. Something like s/[A-Z,a-z]?/``?/g. I didn't look at my sed book, but that reads, substitute two single

missing character (Lyx on Mac)

2005-10-19 Thread Max
Hi everybody, I've just installed Lyx and even though things went fairly smooth, I'm struggling with a bunch of minor issues. (Using the latest Lyx version, Mac OS 10.4.2, Powerbook with a german keyboard. Gerben Wierda's TeX, ghostscript8, Freetype2, libiconf, libwmf, ImaheMagick,

Re: Lyx command line question: summarized

2005-10-19 Thread Mike Meyer
In [EMAIL PROTECTED], Angus Leeming [EMAIL PROTECTED] typed: Lars Gullik Bjønnes wrote: | The problem is that for splits the returned list of files using | whitespace... find foo -name \*.gif -print -exec convert {} `basename {}`.png \; then (ha!) Thanks. I've just learnt something.

Re: Clever quotes

2005-10-19 Thread Angus Leeming
Paul wrote: Suppose I have some text that has a lot of quoted speech in it, but it's supplied using standard () straight single and double quotes. Is there some pre-processing tool that will try to convert them to proper curly quotes suitable for LaTeX (``) and ('')? I know it can't be

Re: Clever quotes

2005-10-19 Thread Mike Meyer
In [EMAIL PROTECTED], Rich Shepard [EMAIL PROTECTED] typed: On Thu, 20 Oct 2005, Paul wrote: Is there a command-line tool that does this using some heuristics to cover most areas that could be problematic? Paul sed. tr, too, but sed would work. Something like s/[A-Z,a-z]?/``?/g. I

Re: Clever quotes

2005-10-19 Thread Angus Leeming
Mike Meyer wrote: Is there a command-line tool that does this using some heuristics to cover most areas that could be problematic? sed. tr, too, but sed would work. Something like s/[A-Z,a-z]?/``?/g. I didn't look at my sed book, but that reads, substitute two single backqotes when there's a

PDF (dvipdfm) X PDF (pdflatex)

2005-10-19 Thread mywebs2005-lyx
I realized that export using the pdflatex do not produce the same pdf output that the dvipdfm. The difference lay between the size of up and bottom margins and the size of the files. Why, PDF (pdflatex) -- build an output with about (e.g. 29kb) and PDF (dvipdfm) -- build an output with about

Re: missing character (Lyx on Mac)

2005-10-19 Thread Bennett Helm
On Oct 19, 2005, at 8:01 PM, [EMAIL PROTECTED] wrote: Hi everybody, I've just installed Lyx and even though things went fairly smooth, I'm struggling with a bunch of minor issues. (Using the latest Lyx version, Mac OS 10.4.2, Powerbook with a german keyboard. Gerben Wierda's TeX,

Re: Clever quotes

2005-10-19 Thread Juergen Spitzmueller
Paul wrote: Suppose I have some text that has a lot of quoted speech in it, but it's supplied using standard () straight single and double quotes. Is there some pre-processing tool that will try to convert them to proper curly quotes suitable for LaTeX (``) and ('')? Here's some

Re: Lyx command line question

2005-10-19 Thread Georg Baum
Geoffrey Lloyd wrote: Yes it should but you must note that Export-Pdflatex is different to Export-latex followed by running pdflatex on the file. In the second case the only Export that Lyx is performing is Lyx-tex. This will not convert any graphics file formats. This is true for 1.3.x,

Re: Drawing of polynomials

2005-10-19 Thread Herbert Voss
Gunnar wrote: I've written a simple C++ program that can make eepic graphs of polynomials. So if you need to do this you can get my program here: http://web.comhem.se/~u46307480/RitaGraf.tgz There is a very short postscript manual in the tgz-file for those who can't speak swedish. The

Re: [need help with wiki] Re: Excel data sheets

2005-10-19 Thread Sven Schreiber
Its great that you are visualising putting this on the wiki. I just wonder if it might be a better idea to scan through the lists and summarize all cut and paste tips and put them together on the wiki if you can spare the time. In principle I could do that, but with the (hopefully)

Re: Lyx command line question

2005-10-19 Thread Jose' Matos
On Wednesday 19 October 2005 06:04, Roy Schestowitz wrote: That said, I can't understand why people steer away from encapsulated PostScript, which in most cases ought to be used as it preserves and incorporates vectors rather than pixels. If used properly, it is also far smaller in terms of

Re: [need help with wiki] Re: Excel data sheets

2005-10-19 Thread samar j. singh
On Wednesday 19 October 2005 13:13, Sven Schreiber wrote: Its great that you are visualising putting this on the wiki. I just wonder if it might be a better idea to scan through the lists and summarize all cut and paste tips and put them together on the wiki if you can spare the time.

RE: Lyx command line question: summarized

2005-10-19 Thread Sanders, Maarten (M.J.L.)
Thank you for all the contribution, Summarized: The latex export command line option works fine for regular latex, latex myfile.tex generates a valid dvi file. If you want to use pdflatex you should either: 1) edit the resulting .tex file and replace \usepackage{graphicx} with

RE: Lyx command line question: summarized

2005-10-19 Thread Mike Meyer
In [EMAIL PROTECTED], Sanders, Maarten (M.J.L.) [EMAIL PROTECTED] typed: 2) run, before you run pdflatex, something like for FILE in `find . -name '*\.gif'`; do convert $FILE `echo $FILE | sed 's/\(.*\.\)gif/\1png/'`; done basename is safer: for file in $(find . -name *.gif) do convert

RE: Lyx command line question: summarized

2005-10-19 Thread Angus Leeming
Mike Meyer wrote: 2) run, before you run pdflatex, something like for FILE in `find . -name '*\.gif'`; do convert $FILE `echo $FILE | sed 's/\(.*\.\)gif/\1png/'`; done basename is safer: for file in $(find . -name *.gif) do convert $file $(basename $file .gif).png done Hi, Mike.

Aspell personal dictionnaires OsX 10.4.2

2005-10-19 Thread Alexander Gahr
- Original Message - From: Alexander Gahr [EMAIL PROTECTED] To: lyx-users@lists.lyx.org Sent: Tuesday, October 18, 2005 1:29 AM Subject: Aspell personal dictionnaires OsX 10.4.2 How do I get a Personal dictionnaires in Aspell to use with lyx. I don't want to tell the program every time

Add Function Aspell (was Aspell personal dictionnaires OsX 10.4.2)

2005-10-19 Thread Alexander Gahr
So i tried some more and i'm thinking that cocoaspell is working again and i have choosen the en.pws file that cocaspell creates. I can perfectly add some word to this personal word list from outside of lyx but If i try it from within lyx the situation is that lyx know all new words

Re: Add Function Aspell (was Aspell personal dictionnaires OsX 10.4.2)

2005-10-19 Thread Andre Berger
* Alexander Gahr [EMAIL PROTECTED], 2005-10-19 17:40 +0200: So i tried some more and i'm thinking that cocoaspell is working again and i have choosen the en.pws file that cocaspell creates. I can perfectly add some word to this personal word list from outside of lyx but If i try

Add Function Aspell (was Aspell personal dictionnaires OsX 10.4.2)

2005-10-19 Thread Alexander Gahr
Hm tried this before but gave it another try. I installed lyx cocoaspell or aspell only. Removed /Users/gahr/Library/Application Support/LyX this is the place where in the apple installation the perferences are stored. But i have the same problem i can't add word to a dictionary from within

Re: Lyx command line question

2005-10-19 Thread Paul
PS: Please always reply to the list I second that. I noticed a tendency to reply off-list. This leaves gaps in the mailing list archives and puts off a subset of list subscribers. css-discuss, on the contrary, adopted some different habits. The main question to ask is would the group or the

Re: Lyx command line question

2005-10-19 Thread Paul Smith
On 10/19/05, Paul [EMAIL PROTECTED] wrote: PS: Please always reply to the list I second that. I noticed a tendency to reply off-list. This leaves gaps in the mailing list archives and puts off a subset of list subscribers. css-discuss, on the contrary, adopted some different habits.

[OT Mail List header rewriting ] Re: Lyx command line question

2005-10-19 Thread Todd Denniston
Paul Smith wrote: On 10/19/05, Paul [EMAIL PROTECTED] wrote: PS: Please always reply to the list I second that. I noticed a tendency to reply off-list. This leaves gaps in the mailing list archives and puts off a subset of list subscribers. css-discuss, on the contrary, adopted

Re: Lyx command line question

2005-10-19 Thread Mike Meyer
In [EMAIL PROTECTED], Paul [EMAIL PROTECTED] typed: Maybe it's just my mail client, but this list seems to default for a reply to the sender instead of to the list, unlike all the other lists I've ever been on. I accidently sent a reply intended for the list to the sender and didn't realise

Re: Lyx command line question

2005-10-19 Thread Lars Gullik Bjønnes
Paul [EMAIL PROTECTED] writes: | PS: Please always reply to the list | | I second that. I noticed a tendency to reply off-list. This leaves | gaps in the mailing list archives and puts off a subset of list | subscribers. css-discuss, on the contrary, adopted some different | habits. The

Re: Lyx command line question: summarized

2005-10-19 Thread Lars Gullik Bjønnes
Angus Leeming [EMAIL PROTECTED] writes: | find foo -name '*.gif' | while read file | do | pngfile=`basename $file .gif`.png | convert $file pngfile | done Hmm... I thought thiw was usually written as a for-loop. for file in `find foo -name \*.gif` ; do pngfile=`basename $file

Re: [OT Mail List header rewriting ] Re: Lyx command line question

2005-10-19 Thread Paul
Todd Denniston wrote: I agree, Paul. The reply address should be occupied by the list's address. I could agree ... if I had not seen the problems it can cause. example: the MUSCLE list (smart cards) http://lists.drizzle.com/mailman/listinfo/muscle First: to me this breaks the rule of

Re: Lyx command line question

2005-10-19 Thread Lars Gullik Bjønnes
Paul Smith [EMAIL PROTECTED] writes: | On 10/19/05, Paul [EMAIL PROTECTED] wrote: | PS: Please always reply to the list | | I second that. I noticed a tendency to reply off-list. This leaves | gaps in the mailing list archives and puts off a subset of list | subscribers. css-discuss, on

Re: Add Function Aspell (was Aspell personal dictionnaires OsX 10.4.2)

2005-10-19 Thread Stephen Harris
- Original Message - From: Alexander Gahr [EMAIL PROTECTED] To: lyx-users@lists.lyx.org Sent: Wednesday, October 19, 2005 11:03 AM Subject: Add Function Aspell (was Aspell personal dictionnaires OsX 10.4.2) Hm tried this before but gave it another try. I installed lyx cocoaspell or

Re: [OT Mail List header rewriting ] Re: Lyx command line question

2005-10-19 Thread Kayvan A. Sylvan
On Wed, Oct 19, 2005 at 08:32:06PM +0100, Paul wrote: My experience of lists is that 99% of the time I want to reply to the whole list, so it makes sense to me to have that as the default. If someone really decides to make the change, please set the rewriter to put both the originator and

Re: Add Function Aspell (was Aspell personal dictionnaires OsX 10.4.2)

2005-10-19 Thread Stephen Harris
- Original Message - From: Alexander Gahr [EMAIL PROTECTED] To: lyx-users@lists.lyx.org Sent: Wednesday, October 19, 2005 11:03 AM Subject: Add Function Aspell (was Aspell personal dictionnaires OsX 10.4.2) Hm tried this before but gave it another try. I installed lyx cocoaspell or

Re: Lyx command line question: summarized

2005-10-19 Thread Angus Leeming
Lars Gullik Bjønnes wrote: Angus Leeming writes: | find foo -name '*.gif' | while read file | do | pngfile=`basename $file .gif`.png | convert $file pngfile | done Hmm... I thought thiw was usually written as a for-loop. for file in `find foo -name \*.gif` ; do

Re: Lyx command line question

2005-10-19 Thread Georg Baum
Am Mittwoch, 19. Oktober 2005 20:51 schrieb Paul Smith: I agree, Paul. The reply address should be occupied by the list's address. I don't agree. Read http://www.unicom.com/pw/reply-to-harmful.html, and then get a decent email program (or news client, if you read the list via gmane). For

Re: Lyx command line question

2005-10-19 Thread Paul Smith
On 10/19/05, Georg Baum [EMAIL PROTECTED] wrote: I agree, Paul. The reply address should be occupied by the list's address. I don't agree. Read http://www.unicom.com/pw/reply-to-harmful.html, and then get a decent email program (or news client, if you read the list via gmane). For example,

Re: Lyx command line question: summarized

2005-10-19 Thread Mike Meyer
[drifting off-topic] In [EMAIL PROTECTED], Angus Leeming [EMAIL PROTECTED] typed: The problem is that for splits the returned list of files using whitespace... Perhaps the bigger problem is that you can overrun the internal array size used by for to store the list of returned list of

Re: Lyx command line question: summarized

2005-10-19 Thread Lars Gullik Bjønnes
Angus Leeming [EMAIL PROTECTED] writes: | The problem is that for splits the returned list of files using | whitespace... find foo -name \*.gif -print -exec convert {} `basename {}`.png \; then (ha!) | (and you forgot a '$') | | Right :) (And restricted the search to the foo directory rather

Re: Lyx command line question

2005-10-19 Thread Angus Leeming
Paul Smith wrote: I don't agree. Read http://www.unicom.com/pw/reply-to-harmful.html, and then get a decent email program (or news client, if you read the list via gmane). For example, I press L in kmail when I want to answer to the list. I ignored all those details (discussed at the site

Re: Lyx command line question: summarized

2005-10-19 Thread Angus Leeming
Lars Gullik Bjønnes wrote: | The problem is that for splits the returned list of files using | whitespace... find foo -name \*.gif -print -exec convert {} `basename {}`.png \; then (ha!) Thanks. I've just learnt something. Don't you have to quote the args passed to convert? Bet you still

Clever quotes

2005-10-19 Thread Paul
Suppose I have some text that has a lot of quoted speech in it, but it's supplied using standard () straight single and double quotes. Is there some pre-processing tool that will try to convert them to proper curly quotes suitable for LaTeX (``) and ('')? I know it can't be done perfectly and

Re: Clever quotes

2005-10-19 Thread Rich Shepard
On Thu, 20 Oct 2005, Paul wrote: Is there a command-line tool that does this using some heuristics to cover most areas that could be problematic? Paul sed. tr, too, but sed would work. Something like s/[A-Z,a-z]?/``?/g. I didn't look at my sed book, but that reads, substitute two single

missing character (Lyx on Mac)

2005-10-19 Thread Max
Hi everybody, I've just installed Lyx and even though things went fairly smooth, I'm struggling with a bunch of minor issues. (Using the latest Lyx version, Mac OS 10.4.2, Powerbook with a german keyboard. Gerben Wierda's TeX, ghostscript8, Freetype2, libiconf, libwmf, ImaheMagick,

Re: Lyx command line question: summarized

2005-10-19 Thread Mike Meyer
In [EMAIL PROTECTED], Angus Leeming [EMAIL PROTECTED] typed: Lars Gullik Bjønnes wrote: | The problem is that for splits the returned list of files using | whitespace... find foo -name \*.gif -print -exec convert {} `basename {}`.png \; then (ha!) Thanks. I've just learnt something.

Re: Clever quotes

2005-10-19 Thread Angus Leeming
Paul wrote: Suppose I have some text that has a lot of quoted speech in it, but it's supplied using standard () straight single and double quotes. Is there some pre-processing tool that will try to convert them to proper curly quotes suitable for LaTeX (``) and ('')? I know it can't be

Re: Clever quotes

2005-10-19 Thread Mike Meyer
In [EMAIL PROTECTED], Rich Shepard [EMAIL PROTECTED] typed: On Thu, 20 Oct 2005, Paul wrote: Is there a command-line tool that does this using some heuristics to cover most areas that could be problematic? Paul sed. tr, too, but sed would work. Something like s/[A-Z,a-z]?/``?/g. I

Re: Clever quotes

2005-10-19 Thread Angus Leeming
Mike Meyer wrote: Is there a command-line tool that does this using some heuristics to cover most areas that could be problematic? sed. tr, too, but sed would work. Something like s/[A-Z,a-z]?/``?/g. I didn't look at my sed book, but that reads, substitute two single backqotes when there's a

PDF (dvipdfm) X PDF (pdflatex)

2005-10-19 Thread mywebs2005-lyx
I realized that export using the pdflatex do not produce the same pdf output that the dvipdfm. The difference lay between the size of up and bottom margins and the size of the files. Why, PDF (pdflatex) -- build an output with about (e.g. 29kb) and PDF (dvipdfm) -- build an output with about

Re: missing character (Lyx on Mac)

2005-10-19 Thread Bennett Helm
On Oct 19, 2005, at 8:01 PM, [EMAIL PROTECTED] wrote: Hi everybody, I've just installed Lyx and even though things went fairly smooth, I'm struggling with a bunch of minor issues. (Using the latest Lyx version, Mac OS 10.4.2, Powerbook with a german keyboard. Gerben Wierda's TeX,

Re: Clever quotes

2005-10-19 Thread Juergen Spitzmueller
Paul wrote: Suppose I have some text that has a lot of quoted speech in it, but it's supplied using standard () straight single and double quotes. Is there some pre-processing tool that will try to convert them to proper curly quotes suitable for LaTeX (``) and ('')? Here's some

Re: Lyx command line question

2005-10-19 Thread Georg Baum
Geoffrey Lloyd wrote: > Yes it should but you must note that Export->Pdflatex is different to > Export->latex followed by running pdflatex on the file. > > In the second case the only Export that Lyx is performing is Lyx->tex. > This will not convert any graphics file formats. This is true for

Re: Drawing of polynomials

2005-10-19 Thread Herbert Voss
Gunnar wrote: > I've written a simple C++ program that can make eepic graphs of > polynomials. So if you need to do this you can get my program here: > > http://web.comhem.se/~u46307480/RitaGraf.tgz > > There is a very short postscript manual in the tgz-file for those who > can't speak swedish.

Re: [need help with wiki] Re: Excel data sheets

2005-10-19 Thread Sven Schreiber
> Its great that you are visualising putting this on the wiki. > > > I just wonder if it might be a better idea to scan through the lists and > summarize all cut and paste tips and put them together on the wiki if you can > spare the time. In principle I could do that, but with the

Re: Lyx command line question

2005-10-19 Thread Jose' Matos
On Wednesday 19 October 2005 06:04, Roy Schestowitz wrote: > That said, I can't understand why people steer away from encapsulated > PostScript, which in most cases ought to be used as it preserves and > incorporates vectors rather than pixels. If used properly, it is also far > smaller in terms

Re: [need help with wiki] Re: Excel data sheets

2005-10-19 Thread samar j. singh
On Wednesday 19 October 2005 13:13, Sven Schreiber wrote: > > Its great that you are visualising putting this on the wiki. > > > > > > I just wonder if it might be a better idea to scan through the lists and > > summarize all cut and paste tips and put them together on the wiki if you > > can

RE: Lyx command line question: summarized

2005-10-19 Thread Sanders, Maarten (M.J.L.)
Thank you for all the contribution, Summarized: The latex export command line option works fine for regular latex, latex myfile.tex generates a valid dvi file. If you want to use pdflatex you should either: 1) edit the resulting .tex file and replace \usepackage{graphicx} with

RE: Lyx command line question: summarized

2005-10-19 Thread Mike Meyer
In <[EMAIL PROTECTED]>, Sanders, Maarten (M.J.L.) <[EMAIL PROTECTED]> typed: > 2) run, before you run pdflatex, something like > for FILE in `find . -name '*\.gif'`; do convert $FILE `echo $FILE | sed > 's/\(.*\.\)gif/\1png/'`; done basename is safer: for file in $(find . -name *.gif) do

RE: Lyx command line question: summarized

2005-10-19 Thread Angus Leeming
Mike Meyer wrote: >> 2) run, before you run pdflatex, something like >> for FILE in `find . -name '*\.gif'`; do convert $FILE `echo $FILE | >> sed 's/\(.*\.\)gif/\1png/'`; done > > basename is safer: > > for file in $(find . -name *.gif) > do > convert $file $(basename $file .gif).png > done

Aspell personal dictionnaires OsX 10.4.2

2005-10-19 Thread Alexander Gahr
- Original Message - From: "Alexander Gahr" <[EMAIL PROTECTED]> To: Sent: Tuesday, October 18, 2005 1:29 AM Subject: Aspell personal dictionnaires OsX 10.4.2 >>How do I get a Personal dictionnaires in Aspell to use with lyx. >>I don't want to tell the program

Add Function Aspell (was Aspell personal dictionnaires OsX 10.4.2)

2005-10-19 Thread Alexander Gahr
So i tried some more and i'm thinking that cocoaspell is working again and i have choosen the en.pws file that cocaspell creates. I can perfectly add some word to this personal word list from outside of lyx but If i try it from within lyx the situation is that lyx know all new words

Re: Add Function Aspell (was Aspell personal dictionnaires OsX 10.4.2)

2005-10-19 Thread Andre Berger
* Alexander Gahr <[EMAIL PROTECTED]>, 2005-10-19 17:40 +0200: > So i tried some more and i'm thinking that cocoaspell is working again and > i have choosen the en.pws file that cocaspell creates. > > I can perfectly add some word to this personal word list from outside of > lyx but > >

Add Function Aspell (was Aspell personal dictionnaires OsX 10.4.2)

2005-10-19 Thread Alexander Gahr
Hm tried this before but gave it another try. I installed lyx cocoaspell or aspell only. Removed /Users/gahr/Library/Application Support/LyX this is the place where in the apple installation the perferences are stored. But i have the same problem i can't add word to a dictionary from within

Re: Lyx command line question

2005-10-19 Thread Paul
>>> PS: Please always reply to the list > > I second that. I noticed a tendency to reply off-list. This leaves > gaps in the mailing list archives and puts off a subset of list > subscribers. css-discuss, on the contrary, adopted some different > habits. The main question to ask is "would the

Re: Lyx command line question

2005-10-19 Thread Paul Smith
On 10/19/05, Paul <[EMAIL PROTECTED]> wrote: > >>> PS: Please always reply to the list > > > > I second that. I noticed a tendency to reply off-list. This leaves > > gaps in the mailing list archives and puts off a subset of list > > subscribers. css-discuss, on the contrary, adopted some

[OT Mail List header rewriting ] Re: Lyx command line question

2005-10-19 Thread Todd Denniston
Paul Smith wrote: > > On 10/19/05, Paul <[EMAIL PROTECTED]> wrote: > > >>> PS: Please always reply to the list > > > > > > I second that. I noticed a tendency to reply off-list. This leaves > > > gaps in the mailing list archives and puts off a subset of list > > > subscribers. css-discuss, on

Re: Lyx command line question

2005-10-19 Thread Mike Meyer
In <[EMAIL PROTECTED]>, Paul <[EMAIL PROTECTED]> typed: > Maybe it's just my mail client, but this list seems to default for a > reply to the sender instead of to the list, unlike all the other lists > I've ever been on. I accidently sent a reply intended for the list to > the sender and didn't

Re: Lyx command line question

2005-10-19 Thread Lars Gullik Bjønnes
Paul <[EMAIL PROTECTED]> writes: | >>> PS: Please always reply to the list | > | > I second that. I noticed a tendency to reply off-list. This leaves | > gaps in the mailing list archives and puts off a subset of list | > subscribers. css-discuss, on the contrary, adopted some different | >

Re: Lyx command line question: summarized

2005-10-19 Thread Lars Gullik Bjønnes
Angus Leeming <[EMAIL PROTECTED]> writes: | find foo -name '*.gif' | while read file | do | pngfile=`basename "$file" .gif`.png | convert "$file" "pngfile" | done Hmm... I thought thiw was usually written as a for-loop. for file in `find foo -name \*.gif` ; do pngfile=`basename

Re: [OT Mail List header rewriting ] Re: Lyx command line question

2005-10-19 Thread Paul
Todd Denniston wrote: >>I agree, Paul. The reply address should be occupied by the list's address. > > I could agree ... if I had not seen the problems it can cause. > example: the MUSCLE list (smart cards) > http://lists.drizzle.com/mailman/listinfo/muscle > > First: to me this breaks the rule

Re: Lyx command line question

2005-10-19 Thread Lars Gullik Bjønnes
Paul Smith <[EMAIL PROTECTED]> writes: | On 10/19/05, Paul <[EMAIL PROTECTED]> wrote: | > >>> PS: Please always reply to the list | > > | > > I second that. I noticed a tendency to reply off-list. This leaves | > > gaps in the mailing list archives and puts off a subset of list | > > subscribers.

  1   2   >