From 1001d7e685fbf99051c5cfe26abc800aa1ae1c2f Mon Sep 17 00:00:00 2001 From: Joshua Baer Date: Mon, 18 Jul 2022 17:15:22 +0200 Subject: save --- buch/papers/fm/01_AM-FM.tex | 2 +- buch/papers/fm/Makefile | 32 ++++++++++++++++++++++++++++++-- buch/papers/fm/main.tex | 4 ++-- buch/papers/fm/standalone.tex | 30 ++++++++++++++++++++++++++++++ 4 files changed, 63 insertions(+), 5 deletions(-) create mode 100644 buch/papers/fm/standalone.tex (limited to 'buch/papers/fm') 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} -- cgit v1.2.1