Main > Free Download Search >

Free tex. software for linux

tex.

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 65
Mech-Tex 1000

Mech-Tex 1000


Mech-Tex 1000 is a desktop applets for SuperKaramba that displays cpu usage, internet flow in and out information. more>>
Mech-Tex 1000 is a desktop applets for SuperKaramba that displays cpu usage, internet flow in and out information and allows you to quickly mount and unmount devices , etc.

<<less
Download (1.1MB)
Added: 2006-06-30 License: GPL (GNU General Public License) Price:
693 downloads
TeX::DVI 0.110

TeX::DVI 0.110


TeX::DVI is a Perl module to write out TeXs DVI (DeVice Independent) file. more>>
TeX::DVI is a Perl module to write out TeXs DVI (DeVice Independent) file.

SYNOPSIS

use TeX::DVI;
use Font::TFM;

my $dvi = new TeX::DVI "texput.dvi";
my $font = new_at Font::TFM "cmr10", 12
or die "Error loading cmr10 at 12 pt: $Font::TFM::errstrn";
$dvi->preamble();
$dvi->begin_page();
$dvi->push();
my $fn = $dvi->font_def($font);
$dvi->font($fn);
$dvi->word("difficulty");
$dvi->hskip($font->space());
$dvi->word("AVA");
$dvi->black_box($font->em_width(), $font->x_height());
$dvi->pop();
$dvi->end_page();
$dvi->postamble();
$dvi->close();

Method TeX::DVI::new creates a new DVI object in memory and opens the output DVI file. After that, elements can be written into the file using appropriate methods.

These are the methods available on the Font::TFM object:

preamble, postamble, begin_page, end_page, push, pop

Writes out appropriate command of the .dvi file.

font_def

The parameter is a reference to a Font::TFM object. Info out of this object will be printed out. The method returns the internal number of the font in this .dvi file.

font

Writes out the font_sel command, the parametr is the number returned by font_def.

hskip, vskip

Skips.

black_box

Creates a black box, can be used for hrules and vrules.

special

Writes out the special command, one parameter is written as the command.

word

Writes out a word given as the first parameter. The currently selected font is used to gather information about ligatures and kernings, thats why its possible to say

$dvi->word("difficulty");

and the ffi will be ligatured all right.

close

Close the file.

<<less
Download (0.009MB)
Added: 2007-04-06 License: Perl Artistic License Price:
940 downloads
AUCTeX 11.83

AUCTeX 11.83


AUCTeX is a much enhanced (La)TeX mode for Emacs. more>>
AUCTeX is an extensible package for writing and formatting TeX files in GNU Emacs and XEmacs.
Main features:
Editing:
- Insert macros, environments and headings with a simple key stroke or via a menu entry. AUCTeX will help you by prompting for parameters in case of known macros and environments. There is a completion mechanism for partially written macros available as well.
- Use keyboard shortcuts for inserting math.
- Sophisticated fontification and indentation of TeX/LaTeX macros and environments.
- Fold macros and environments and show their contents or a pre-defined string instead. You can temporarily show the folded content again for editing.
Compiling:
- Run various TeX/LaTeX interpreters and related programs like BibTeX or makeindex from within Emacs.
- View errors of the compiler run and jump to the respective place in the TeX/LaTeX source code.
Viewing:
- Start viewers for DVI, PostScript and PDF output from within Emacs.
- Use forward and inverse search with DVI viewers.
Extensibility and customizability:
- Support for macros and environments of many TeX/LaTeX packages with the use of style files.
- Easily extensible by writing your own style files.
- Many aspects of AUCTeX can be adapted to fit your personal working style via the customize mechanism provided by Emacs.
Enhancements:
- A new function TeX-doc for accessing docs on C-c ?.
- New "Clean" and "Clean All" commands for intermediate and output files. pdfsync support (forward search in PDF files).
- LaTeX comes with its own toolbar enabled by default.
- Some bugs have been fixed.
<<less
Download (0.52MB)
Added: 2006-06-08 License: GPL (GNU General Public License) Price:
1234 downloads
pdfTeX 1.40.5

pdfTeX 1.40.5


pdfTeX is an extended version of TeX that can create PDF directly from TeX source files. more>>
pdfTeX is an extended version of TeX that can create PDF directly from TeX source files and enhance the result of TeX typesetting with the help of PDF.
When PDF output is not selected, pdfTeX produces normal DVI output, otherwise it produces PDF output that looks identical to the DVI output.
An important aspect of pdfTeX project is to investigate alternative justification algorithms, optionally making use of multiple master fonts.
Enhancements:
- This includes xpdf 3.02pl1, fixing some security problems.
<<less
Download (3.9MB)
Added: 2007-08-03 License: GPL (GNU General Public License) Price:
844 downloads
TeX::Hyphen 0.140

