aboutsummaryrefslogtreecommitdiffstats
path: root/buch/papers/fm
diff options
context:
space:
mode:
authorJoshua Baer <joshua.baer@ost.ch>2022-07-18 17:15:22 +0200
committerJoshua Baer <joshua.baer@ost.ch>2022-07-18 17:15:22 +0200
commit1001d7e685fbf99051c5cfe26abc800aa1ae1c2f (patch)
tree543cea40ffebf5801caeb34ced4625f6458f8a05 /buch/papers/fm
parentsave (diff)
downloadSeminarSpezielleFunktionen-1001d7e685fbf99051c5cfe26abc800aa1ae1c2f.tar.gz
SeminarSpezielleFunktionen-1001d7e685fbf99051c5cfe26abc800aa1ae1c2f.zip
save
Diffstat (limited to 'buch/papers/fm')
-rw-r--r--buch/papers/fm/01_AM-FM.tex2
-rw-r--r--buch/papers/fm/Makefile32
-rw-r--r--buch/papers/fm/main.tex4
-rw-r--r--buch/papers/fm/standalone.tex30
4 files changed, 63 insertions, 5 deletions
diff --git a/buch/papers/fm/01_AM-FM.tex b/buch/papers/fm/01_AM-FM.tex
index 6f1c942..a267322 100644
--- a/buch/papers/fm/01_AM-FM.tex
+++ b/buch/papers/fm/01_AM-FM.tex
@@ -13,7 +13,7 @@ Hier beschrieib ich was AmplitudenModulation ist und mache dan den link zu Frequ
%Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
%nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam
-%erat, sed diam voluptua \cite{fm:bibtex}.
+erat, sed diam voluptua \cite{fm:bibtex}.
%At vero eos et accusam et justo duo dolores et ea rebum.
%Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum
%dolor sit amet.
diff --git a/buch/papers/fm/Makefile b/buch/papers/fm/Makefile
index f43d497..fb42942 100644
--- a/buch/papers/fm/Makefile
+++ b/buch/papers/fm/Makefile
@@ -4,6 +4,34 @@
# (c) 2020 Prof Dr Andreas Mueller
#
-images:
- @echo "no images to be created in fm"
+SOURCES := \
+ 01_AM-FM.tex \
+ 02_frequenzyspectrum.tex \
+ main.tex \
+ 03_bessel.tex \
+ 04_fazit.tex
+#TIKZFIGURES := \
+ tikz/atoms-grid-still.tex \
+
+#FIGURES := $(patsubst tikz/%.tex, figures/%.pdf, $(TIKZFIGURES))
+
+.PHONY: images
+#images: $(FIGURES)
+
+#figures/%.pdf: tikz/%.tex
+# mkdir -p figures
+# pdflatex --output-directory=figures $<
+
+.PHONY: standalone
+standalone: standalone.tex $(SOURCES) #$(FIGURES)
+ mkdir -p standalone
+ cd ../..; \
+ pdflatex \
+ --halt-on-error \
+ --shell-escape \
+ --output-directory=papers/fm/standalone \
+ papers/fm/standalone.tex;
+ cd standalone; \
+ bibtex standalone; \
+ makeindex standalone; \ No newline at end of file
diff --git a/buch/papers/fm/main.tex b/buch/papers/fm/main.tex
index 393daa5..be66a2f 100644
--- a/buch/papers/fm/main.tex
+++ b/buch/papers/fm/main.tex
@@ -13,8 +13,8 @@
Dieser Abschnitt beschreibt die Beziehung von der Besselfunktion(Ref) zur Frequenz Modulatrion (FM)(acronym?).
-Mit hilfe einer Modulation kann ein Übertragungs Signal \(m(t)\) auf einen Trägerfrequenz \( f_c \) kombiniert werden.
-Das Ziel ist es dieses modulierte Signal dan im Empfangsspektrum wieder demodulieren und so informationen im Signal \( m(t) \)zu Übertragen.
+%Mit hilfe einer Modulation kann ein Übertragungs Signal \(m(t)\) auf einen Trägerfrequenz \( f_c \) kombiniert werden.
+%Das Ziel ist es dieses modulierte Signal dan im Empfangsspektrum wieder demodulieren und so informationen im Signal \( m(t) \)zu Übertragen.
%Ein paar Hinweise für die korrekte Formatierung des Textes
%\begin{itemize}
diff --git a/buch/papers/fm/standalone.tex b/buch/papers/fm/standalone.tex
new file mode 100644
index 0000000..51a5c8c
--- /dev/null
+++ b/buch/papers/fm/standalone.tex
@@ -0,0 +1,30 @@
+\documentclass{book}
+
+\input{common/packages.tex}
+
+% additional packages used by the individual papers, add a line for
+% each paper
+\input{papers/common/addpackages.tex}
+
+% workaround for biblatex bug
+\makeatletter
+\def\blx@maxline{77}
+\makeatother
+\addbibresource{chapters/references.bib}
+
+% Bibresources for each article
+\input{papers/common/addbibresources.tex}
+
+% make sure the last index starts on an odd page
+\AtEndDocument{\clearpage\ifodd\value{page}\else\null\clearpage\fi}
+\makeindex
+
+%\pgfplotsset{compat=1.12}
+\setlength{\headheight}{15pt} % fix headheight warning
+\DeclareGraphicsRule{*}{mps}{*}{}
+
+\begin{document}
+ \input{common/macros.tex}
+ \def\chapterauthor#1{{\large #1}\bigskip\bigskip}
+ \input{papers/fm/main.tex}
+\end{document}