Archiv verlassen und diese Seite im Standarddesign anzeigen : Größe von erstellten Graphiken per pstricks ändern?
Ich habe die unten stehende Graphik erzeugt, allerdings möchte ich die Größe der gesamten Graphik gerne variieren. Über welchen Befehl kann ich das machen?
\documentclass{article}
\usepackage{pst-plot}
\usepackage{pstricks-add}
\usepackage{amsmath,amsfonts,amssymb}
\begin{document}
\begin{pspicture}(-5,-5)(5,5)
\psset{yunit=0.5, xunit=1, plotpoints=1000, plotstyle=line ,algebraic}
\psaxes[Dx=1,Dy=2]{->}(0,0)(-3,0)(4,10)
\uput[-45](4,0){$x$}
\uput[180](0,10){$y$}
\psplot[plotstyle=line, linewidth=1.1pt,algebraic,linecolor=blue]
{-3}{3}{x^2}
\uput[l](3,9){$\textcolor{blue}{f(x)=x^2}$}
\end{pspicture}
\end{document}
Eine Variante:
\scalebox{1.0}{
\begin{pspicture}(-5,-5)(5,5)
\psset{yunit=0.5, xunit=1, plotpoints=1000, plotstyle=line ,algebraic}
\psaxes[Dx=1,Dy=2]{->}(0,0)(-3,0)(4,10)
\uput[-45](4,0){$x$}
\uput[180](0,10){$y$}
\psplot[plotstyle=line, linewidth=1.1pt,algebraic,linecolor=blue]
{-3}{3}{x^2}
\uput[l](3,9){$\textcolor{blue}{f(x)=x^2}$}
\end{pspicture}}
\scalebox{1.2}{
\begin{pspicture}(-5,-5)(5,5)
\psset{yunit=0.5, xunit=1, plotpoints=1000, plotstyle=line ,algebraic}
\psaxes[Dx=1,Dy=2]{->}(0,0)(-3,0)(4,10)
\uput[-45](4,0){$x$}
\uput[180](0,10){$y$}
\psplot[plotstyle=line, linewidth=1.1pt,algebraic,linecolor=blue]
{-3}{3}{x^2}
\uput[l](3,9){$\textcolor{blue}{f(x)=x^2}$}
\end{pspicture}}
\scalebox{1.7}{
\begin{pspicture}(-5,-5)(5,5)
\psset{yunit=0.5, xunit=1, plotpoints=1000, plotstyle=line ,algebraic}
\psaxes[Dx=1,Dy=2]{->}(0,0)(-3,0)(4,10)
\uput[-45](4,0){$x$}
\uput[180](0,10){$y$}
\psplot[plotstyle=line, linewidth=1.1pt,algebraic,linecolor=blue]
{-3}{3}{x^2}
\uput[l](3,9){$\textcolor{blue}{f(x)=x^2}$}
\end{pspicture}}
LG Goldnas
Oder...
\begin{pspicture}(-5,-5)(5,5)
\psset{yunit=0.75, xunit=1.5, plotpoints=1000, plotstyle=line ,algebraic}
\psaxes[Dx=1,Dy=2]{->}(0,0)(-3,0)(4,10)
\uput[-45](4,0){$x$}
\uput[180](0,10){$y$}
\psplot[plotstyle=line, linewidth=1.1pt,algebraic,linecolor=blue]
{-3}{3}{x^2}
\uput[l](3,9){$\textcolor{blue}{f(x)=x^2}$}
\end{pspicture}
Noch eine Frage hierzu: Um die Graphik einbinden zu können, muss ich ja auf "LaTeX->PS->PDF" stellen. Dann kann ich aber keine pdf-Graphiken mehr direkt per includegraphics einbinden wie vorher. Wie kann ich trotzdem pdf-Graphiken einbinden?
Noch eine Frage hierzu: Um die Graphik einbinden zu können, muss ich ja auf "LaTeX->PS->PDF" stellen. Dann kann ich aber keine pdf-Graphiken mehr direkt per includegraphics einbinden wie vorher. Wie kann ich trotzdem pdf-Graphiken einbinden?
Erstelle doch bitte ein Minimalbeispiel...
LG Goldnas
Powered by vBulletin® Version 4.2.5 Copyright ©2024 Adduco Digital e.K. und vBulletin Solutions, Inc. Alle Rechte vorbehalten.