فهرست منبع

removed example that didn't work

Martin Thoma 12 سال پیش
والد
کامیت
3d91816cbd
2فایلهای تغییر یافته به همراه0 افزوده شده و 71 حذف شده
  1. 0 40
      tikz/3d-page-conflicts/3d-page-conflicts.tex
  2. 0 31
      tikz/3d-page-conflicts/Makefile

+ 0 - 40
tikz/3d-page-conflicts/3d-page-conflicts.tex

@@ -1,40 +0,0 @@
-\documentclass{article}
-\usepackage[pdftex,active,tightpage]{preview}
-\setlength\PreviewBorder{2mm}
-\usepackage{pgfplots}
-
-\begin{document}
-\begin{preview}
-\pgfplotsset{
-    colormap={whitered}{
-        color(0cm)=(white);
-        color(1cm)=(orange!75!red)
-    }
-}
-\begin{tikzpicture}
-    \newcommand{\Pages}{250}
-    \begin{axis}[
-    colormap name=whitered,
-    width=15cm,
-    view={20}{25},
-    enlargelimits=false,
-    grid=major,
-    domain=0:\Pages,
-    y domain=1:\Pages,
-    samples=16,
-    xlabel=$p$, 
-    ylabel=$C$,
-    zlabel={$z$},
-    colorbar,
-    colorbar style={
-        at={(-0.1,0)},
-        anchor=south west,
-        height=0.25*\pgfkeysvalueof{/pgfplots/parent axis height},
-        title={$f(x,y)$}
-    }
-    ]
-      \addplot3[surf] {(\Pages!/(x!*(\Pages-x)!)) * (1/y)^x * (1-1/y)^(\Pages-x)};
-    \end{axis} 
-\end{tikzpicture}
-\end{preview}
-\end{document}

+ 0 - 31
tikz/3d-page-conflicts/Makefile

@@ -1,31 +0,0 @@
-SOURCE = 3d-page-conflicts
-DELAY = 80
-DENSITY = 300
-WIDTH = 500
-
-make:
-	pdflatex $(SOURCE).tex -output-format=pdf
-	make clean
-
-clean:
-	rm -rf  $(TARGET) *.class *.html *.log *.aux *.data *.gnuplot
-
-gif:
-	pdfcrop $(SOURCE).pdf
-	convert -verbose -delay $(DELAY) -loop 0 -density $(DENSITY) $(SOURCE)-crop.pdf $(SOURCE).gif
-	make clean
-
-png:
-	make
-	make svg
-	inkscape $(SOURCE).svg -w $(WIDTH) --export-png=$(SOURCE).png
-
-transparentGif:
-	convert $(SOURCE).pdf -transparent white result.gif
-	make clean
-
-svg:
-	#inkscape $(SOURCE).pdf --export-plain-svg=$(SOURCE).svg
-	pdf2svg $(SOURCE).pdf $(SOURCE).svg
-	# Necessary, as pdf2svg does not always create valid svgs:
-	inkscape $(SOURCE).svg --export-plain-svg=$(SOURCE).svg