GeneralGetting pstricks to work

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
jafox11
Posts: 1
Joined: Wed Mar 03, 2010 11:58 pm

Getting pstricks to work

Post by jafox11 »

Hi,

I just installed MikTeX 2.8 and TexnicCenter, and I'm having trouble getting packages (namely pstricks) to work. I can create a "Hello World" file without a problem, but if I use the pstricks package (or pgf and tikz, even), nothing happens; the compilation seems to skip over anything that comes after the \usepackage command. Here's what I did:

\documentclass{article}
\begin{document}
Hello world!
\end{document}

This works just fine using any output profile. But using the following code only produces my most recent output (Hello world!) after I view the "compiled" file:

\documentclass{article}
\usepackage{pstricks}
\begin{document}
Hello world! Today is Wednesday.
\end{document}

The "Today is Wednedsay." part is ignored. It seems like including the package causes the compilation to stop early without producing an error message. Some packages, amssymb for example, don't cause this problem.

Any suggestions? Thanks!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Getting pstricks to work

Post by localghost »

It is essential to tag code as such by using the code environment of the forum. This keeps a post clear and legible (see Board Rules).

See the list of frequently done errors on the PSTricks homepage. Furthermore you should give some useful information like a log file. Otherwise it becomes very difficult to give specific help.


Best regards and welcome to the board
Thorsten
Post Reply