Search found 10 matches

by olivares14031
Sat Apr 21, 2012 5:48 pm
Forum: Others
Topic: KerTeX | New lightweight TeX/LaTeX Distribution
Replies: 1
Views: 27864

KerTeX | New lightweight TeX/LaTeX Distribution

@all folks interested in KerTeX

More packages have been added to enhance the latex capabilites. kerTeX added lm, ec, oberdiek and other packages. Please check the website out.

FYI,

If there are any linux users out there, you are welcome to try kertex out without installing. Get a copy of Porteus ...
by olivares14031
Wed Mar 14, 2012 8:41 pm
Forum: Others
Topic: KerTeX | New lightweight TeX/LaTeX Distribution
Replies: 1
Views: 27864

KerTeX | New lightweight TeX/LaTeX Distribution

Dear folks,

This is an FYI, there is a new lightweight simple TeX/LaTeX distrubution called KerTeX .

It is lightweight, requires few things like bison, flex, ed, lftp, all of which are available either from source or through a package manager in Linux or BSD*. It does not have pdflatex, pdftex ...
by olivares14031
Wed Jun 11, 2008 5:59 am
Forum: General
Topic: Use of TeXnicCenter under restricted account Win XP
Replies: 4
Views: 5233

Re: Use of TeXnicCenter under restricted account Win XP

Please do not quote me directly. I do not know and at the moment I cannot test TeXniccenter under a non-admin account. I understand that TeXniccenter installs to C:\Program Files\TeXniccenter\,

There's something that can be done to help you, but I am not sure how to do it. Maybe editing the ...
by olivares14031
Tue Jun 10, 2008 7:49 am
Forum: General
Topic: Use of TeXnicCenter under restricted account Win XP
Replies: 4
Views: 5233

Re: Use of TeXnicCenter under restricted account Win XP

Give your account Administrative priviledges. Otherwise do not complain that it does not work as you would like for it work.
by olivares14031
Tue Jun 10, 2008 7:47 am
Forum: General
Topic: how to add a new package to Texniccenter
Replies: 3
Views: 19411

Re: how to add a new package to Texniccenter

Download it from here:

http://dcwww.camd.dtu.dk/~schiotz/comp/ ... pacing.sty

Copy it to your working directory and it should work. :D
by olivares14031
Wed Aug 15, 2007 4:42 am
Forum: General
Topic: Meet an error when build a pdf file using TexnicCenter
Replies: 1
Views: 3210

Re: Meet an error when build a pdf file using TexnicCenter

Do you have MiKTeX installed?

Can you run from the command prompt
> pdflatex file.tex

What does it return back?

If you do not have MiKTeX installed, which TeX system are you using?
TeXnicCenter can be modified for other TeX systems besides MiKTeX.
by olivares14031
Sun Aug 12, 2007 6:53 pm
Forum: General
Topic: Problem with producing PDF output in TexnicCenter
Replies: 2
Views: 7902

Re: Problem with producing PDF output in TexnicCenter

phanindra,

Your troubles appear to be with Adobe Reader 8. If you look in the thread above this one, Using Adobe 8, there are several workarounds for this issue. Try to browse the thread above this one and there you should find out what you need to work this problem out.
by olivares14031
Thu Aug 02, 2007 5:52 pm
Forum: General
Topic: questions about \vfill
Replies: 5
Views: 14565

Re: questions about \vfill

Maybe you would be interested in looking at the following page

http://www.tex.ac.uk/cgi-bin/texfaq2html?label=overfull

You can set lengths and emergency lengths as well

\setlength{\emergencystretch}{3em}

Try that and hopefully this helps you out.
by olivares14031
Thu Aug 02, 2007 4:29 am
Forum: General
Topic: questions about \vfill
Replies: 5
Views: 14565

Re: questions about \vfill

If I understand your question correctly, you want \vfill to let you put some stuff right before the end of the page.

Using the following

\vfill

\eject

pushes everything below the \vfill to the next page. However I do not know how to still allow some stuff after it. \vspace{*} might be your ...
by olivares14031
Thu Aug 02, 2007 4:22 am
Forum: General
Topic: c++ source code
Replies: 6
Views: 11604

Re: c++ source code

You can use verbatim environment

\begin{verbatim}
C++ Code to go HERE

/* the first C++ program
* - just outputs `Hello, World!'
*/

#include <iostream> // declarations for I/O

int main() // main function main()
{
/* print `Hello, World!' on standard output channel std::cout
* followed by an ...