From 77a5f4236e8806e0b3c19a2a3458ebe55284b8ee Mon Sep 17 00:00:00 2001 From: Christian Kremitzl Date: Sun, 18 Jul 2021 21:31:58 +0200 Subject: [PATCH] Translate exercise 6. --- exercises/text-markup/markup.done.tex | 9 ++++++--- exercises/text-markup/markup.raw.tex | 8 ++++++-- exercises/text-markup/task.tex | 6 +++--- 3 files changed, 15 insertions(+), 8 deletions(-) diff --git a/exercises/text-markup/markup.done.tex b/exercises/text-markup/markup.done.tex index ff0bde7..ce36e22 100644 --- a/exercises/text-markup/markup.done.tex +++ b/exercises/text-markup/markup.done.tex @@ -1,5 +1,8 @@ \begin{minted}[breaklines]{latex} -Die \emph{Rekursion} ist eine bekannte Problemlösestrategie in der Informatik. Dabei wird ein großes Problem zerlegt und zunächst nur ein Teil der Aufgabe gelöst. Oft wird \emph{Rekursion} innerhalb von Programmcode umgesetzt, indem eine Methode sich immer wieder selbst aufruft, bis eine bestimmte Abbruchbedingung erfüllt ist. Das heißt, dass das Programm theoretisch bis ins Unendliche weiterlaufen kann, wenn es \emph{rekursiv} ist. - -Weitere Informationen findet ihr im Wikipedia-Artikel zur Rekursion unter \url{https://de.wikipedia.org/wiki/Rekursion}. +``\emph{Recursion} (adjective: \emph{recursive}) occurs when a thing is defined in terms of itself or of its type. +\emph{Recursion} is used in a variety of disciplines ranging from linguistics to logic. +The most common application of \emph{recursion} is in mathematics and computer science, +where a function being defined is applied within its own definition.'' + +Source and more information: \url{https://en.wikipedia.org/wiki/Recursion} \end{minted} diff --git a/exercises/text-markup/markup.raw.tex b/exercises/text-markup/markup.raw.tex index 9b1df21..b2189a9 100644 --- a/exercises/text-markup/markup.raw.tex +++ b/exercises/text-markup/markup.raw.tex @@ -1,3 +1,7 @@ -Die Rekursion ist eine bekannte Problemlösestrategie in der Informatik. Dabei wird ein großes Problem zerlegt und zunächst nur ein Teil der Aufgabe gelöst. Oft wird Rekursion innerhalb von Programmcode umgesetzt, indem eine Methode sich immer wieder selbst aufruft, bis eine bestimmte Abbruchbedingung erfüllt ist. Das heißt, dass das Programm theoretisch bis ins Unendliche weiterlaufen kann, wenn es rekursiv ist. +``Recursion (adjective: recursive) occurs when a thing is defined in terms of itself or of its type. +Recursion is used in a variety of disciplines ranging from linguistics to logic. +The most common application of recursion is in mathematics and computer science, +where a function being defined is applied within its own definition.'' + +Source and more information: https://en.wikipedia.org/wiki/Recursion -Weitere Informationen findet ihr im Wikipedia-Artikel zur Rekursion unter https://de.wikipedia.org/wiki/Rekursion. \ No newline at end of file diff --git a/exercises/text-markup/task.tex b/exercises/text-markup/task.tex index 1673819..0499888 100644 --- a/exercises/text-markup/task.tex +++ b/exercises/text-markup/task.tex @@ -1,7 +1,7 @@ \begin{enumerate} - \item Hebt im Text in der Datei \mintinline{bash}{exercies/text-markup/markup.tex} die Wörter \glqq{}Rekursion\grqq{} und \glqq{}rekursiv\grqq{} hervor. - \item Macht die URL im Text anklickbar. - \item Natürlich könnt ihr auch die anderen Befehle, die ihr zur Textauszeichnung gelernt habt, ausprobieren. Entfernt sie allerdings im Anschluss wieder, um das Dokument sauber zu halten. + \item In \mintinline{bash}{exercies/text-markup/markup.tex}, emphasize the words ``recursion'' and ``recursive.'' + \item Make the \textsc{url} clickable. + \item Of course, you can also experiment with the other commands that you learned for text markup. However, you might want to remove them afterwards to keep your document nice and tidy. \end{enumerate} \exercisematerial{exercises/text-markup/markup}