TeX::Hyphen 0.140


TeX::Hyphen is a Perl module to hyphenate words using TeXs patterns. more>>
TeX::Hyphen is a Perl module to hyphenate words using TeXs patterns.

SYNOPSIS

use TeX::Hyphen;
my $hyp = new TeX::Hyphen file => hyphen.tex,
style => czech, leftmin => 2,
rightmin => 2;

# my $hyp = new TeX::Hyphen "hyphen.tex";

my $word = "representation";
my @points = $hyp->hyphenate($word);
print $hyp->visualize($word), "n";

Constructor new() creates a new Hyphen object and loads the file with patterns into memory. Then you can ask it for hyphenation of a word by calling a method of this object. If no file is specified, the default Donald E. Knuths hyphen.tex, that is included in this module, is used instead.

Arguments to constructor

You can pass arguments to the new() call as hash, possible options are
file

Name of the file with the patters. It will be loaded and the resulting object will be able to hyphenate according to patterns in that file.

For convenience and backward compatibility, the file name can also be specified as the first (odd) parameter to new().

style

Various languages use special shortcuts to specify the patterns. Instead of doing the full TeX expansion, we use Perl code to parse the patterns. The style option loads TeX::Hyphen::name_of_the_style module and uses the parsing functions found in it.

Currently, the default czech (which also works for English alright) and german are available. See the TeX::Hyphen::czech man page for more information, especially if you want to support other languages/styles.

leftmin

The minimum starting substring which will not be hyphenated. This overrides the default specified in the style file.

rightmin

The minimum ending substring which will not be hyphenated. This overrides the default specified in the style file.

Methods that are supported

Method hyphenate() returns list of places where the word can be divided, so

$hyp->visualize(representation)

returns list (3, 5, 8, 10).

Method visualize() can be used to show these points, so

$hyp->visualize(representation)

should return rep-re-sen-ta-tion, at least for English patterns.

Variables $TeX::Hyphen::LEFTMIN and $TeX::Hyphen::RIGHTMIN can be used to restrict minimal starting and ending substring where it is not possible to hyphenate. They both default to 2 but should be changed to match the paratemers used to generate the patterns.

Variable $TeX::Hyphen::DEBUG can be set to see some statistics and processing.

The file with hyphenation patterns may contain and v accents, used in the Czech (and other) languages.

<<less
Download (0.022MB)
Added: 2007-04-06 License: Perl Artistic License Price:
931 downloads
bibteXML 0.2.1

bibteXML 0.2.1


bibteXML provides an XML equivalent of BibTeX. more>>
bibteXML provides an XML equivalent of BibTeX.
bibteXML is a bibliography DTD for XML that expresses the content model of BibTeX, the bibliographic system for use with LaTeX.
It provides conversion tools for tagging your bibliographic data in XML, or export it to HTML or native BibTeX syntax, saving typing time.
BibTeXML is shipped with tools to translate native TeX-syntax BibTeX bibliographies to XML and translate this into any markup scheme. Hence one is able to profit from both the existing BibTeX system and bibliographies as well as the transformation and presentation facilities offered by XML.
Our goal is to maintain a strict BibTeX schema and develop (and collect!) conversion tools that will help you tag your bibliographic data in XML and save typing time, or export it to XML based bibliographic formats such as MODS, as well as HTML, DocBook, LaTeX or native BibTeX syntax.
Enhancements:
- Dublin Core Metadata support (xml & html)
- Endnote Export format output style
<<less
Download (0.053MB)
Added: 2007-08-22 License: GPL (GNU General Public License) Price:
796 downloads
Pod::LaTeX 0.58

Pod::LaTeX 0.58


Pod::LaTeX is a Perl module to convert Pod data to formatted Latex. more>>
Pod::LaTeX is a Perl module to convert Pod data to formatted Latex.

SYNOPSIS

use Pod::LaTeX;
my $parser = Pod::LaTeX->new ( );

$parser->parse_from_filehandle;

$parser->parse_from_file (file.pod, file.tex);

Pod::LaTeX is a module to convert documentation in the Pod format into Latex. The pod2latex command uses this module for translation.

Pod::LaTeX is a derived class from Pod::Select.

<<less
Download (0.026MB)
Added: 2006-08-14 License: Perl Artistic License Price:
1166 downloads
HTML::Latex 1.1

HTML::Latex 1.1


HTML::Latex is a Perl module that creates a Latex file from an HTML file. more>>
HTML::Latex is a Perl module that creates a Latex file from an HTML file.

