2003-09-23 17:37:00 +00:00
|
|
|
#
|
|
|
|
# file external_templates
|
|
|
|
# This file is part of LyX, the document processor.
|
|
|
|
# Licence details can be found in the file COPYING.
|
|
|
|
#
|
|
|
|
# author Asger Alstrup Nielsen
|
|
|
|
# author Angus Leeming
|
|
|
|
# author Johnathan Burchill
|
|
|
|
#
|
|
|
|
# Full author contact details are available in file CREDITS.
|
2000-06-12 11:27:15 +00:00
|
|
|
|
2003-09-23 17:37:00 +00:00
|
|
|
# This file contains the definitions of those External Templates that are
|
|
|
|
# part of the official LyX distribution.
|
|
|
|
# Feel free to create your own External Templates, storing them in
|
|
|
|
# .lyx/external_templates
|
|
|
|
|
|
|
|
|
|
|
|
PreambleDef WarnNotFound
|
|
|
|
%% Print a warning encased in an fbox.
|
|
|
|
\def\lyxstripprefix#1>{}
|
|
|
|
\newcommand{\warnNotFound}[1]{%
|
|
|
|
\def\lyxtempfilename{#1}%
|
2003-09-04 23:09:40 +00:00
|
|
|
\fbox{Could not find
|
2003-09-23 17:37:00 +00:00
|
|
|
\ttfamily\expandafter\lyxstripprefix\meaning\lyxtempfilename!}%
|
|
|
|
\typeout{Could not find \lyxtempfilename!}%
|
2003-09-04 23:09:40 +00:00
|
|
|
}
|
2003-09-04 17:01:00 +00:00
|
|
|
PreambleDefEnd
|
|
|
|
|
2003-09-23 17:37:00 +00:00
|
|
|
|
|
|
|
PreambleDef InputOrWarn
|
|
|
|
%% Input the file if it exists, using \input, else print a warning
|
|
|
|
\newcommand{\inputOrWarn}[1]{%
|
|
|
|
\IfFileExists{#1}{\input{#1}}{\warnNotFound{#1}}}
|
|
|
|
PreambleDefEnd
|
|
|
|
|
2003-09-25 10:49:13 +00:00
|
|
|
|
|
|
|
Template RasterImage
|
2004-04-29 11:33:04 +00:00
|
|
|
# By default, InsetExternal is displayed as a grey button
|
|
|
|
# containing this text.
|
2004-04-06 21:07:27 +00:00
|
|
|
GuiName "Bitmap: $$AbsOrRelPathParent$$Basename"
|
2004-04-29 11:33:04 +00:00
|
|
|
# This text is used in the External dialog.
|
|
|
|
# Provide enough information to explain to the user just
|
|
|
|
# what the template can provide him with.
|
2003-09-25 10:49:13 +00:00
|
|
|
HelpText
|
|
|
|
A bitmap file.
|
|
|
|
HelpTextEnd
|
2004-04-29 11:33:04 +00:00
|
|
|
# ANY file type can be displayed as a RasterImage.
|
|
|
|
# Specifically, LyX will attempt to interrogate the file itself
|
|
|
|
# in order to deduce its format.
|
2003-09-25 10:49:13 +00:00
|
|
|
InputFormat "*"
|
2004-04-29 11:33:04 +00:00
|
|
|
# Globbing pattern used when browsing for a Raster image file.
|
2004-01-05 16:49:38 +00:00
|
|
|
FileFilter "*.{gif,png,jpg,bmp,pbm,ppm,tga,tif,xpm,xbm}"
|
2004-04-29 11:33:04 +00:00
|
|
|
# Set to "true" if the file represented by the template
|
|
|
|
# must be generated by LyX.
|
2003-09-25 10:49:13 +00:00
|
|
|
AutomaticProduction true
|
2004-04-29 11:33:04 +00:00
|
|
|
# LyX has hard-coded support for these transformations
|
2003-10-07 22:59:58 +00:00
|
|
|
Transform Rotate
|
|
|
|
Transform Resize
|
|
|
|
Transform Clip
|
|
|
|
Transform Extra
|
2003-09-25 10:49:13 +00:00
|
|
|
Format LaTeX
|
2003-10-07 22:59:58 +00:00
|
|
|
TransformOption Rotate RotationLatexOption
|
|
|
|
TransformOption Resize ResizeLatexOption
|
|
|
|
TransformOption Clip ClipLatexOption
|
|
|
|
TransformOption Extra ExtraOption
|
|
|
|
Option Arg "[$$Extra,$$Rotate,$$Resize,$$Clip]"
|
2004-04-29 11:33:04 +00:00
|
|
|
# This string is what is output to the LaTeX file.
|
2004-04-06 21:07:27 +00:00
|
|
|
Product "\\includegraphics$$Arg{$$AbsOrRelPathMaster$$Basename}"
|
2003-09-25 10:49:13 +00:00
|
|
|
UpdateFormat eps
|
2004-04-06 21:07:27 +00:00
|
|
|
UpdateResult "$$AbsPath$$Basename.eps"
|
2003-09-25 10:49:13 +00:00
|
|
|
Requirement "graphicx"
|
2004-06-01 13:39:33 +00:00
|
|
|
ReferencedFile latex "$$AbsPath$$Basename.eps"
|
|
|
|
ReferencedFile dvi "$$AbsPath$$Basename.eps"
|
2003-09-25 10:49:13 +00:00
|
|
|
FormatEnd
|
|
|
|
Format PDFLaTeX
|
2003-10-07 22:59:58 +00:00
|
|
|
TransformOption Rotate RotationLatexOption
|
|
|
|
TransformOption Resize ResizeLatexOption
|
|
|
|
TransformOption Clip ClipLatexOption
|
|
|
|
TransformOption Extra ExtraOption
|
|
|
|
Option Arg "[$$Extra,$$Rotate,$$Resize,$$Clip]"
|
2004-04-06 21:07:27 +00:00
|
|
|
Product "\\includegraphics$$Arg{$$AbsOrRelPathMaster$$Basename}"
|
2003-09-25 10:49:13 +00:00
|
|
|
UpdateFormat png
|
2004-04-06 21:07:27 +00:00
|
|
|
UpdateResult "$$AbsPath$$Basename.png"
|
2003-10-07 21:44:59 +00:00
|
|
|
Requirement "graphicx"
|
2006-03-28 18:49:46 +00:00
|
|
|
ReferencedFile pdflatex "$$AbsPath$$Basename.png"
|
2003-09-25 10:49:13 +00:00
|
|
|
FormatEnd
|
|
|
|
Format Ascii
|
2004-04-06 21:07:27 +00:00
|
|
|
Product "$$Contents(\"$$AbsPath$$Basename.asc\")"
|
2003-09-25 10:49:13 +00:00
|
|
|
UpdateFormat asciiimage
|
2004-04-06 21:07:27 +00:00
|
|
|
UpdateResult "$$AbsPath$$Basename.asc"
|
2003-09-25 10:49:13 +00:00
|
|
|
FormatEnd
|
|
|
|
Format DocBook
|
2004-04-06 21:07:27 +00:00
|
|
|
Product "<graphic fileref=\"$$AbsOrRelPathMaster$$Basename.eps\"></graphic>"
|
2003-09-25 10:49:13 +00:00
|
|
|
UpdateFormat eps
|
2004-04-06 21:07:27 +00:00
|
|
|
UpdateResult "$$AbsPath$$Basename.eps"
|
2004-06-01 13:39:33 +00:00
|
|
|
ReferencedFile docbook "$$AbsPath$$Basename.eps"
|
|
|
|
ReferencedFile docbook-xml "$$AbsPath$$Basename.eps"
|
2003-09-25 10:49:13 +00:00
|
|
|
FormatEnd
|
|
|
|
TemplateEnd
|
|
|
|
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
Template XFig
|
2004-04-06 21:07:27 +00:00
|
|
|
GuiName "XFig: $$AbsOrRelPathParent$$Basename"
|
2000-06-12 11:27:15 +00:00
|
|
|
HelpText
|
|
|
|
An XFig figure.
|
|
|
|
HelpTextEnd
|
2003-06-04 09:16:29 +00:00
|
|
|
InputFormat fig
|
2000-06-12 11:27:15 +00:00
|
|
|
FileFilter "*.fig"
|
|
|
|
AutomaticProduction true
|
2003-10-07 22:59:58 +00:00
|
|
|
Transform Rotate
|
|
|
|
Transform Resize
|
2000-06-12 11:27:15 +00:00
|
|
|
Format LaTeX
|
2003-10-07 22:59:58 +00:00
|
|
|
TransformCommand Rotate RotationLatexCommand
|
|
|
|
TransformCommand Resize ResizeLatexCommand
|
2004-04-06 21:07:27 +00:00
|
|
|
Product "$$RotateFront$$ResizeFront\\input{$$AbsOrRelPathMaster$$Basename.pstex_t}$$ResizeBack$$RotateBack"
|
2003-06-04 09:16:29 +00:00
|
|
|
UpdateFormat pstex
|
2004-04-06 21:07:27 +00:00
|
|
|
UpdateResult "$$AbsPath$$Basename.pstex_t"
|
2006-07-28 16:21:54 +00:00
|
|
|
Requirement "color"
|
2003-05-23 14:48:58 +00:00
|
|
|
Requirement "graphicx"
|
2004-04-20 08:07:27 +00:00
|
|
|
# Preamble WarnNotFound
|
|
|
|
# Preamble InputOrWarn
|
2004-11-01 08:50:42 +00:00
|
|
|
ReferencedFile latex "$$AbsOrRelPathMaster$$Basename.pstex_t"
|
|
|
|
ReferencedFile latex "$$AbsPath$$Basename.eps"
|
|
|
|
ReferencedFile dvi "$$AbsPath$$Basename.eps"
|
2003-05-23 14:36:26 +00:00
|
|
|
FormatEnd
|
|
|
|
Format PDFLaTeX
|
2003-10-07 22:59:58 +00:00
|
|
|
TransformCommand Rotate RotationLatexCommand
|
|
|
|
TransformCommand Resize ResizeLatexCommand
|
2004-04-06 21:07:27 +00:00
|
|
|
Product "$$RotateFront$$ResizeFront\\input{$$AbsOrRelPathMaster$$Basename.pdftex_t}$$ResizeBack$$RotateBack"
|
2003-06-04 09:16:29 +00:00
|
|
|
UpdateFormat pdftex
|
2004-04-06 21:07:27 +00:00
|
|
|
UpdateResult "$$AbsPath$$Basename.pdftex_t"
|
2006-07-28 16:21:54 +00:00
|
|
|
Requirement "color"
|
2003-10-07 21:44:59 +00:00
|
|
|
Requirement "graphicx"
|
2004-04-20 08:07:27 +00:00
|
|
|
# Preamble WarnNotFound
|
|
|
|
# Preamble InputOrWarn
|
2006-03-28 18:49:46 +00:00
|
|
|
ReferencedFile pdflatex "$$AbsOrRelPathMaster$$Basename.pdftex_t"
|
|
|
|
ReferencedFile pdflatex "$$AbsPath$$Basename.pdf"
|
2000-06-12 11:27:15 +00:00
|
|
|
FormatEnd
|
|
|
|
Format Ascii
|
2004-04-06 21:07:27 +00:00
|
|
|
Product "$$Contents(\"$$AbsPath$$Basename.asc\")"
|
2003-06-04 09:16:29 +00:00
|
|
|
UpdateFormat asciixfig
|
2004-04-06 21:07:27 +00:00
|
|
|
UpdateResult "$$AbsPath$$Basename.asc"
|
2000-06-12 11:27:15 +00:00
|
|
|
FormatEnd
|
|
|
|
Format DocBook
|
2004-04-06 21:07:27 +00:00
|
|
|
Product "<graphic fileref=\"$$AbsOrRelPathMaster$$Basename.eps\"></graphic>"
|
2003-06-04 09:16:29 +00:00
|
|
|
UpdateFormat eps
|
2004-04-06 21:07:27 +00:00
|
|
|
UpdateResult "$$AbsPath$$Basename.eps"
|
2004-06-01 13:39:33 +00:00
|
|
|
ReferencedFile docbook "$$AbsPath$$Basename.eps"
|
|
|
|
ReferencedFile docbook-xml "$$AbsPath$$Basename.eps"
|
2000-06-12 11:27:15 +00:00
|
|
|
FormatEnd
|
|
|
|
TemplateEnd
|
|
|
|
|
2003-09-25 10:49:13 +00:00
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
Template ChessDiagram
|
2004-04-06 21:07:27 +00:00
|
|
|
GuiName "Chess: $$AbsOrRelPathParent$$Basename"
|
2000-06-12 11:27:15 +00:00
|
|
|
HelpText
|
|
|
|
A chess position diagram.
|
2003-06-04 09:16:29 +00:00
|
|
|
This template will use XBoard to edit the position.
|
2003-10-07 21:44:59 +00:00
|
|
|
Use the 'File->Save Position' in XBoard to save
|
2000-06-12 11:27:15 +00:00
|
|
|
the position that you want to display.
|
|
|
|
Make sure to give it a '.fen' extension
|
|
|
|
and remember to type in a relative path
|
|
|
|
to the LyX document location.
|
|
|
|
Within XBoard, use 'Edit->Edit Position'
|
|
|
|
to enable general editing of the board.
|
|
|
|
You might also check out the
|
|
|
|
'Options->Test legality' option, and
|
2003-10-07 21:44:59 +00:00
|
|
|
remember to middle and right click to
|
2000-06-12 14:58:10 +00:00
|
|
|
insert new material in the board.
|
2000-06-12 11:27:15 +00:00
|
|
|
In order for this to work, you have to
|
2001-10-31 15:19:49 +00:00
|
|
|
put the bundled lyxskak.sty in a place
|
|
|
|
that TeX will find it, and you will need
|
|
|
|
to install the skak package from CTAN.
|
2000-06-12 11:27:15 +00:00
|
|
|
HelpTextEnd
|
2003-06-04 09:16:29 +00:00
|
|
|
InputFormat fen
|
2000-06-12 11:27:15 +00:00
|
|
|
FileFilter "*.fen"
|
|
|
|
AutomaticProduction true
|
|
|
|
Format LaTeX
|
2004-04-06 21:07:27 +00:00
|
|
|
Product "\\loadgame{$$AbsOrRelPathMaster$$Basename}\\showboard"
|
2000-06-12 11:27:15 +00:00
|
|
|
Requirement "chess"
|
2004-06-01 13:39:33 +00:00
|
|
|
ReferencedFile latex "$$AbsPath$$Basename$$Extension"
|
2000-06-12 11:27:15 +00:00
|
|
|
FormatEnd
|
2006-03-28 18:49:46 +00:00
|
|
|
Format PDFLaTeX
|
|
|
|
Product "\\loadgame{$$AbsOrRelPathMaster$$Basename}\\showboard"
|
|
|
|
Requirement "chess"
|
|
|
|
ReferencedFile pdflatex "$$AbsPath$$Basename$$Extension"
|
|
|
|
FormatEnd
|
2000-06-12 11:27:15 +00:00
|
|
|
Format Ascii
|
2004-04-06 21:07:27 +00:00
|
|
|
Product "$$Contents(\"$$AbsPath$$Basename.asc\")"
|
2003-06-04 09:16:29 +00:00
|
|
|
UpdateFormat asciichess
|
2004-04-06 21:07:27 +00:00
|
|
|
UpdateResult "$$AbsPath$$Basename.asc"
|
2000-06-12 11:27:15 +00:00
|
|
|
FormatEnd
|
|
|
|
Format DocBook
|
2004-04-06 21:07:27 +00:00
|
|
|
Product "[Chess: $$AbsOrRelPathMaster$$Basename]"
|
2000-06-12 11:27:15 +00:00
|
|
|
FormatEnd
|
|
|
|
TemplateEnd
|
|
|
|
|
2003-09-25 10:49:13 +00:00
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
Template Date
|
2003-09-23 17:37:00 +00:00
|
|
|
GuiName "Date"
|
2000-06-12 11:27:15 +00:00
|
|
|
HelpText
|
2004-01-05 16:49:38 +00:00
|
|
|
Today's date.
|
2000-06-12 11:27:15 +00:00
|
|
|
Read 'info date' for more information.
|
|
|
|
HelpTextEnd
|
2003-06-04 09:16:29 +00:00
|
|
|
InputFormat date
|
2000-06-12 11:27:15 +00:00
|
|
|
FileFilter "*"
|
|
|
|
AutomaticProduction true
|
|
|
|
Format LaTeX
|
|
|
|
Product "$$Contents(\"$$Tempname\")"
|
2003-06-04 09:16:29 +00:00
|
|
|
UpdateFormat dateout
|
|
|
|
UpdateResult "$$Tempname"
|
2000-06-12 11:27:15 +00:00
|
|
|
FormatEnd
|
2006-03-28 18:49:46 +00:00
|
|
|
Format PDFLaTeX
|
|
|
|
Product "$$Contents(\"$$Tempname\")"
|
|
|
|
UpdateFormat dateout
|
|
|
|
UpdateResult "$$Tempname"
|
|
|
|
FormatEnd
|
2000-06-12 11:27:15 +00:00
|
|
|
Format Ascii
|
|
|
|
Product "$$Contents(\"$$Tempname\")"
|
2003-06-04 09:16:29 +00:00
|
|
|
UpdateFormat dateout
|
|
|
|
UpdateResult "$$Tempname"
|
2000-06-12 11:27:15 +00:00
|
|
|
FormatEnd
|
|
|
|
Format DocBook
|
|
|
|
Product "$$Contents(\"$$Tempname\")"
|
2003-06-04 09:16:29 +00:00
|
|
|
UpdateFormat dateout
|
|
|
|
UpdateResult "$$Tempname"
|
2000-06-12 11:27:15 +00:00
|
|
|
FormatEnd
|
|
|
|
TemplateEnd
|