GeneralPSTricks + auto-pst-pdf and TeXnicCenter

General information and discussion about TeXnicCenter
latexhelp1
Posts: 141
Joined: Sun Jun 12, 2011 6:30 am

Re: PSTricks + auto-pst-pdf and TeXnicCenter

Post by latexhelp1 »

Thank you so much for your help in installing the .zip file onto my computer. However, I am still unable to run my old programs in beamer with either Latex => PDF (Latex's default) or Latex => pdf (mod) (the one suggested to me). The first .log file is with the first one, the second .log is for the second one.

I would very much appreciate any help that you have in fixing my problem so I could compile my programs! :)
Attachments
Reading Group Text.log
(52.45 KiB) Downloaded 255 times
Reading Group Text.log
(38.93 KiB) Downloaded 237 times

Recommended reading 2024:

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

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

CrazyHorse
Posts: 351
Joined: Sat Aug 02, 2008 8:47 am

PSTricks + auto-pst-pdf and TeXnicCenter

Post by CrazyHorse »

latexhelp1 wrote:Thank you so much for your help in installing the .zip file onto my computer. However, I am still unable to run my old programs in beamer with either Latex => PDF (Latex's default) or Latex => pdf (mod) (the one suggested to me). The first .log file is with the first one, the second .log is for the second one.

I would very much appreciate any help that you have in fixing my problem so I could compile my programs! :)
insert after \documentclass{...}

Code: Select all

\usepackage{etex}
Herbert
latexhelp1
Posts: 141
Joined: Sun Jun 12, 2011 6:30 am

Re: PSTricks + auto-pst-pdf and TeXnicCenter

Post by latexhelp1 »

I really appreciate the suggestion. However, it does not seem to change much with either Latex => PDF or Latex => pdf (mod). I could attach the .log files if that would be helpful, although at a quick glance, they look similar, at least qualitatively (i.e. in terms of the types and number of errors).

I would very much appreciate any additional suggestions.
latexhelp1
Posts: 141
Joined: Sun Jun 12, 2011 6:30 am

Re: PSTricks + auto-pst-pdf and TeXnicCenter

Post by latexhelp1 »

I meant that the .log files looks similar to the previous ones that I had attached (see 2 or 3 posts up), despite adding \usepackage{etex}.
latexhelp1
Posts: 141
Joined: Sun Jun 12, 2011 6:30 am

Re: PSTricks + auto-pst-pdf and TeXnicCenter

Post by latexhelp1 »

Hi, I'm very sorry for my multiple posts. I'm not sure whether my question is clear.

Basically what I'm saying is that, I have a program I am currently working on. Now that I've made all of these changes to my computer, the program no longer compiles. I have no idea which packages to change, first to compile and second to look like it used to. This is in beamer.

I have provided the log files in the previous e-mail. Please let me know whether there is any further information I could provide. I tried the suggesting of adding the suggestsed package, but it did not change much.

I would be eternally grateful for any help you could provide!
latexhelp1
Posts: 141
Joined: Sun Jun 12, 2011 6:30 am

Re: PSTricks + auto-pst-pdf and TeXnicCenter

Post by latexhelp1 »

My problem are with the lines:
%\usepackage{pstricks,pst-node,pst-tree}
%\usepackage{fix-cm}


\newcommand{\ind}{\mathbf{1}}
%\newrgbcolor{darkred}{.75 0 0.15}
%\newrgbcolor{darkerred}{.45 0 0.15}
%\hypersetup{linkbordercolor=red, filecolor=red, linkcolor=red}
\usebuttontemplate{\color{darkerred}\insertbuttontext}


When I comment out these lines, the program compiles. However, it looks nothing like it used to. Clearly by commenting out the red, it is no longer red.........
CrazyHorse
Posts: 351
Joined: Sat Aug 02, 2008 8:47 am

PSTricks + auto-pst-pdf and TeXnicCenter

Post by CrazyHorse »

latexhelp1 wrote:My problem are with the lines:
%\usepackage{pstricks,pst-node,pst-tree}
%\usepackage{fix-cm}


\newcommand{\ind}{\mathbf{1}}
%\newrgbcolor{darkred}{.75 0 0.15}
%\newrgbcolor{darkerred}{.45 0 0.15}
%\hypersetup{linkbordercolor=red, filecolor=red, linkcolor=red}
\usebuttontemplate{\color{darkerred}\insertbuttontext}


When I comment out these lines, the program compiles. However, it looks nothing like it used to. Clearly by commenting out the red, it is no longer red.........
run this test file:

Code: Select all

\listfiles
\documentclass{beamer}
\usepackage{pst-tree}
\usepackage{auto-pst-pdf}
\begin{document}

\begin{frame}{test}
\pstree[radius=3pt]{\Toval{root}}{\TC* \TC* \TC* \TC*}
\end{frame}

\end{document}
You need an installed perl to run it successfully (http://www.activestate.com/perl/)

Then compile the test file with a profile which has "-shell-escape" set or
"-enable-write18" which is the same for miktex.

Herbert
Post Reply