SYNOPSIS

use HTML::Latex

my $parser = new HTML::Latex($conffile);
$parser->set_option(%options);
$parser->add_package(@packages);
$parser->ban_tag(@banned);
$parser->set_log($logfile);

# Option 1:
foreach my $uri (@ARGV) {
my ($htmlfile,$latexfile) = $parser->html2latex($uri);
}

# Option 2:
foreach my $uri (@ARGV) {
my $in = IO::File->new("< $uri");
my $out = IO::File->new("> $uri.tex");
$parser->html2latex($in,$out);
}

# Option 3:
my $html_string = join("n",);
my $tex_string = $parser->parse_string($html_string,1);

# Option 4:
my $html_string = join("",@ARGV);
my $tex_string = $parser->parse_string($html_string);
print $tex_string;

This class is used to create a text file in Latex format from a file in HTML format. Use the class as follows:

1. Create a new HTML::Latex object.
2. Override any options using set_option(), add_package(), ban_tag(), or set_log().
3. Run html2latex() on a file or URL.
4. Do whatever you want with the filename that was returned.

<<less
Download (0.047MB)
Added: 2006-09-21 License: Perl Artistic License Price:
1133 downloads
LaTeX::Table 0.0.1

LaTeX::Table 0.0.1


LaTeX::Table is a Perl module that provides functionality for an intuitive generation of LaTeX tables for reports or theses. more>>
LaTeX::Table is a Perl module that provides functionality for an intuitive generation of LaTeX tables for reports or theses.

LaTeX::Table ships with some predefined, good-looking table styles, and supports multipage tables via the xtab package.

Installation:

To install this module, run the following commands:

perl Makefile.PL
make
make test
make install

Alternatively, to install with Module::Build, you can use the following
commands:

perl Build.PL
./Build
./Build test
./Build install

Now start the script generate_examples.pl in the examples directory of this
distibution.

perl generate_examples.pl

This script generates some LaTeX files with some example tables. Now please compile these examples with LaTeX and check if all tables look ok:

latex examples.tex
xdvi examples.dvi
<<less
Download (0.010MB)
Added: 2006-08-24 License: GPL (GNU General Public License) Price:
1164 downloads
GNU TeXmacs 1.0.6.10

GNU TeXmacs 1.0.6.10


GNU TeXmacs is a free scientific text editor. more>>
GNU TeXmacs is a free scientific text editor, which was both inspired by TeX and GNU Emacs. The editor allows you to write structured documents via a wysiwyg (what-you-see-is-what-you-get) and user friendly interface.
New styles may be created by the user. GNU TeXmacs implements high-quality typesetting algorithms and TeX fonts, which help you to produce professionally looking documents.
The high typesetting quality still goes through for automatically generated formulas, which makes TeXmacs suitable as an interface for computer algebra systems. TeXmacs also supports the Guile/Scheme extension language, so that you may customize the interface and write your own extensions to the editor.
Converters exist for TeX/LaTeX and they are under development for Html/MathML/Xml. In the future, TeXmacs is planned to evolve towards a complete scientific office suite, with spreadsheet capacities, a technical drawing editor and a presentation mode.
Enhancements:
- The user interface for the graphical mode has been simplified and the Maxima interface has been updated.
- Further progress was made for the upcoming new GUI.
<<less
Download (5.0MB)
Added: 2007-05-14 License: GPL (GNU General Public License) Price:
894 downloads
Text::Graphics 1.0001

Text::Graphics 1.0001


Text::Graphics is a text graphics rendering toolkit. more>>
Text::Graphics is a text graphics rendering toolkit.

This is a toolkit for rendering plain text via an API like that used for graphics rendering in GUI toolkits. This package might be used when you want to do sophisticated rendering of plain text, e.g., for graphing, creating of complex forms for email and fax, and so on.

SYNOPSIS

use Text::Graphics;
my $text = "A text graphics rendering toolkit.n";
my $page = Text::Graphics::Page->new( 20, 10);
my $panel0 = Text::Graphics::BorderedPanel->new( 20, 10);
my $panel1 =
Text::Graphics::FilledBorderedTextPanel->new($text x 3, 25, 12);
$panel0->setBackground("#");
$panel1->setBackground(" ");
$page->add($panel0);
$page->add($panel1, 5, 2);
$page->render();

+-------------------+
|###################|
|####+--------------+
|####|A text graphic|
|####|rendering tool|
|####|text graphics |
|####|toolkit. A tex|
|####|graphics rende|
|####|toolkit. |
|####| |
+----+--------------+

<<less
Download (0.006MB)
Added: 2006-08-28 License: Perl Artistic License Price:
1152 downloads
Games::Go::Dg2TeX 4.026

