mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 17:20:55 +00:00
Add latex2rtf converter
* lib/configure.py (checkFormatEntries): Add rtf format (checkConverterEntries): Add latex2rtf converter git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@15170 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
d78883dfe4
commit
ebc38de12a
@ -288,6 +288,7 @@ def checkFormatEntries():
|
||||
\Format pdftex pdftex_t PDFTEX "" "" ""
|
||||
\Format program "" Program "" "" ""
|
||||
\Format pstex pstex_t PSTEX "" "" ""
|
||||
\Format rtf rtf "Rich Text Format" "" "" ""
|
||||
\Format sxw sxw "OpenOffice.Org Writer" O "" ""
|
||||
\Format wmf wmf "Windows Meta File" "" "" ""
|
||||
\Format word doc "MS Word" W "" ""
|
||||
@ -333,6 +334,9 @@ def checkConverterEntries():
|
||||
#
|
||||
checkProg('a LaTeX -> OpenOffice.org converter', ['oolatex $$i', 'oolatex.sh $$i'],
|
||||
rc_entry = [ r'\converter latex sxw "%%" "latex"' ])
|
||||
# On windows it is called latex2rt.exe
|
||||
checkProg('a LaTeX -> RTF converter', ['latex2rtf -p -S -o $$o $$i', 'latex2rt -p -S -o $$o $$i'],
|
||||
rc_entry = [ r'\converter latex rtf "%%" "needaux"' ])
|
||||
#
|
||||
checkProg('a PS to PDF converter', ['ps2pdf13 $$i $$o'],
|
||||
rc_entry = [ r'\converter ps pdf "%%" ""' ])
|
||||
|
@ -23,6 +23,8 @@ What's new
|
||||
|
||||
- Add a wmf -> eps converter (bug 2845)
|
||||
|
||||
- Add a latex -> rtf converter
|
||||
|
||||
- Update Romanian localization of the interface.
|
||||
|
||||
** Bug fixes:
|
||||
|
Loading…
Reference in New Issue
Block a user