aboutsummaryrefslogtreecommitdiffstats
path: root/buch
diff options
context:
space:
mode:
authorAndreas Müller <andreas.mueller@othello.ch>2021-09-03 09:04:24 +0200
committerAndreas Müller <andreas.mueller@othello.ch>2021-09-03 09:04:24 +0200
commitd6d732556e3e710fa6dff8790c8f79bd506bec41 (patch)
tree58e816b88af64819e6e53964049171c618160689 /buch
parentnorm J_2(\lambda) example (diff)
downloadSeminarMatrizen-d6d732556e3e710fa6dff8790c8f79bd506bec41.tar.gz
SeminarMatrizen-d6d732556e3e710fa6dff8790c8f79bd506bec41.zip
add new image
Diffstat (limited to 'buch')
-rw-r--r--buch/papers/spannung/images/Makefile9
-rw-r--r--buch/papers/spannung/images/tiefe.pdfbin0 -> 34463 bytes
-rw-r--r--buch/papers/spannung/images/tiefe.tex42
3 files changed, 51 insertions, 0 deletions
diff --git a/buch/papers/spannung/images/Makefile b/buch/papers/spannung/images/Makefile
new file mode 100644
index 0000000..0c6ccc7
--- /dev/null
+++ b/buch/papers/spannung/images/Makefile
@@ -0,0 +1,9 @@
+#
+# Makefile -- build images
+#
+# (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
+#
+all: tiefe.pdf
+
+tiefe.pdf: tiefe.tex ../Grafiken/Bild5.png
+ pdflatex tiefe.tex
diff --git a/buch/papers/spannung/images/tiefe.pdf b/buch/papers/spannung/images/tiefe.pdf
new file mode 100644
index 0000000..de9e7cf
--- /dev/null
+++ b/buch/papers/spannung/images/tiefe.pdf
Binary files differ
diff --git a/buch/papers/spannung/images/tiefe.tex b/buch/papers/spannung/images/tiefe.tex
new file mode 100644
index 0000000..9ad7fa4
--- /dev/null
+++ b/buch/papers/spannung/images/tiefe.tex
@@ -0,0 +1,42 @@
+%
+% tiefe.tex -- Abhängigkeit von \varepsilon und \sigma von der Tiefe
+%
+% (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
+%
+\documentclass[tikz]{standalone}
+\usepackage{amsmath}
+\usepackage{times}
+\usepackage{txfonts}
+\usepackage{pgfplots}
+\usepackage{csvsimple}
+\usetikzlibrary{arrows,intersections,math}
+\begin{document}
+\def\skala{1}
+\begin{tikzpicture}[>=latex,thick,scale=\skala]
+
+\def\s{1}
+\newboolean{debug}
+\setboolean{debug}{true}
+\setboolean{debug}{false}
+
+\node at (0,0) {\includegraphics[width=6cm]{../Grafiken/Bild5.png}};
+\def\beschriftung#1#2#3{
+ \ifthenelse{\boolean{debug}}{
+ \fill[color=red,opacity=0.2] ({(#1-0.22)*\s},{(#2-0.22)*\s})
+ rectangle ({(#1+0.22)*\s},{(#2+0.22)*\s});
+ }{
+ \fill[color=white] ({(#1-0.22)*\s},{(#2-0.22)*\s})
+ rectangle ({(#1+0.22)*\s},{(#2+0.22)*\s});
+ }
+ \node at ({#1*\s-0.1},{#2*\s}) {#3\strut};
+}
+
+\beschriftung{2.75}{2.9}{$\varepsilon$}
+\beschriftung{-0.4}{2.9}{$\sigma$}
+
+\beschriftung{-2.5}{-2.9}{$t$}
+\beschriftung{0.67}{-2.9}{$t$}
+
+\end{tikzpicture}
+\end{document}
+