Games::Go::Dg2TeX 4.026


Games::Go::Dg2TeX is a Perl extension to convert Games::Go::Diagrams to TeX. more>>
Games::Go::Dg2TeX is a Perl extension to convert Games::Go::Diagrams to TeX.

SYNOPSIS

use Games::Go::Dg2TeX
my $dg2tex = B convertDiagram($diagram);

A Games::Go::Dg2TeX object converts a Games::Go::Diagram object into TeX source code which can be used stand-alone, or it can be incorporated into larger TeX documents.

<<less
Download (0.43MB)
Added: 2006-08-08 License: Perl Artistic License Price:
1172 downloads
DocBook to LaTeX/ConTeXt Publishing 0.2.6

DocBook to LaTeX/ConTeXt Publishing 0.2.6


DocBook to LaTeX/ConTeXt Publishing project is splitted in two instances working on the same principles. more>>
DocBook to LaTeX/ConTeXt Publishing project is splitted in two instances working on the same principles. Both instances are intended to produce DVI, PostScript, PDF documents from DocBook SGML or XML sources, by converting first to a high level set of TeX macros.

Even if close, each instance is provided as an independent package and works alone. The available instances are:

dblatex

Publishing is done by using LaTeX.

dbcontext

Publishing is done by using ConTeXt.
<<less
Download (0.64MB)
Added: 2007-06-26 License: LGPL (GNU Lesser General Public License) Price:
854 downloads
TeaM-TL 5.5.1

TeaM-TL 5.5.1


TeaM-TL (TeXLive in LinuxLive) is distribution Linux Live contain the widest as possible distibution of TeX. more>>
TeaM-TL (TeXLive in LinuxLive) is distribution Linux Live contain the widest as possible distibution of TeX. TeaM-TL is based on SLAX and on Slackware.

TeaM-TL is not next CD LinuxLive. Is not our aim prepare next CD for promotion of Linux.

Main goal of TeaM-TL is ready to use environment for TeXing with modern operating system and tools located on one standard, bootable CD-ROM. Next goals CD is promotion of TeX.
During TeXing, user can listen of music, visit web pages and read mails, etc.

TeaM-TL for beginners is easiest way to discovery wonderfull TeXworld, without adding fonts, packets, terrible configure of TeX and editords etc.

TeX-nicians will have ready to use powerfull distribution of TeX for use everywhere there is a PC with CD drives. Because CD has limited space, We plan to prepare DVD version of SlaX-TL with tools for orientalists, musicians and scientists.

At the beggining distribution was called SlaX-TL, because we had the name of base distribution and abbreviation of TeX distribution. Unfortunately all rights to this name probably has SLAX maintainer, so we had to change the name of our distribution. The best idea was: TeaM-TL. Its TeaM of computers ners who develop Linux with TeXLive.
<<less
Download (700MB)
Added: 2005-12-02 License: GPL (GNU General Public License) Price:
801 downloads
pstoedit 3.43

pstoedit 3.43


pstoedit converts Postscript and PDF files to other vector graphic formats so that they can be edited graphically. more>>
pstoedit program converts Postscript and PDF files to other vector graphic formats so that they can be edited graphically.
Supported Formats
Currently pstoedit can generate the following major formats:
- Tgif .obj format (for tgif version >= 3)
- .fig format for xfig
- pdf - Adobes Portable Document Format
- gnuplot format
- Flattened PostScript (with or without Bezier curves)
- DXF - CAD exchange format
- LWO - LightWave 3D
- RIB - RenderMan
- RPL - Real3D
- Java 1 or Java 2 applet
- Idraw format (in fact a special form of EPS that idraw can read)
- Tcl/Tk
- HPGL
- AI (Adobe Illustrator) (based on ps2ai.ps - not a real pstoedit driver - see notes below and manual)
- Windows Meta Files (WMF) (Windows 9x/NT only)
- Enhanced Windows Meta Files (EMF) (Windows 9x/NT only)
- OS/2 meta files (OS/2 only)
- PIC format for troff/groff
- MetaPost format for usage with TeX/LaTeX
- LaTeX2e picture
- Kontour
- GNU Metafile (plotutils / libplot)
- Skencil( http://www.skencil.org )
- Mathematica
- via ImageMagick to any format supported by ImageMagick
- SWF
Enhancements:
- Several usability improvements were introduced.
- Secure versions of several functions are used where possible.
- The code was cleaned up and a driver was included for the OpenOffice metafile format.
<<less
Download (0.82MB)
Added: 2006-03-07 License: GPL (GNU General Public License) Price:
1337 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5