mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
Add proper author info and license header to the inkscape.xtemplate related files
This commit is contained in:
parent
3bbe082e06
commit
9f5a55aadc
@ -2,7 +2,14 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# file svg2pdftex.py
|
||||
#
|
||||
# This file is part of LyX, the document processor.
|
||||
# Licence details can be found in the file COPYING.
|
||||
|
||||
# author Daniel Gloger
|
||||
# author Martin Vermeer
|
||||
|
||||
# Full author contact details are available in file CREDITS
|
||||
|
||||
# This script converts an SVG image to something that pdflatex can process
|
||||
# into high quality PDF.
|
||||
|
||||
@ -19,11 +26,8 @@
|
||||
# the real pdf file will be overwritten by a tex file named file.pdf.
|
||||
#
|
||||
|
||||
|
||||
|
||||
import os, sys, re
|
||||
|
||||
|
||||
def runCommand(cmd):
|
||||
''' Utility function:
|
||||
run a command, quit if fails
|
||||
@ -32,7 +36,6 @@ def runCommand(cmd):
|
||||
print "Command '%s' fails." % cmd
|
||||
sys.exit(1)
|
||||
|
||||
|
||||
# We expect two args, the names of the input and output files.
|
||||
if len(sys.argv) != 3:
|
||||
sys.exit(1)
|
||||
@ -46,8 +49,6 @@ if not os.path.isfile(input):
|
||||
# Strip the extension from ${output}
|
||||
outbase = os.path.splitext(output)[0]
|
||||
|
||||
|
||||
|
||||
# Inkscape 0.48 can output the image as a PDF file ${base}.pdf and place the text
|
||||
# in a LaTeX file ${base}.pdf_tex, which is renamed to ${output}, for typesetting
|
||||
# by pdflatex itself.
|
||||
|
@ -2,10 +2,17 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# file svg2pstex.py
|
||||
#
|
||||
# This file is part of LyX, the document processor.
|
||||
# Licence details can be found in the file COPYING.
|
||||
|
||||
# author Daniel Gloger
|
||||
# author Martin Vermeer
|
||||
|
||||
# This script converts an SVG image to something that latex can process
|
||||
# into high quality PostScript.
|
||||
|
||||
# Full author contact details are available in file CREDITS
|
||||
|
||||
# Usage:
|
||||
# python svg2pstex.py ${base}.fig ${base}.pstex
|
||||
# This command generates
|
||||
|
@ -4,6 +4,7 @@
|
||||
# This file is part of LyX, the document processor.
|
||||
# Licence details can be found in the file COPYING.
|
||||
#
|
||||
# author Daniel Gloger
|
||||
# author Martin Vermeer
|
||||
#
|
||||
# based on external templates by:
|
||||
|
Loading…
Reference in New Issue
Block a user