Initial commit

This commit is contained in:
Mateus Pinto Rodrigues
2017-11-11 15:15:10 -02:00
commit 58c3bd6728
1202 changed files with 434097 additions and 0 deletions

16
elpa/auctex-11.91.0/latex/.gitignore vendored Normal file
View File

@@ -0,0 +1,16 @@
*.aux
*.cfg
*.def
*.drv
*.dvi
*.glo
*.idx
*.log
*.prv
Makefile
auto
preview-mk.ins
preview.ins
preview.pdf
preview.sty

View File

@@ -0,0 +1,97 @@
# Makefile for AUCTeX
# Maintainer: auctex-devel@gnu.org
# Copyright (C) 2002-2006, 2008, 2014, 2015 Free Software Foundation,
# Inc.
# This file is part of AUCTeX.
# AUCTeX is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
# AUCTeX is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with AUCTeX; see the file COPYING. If not, write to the Free
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
@SET_MAKE@
LATEX=@LATEX@
PDFLATEX=@PDFLATEX@
TEX=@TEX@
TEXHASH=@TEXHASH@
prefix=@prefix@$(null)
datarootdir=@datarootdir@$(null)
datadir=@datadir@$(null)
exec_prefix=@exec_prefix@$(null)
libdir=@libdir@$(null)
previewtexmfdir = @previewtexmfdir@$(null)
previewdocdir = @previewdocdir@$(null)
TEXMFGEN = @TEXMFGEN@
DESTDIR=
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
MKINSTALLDIRS = ../mkinstalldirs
.PHONY: all install install-texmf install-texmf-doc uninstall clean
all: $(TEXMFGEN) preview.drv preview-mk.ins preview.dvi preview.pdf
install: install-texmf install-texmf-doc
install-texmf: $(TEXMFGEN)
-$(MKINSTALLDIRS) $(DESTDIR)$(previewtexmfdir)
for x in $(TEXMFGEN) ; do \
echo $(INSTALL_DATA) $$x $(DESTDIR)$(previewtexmfdir) ; \
$(INSTALL_DATA) $$x $(DESTDIR)$(previewtexmfdir) ; \
done
# Isn't the texmfdir directory without "tex/latex/preview" available?
@ texmfdir="$(DESTDIR)$(previewtexmfdir)/../../.."; \
if [ -r "$$texmfdir"/ls-R ]; then \
$(TEXHASH) "$$texmfdir"; \
else \
echo "Warning: Cannot update ls-R database in $$texmfdir"; \
sleep 2; \
fi
install-texmf-doc: preview.dvi
$(MKINSTALLDIRS) $(DESTDIR)$(previewdocdir)
$(INSTALL_DATA) preview.dvi $(DESTDIR)$(previewdocdir)
uninstall:
rm -rf $(DESTDIR)$(previewdocdir)/preview.dvi $(DESTDIR)$(previewtexmfdir)
preview-mk.ins: preview.dtx bootstrap.ins
$(TEX) '\nonstopmode \input bootstrap.ins'
#only for standalone preview.sty package:
preview.ins: preview.dtx
$(TEX) '\nonstopmode\def\jobname{.ins}\input docstrip ' \
'\generate{\file{preview.ins}{\from{preview.dtx}{installer}}}' \
'\endbatchfile'
$(TEXMFGEN) preview.drv: preview.dtx preview-mk.ins
$(TEX) '\nonstopmode \input preview-mk.ins'
preview.dvi: preview.drv preview.dtx preview.sty
$(LATEX) '\nonstopmode \input preview.drv'
$(LATEX) '\nonstopmode \input preview.drv'
$(LATEX) '\nonstopmode \input preview.drv'
preview.pdf: preview.drv preview.dtx preview.sty
$(PDFLATEX) '\nonstopmode \AtBeginDocument{\OnlyDescription}\input{preview.drv}'
$(PDFLATEX) '\nonstopmode \AtBeginDocument{\OnlyDescription}\input{preview.drv}'
$(PDFLATEX) '\nonstopmode \AtBeginDocument{\OnlyDescription}\input{preview.drv}'
clean:
rm -f *~ *.aux *.dvi *.drv *.log
rm -f $(TEXMFGEN) preview.ins preview-mk.ins

View File

@@ -0,0 +1,64 @@
The preview.sty style file
==========================
Purpose
-------
The main purpose of the preview package is the extraction of selected
elements from a LaTeX source, like formulas or graphics, into separate
pages of a DVI file. A flexible and convenient interface allows it to
specify what commands and constructs should be extracted. This works
with DVI files postprocessed by either Dvips and Ghostscript or
dvipng, but it also works when you are using PDFTeX for generating PDF
files.
Current uses of the package include the preview-latex package for
WYSIWYG functionality in the AUCTeX editing environment, generation of
previews in LyX, as part of the operation of the ps4pdf and pst-pdf
packages, the tbook XML system and some other tools.
Availability
------------
The preview package is being developed along and distributed with
AUCTeX. It can therefore be obtained as part of AUCTeX distribution
files available at <URL:ftp://ftp.gnu.org/pub/gnu/auctex/> or its
mirror at <CTAN:support/auctex>. CTAN also provides a standalone
version at <CTAN:macros/latex/contrib/preview>. The project page at
<URL:http://savannah.gnu.org/projects/auctex/> offers downloads and
anonymous CVS access for cutting edge versions. For more information
about the preview package please refer to the home page of AUCTeX at
<URL:http://www.gnu.org/software/auctex/>.
Installation
------------
To install the preview style file on its own without the entire AUCTeX
package, run
tex preview.ins
If preview.ins happens to be missing, you can regenerate it by running
tex docstrip
on preview.dtx with the option `installer'.
Running TeX on preview.ins will then extract further files:
preview.drv which you can run through LaTeX in order to get the
documentation for preview.sty, preview.sty itself, a bunch of option
files with extension .def and a few configuration files with extension
.cfg. In case your docstrip configuration has not already taken care
of that, install the files with extension .sty, .def and .cfg to a
location where LaTeX will be able to find them, generate the
documentation and have fun.
The license of the original file is the GPL which you'll find a copy
of in the complete AUCTeX distribution. The distribution will also
unpack and install the respective LaTeX files with an
autoconf-supported mechanism, so you might consider using that.
Bug reporting
-------------
Please report problems to <URL:mailto:bug-auctex@gnu.org>, including a
small example file which uses the \listfiles statement, and the
resulting log file.
David Kastrup

View File

@@ -0,0 +1,4 @@
\input docstrip
\askforoverwritefalse
\generate{\file{preview-mk.ins}{\from{preview.dtx}{installer,make}}}
\endbatchfile

File diff suppressed because it is too large Load Diff