mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-25 22:06:15 +00:00
move the preview conversion stuff into an external script
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4494 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
459e93c101
commit
492182feae
@ -1,4 +1,10 @@
|
|||||||
|
|
||||||
|
2002-06-27 André Pönitz <poenitz@gmx.net>
|
||||||
|
|
||||||
|
* configure.m4: add support for lyxpreview "format"
|
||||||
|
|
||||||
|
* scripts/lyxpreview2xpm: add file
|
||||||
|
|
||||||
2002-06-25 André Pönitz <poenitz@gmx.net>
|
2002-06-25 André Pönitz <poenitz@gmx.net>
|
||||||
|
|
||||||
* symbols: special characters
|
* symbols: special characters
|
||||||
|
@ -254,6 +254,9 @@ SEARCH_PROG([for a DVI previewer],DVI_VIEWER, xdvi windvi yap)
|
|||||||
# Search something to preview html
|
# Search something to preview html
|
||||||
SEARCH_PROG([for a HTML previewer],HTML_VIEWER, netscape)
|
SEARCH_PROG([for a HTML previewer],HTML_VIEWER, netscape)
|
||||||
|
|
||||||
|
# Search for a program to preview latex code
|
||||||
|
SEARCH_PROG([for a LaTeX preview],LATEX_VIEWER, "xterm -e less")
|
||||||
|
|
||||||
# Search for a program to convert ps to pdf
|
# Search for a program to convert ps to pdf
|
||||||
SEARCH_PROG([for a PS to PDF converter],ps_to_pdf_command,ps2pdf)
|
SEARCH_PROG([for a PS to PDF converter],ps_to_pdf_command,ps2pdf)
|
||||||
test $ps_to_pdf_command = "ps2pdf" && ps_to_pdf_command="ps2pdf \$\$i"
|
test $ps_to_pdf_command = "ps2pdf" && ps_to_pdf_command="ps2pdf \$\$i"
|
||||||
@ -266,6 +269,10 @@ test $dvi_to_ps_command = "dvips" && dvi_to_ps_command="dvips -o \$\$o \$\$i"
|
|||||||
SEARCH_PROG([for a DVI to PDF converter],dvi_to_pdf_command,dvipdfm)
|
SEARCH_PROG([for a DVI to PDF converter],dvi_to_pdf_command,dvipdfm)
|
||||||
test $dvi_to_pdf_command = "dvipdfm" && dvi_to_pdf_command="dvipdfm \$\$i"
|
test $dvi_to_pdf_command = "dvipdfm" && dvi_to_pdf_command="dvipdfm \$\$i"
|
||||||
|
|
||||||
|
# Search for a program to convert previewlyx to eps
|
||||||
|
SEARCH_PROG([for a LyX preview converter],lyxpreview_to_xpm_command,lyxpreview2xpm.sh)
|
||||||
|
test $lyxpreview_to_xpm_command = "lyxpreview2xpm.sh" && lyxpreview_to_xpm_command="lyxpreview2xpm.sh \$\$i \$\$o"
|
||||||
|
|
||||||
# Search a *roff program (used to translate tables in ASCII export)
|
# Search a *roff program (used to translate tables in ASCII export)
|
||||||
LYXRC_PROG([for a *roff formatter], \ascii_roff_command, dnl
|
LYXRC_PROG([for a *roff formatter], \ascii_roff_command, dnl
|
||||||
'groff -t -Tlatin1 $$FName' nroff,dnl
|
'groff -t -Tlatin1 $$FName' nroff,dnl
|
||||||
@ -445,6 +452,7 @@ cat >$outfile <<EOF
|
|||||||
\\Format tiff tif TIFF ""
|
\\Format tiff tif TIFF ""
|
||||||
\\Format word doc Word W
|
\\Format word doc Word W
|
||||||
\\Format xpm xpm XPM ""
|
\\Format xpm xpm XPM ""
|
||||||
|
\\Format lyxpreview lyxpreview LYXPREVIEW ""
|
||||||
|
|
||||||
\\converter latex dvi "$latex_to_dvi" "latex"
|
\\converter latex dvi "$latex_to_dvi" "latex"
|
||||||
\\converter latex pdf2 "$latex_to_pdf" "latex"
|
\\converter latex pdf2 "$latex_to_pdf" "latex"
|
||||||
@ -460,6 +468,7 @@ cat >$outfile <<EOF
|
|||||||
\\converter linuxdoc html "$linuxdoc_to_html_command" ""
|
\\converter linuxdoc html "$linuxdoc_to_html_command" ""
|
||||||
\\converter docbook dvi "$docbook_to_dvi_command" ""
|
\\converter docbook dvi "$docbook_to_dvi_command" ""
|
||||||
\\converter docbook html "$docbook_to_html_command" ""
|
\\converter docbook html "$docbook_to_html_command" ""
|
||||||
|
\\converter lyxpreview xpm "$lyxpreview_to_xpm_command" ""
|
||||||
|
|
||||||
\\converter latex lyx "$tex_to_lyx_command" ""
|
\\converter latex lyx "$tex_to_lyx_command" ""
|
||||||
\\converter literate lyx "$literate_to_lyx_command" ""
|
\\converter literate lyx "$literate_to_lyx_command" ""
|
||||||
@ -471,6 +480,7 @@ cat >$outfile <<EOF
|
|||||||
\\viewer pdf "$PDF_VIEWER"
|
\\viewer pdf "$PDF_VIEWER"
|
||||||
\\viewer ps "$GHOSTVIEW -swap"
|
\\viewer ps "$GHOSTVIEW -swap"
|
||||||
\\viewer eps "$GHOSTVIEW"
|
\\viewer eps "$GHOSTVIEW"
|
||||||
|
\\viewer latex "$LATEX_VIEWER"
|
||||||
|
|
||||||
$rc_entries
|
$rc_entries
|
||||||
\\font_encoding "$chk_fontenc"
|
\\font_encoding "$chk_fontenc"
|
||||||
|
14
lib/scripts/lyxpreview2xpm.sh
Executable file
14
lib/scripts/lyxpreview2xpm.sh
Executable file
@ -0,0 +1,14 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# converts a single inset's TeX representation to an .xpm
|
||||||
|
|
||||||
|
dir=`dirname $2`
|
||||||
|
base=${dir}/`basename $2 .xpm`
|
||||||
|
|
||||||
|
cp $1 ${base}.tex
|
||||||
|
(cd ${dir} ; pdflatex --interaction batchmode ${base}.tex)
|
||||||
|
dvips -x 2000 -R -E -o ${base}.eps ${base}.dvi
|
||||||
|
convert ${base}.eps ${base}.xpm
|
||||||
|
rm ${base}.tex ${base}.aux ${base}.dvi ${base}.log ${base}.eps || true
|
||||||
|
|
||||||
|
exit 0
|
Loading…
Reference in New Issue
Block a user