Search found 5 matches

by molasar
Wed Aug 26, 2009 8:57 pm
Forum: General
Topic: Barcodes in LaTeX (code128)
Replies: 5
Views: 8238

Re: Barcodes in LaTeX (code128)

aha...
I use FreeBSD 6.1.
For 'latex' command I have installed 'teTeX-base' package.
And when I tried to istall DVIPS package for 'dvips' command,
I had an error, that DVIPS and teTeX-base conflicted. And I need to use only one.
But DVIPS dont have 'latex' command...

What packages I need to ...
by molasar
Wed Aug 26, 2009 9:39 am
Forum: General
Topic: Barcodes in LaTeX (code128)
Replies: 5
Views: 8238

Re: Barcodes in LaTeX (code128)

FreeBSD 6.1 + teTeX-base-3.0_6 + teTeX-texmf-3.0_3

I used your way:
1. Make file test.tex:

\documentclass[a4paper,12pt]{report}
\usepackage{pst-barcode,pstricks-add}
\begin{document}
\psset{unit=1in}
\begin{pspicture}(3.5,1.2)
\psbarcode{^10412345678}{includetext}{code128}
\end{pspicture}
\end ...
by molasar
Tue Aug 25, 2009 9:39 pm
Forum: General
Topic: Barcodes in LaTeX (code128)
Replies: 5
Views: 8238

Barcodes in LaTeX (code128)

Hi,

I need to use bascodes (code128) in my documents (PDF-files).
I use next:

\usepackage{pst-barcode,pstricks-add}
\psset{unit=1in}
\begin{pspicture}(3.5,1.2)
\psbarcode{12345678}{includetext}{code128}
\end{pspicture}

,but page is empty.

Maybe I have to install something else?
And how can ...
by molasar
Sun Mar 02, 2008 1:20 pm
Forum: General
Topic: Barcodes in LaTeX
Replies: 2
Views: 9493

Re: Barcodes in LaTeX

Thanks for answer, but I solved this problem by next:

2. Using wlc39.mf:
\newcommand{\barcode}[1]{{\xlix@#1@}}
\font\xlix=wlc39 scaled 1100
scaled 1100 \barcode{956796;1}
LaTeX said:
! I can't find file `wlc39'.
In what directory I need to place wlc39.mf file?

I placed wlc39.mf to:
/usr/local ...
by molasar
Tue Feb 26, 2008 6:06 pm
Forum: General
Topic: Barcodes in LaTeX
Replies: 2
Views: 9493

Barcodes in LaTeX

Hi!
FreeBSD 6.1 + LaTeX (from teTeX-base port).
What is the easy way to make PDF file with barcodes?

I try next three steps:

1. Using code39.tex:
\input code39.tex
\begincodethirtynine{126779}\endcodethirtynine
Latex said:
! I can't find file `code39.tex'.
In what directory I need to place ...