{"id":150,"date":"2022-01-21T22:00:12","date_gmt":"2022-01-21T22:00:12","guid":{"rendered":"https:\/\/blogs.oregonstate.edu\/nebs\/?page_id=150"},"modified":"2022-01-21T22:02:30","modified_gmt":"2022-01-21T22:02:30","slug":"testing-html-embeding","status":"publish","type":"page","link":"https:\/\/blogs.oregonstate.edu\/nebs\/testing-html-embeding\/","title":{"rendered":"Testing HTML Embeding"},"content":{"rendered":"\n<script type=\"text\/javascript\">\n<!--\n\/\/ QuickSearch script for JabRef HTML export (no Abstract\/BibTeX)\n\/\/ Version: 3.0\n\/\/\n\/\/ Copyright (c) 2006-2011, Mark Schenk\n\/\/\n\/\/ This software is distributed under a Creative Commons Attribution 3.0 License\n\/\/ http:\/\/creativecommons.org\/licenses\/by\/3.0\/\n\/\/\n\/\/ Features:\n\/\/ - intuitive find-as-you-type searching\n\/\/    ~ case insensitive\n\/\/    ~ ignore diacritics (optional)\n\/\/\n\/\/ - search with\/without Regular Expressions\n\/\/ - match BibTeX key\n\/\/\n\n\/\/ Search settings\nvar noSquiggles = true; \t\/\/ ignore diacritics when searching\nvar searchRegExp = false; \t\/\/ enable RegExp searches\n\n\nif (window.addEventListener) {\n\twindow.addEventListener(\"load\",initSearch,false); }\nelse if (window.attachEvent) {\n\twindow.attachEvent(\"onload\", initSearch); }\n\nfunction initSearch() {\n\t\/\/ check for quick search table and searchfield\n\tif (!document.getElementById('qs_table')||!document.getElementById('quicksearch')) { return; }\n\n\t\/\/ load all the rows and sort into arrays\n\tloadTableData();\n\t\n\t\/\/find the query field\n\tqsfield = document.getElementById('qs_field');\n\n\t\/\/ previous search term; used for speed optimisation\n\tprevSearch = '';\n\n\t\/\/find statistics location\n\tstats = document.getElementById('stat');\n\tsetStatistics(-1);\n\t\n\t\/\/ set up preferences\n\tinitPreferences();\n\n\t\/\/ shows the searchfield\n\tdocument.getElementById('quicksearch').style.display = 'block';\n\tdocument.getElementById('qs_field').onkeyup = quickSearch;\n}\n\nfunction loadTableData() {\n\t\/\/ find table and appropriate rows\n\tsearchTable = document.getElementById('qs_table');\n\tvar allRows = searchTable.getElementsByTagName('tbody')[0].getElementsByTagName('tr');\n\n\t\/\/ split all rows into entryRows and infoRows (e.g. abstract, comment, bibtex)\n\tentryRows = new Array();\n\n\t\/\/ get data from each row\n\tentryRowsData = new Array();\n\t\n\tBibTeXKeys = new Array();\n\t\n\tfor (var i=0, k=0, j=0; i<allRows.length;i++) {\n\t\tif (allRows[i].className.match(\/entry\/)) {\n\t\t\tentryRows[j] = allRows[i];\n\t\t\tentryRowsData[j] = stripDiacritics(getTextContent(allRows[i]));\n\t\t\tallRows[i].id ? BibTeXKeys[j] = allRows[i].id : allRows[i].id = 'autokey_'+j;\n\t\t\tj ++;\n\t\t}\n\t}\n\t\/\/number of entries and rows\n\tnumEntries = entryRows.length;\n}\n\nfunction quickSearch(){\n\t\n\ttInput = qsfield;\n\n\tif (tInput.value.length == 0) {\n\t\tshowAll();\n\t\tsetStatistics(-1);\n\t\tqsfield.className = '';\n\t\treturn;\n\t} else {\n\t\tt = stripDiacritics(tInput.value);\n\n\t\tif(!searchRegExp) { t = escapeRegExp(t); }\n\t\t\t\n\t\t\/\/ only search for valid RegExp\n\t\ttry {\n\t\t\ttextRegExp = new RegExp(t,\"i\");\n\t\t\tqsfield.className = '';\n\t\t}\n\t\t\tcatch(err) {\n\t\t\tprevSearch = tInput.value;\n\t\t\tqsfield.className = 'invalidsearch';\n\t\t\treturn;\n\t\t}\n\t}\n\t\n\t\/\/ count number of hits\n\tvar hits = 0;\n\n\t\/\/ start looping through all entry rows\n\tfor (var i = 0; cRow = entryRows[i]; i++){\n\n\t\t\/\/ only show search the cells if it isn't already hidden OR if the search term is getting shorter, then search all\n\t\tif(cRow.className.indexOf('noshow')==-1 || tInput.value.length <= prevSearch.length){\n\t\t\tvar found = false; \n\n\t\t\tif (entryRowsData[i].search(textRegExp) != -1 || BibTeXKeys[i].search(textRegExp) != -1){ \n\t\t\t\tfound = true;\n\t\t\t}\n\t\t\t\n\t\t\tif (found){\n\t\t\t\tcRow.className = 'entry show';\n\t\t\t\thits++;\n\t\t\t} else {\n\t\t\t\tcRow.className = 'entry noshow';\n\t\t\t}\n\t\t}\n\t}\n\n\t\/\/ update statistics\n\tsetStatistics(hits)\n\t\n\t\/\/ set previous search value\n\tprevSearch = tInput.value;\n}\n\n\n\/\/ Strip Diacritics from text\n\/\/ http:\/\/stackoverflow.com\/questions\/990904\/javascript-remove-accents-in-strings\n\n\/\/ String containing replacement characters for stripping accents \nvar stripstring = \n    'AAAAAAACEEEEIIII'+\n    'DNOOOOO.OUUUUY..'+\n    'aaaaaaaceeeeiiii'+\n    'dnooooo.ouuuuy.y'+\n    'AaAaAaCcCcCcCcDd'+\n    'DdEeEeEeEeEeGgGg'+\n    'GgGgHhHhIiIiIiIi'+\n    'IiIiJjKkkLlLlLlL'+\n    'lJlNnNnNnnNnOoOo'+\n    'OoOoRrRrRrSsSsSs'+\n    'SsTtTtTtUuUuUuUu'+\n    'UuUuWwYyYZzZzZz.';\n\nfunction stripDiacritics(str){\n\n    if(noSquiggles==false){\n        return str;\n    }\n\n    var answer='';\n    for(var i=0;i<str.length;i++){\n        var ch=str[i];\n        var chindex=ch.charCodeAt(0)-192;   \/\/ Index of character code in the strip string\n        if(chindex>=0 && chindex<stripstring.length){\n            \/\/ Character is within our table, so we can strip the accent...\n            var outch=stripstring.charAt(chindex);\n            \/\/ ...unless it was shown as a '.'\n            if(outch!='.')ch=outch;\n        }\n        answer+=ch;\n    }\n    return answer;\n}\n\n\/\/ http:\/\/stackoverflow.com\/questions\/3446170\/escape-string-for-use-in-javascript-regex\n\/\/ NOTE: must escape every \\ in the export code because of the JabRef Export...\nfunction escapeRegExp(str) {\n  return str.replace(\/[-\\[\\]\\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]\/g, \"\\\\$&\");\n}\n\nfunction setStatistics (hits) {\n\tif(hits < 0) { hits=numEntries; }\n\tif(stats) { stats.firstChild.data = hits + '\/' + numEntries}\n}\n\nfunction getTextContent(node) {\n\t\/\/ Function written by Arve Bersvendsen\n\t\/\/ http:\/\/www.virtuelvis.com\n\t\n\tif (node.nodeType == 3) {\n\treturn node.nodeValue;\n\t} \/\/ text node\n\tif (node.nodeType == 1 && node.className != \"infolinks\") { \/\/ element node\n\tvar text = [];\n\tfor (var chld = node.firstChild;chld;chld=chld.nextSibling) {\n\t\ttext.push(getTextContent(chld));\n\t}\n\treturn text.join(\"\");\n\t} return \"\"; \/\/ some other node, won't contain text nodes.\n}\n\nfunction showAll(){\n\tfor (var i = 0; i < numEntries; i++){ entryRows[i].className = 'entry show'; }\n}\n\nfunction clearQS() {\n\tqsfield.value = '';\n\tshowAll();\n}\n\nfunction redoQS(){\n\tshowAll();\n\tquickSearch(qsfield);\n}\n\nfunction updateSetting(obj){\n\tvar option = obj.id;\n\tvar checked = obj.value;\n\n\tswitch(option)\n\t {\n\t case \"opt_useRegExp\":\n\t   searchRegExp=!searchRegExp;\n\t   redoQS();\n\t   break;\n\t case \"opt_noAccents\":\n\t   noSquiggles=!noSquiggles;\n\t   loadTableData();\n\t   redoQS();\n\t   break;\n\t }\n}\n\nfunction initPreferences(){\n\tif(noSquiggles){document.getElementById(\"opt_noAccents\").checked = true;}\n\tif(searchRegExp){document.getElementById(\"opt_useRegExp\").checked = true;}\n}\n\nfunction toggleSettings(){\n\tvar togglebutton = document.getElementById('showsettings');\n\tvar settings = document.getElementById('settings');\n\t\n\tif(settings.className == \"hidden\"){\n\t\tsettings.className = \"show\";\n\t\ttogglebutton.innerText = \"close settings\";\n\t\ttogglebutton.textContent = \"close settings\";\n\t}else{\n\t\tsettings.className = \"hidden\";\n\t\ttogglebutton.innerText = \"settings...\";\t\t\n\t\ttogglebutton.textContent = \"settings...\";\n\t}\n}\n\n-->\n<\/script>\n<style type=\"text\/css\">\nform#quicksearch { width: auto; border-style: solid; border-color: gray; border-width: 1px 0px; padding: 0.7em 0.5em; display:none; position:relative; }\nspan#searchstat {padding-left: 1em;}\n\ndiv#settings { margin-top:0.7em; \/* border-bottom: 1px transparent solid; background-color: #efefef; border: 1px grey solid; *\/ }\ndiv#settings ul {margin: 0; padding: 0; }\ndiv#settings li {margin: 0; padding: 0 1em 0 0; display: inline; list-style: none; }\ndiv#settings li + li { border-left: 2px #efefef solid; padding-left: 0.5em;}\ndiv#settings input { margin-bottom: 0px;}\n\ndiv#settings.hidden {display:none;}\n\n#showsettings { border: 1px grey solid; padding: 0 0.5em; float:right; line-height: 1.6em; text-align: right; }\n#showsettings:hover { cursor: pointer; }\n\n.invalidsearch { background-color: red; }\ninput[type=\"button\"] { background-color: #efefef; border: 1px #2E2E2E solid;}\n\ntable { width: 100%; empty-cells: show; border-spacing: 0em 0.2em; margin: 1em 0em; border-style: none; }\nth, td { border: 1px gray solid; border-width: 1px 1px; padding: 0.5em; vertical-align: top; text-align: left; }\nth { background-color: #efefef; }\ntd + td, th + th { border-left: none; }\n\ntd a { color: navy; text-decoration: none; }\ntd a:hover  { text-decoration: underline; }\n\ntr.noshow { display: none;}\ntr.highlight td { background-color: #EFEFEF; border-top: 2px #2E2E2E solid; font-weight: bold; }\ntr.abstract td, tr.comment td, tr.bibtex td { background-color: #EFEFEF; text-align: justify; border-bottom: 2px #2E2E2E solid; }\ntr.nextshow td { border-bottom: 1px gray solid; }\n\ntr.bibtex pre { width: 100%; overflow: auto; white-space: pre-wrap;}\np.infolinks { margin: 0.3em 0em 0em 0em; padding: 0px; }\n\n@media print {\n\tp.infolinks, #qs_settings, #quicksearch, t.bibtex { display: none !important; }\n\ttr { page-break-inside: avoid; }\n}\n<\/style>\n<form action=\"\" id=\"quicksearch\">\n<input type=\"text\" id=\"qs_field\" autocomplete=\"off\" placeholder=\"Type to search...\"> <input type=\"button\" onclick=\"clearQS()\" value=\"clear\">\n<span id=\"searchstat\">Matching entries: <span id=\"stat\">0<\/span><\/span>\n<div id=\"showsettings\" onclick=\"toggleSettings()\">settings&#8230;<\/div>\n<div id=\"settings\" class=\"hidden\">\n<ul>\n<li><input type=\"checkbox\" class=\"search_setting\" id=\"opt_useRegExp\" onchange=\"updateSetting(this)\"><label for=\"opt_useRegExp\"> use RegExp<\/label><\/li>\n<li><input type=\"checkbox\" class=\"search_setting\" id=\"opt_noAccents\" onchange=\"updateSetting(this)\"><label for=\"opt_noAccents\"> ignore accents<\/label><\/li>\n<\/ul>\n<\/div>\n<\/form>\n<table id=\"qs_table\" border=\"1\">\n<thead><tr><th width=\"20%\">Author<\/th><th width=\"30%\">Title<\/th><th width=\"5%\">Year<\/th><th width=\"30%\">Journal\/Proceedings<\/th><th width=\"10%\">Reftype<\/th><th width=\"5%\">DOI\/URL<\/th><\/tr><\/thead>\n<tbody><tr id=\"2009\" class=\"entry\">\n\t<td><\/td>\n\t<td>Metzler Lexikon DDR-Literatur<\/td>\n\t<td>2009<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/8482742\/metzler_lexikon_ddr_literatur.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2011\" class=\"entry\">\n\t<td>Knapp, K.<\/td>\n\t<td>Angewandte Linguistik<\/td>\n\t<td>2011<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/12156468\/angewandte_linguistik.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2013\" class=\"entry\">\n\t<td>Luger, U.<\/td>\n\t<td>Werther<\/td>\n\t<td>2013<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2013a\" class=\"entry\">\n\t<td>Specht, F.<\/td>\n\t<td>Rumpelstilzchen<\/td>\n\t<td>2013<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2013b\" class=\"entry\">\n\t<td>Kiraly, D.<\/td>\n\t<td>Projekte und Projektionen in der translatorischen Kompetenzentwicklung<\/td>\n\t<td>2013<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/20377146\/projekte_und_projektionen_in_der_translatorischen_kompetenzentwicklung.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2013c\" class=\"entry\">\n\t<td>Claus, S. and Pietzonka, M.<\/td>\n\t<td>Studium und Lehre nach Bologna<\/td>\n\t<td>2013<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/21249648\/studium_und_lehre_nach_bologna.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2014\" class=\"entry\">\n\t<td>Rummler, M.<\/td>\n\t<td>Vorlesungen innovativ gestalten<\/td>\n\t<td>2014<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/21843611\/vorlesungen_innovativ_gestalten.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2015\" class=\"entry\">\n\t<td>Farmache, A.<\/td>\n\t<td>DaF im Unternehmen<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2015a\" class=\"entry\">\n\t<td>Grosser, R.<\/td>\n\t<td>DaF im Unternehmen<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2015b\" class=\"entry\">\n\t<td>Abel, J. and Klein, C.<\/td>\n\t<td>Comics und Graphic Novels<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/24418081\/comics_und_graphic_novels.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2015c\" class=\"entry\">\n\t<td>Schneider, M. and Mustafic, M.<\/td>\n\t<td>Gute Hochschullehre: Eine evidenzbasierte Orientierungshilfe<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/23438354\/gute_hochschullehre_eine_evidenzbasierte_orientierungshilfe.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2016\" class=\"entry\">\n\t<td>Stein, J.<\/td>\n\t<td>Wer wohnt in wei\u00dfen W\u00fcrfeln?<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/26153444\/wer_wohnt_in_weissen_wuerfeln.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2016a\" class=\"entry\">\n\t<td>F\u00fcgert, N.<\/td>\n\t<td>DaF im Unternehmen<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2016b\" class=\"entry\">\n\t<td><\/td>\n\t<td>Sprache durch Dramap\u00e4dagogik handelnd erfahren<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/25418557\/sprache_durch_dramapaedagogik_handelnd_erfahren.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2017\" class=\"entry\">\n\t<td>Kern, I.<\/td>\n\t<td>Bauhaus Reisebuch<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/28045516\/bauhaus_reisebuch.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2017a\" class=\"entry\">\n\t<td>F\u00fcgert, N.<\/td>\n\t<td>DaF im Unternehmen<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2017b\" class=\"entry\">\n\t<td>F\u00fcgert, N.<\/td>\n\t<td>DaF im Unternehmen<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2017c\" class=\"entry\">\n\t<td>Schmidt, N.<\/td>\n\t<td>Lyrik der DDR<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/28991084\/lyrik_der_ddr.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2017d\" class=\"entry\">\n\t<td><\/td>\n\t<td>RE: Das Kapital<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/28040565\/re_das_kapital.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2018\" class=\"entry\">\n\t<td>Kreuz, A.<\/td>\n\t<td>Frauen. Wahl. Recht. Der 19. Januar 1919<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/33573750\/frauen_wahl_recht_der_19_januar_1919.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2018a\" class=\"entry\">\n\t<td>Dreier, H.<\/td>\n\t<td>Das Wagnis der Demokratie<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/32603763\/das_wagnis_der_demokratie.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2019\" class=\"entry\">\n\t<td>Fran\u00e7ois, \u00c9.<\/td>\n\t<td>Europa<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/36421309\/europa.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2019a\" class=\"entry\">\n\t<td>Sch\u00f6nberger and Kilian<\/td>\n\t<td>Deutschland deine W\u00e4lder<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/36776807\/deutschland_deine_waelder.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2020\" class=\"entry\">\n\t<td>Hartmann, T.<\/td>\n\t<td>Utopien<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/39153440\/utopien.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2020a\" class=\"entry\">\n\t<td>Anonym<\/td>\n\t<td>100 Jahre Bundesrat : eine starke Sa\u0308ule der Republik<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2020b\" class=\"entry\">\n\t<td>Fahrmeir, A.<\/td>\n\t<td>Deutschland<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38825850\/deutschland.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"2021\" class=\"entry\">\n\t<td>Werteb\u00fcndnis, S.<\/td>\n\t<td>K\u00f6nnen M\u00e4nner auch Kanzlerin werden?978-3-7344-1242-4<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/39779668\/koennen_maenner_auch_kanzlerin_werden.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Abraham2020\" class=\"entry\">\n\t<td>Abraham, U.<\/td>\n\t<td>Graphic Novels<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Aehnlich2015\" class=\"entry\">\n\t<td>Aehnlich, K.<\/td>\n\t<td>Wenn die Wale an Land gehen Roman<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Altvater2008\" class=\"entry\">\n\t<td>Altvater, E.<\/td>\n\t<td>Die letzte Schlacht gewinnen wir!&#8221; : 40 Jahre 1968 &#8211; Bilanz und Perspektiven<\/td>\n\t<td>2008<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"AndreasBoessOstendorf2018\" class=\"entry\">\n\t<td>B\u00f6ss-Ostendorf, A. and Senft, H.<\/td>\n\t<td>Einf\u00fchrung in die Hochschul-Lehre<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/30158538\/andreas_boess_ostendorf_holger_senft_einfuehrung_in_die_hochschul_lehre.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Andres2015\" class=\"entry\">\n\t<td>Andres, D.<\/td>\n\t<td>To know how to suggest &#8230; : approaches to teaching conference interpreting<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"AnnetteMueller2017\" class=\"entry\">\n\t<td>M\u00fcller, A. and Schl\u00fcter, S.<\/td>\n\t<td>Im Beruf NEU B1+\/B2. Kursbuch<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/29848920\/annette_mueller_sabine_schlueter_im_beruf_neu_b1_b2_kursbuch.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"AnselmRittervonFeuerbach2007\" class=\"entry\">\n\t<td>Feuerbach, A.<\/td>\n\t<td>Kaspar Hauser<\/td>\n\t<td>2007<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/7369000\/anselm_ritter_von_feuerbach_anselm_feuerbach_kaspar_hauser.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"AntoschBardohn2019\" class=\"entry\">\n\t<td>Antosch-Bardohn, J., Beege, B. and Primus, N.<\/td>\n\t<td>In die Lehre starten<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/34898748\/jana_antosch_bardohn_barbara_beege_nathalie_primus_in_die_lehre_starten.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Arnold2013\" class=\"entry\">\n\t<td>Arnold, R.<\/td>\n\t<td>Didaktik im Fokus<\/td>\n\t<td>2013<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Arnold2016\" class=\"entry\">\n\t<td>Arnold, R.<\/td>\n\t<td>Die emotionale Konstruktion der Wirklichkeit Beitra\u0308ge zu einer emotionspa\u0308dagogischen Erwachsenenbildung<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Arnold2019\" class=\"entry\">\n\t<td>Arnold, R.<\/td>\n\t<td>Wie man lehrt, ohne zu belehren<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38429531\/rolf_arnold_wie_man_lehrt_ohne_zu_belehren.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Arnold2021\" class=\"entry\">\n\t<td>Arnold, R.<\/td>\n\t<td>Systemische Erwachsenenbildung<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/20749569\/rolf_arnold_systemische_erwachsenenbildung.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Augustin2014\" class=\"entry\">\n\t<td>Augustin, E.<\/td>\n\t<td>Fu\u00dfball unser : was man nicht alles wissen muss<\/td>\n\t<td>2014<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"AxelHering2016\" class=\"entry\">\n\t<td>Hering, A. and Matussek, M.<\/td>\n\t<td>Menschen im Beruf &#8211; Schreibtraining. Kursbuch<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/26215502\/axel_hering_magdalena_matussek_menschen_im_beruf_schreibtraining_kursbuch.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"AxelTilch2018\" class=\"entry\">\n\t<td>Tilch, A.<\/td>\n\t<td>Bauhaus-Architektur<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/32953989\/axel_tilch_hans_engels_bauhaus_architektur.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Bachmann2018\" class=\"entry\">\n\t<td>Bachmann, H.<\/td>\n\t<td>Kompetenzorientierte Hochschullehre : die Notwendigkeit von Koh\u00e4renz zwischen Lernzielen, Pr\u00fcfungsformen und Lehr-Lern-Methoden ; eine Publikation des ZHE<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Bahr2019\" class=\"entry\">\n\t<td>Bahr, G.<\/td>\n\t<td>Das ist das Bauhaus!<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/33028329\/gesine_bahr_das_ist_das_bauhaus.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Balci2012\" class=\"entry\">\n\t<td>Balci, G.<\/td>\n\t<td>ArabQueen<\/td>\n\t<td>2012<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/14931572\/guener_balci_arabqueen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Bauer2014\" class=\"entry\">\n\t<td>Bauer, J.<\/td>\n\t<td>Der salzige Fluss<\/td>\n\t<td>2014<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Bazyar2021\" class=\"entry\">\n\t<td>Bazyar, S.<\/td>\n\t<td>Drei Kameradinnen<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/39849117\/shida_bazyar_drei_kameradinnen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Becker2017\" class=\"entry\">\n\t<td>Becker, J.<\/td>\n\t<td>Jakob der L\u00fcgner<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/28948684\/jurek_becker_jakob_der_luegner.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Becker2018\" class=\"entry\">\n\t<td>Becker, F.<\/td>\n\t<td>Die 68er Cartoons<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Bekesi2020\" class=\"entry\">\n\t<td>B\u00e9k\u00e9si, B., Clal\u00fcna, M., Dallapiazza, R.-M., Fischer, R. and Hirschfeld, U.<\/td>\n\t<td>Zwischendurch mal &#8230; H\u00f6ren Kopiervorlagen und Audio-CD<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/24017061\/barbara_bekesi_monika_claluena_rosa_maria_dallapiazza_roland_fischer_ursula_hirschfeld_zwischendurch_mal_hoeren_kopiervorlagen_und_audio_cd.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Beyer2020\" class=\"entry\">\n\t<td>Beyer, M.<\/td>\n\t<td>D\u00e4monenr\u00e4umdienst<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38827886\/marcel_beyer_daemonenraeumdienst.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Biermann2005\" class=\"entry\">\n\t<td>Biermann, C.<\/td>\n\t<td>Fast alles u\u0308ber Fu\u00dfball<\/td>\n\t<td>2005<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Birke2010\" class=\"entry\">\n\t<td>Birke, A.M.<\/td>\n\t<td>Die Bundesrepublik Deutschland<\/td>\n\t<td>2010<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/9609280\/adolf_m_birke_die_bundesrepublik_deutschland.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Bisky2019\" class=\"entry\">\n\t<td>Bisky, J.<\/td>\n\t<td>Berlin<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/33016990\/jens_bisky_berlin.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Bitz2019\" class=\"entry\">\n\t<td>Bitz, F., Duisberg, C.J., Elster, H., Eppelmann, R. and von F\u00fcrstenberg-Dussmann, C.<\/td>\n\t<td>30 Jahre Deutsche Einheit<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/37262272\/ferdinand_bitz_claus_j_duisberg_harald_elster_rainer_eppelmann_catherine_von_fuerstenberg_dussmann_30_jahre_deutsche_einheit.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Bjerg2020\" class=\"entry\">\n\t<td>Bjerg, B.<\/td>\n\t<td>Serpentinen<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/37914038\/bov_bjerg_serpentinen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Bluemel2015\" class=\"entry\">\n\t<td>Bl\u00fcmel, A.<\/td>\n\t<td>Von der Hochschulverwaltung zum Hochschulmanagement<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/24567830\/albrecht_bluemel_von_der_hochschulverwaltung_zum_hochschulmanagement.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Boent2008\" class=\"entry\">\n\t<td>Bo\u0308nt, R.<\/td>\n\t<td>Titelkampf Fu\u00dfballgeschichten der deutschen Autorennationalmannschaft<\/td>\n\t<td>2008<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Boenzli2012\" class=\"entry\">\n\t<td>B\u00f6nzli, W., von Jan, E., Krenn, W., Neuner, G. and Puchta, H.<\/td>\n\t<td>Zwischendurch mal Lieder. Kopiervorlagen und Audio-CD<\/td>\n\t<td>2012<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/16898485\/werner_boenzli_eduard_von_jan_wilfried_krenn_gerhard_neuner_herbert_puchta_zwischendurch_mal_lieder_kopiervorlagen_und_audio_cd.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Bohnsack2016\" class=\"entry\">\n\t<td>Bohnsack, N.<\/td>\n\t<td>Lutz &amp; Lea<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/26155212\/norbert_bohnsack_lutz_lea.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Bosch2017\" class=\"entry\">\n\t<td>Bosch, G., Dahmen, K. and Haas, U.<\/td>\n\t<td>Schritte plus im Beruf. \u00dcbungsbuch<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/8448527\/gloria_bosch_kristine_dahmen_ulrike_haas_schritte_plus_im_beruf_uebungsbuch.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Bradbury2018\" class=\"entry\">\n\t<td>Bradbury, D.<\/td>\n\t<td>Design der Moderne: Art d\u00e9co, Bauhaus, Mid-Century, Industriedesign<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/32953988\/dominic_bradbury_design_der_moderne_art_deco_bauhaus_mid_century_industriedesign.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Brague2012\" class=\"entry\">\n\t<td>Brague, R.<\/td>\n\t<td>Europa &#8211; seine Kultur, seine Barbarei<\/td>\n\t<td>2012<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/15643880\/remi_brague_europa_seine_kultur_seine_barbarei.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Brasche2017\" class=\"entry\">\n\t<td>Brasche, U.<\/td>\n\t<td>Europa\u0308ische Integration : Wirtschaft, Euro-Krise, Erweiterung und Perspektiven<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Braucek2008\" class=\"entry\">\n\t<td>Braucek, B.<\/td>\n\t<td>Der Passagier und andere Geschichten<\/td>\n\t<td>2008<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/7450572\/brigitte_braucek_der_passagier_und_andere_geschichten.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Braun1988\" class=\"entry\">\n\t<td>Braun, V.<\/td>\n\t<td>Hinze-Kunze-Roman<\/td>\n\t<td>1988<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Brinker2014\" class=\"entry\">\n\t<td>Brinker, T.<\/td>\n\t<td>Befa\u0308higen statt belehren : neue Lehr- und Lernkultur an Hochschulen<\/td>\n\t<td>2014<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Brinker2018\" class=\"entry\">\n\t<td>Brinker, K., C\u00f6lfen, H. and Pappert, S.<\/td>\n\t<td>Linguistische Textanalyse<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/33027854\/klaus_brinker_hermann_coelfen_steffen_pappert_linguistische_textanalyse.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Broemmel2017\" class=\"entry\">\n\t<td>Bro\u0308mmel, W.<\/td>\n\t<td>Populismus und Extremismus in Europa gesellschaftswissenschaftliche und sozialpsychologische Perspektiven<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Brussig2014\" class=\"entry\">\n\t<td>Brussig, T.<\/td>\n\t<td>Am k\u00fcrzeren Ende der Sonnenallee<\/td>\n\t<td>2014<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/21954840\/thomas_brussig_am_kuerzeren_ende_der_sonnenallee.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Bull2018\" class=\"entry\">\n\t<td>Bull, H.<\/td>\n\t<td>Was soll, was kann Demokratie? Erwartungen &#8211; Entta\u0308uschungen &#8211; Hoffnungen<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Caeneghem2018\" class=\"entry\">\n\t<td>van Caeneghem, J.<\/td>\n\t<td>Gemeinsam essen<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/34002906\/johan_van_caeneghem_gemeinsam_essen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"CarlosSpottorno2017\" class=\"entry\">\n\t<td>Spottorno, C. and Abril, G.<\/td>\n\t<td>Der Riss<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/29053999\/carlos_spottorno_guillermo_abril_der_riss.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"ChristianBaumgarten2017\" class=\"entry\">\n\t<td>Baumgarten, C.<\/td>\n\t<td>Die DaF-Bibliothek A2\/B1 &#8211; Das Gr\u00fcne Band978-3-06-024442-3<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/28347074\/christian_baumgarten_volker_borbein_die_daf_bibliothek_a2_b1_das_gruene_band.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"ChristianBaumgarten2018\" class=\"entry\">\n\t<td>Baumgarten, C.<\/td>\n\t<td>Die DaF-Bibliothek A2\/B1 &#8211; Pedro kommt an<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/30238242\/christian_baumgarten_volker_borbein_die_daf_bibliothek_a2_b1_pedro_kommt_an.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"ChristofGramm2015\" class=\"entry\">\n\t<td>Gramm, C.<\/td>\n\t<td>Grundgesetz<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/23661184\/christof_gramm_stefan_ulrich_pieper_grundgesetz.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"ChristophBiermann2013\" class=\"entry\">\n\t<td>Biermann, C. and K\u00f6ster, P.<\/td>\n\t<td>Fast alles \u00fcber 50 Jahre Bundesliga<\/td>\n\t<td>2013<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/19045271\/christoph_biermann_philipp_koester_fast_alles_ueber_50_jahre_bundesliga.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"ChristophMarx2018\" class=\"entry\">\n\t<td>Marx, C. and Hattstein, M.<\/td>\n\t<td>Imagine<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/30702343\/christoph_marx_markus_hattstein_imagine.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"ChristophWurm2013\" class=\"entry\">\n\t<td>Wurm, C. and Eichler, P.<\/td>\n\t<td>Auf den Punkt gebracht<\/td>\n\t<td>2013<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/18972356\/christoph_wurm_petra_eichler_auf_den_punkt_gebracht.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Cohen2015\" class=\"entry\">\n\t<td>Cohen<\/td>\n\t<td>Le Corbusier 1887 &#8211; 1965 ; die Lyrik der Architektur im Maschinenzeitalter<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Dahn2019\" class=\"entry\">\n\t<td>Dahn, D.<\/td>\n\t<td>Der Schnee von gestern ist die Sintflut von heute<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/36784746\/daniela_dahn_der_schnee_von_gestern_ist_die_sintflut_von_heute.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Darchinger2012\" class=\"entry\">\n\t<td>Darchinger, J.<\/td>\n\t<td>Wirtschaftswunder Deutschland nach dem Krieg<\/td>\n\t<td>2012<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Dardan2021\" class=\"entry\">\n\t<td>Dardan, A.<\/td>\n\t<td>Betrachtungen einer Barbarin<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/39806605\/asal_dardan_betrachtungen_einer_barbarin.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Degens2020\" class=\"entry\">\n\t<td>Degens, M.<\/td>\n\t<td>Toronto<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38162219\/marc_degens_toronto.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Detjen2012\" class=\"entry\">\n\t<td>Detjen, J.<\/td>\n\t<td>Die Werteordnung des Grundgesetzes<\/td>\n\t<td>2012<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/19841402\/joachim_detjen_die_werteordnung_des_grundgesetzes.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Dickens2017\" class=\"entry\">\n\t<td>Dickens, C.<\/td>\n\t<td>Eine Weihnachtsgeschichte<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/29940968\/charles_dickens_eine_weihnachtsgeschichte.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"DirkMecklenbeck2018\" class=\"entry\">\n\t<td>Mecklenbeck, D. and Adam, R.<\/td>\n\t<td>Todesstreifen<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/31029740\/dirk_mecklenbeck_raik_adam_todesstreifen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Dix2015\" class=\"entry\">\n\t<td>Dix, E.<\/td>\n\t<td>Good Bye, Lenin!<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/25117574\/eva_dix_good_bye_lenin.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Drawert2020\" class=\"entry\">\n\t<td>Drawert, K.<\/td>\n\t<td>Dresden<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38825896\/kurt_drawert_dresden.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Duckstein2017\" class=\"entry\">\n\t<td>Duckstein, B.<\/td>\n\t<td>Zwischendurch mal &#8230; Wortschatz Niveau A1-A2 : Kopiervorlagen<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"EberhardKolb2012\" class=\"entry\">\n\t<td>Kolb, E.<\/td>\n\t<td>Die Weimarer Republik<\/td>\n\t<td>2012<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/18260254\/eberhard_kolb_dirk_schumann_die_weimarer_republik.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Ebersbach2018\" class=\"entry\">\n\t<td>Ebersbach, B.<\/td>\n\t<td>Ballgefu\u0308hl : Frauen und Fussball<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Edelbauer2021\" class=\"entry\">\n\t<td>Edelbauer, R.<\/td>\n\t<td>DAVE &#8211; \u00d6sterreichischer Buchpreis 2021<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/39810681\/raphaela_edelbauer_dave_oesterreichischer_buchpreis_2021.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Eismann2008\" class=\"entry\">\n\t<td>Eismann, V.<\/td>\n\t<td>Wirtschaftskommunikation Deutsch &#8211; Lehrbuch<\/td>\n\t<td>2008<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/20057601\/volker_eismann_wirtschaftskommunikation_deutsch_lehrbuch.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Eismann2013\" class=\"entry\">\n\t<td>Eismann, V.<\/td>\n\t<td>Wirtschaftskommunikation Deutsch<\/td>\n\t<td>2013<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Eisner2009\" class=\"entry\">\n\t<td>Eisner, W.<\/td>\n\t<td>Will Eisner: The Spirit<\/td>\n\t<td>2009<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/7994778\/will_eisner_will_eisner_the_spirit.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Elmiger2020\" class=\"entry\">\n\t<td>Elmiger, D.<\/td>\n\t<td>Aus der Zuckerfabrik<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38828778\/dorothee_elmiger_aus_der_zuckerfabrik.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"EoinColfer2018\" class=\"entry\">\n\t<td>Colfer, E. and Donkin, A.<\/td>\n\t<td>Illegal &#8211; Die Geschichte einer Flucht<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/30870482\/eoin_colfer_andrew_donkin_illegal_die_geschichte_einer_flucht.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Erb2020\" class=\"entry\">\n\t<td>Erb, E.<\/td>\n\t<td>Das ist hier der Fall<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/39343075\/elke_erb_das_ist_hier_der_fall.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Erpenbeck2017\" class=\"entry\">\n\t<td>Erpenbeck, J., Heyse, V., Ortmann, S., Apitzsch, T. and Arnold, R.<\/td>\n\t<td>Kompetenz ist viel mehr<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/25161859\/john_erpenbeck_volker_heyse_stefan_ortmann_thomas_apitzsch_rolf_arnold_kompetenz_ist_viel_mehr.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Erpenbeck2021\" class=\"entry\">\n\t<td>Erpenbeck, J.<\/td>\n\t<td>Kairos<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/40480356\/jenny_erpenbeck_kairos.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Even2019\" class=\"entry\">\n\t<td>Even, S.<\/td>\n\t<td>Lernbewegungen inszenieren: Performative Zug\u00e4nge in der Sprach-, Literatur- und Kulturdidaktik : Festschrift f\u00fcr Manfred Schewe<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Fabio2018\" class=\"entry\">\n\t<td>Fabio, U.D.<\/td>\n\t<td>Die Weimarer Verfassung<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/32860218\/udo_di_fabio_die_weimarer_verfassung.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Farmache2015\" class=\"entry\">\n\t<td>Farmache, A., Grosser, R., Hanke, C., Mautsch, K. and Sander, I.<\/td>\n\t<td>DaF im Unternehmen A1\/Kurs- und \u00dcbungsbuch mit Audios und Filmen online<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/23599774\/andreea_farmache_regine_grosser_claudia_hanke_klaus_mautsch_ilse_sander_daf_im_unternehmen_a1_kurs_und_uebungsbuch_mit_audios_und_filmen_online.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Farmache2016\" class=\"entry\">\n\t<td>Farmache, A., Grosser, R., Hanke, C., Ilse, V. and Mautsch, K.<\/td>\n\t<td>DaF im Unternehmen A1-A2. Kursbuch + Audio- und Videodateien online<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/25241502\/andreea_farmache_regine_grosser_claudia_hanke_viktoria_ilse_klaus_mautsch_daf_im_unternehmen_a1_a2_kursbuch_audio_und_videodateien_online.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Farmache2016a\" class=\"entry\">\n\t<td>Farmache, A., Grosser, R., Hanke, C., Ilse, V. and Mautsch, K.<\/td>\n\t<td>DaF im Unternehmen A1-A2. \u00dcbungsbuch + Audiodateien online<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/25241570\/andreea_farmache_regine_grosser_claudia_hanke_viktoria_ilse_klaus_mautsch_daf_im_unternehmen_a1_a2_uebungsbuch_audiodateien_online.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Farmache2019\" class=\"entry\">\n\t<td>Farmache, A., Grauer, R., Schregel, F. and Tellmann, U.<\/td>\n\t<td>Deutsch intensiv Berufliches Deutsch B1\/B2. Buch + online<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/34203465\/andreea_farmache_roderich_grauer_friedrich_schregel_udo_tellmann_deutsch_intensiv_berufliches_deutsch_b1_b2_buch_online.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Fiedler2016\" class=\"entry\">\n\t<td>Fiedler, J.<\/td>\n\t<td>Bauhaus<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Flannery2019\" class=\"entry\">\n\t<td>Flannery, T.<\/td>\n\t<td>Europa<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/36331915\/tim_flannery_europa.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Fleiner2016\" class=\"entry\">\n\t<td>Fleiner, M.<\/td>\n\t<td>Performanceku\u0308nste im Hochschulstudium transversale Sprach-, Literatur- und Kulturerfahrungen in der fremdsprachlichen Lehrerbildung<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Fodor2017\" class=\"entry\">\n\t<td>Fodor, S., Grosser, R., Mautsch, K., Neustadt, E. and Sander, I.<\/td>\n\t<td>DaF im Unternehmen B1<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/29438891\/stefan_fodor_regine_grosser_klaus_mautsch_eva_neustadt_ilse_sander_daf_im_unternehmen_b1.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Fodor2018\" class=\"entry\">\n\t<td>Fodor, S., Grosser, R., Mautsch, K., Neustadt, E. and Sander, I.<\/td>\n\t<td>DaF im Unternehmen B2. Intensivtrainer<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/31890692\/stefan_fodor_regine_grosser_klaus_mautsch_eva_neustadt_ilse_sander_daf_im_unternehmen_b2_intensivtrainer.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Fontane2007\" class=\"entry\">\n\t<td>Fontane, T.<\/td>\n\t<td>Effi Briest<\/td>\n\t<td>2007<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/7369034\/theodor_fontane_effi_briest.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Franck2021\" class=\"entry\">\n\t<td>Franck, J.<\/td>\n\t<td>Welten auseinander<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/40649202\/julia_franck_welten_auseinander.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Frei2017\" class=\"entry\">\n\t<td>Frei, N.<\/td>\n\t<td>1968<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/28661145\/norbert_frei_1968.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Fromme1999\" class=\"entry\">\n\t<td>Fromme, F.K.<\/td>\n\t<td>Von der Weimarer Verfassung zum Bonner Grundgesetz<\/td>\n\t<td>1999<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/9648630\/friedrich_karl_fromme_von_der_weimarer_verfassung_zum_bonner_grundgesetz.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Fuegert2016\" class=\"entry\">\n\t<td>F\u00fcgert, N., Grosser, R., Hanke, C., Ilse, V. and Mautsch, K.<\/td>\n\t<td>DaF im Unternehmen B1<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/26077470\/nadja_fuegert_regine_grosser_claudia_hanke_viktoria_ilse_klaus_mautsch_daf_im_unternehmen_b1.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Fuegert2017\" class=\"entry\">\n\t<td>F\u00fcgert, N., Grosser, R., Hanke, C., Ilse, V. and Mautsch, K.<\/td>\n\t<td>DaF im Unternehmen B1-B2. Kursbuch + Audios und Filme online<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/28616027\/nadja_fuegert_regine_grosser_claudia_hanke_viktoria_ilse_klaus_mautsch_daf_im_unternehmen_b1_b2_kursbuch_audios_und_filme_online.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Fuegert2017a\" class=\"entry\">\n\t<td>F\u00fcgert, N., Grosser, R., Hanke, C., Mautsch, K. and Sander, I.<\/td>\n\t<td>DaF im Unternehmen B1-B2. \u00dcbungsbuch + Audios online<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/28615897\/nadja_fuegert_regine_grosser_claudia_hanke_klaus_mautsch_ilse_sander_daf_im_unternehmen_b1_b2_uebungsbuch_audios_online.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Fuegert2017b\" class=\"entry\">\n\t<td>F\u00fcgert, N., Grosser, R., Hanke, C., Mautsch, K. and Sander, I.<\/td>\n\t<td>DaF im Unternehmen B2 &#8211; Kurs- und \u00dcbungsbuch mit Audios und Filmen online<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/26830041\/nadja_fuegert_regine_grosser_claudia_hanke_klaus_mautsch_ilse_sander_daf_im_unternehmen_b2_kurs_und_uebungsbuch_mit_audios_und_filmen_online.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Fuehmann2016\" class=\"entry\">\n\t<td>Fu\u0308hmann, F.<\/td>\n\t<td>Nun lesen Sie mal scho\u0308n! : Briefwechsel 1968-1984 : eine Auswahl<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Gehler2018\" class=\"entry\">\n\t<td>Gehler, M.<\/td>\n\t<td>Europa Ideen, Institutionen, Vereinigung, Zusammenhalt<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Gehrmann2018\" class=\"entry\">\n\t<td>Gehrmann, K.<\/td>\n\t<td>Der Dschungel<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/30884143\/kristina_gehrmann_der_dschungel.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Gensing2019\" class=\"entry\">\n\t<td>Gensing, P.<\/td>\n\t<td>Fakten gegen Fake News oder Der Kampf um die Demokratie<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/36684548\/patrick_gensing_fakten_gegen_fake_news_oder_der_kampf_um_die_demokratie.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Gerhard2016\" class=\"entry\">\n\t<td>Gerhard, C.<\/td>\n\t<td>Menschen im Beruf &#8211; Bewerbungsstraining. Kursbuch mit Audio-CD<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/26215498\/corinna_gerhard_menschen_im_beruf_bewerbungsstraining_kursbuch_mit_audio_cd.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Giersberg2011\" class=\"entry\">\n\t<td>Giersberg, C.<\/td>\n\t<td>Deutsche Sagen und Legenden Sagen und Legenden aus dem Land der Dichter und Denker<\/td>\n\t<td>2011<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"GilbertLupfer&amp;PaulSigel2017\" class=\"entry\">\n\t<td>Lupfer, G.<\/td>\n\t<td>Gropius<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/28315742\/gilbert_lupfer_paul_sigel_taschen_gilbert_lupfer_paul_sigel_gropius.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"GilcherHoltey2008\" class=\"entry\">\n\t<td>Gilcher-Holtey, I.<\/td>\n\t<td>1968<\/td>\n\t<td>2008<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/7048356\/ingrid_gilcher_holtey_1968.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Goerz2019\" class=\"entry\">\n\t<td>Goerz, A.<\/td>\n\t<td>Der Osten ist ein Gef\u00fchl<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/36680625\/anja_goerz_der_osten_ist_ein_gefuehl.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Golzio2021\" class=\"entry\">\n\t<td>Golzio, B.<\/td>\n\t<td>Die Geschichte von Francine R.<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/39958179\/boris_golzio_die_geschichte_von_francine_r.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Gomringer2020\" class=\"entry\">\n\t<td>Gomringer, N.<\/td>\n\t<td>Gottesanbieterin<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38393838\/nora_gomringer_gottesanbieterin.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Gomringer2020a\" class=\"entry\">\n\t<td>Gomringer, N.<\/td>\n\t<td>Nora Gomringer<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Goodhart2020\" class=\"entry\">\n\t<td>Goodhart, D.<\/td>\n\t<td>The Road to Somewhere<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38906063\/david_goodhart_the_road_to_somewhere.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Goosen2019\" class=\"entry\">\n\t<td>Goosen, F.<\/td>\n\t<td>Kein Wunder<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/34809585\/frank_goosen_kein_wunder.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Grebe2008\" class=\"entry\">\n\t<td>Grebe, R.<\/td>\n\t<td>1968<\/td>\n\t<td>2008<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Grimm1991\" class=\"entry\">\n\t<td>Grimm, D.<\/td>\n\t<td>Die Zukunft der Verfassung<\/td>\n\t<td>2002<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/1321960\/dieter_grimm_die_zukunft_der_verfassung.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Grimm1991a\" class=\"entry\">\n\t<td>Grimm, D.<\/td>\n\t<td>Die Zukunft der Verfassung II<\/td>\n\t<td>2012<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Grimm2016\" class=\"entry\">\n\t<td>Grimm, D.<\/td>\n\t<td>Europa ja &#8211; aber welches?<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/25273813\/dieter_grimm_europa_ja_aber_welches.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Gross2021\" class=\"entry\">\n\t<td>Gro\u00df, J.<\/td>\n\t<td>Entkommen<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/39983066\/joshua_gross_entkommen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Grosser2015\" class=\"entry\">\n\t<td>Grosser, R., Hanke, C., Ilse, V., Mautsch, K. and Sander, I.<\/td>\n\t<td>DaF im Unternehmen A2 &#8211; Kurs- und \u00dcbungsbuch<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/24471287\/regine_grosser_claudia_hanke_viktoria_ilse_klaus_mautsch_ilse_sander_daf_im_unternehmen_a2_kurs_und_uebungsbuch.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Gruenbein1988\" class=\"entry\">\n\t<td>Gru\u0308nbein, D.<\/td>\n\t<td>Grauzone morgens : Gedichte<\/td>\n\t<td>1988<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Guecyeter2021\" class=\"entry\">\n\t<td>G\u00fc\u00e7yeter, D.<\/td>\n\t<td>Mein Prinz, ich bin das Ghetto<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/40714620\/dincer_guecyeter_mein_prinz_ich_bin_das_ghetto.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Guengoer2021\" class=\"entry\">\n\t<td>G\u00fcng\u00f6r, D.<\/td>\n\t<td>Vater und ich<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/40858229\/dilek_guengoer_vater_und_ich.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Guerot2016\" class=\"entry\">\n\t<td>Gue\u0301rot, U.<\/td>\n\t<td>Warum Europa eine Republik werden muss! : eine politische Utopie<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hacke2014\" class=\"entry\">\n\t<td>Hacke, A.<\/td>\n\t<td>Fu\u00dfballgef\u00fchle<\/td>\n\t<td>2014<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/21777164\/axel_hacke_fussballgefuehle.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hacks2018\" class=\"entry\">\n\t<td>Hacks, P.<\/td>\n\t<td>Hundert Gedichte<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/33323091\/peter_hacks_hundert_gedichte.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hagemann2015\" class=\"entry\">\n\t<td>Hagemann, S.<\/td>\n\t<td>Einf\u00fchrung in das translationswissenschaftliche Arbeiten<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/25105493\/susanne_hagemann_einfuehrung_in_das_translationswissenschaftliche_arbeiten.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hahn2017\" class=\"entry\">\n\t<td>Hahn, U.<\/td>\n\t<td>Wir werden erwartet<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/28961984\/ulla_hahn_wir_werden_erwartet.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hamann2016\" class=\"entry\">\n\t<td>Hamann, E., Magosch, C., Mempel, C., Vondran, B. and Zabel, R.<\/td>\n\t<td>Mitreden<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/22015053\/eva_hamann_christine_magosch_caterina_mempel_bjoern_vondran_rebecca_zabel_mitreden.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hamann2017\" class=\"entry\">\n\t<td>Hamann, C.<\/td>\n\t<td>Zwischendurch mal &#8230; Sprechen. Deutsch als Fremdsprache \/ Kopiervorlagen<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/30554934\/carola_hamann_zwischendurch_mal_sprechen_deutsch_als_fremdsprache_kopiervorlagen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Handke2020\" class=\"entry\">\n\t<td>Handke, P.<\/td>\n\t<td>Zdenek Adamec<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/37998537\/peter_handke_zdenek_adamec.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hanika2020\" class=\"entry\">\n\t<td>Hanika, I.<\/td>\n\t<td>Echos Kammern<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38997641\/iris_hanika_echos_kammern.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hasel2019\" class=\"entry\">\n\t<td>Hasel, V.<\/td>\n\t<td>Wir wollen mehr als nur wa\u0308hlen wie wir die Demokratie retten ko\u0308nnen<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hauff2016\" class=\"entry\">\n\t<td>Hauff, W.<\/td>\n\t<td>Der Zwerg Nase<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/26166150\/wilhelm_hauff_der_zwerg_nase.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hawelka2007\" class=\"entry\">\n\t<td>Hawelka, B.<\/td>\n\t<td>Fo\u0308rderung von Kompetenzen in der Hochschullehre theoretische Konzepte und ihre Implementation in der Praxis<\/td>\n\t<td>2007<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hecken2008\" class=\"entry\">\n\t<td>Hecken, T.<\/td>\n\t<td>1968 von Texten und Theorien aus einer Zeit euphorischer Kritik<\/td>\n\t<td>2008<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Heidenreich2018\" class=\"entry\">\n\t<td>Heidenreich, E.<\/td>\n\t<td>Alles flie\u00dft der Rhein : eine Reise, Bilder, Geschichten<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Heinrich2018\" class=\"entry\">\n\t<td>Heinrich, M.<\/td>\n\t<td>Karl Marx und die Geburt der modernen Gesellschaft. Band 1: 1818-1843<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/28226680\/michael_heinrich_karl_marx_und_die_geburt_der_modernen_gesellschaft_band_1_1818_1843.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"HeleneMiardDelacroix2020\" class=\"entry\">\n\t<td>Miard-Delacroix, H. and Wirsching, A.<\/td>\n\t<td>Von Erbfeinden zu guten Nachbarn<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38735628\/helene_miard_delacroix_andreas_wirsching_von_erbfeinden_zu_guten_nachbarn.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hensel2019\" class=\"entry\">\n\t<td>Hensel, J.<\/td>\n\t<td>Wie alles anders bleibt<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/36526529\/jana_hensel_wie_alles_anders_bleibt.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hering2016\" class=\"entry\">\n\t<td>Hering, A.<\/td>\n\t<td>Menschen im Beruf, Telefontraining : Deutsch als Fremdsprache : B1\/B2<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hermann2021\" class=\"entry\">\n\t<td>Hermann, J.<\/td>\n\t<td>Daheim<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/39814062\/judith_hermann_daheim.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Herrndorf2013\" class=\"entry\">\n\t<td>Herrndorf, W.<\/td>\n\t<td>Tschick<\/td>\n\t<td>2013<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/22491656\/wolfgang_herrndorf_tschick.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hertle2019\" class=\"entry\">\n\t<td>Hertle, H.-H.<\/td>\n\t<td>Sofort, unverz\u00fcglich<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/36769369\/hans_hermann_hertle_sofort_unverzueglich.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hesse2018\" class=\"entry\">\n\t<td>Hesse, H.<\/td>\n\t<td>Erz\u00e4hlungen von Hermann Hesse<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/32216488\/hermann_hesse_erzaehlungen_von_hermann_hesse.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Heym2019\" class=\"entry\">\n\t<td>Heym, S.<\/td>\n\t<td>Schwarzenberg<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/34809024\/stefan_heym_schwarzenberg.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hieronymi2020\" class=\"entry\">\n\t<td>Hieronymi, L.<\/td>\n\t<td>In zwangloser Gesellschaft<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38903430\/leonhard_hieronymi_in_zwangloser_gesellschaft.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hillger2013\" class=\"entry\">\n\t<td>Hillger, A.<\/td>\n\t<td>Gl\u00e4serne Zeit<\/td>\n\t<td>2013<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/20652437\/andreas_hillger_glaeserne_zeit.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hirschfeld2018\" class=\"entry\">\n\t<td>Hirschfeld, U.<\/td>\n\t<td>Phonetik im Fach Deutsch als Fremd- und Zweitsprache unter Beru\u0308cksichtigung des Verha\u0308ltnisses von Orthografie und Phonetik<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hodenberg2018\" class=\"entry\">\n\t<td>von Hodenberg, C.<\/td>\n\t<td>Das andere Achtundsechzig<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/30629842\/christina_von_hodenberg_das_andere_achtundsechzig.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hoeltzenbein2013\" class=\"entry\">\n\t<td>Hoeltzenbein, K.<\/td>\n\t<td>15:30 die Bundesliga. Das Buch<\/td>\n\t<td>2013<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hoffmann2016\" class=\"entry\">\n\t<td>Hoffmann, L.<\/td>\n\t<td>Deutsche Grammatik Grundlagen fu\u0308r Lehrerausbildung, Schule, Deutsch als Zweitsprache und Deutsch als Fremdsprache<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Holl2011\" class=\"entry\">\n\t<td>Holl, E.<\/td>\n\t<td>Sprach-Fluss : Theateru\u0308bungen fu\u0308r Sprachunterricht und interkulturelles Lernen. Deutsch als Fremdsprache\/Handbuch mit DVD<\/td>\n\t<td>2011<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hoppe2021\" class=\"entry\">\n\t<td>Hoppe, F.<\/td>\n\t<td>Die Nibelungen<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/40649274\/felicitas_hoppe_die_nibelungen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Horeni2012\" class=\"entry\">\n\t<td>Horeni, M.<\/td>\n\t<td>Die Br\u00fcder Boateng<\/td>\n\t<td>2012<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/19224333\/michael_horeni_die_brueder_boateng.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Hubert2016\" class=\"entry\">\n\t<td>Hubert, K.<\/td>\n\t<td>Fr\u00e4ulein-R\u00fchr-Mich-Nicht-An<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/25485161\/hubert_kerascoet_fraeulein_ruehr_mich_nicht_an.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Huntington2002\" class=\"entry\">\n\t<td>Huntington, S.P.<\/td>\n\t<td>Kampf der Kulturen<\/td>\n\t<td>2002<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/1342997\/samuel_p_huntington_kampf_der_kulturen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Imo2015\" class=\"entry\">\n\t<td>Imo, W.<\/td>\n\t<td>Interaktionale Sprache und ihre Didaktisierung im DaF-Unterricht<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"IngridGrigull2013\" class=\"entry\">\n\t<td>Grigull, I. and Raven, S.<\/td>\n\t<td>Gesch\u00e4ftliche Begegnungen B1+<\/td>\n\t<td>2013<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/20055949\/ingrid_grigull_susanne_raven_geschaeftliche_begegnungen_b1.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"IngridGrigull2019\" class=\"entry\">\n\t<td>Grigull, I. and Raven, S.<\/td>\n\t<td>Gesch\u00e4ftliche Begegnungen A2+<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/35683324\/ingrid_grigull_susanne_raven_geschaeftliche_begegnungen_a2.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"IsabelBuchwaldWargenau2019\" class=\"entry\">\n\t<td>Buchwald-Wargenau, I. and Giersberg, D.<\/td>\n\t<td>Im Beruf NEU A2+\/B1<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/37268040\/isabel_buchwald_wargenau_dagmar_giersberg_im_beruf_neu_a2_b1.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"IsabelBuchwaldWargenau2019a\" class=\"entry\">\n\t<td>Buchwald-Wargenau, I. and Giersberg, D.<\/td>\n\t<td>Im Beruf NEU A2+\/B1. Arbeitsbuch<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38084738\/isabel_buchwald_wargenau_dagmar_giersberg_im_beruf_neu_a2_b1_arbeitsbuch.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"JacobGrimm2016\" class=\"entry\">\n\t<td>Grimm, J. and Grimm, W.<\/td>\n\t<td>Die Kinder- und Hausm\u00e4rchen der Br\u00fcder Grimm<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/19285116\/jacob_grimm_wilhelm_grimm_die_kinder_und_hausmaerchen_der_brueder_grimm.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"JeanMolitor2018\" class=\"entry\">\n\t<td>Molitor, J.<\/td>\n\t<td>Bauhaus<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/33055404\/jean_molitor_kaija_voss_bauhaus.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Jelinek2020\" class=\"entry\">\n\t<td>Jelinek, E.<\/td>\n\t<td>Schwarzwasser. Am K\u00f6nigsweg<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38282994\/elfriede_jelinek_schwarzwasser_am_koenigsweg.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Jessing2015\" class=\"entry\">\n\t<td>Je\u00dfing, B.<\/td>\n\t<td>Dramenanalyse<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/22522064\/benedikt_jessing_dramenanalyse.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"JochenSchmidt2019\" class=\"entry\">\n\t<td>Schmidt, J. and Wagner, D.<\/td>\n\t<td>Dr\u00fcben und dr\u00fcben<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/36784819\/jochen_schmidt_david_wagner_drueben_und_drueben.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Jochimsen2018\" class=\"entry\">\n\t<td>Jochimsen, J.<\/td>\n\t<td>\u00bbMama und Papa hatte ich nicht, ich musste Renate und Eberhard sagen\u00ab<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/30831490\/jess_jochimsen_mama_und_papa_hatte_ich_nicht_ich_musste_renate_und_eberhard_sagen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"JohnErpenbeck2015\" class=\"entry\">\n\t<td>Erpenbeck, J. and Sauter, W.<\/td>\n\t<td>Wissen, Werte und Kompetenzen in der Mitarbeiterentwicklung<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/24221232\/john_erpenbeck_werner_sauter_wissen_werte_und_kompetenzen_in_der_mitarbeiterentwicklung.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"JohnErpenbeck2017\" class=\"entry\">\n\t<td>Erpenbeck, J. and Sauter, W.<\/td>\n\t<td>Wertungen, Werte &#8211; Das Buch der Grundlagen f\u00fcr Bildung und Organisationsentwicklung<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/29856388\/john_erpenbeck_werner_sauter_wertungen_werte_das_buch_der_grundlagen_fuer_bildung_und_organisationsentwicklung.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"JohnErpenbeck2019\" class=\"entry\">\n\t<td>Erpenbeck, J. and Sauter, W.<\/td>\n\t<td>Stoppt die Kompetenzkatastrophe!<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/37100121\/john_erpenbeck_werner_sauter_stoppt_die_kompetenzkatastrophe.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Johnson1998\" class=\"entry\">\n\t<td>Johnson, U.<\/td>\n\t<td>Zwei Ansichten<\/td>\n\t<td>1998<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/1349014\/uwe_johnson_zwei_ansichten.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Johnstone2020\" class=\"entry\">\n\t<td>Johnstone, K.<\/td>\n\t<td>Theaterspiele<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/31587213\/keith_johnstone_theaterspiele.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Jonas2019\" class=\"entry\">\n\t<td>Jonas, J.<\/td>\n\t<td>Der Hundertj\u00e4hrige, der aus dem Fenster stieg und verschwand<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/35681737\/jonasson_jonas_der_hundertjaehrige_der_aus_dem_fenster_stieg_und_verschwand.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Juchler2019\" class=\"entry\">\n\t<td>Juchler, I.<\/td>\n\t<td>1989 in Berlin<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/35009855\/ingo_juchler_1989_in_berlin.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Juengst2020\" class=\"entry\">\n\t<td>J\u00fcngst, H.E.<\/td>\n\t<td>Audiovisuelles \u00dcbersetzen<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38307542\/heike_e_juengst_audiovisuelles_uebersetzen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Kadri2019\" class=\"entry\">\n\t<td>Kadri&#8217;, M., Kaindl, K., Reithofer, K. and Kadric, M.<\/td>\n\t<td>Translatorische Methodik<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/35088866\/mira_kadri_klaus_kaindl_karin_reithofer_mira_kadric_translatorische_methodik.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Kadric2016\" class=\"entry\">\n\t<td>Kadric, M.<\/td>\n\t<td>Berufsziel U\u0308bersetzen und Dolmetschen Grundlagen, Ausbildung, Arbeitsfelder<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Kaestner2014\" class=\"entry\">\n\t<td>K\u00e4stner, E.<\/td>\n\t<td>Emil und die Detektive<\/td>\n\t<td>2014<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/22176644\/erich_kaestner_emil_und_die_detektive.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Kaestner2016\" class=\"entry\">\n\t<td>K\u00e4stner, E.<\/td>\n\t<td>Das fliegende Klassenzimmer<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/25067045\/erich_kaestner_das_fliegende_klassenzimmer.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Kampmann2021\" class=\"entry\">\n\t<td>Kampmann, A.<\/td>\n\t<td>Der Hund ist immer hungrig<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/39761109\/anja_kampmann_der_hund_ist_immer_hungrig.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Kapitelman2021\" class=\"entry\">\n\t<td>Kapitelman, D.<\/td>\n\t<td>Eine Formalie in Kiew<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/39761574\/dmitrij_kapitelman_eine_formalie_in_kiew.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Kautz2002\" class=\"entry\">\n\t<td>Kautz, U.<\/td>\n\t<td>Handbuch Didaktik des \u00dcbersetzens und Dolmetschens<\/td>\n\t<td>2002<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/1352803\/ulrich_kautz_handbuch_didaktik_des_uebersetzens_und_dolmetschens.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Kern2014\" class=\"entry\">\n\t<td>Kern, I.<\/td>\n\t<td>Was ist das Bauhaus?<\/td>\n\t<td>2014<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/23284843\/ingolf_kern_katja_klaus_jutta_stein_was_ist_das_bauhaus.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Kessler2008\" class=\"entry\">\n\t<td>Kessler, B.<\/td>\n\t<td>Interkulturelle Dramap\u00e4dagogik<\/td>\n\t<td>2008<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/16001313\/benedikt_kessler_interkulturelle_dramapaedagogik.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Khider2020\" class=\"entry\">\n\t<td>Khider, A.<\/td>\n\t<td>Palast der Miserablen<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/37987659\/abbas_khider_palast_der_miserablen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Kispal2017\" class=\"entry\">\n\t<td>Kisp\u00e1l, H.<\/td>\n\t<td>Langenscheidt Schreibtraining Deutsch f\u00fcr den Beruf &#8211; Deutsch als Fremdsprache<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/29086844\/helga_kispal_langenscheidt_schreibtraining_deutsch_fuer_den_beruf_deutsch_als_fremdsprache.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Kleist2016\" class=\"entry\">\n\t<td>Kleist, R.<\/td>\n\t<td>Berliner Mythen<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/25449158\/reinhard_kleist_berliner_mythen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Koch2021\" class=\"entry\">\n\t<td>Koch, A.<\/td>\n\t<td>Die Aufdr\u00e4ngung<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/40452158\/ariane_koch_die_aufdraengung.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Koehler2021\" class=\"entry\">\n\t<td>K\u00f6hler, H.<\/td>\n\t<td>G\u00f6tterfunken<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/39776600\/hannes_koehler_goetterfunken.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Koerner2020\" class=\"entry\">\n\t<td>K\u00f6rner, T.<\/td>\n\t<td>In der M\u00e4nner-Republik<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38112425\/torsten_koerner_in_der_maenner_republik.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Korte\" class=\"entry\">\n\t<td>Korte, H.<\/td>\n\t<td>Graphic Novels<\/td>\n\t<td><\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Korte2018\" class=\"entry\">\n\t<td>Korte, H.<\/td>\n\t<td>Prosa der DDR<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Koss2021\" class=\"entry\">\n\t<td>Ko\u00df, M.<\/td>\n\t<td>Demokratie ohne Mehrheit?<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/39720398\/michael_koss_demokratie_ohne_mehrheit.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Kowalczuk2019\" class=\"entry\">\n\t<td>Kowalczuk, I.-S.<\/td>\n\t<td>Die \u00dcbernahme<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/36295664\/ilko_sascha_kowalczuk_die_uebernahme.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Krankenhagen2018\" class=\"entry\">\n\t<td>Krankenhagen, S.<\/td>\n\t<td>Die Poesie des Fu\u00dfballs von Abwehrschlachten, Scho\u0308nspielern und Tikitaka<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Krug2018\" class=\"entry\">\n\t<td>Krug, C.<\/td>\n\t<td>21 Tage<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/34744393\/christian_krug_21_tage.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Kuehmel2021\" class=\"entry\">\n\t<td>K\u00fchmel, M.S.<\/td>\n\t<td>Kintsugi<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38989042\/miku_sophie_kuehmel_kintsugi.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Kuepper2017\" class=\"entry\">\n\t<td>Ku\u0308pper, M.<\/td>\n\t<td>Es war einmal ein Spiel wie der Fu\u00dfball unsere Gesellschaft beherrscht<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Kunze1980\" class=\"entry\">\n\t<td>Kunze, R.<\/td>\n\t<td>Die wunderbaren Jahre<\/td>\n\t<td>1980<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/1366701\/reiner_kunze_die_wunderbaren_jahre.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Kussmaul2014\" class=\"entry\">\n\t<td>Ku\u00dfmaul, P.<\/td>\n\t<td>Verstehen und \u00dcbersetzen<\/td>\n\t<td>2014<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/22444398\/paul_kussmaul_verstehen_und_uebersetzen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Lammert2019\" class=\"entry\">\n\t<td>Lammert, N.<\/td>\n\t<td>Demokratie braucht Demokraten<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/36030960\/norbert_lammert_demokratie_braucht_demokraten.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Lemmen2015\" class=\"entry\">\n\t<td>Lemmen, R.<\/td>\n\t<td>DaF im Unternehmen A1. Lehrerhandbuch<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/24057703\/radka_lemmen_daf_im_unternehmen_a1_lehrerhandbuch.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Lemmen2016\" class=\"entry\">\n\t<td>Lemmen, R.<\/td>\n\t<td>DaF im Unternehmen A1-A2. Lehrerhandbuch<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/25680981\/radka_lemmen_daf_im_unternehmen_a1_a2_lehrerhandbuch.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Lemmen2016a\" class=\"entry\">\n\t<td>Lemmen, R.<\/td>\n\t<td>DaF im Unternehmen A2. Lehrerhandbuch<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/25071762\/radka_lemmen_daf_im_unternehmen_a2_lehrerhandbuch.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Lemmen2017\" class=\"entry\">\n\t<td>Lemmen, R.<\/td>\n\t<td>DaF im Unternehmen B1- Lehrerhandbuch<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/26829022\/radka_lemmen_daf_im_unternehmen_b1_lehrerhandbuch.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Lemmen2017\" class=\"entry\">\n\t<td>Lemmen, R.<\/td>\n\t<td>DaF im Unternehmen B1- Lehrerhandbuch<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/26829022\/radka_lemmen_daf_im_unternehmen_b1_lehrerhandbuch.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Lemmen2017a\" class=\"entry\">\n\t<td>Lemmen, R.<\/td>\n\t<td>DaF im Unternehmen B1-B2. Lehrerhandbuch<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/28810589\/radka_lemmen_daf_im_unternehmen_b1_b2_lehrerhandbuch.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Lemmen2017b\" class=\"entry\">\n\t<td>Lemmen, R.<\/td>\n\t<td>DaF im Unternehmen B2. Lehrerhandbuch<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/28380865\/radka_lemmen_daf_im_unternehmen_b2_lehrerhandbuch.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Leo2021\" class=\"entry\">\n\t<td>Leo, P.<\/td>\n\t<td>Tr\u00e4nen ohne Trauer<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/40488212\/per_leo_traenen_ohne_trauer.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Lepper2020\" class=\"entry\">\n\t<td>Lepper, M., Schadewaldt, A.M., Lamp, C., Ingold, J. and Parpart, S.<\/td>\n\t<td>Literaturtheorie nach 2001<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/37940655\/marcel_lepper_annika_m_schadewaldt_christian_lamp_julia_ingold_soenke_parpart_literaturtheorie_nach_2001.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Loeffler2013\" class=\"entry\">\n\t<td>Lo\u0308ffler, K.<\/td>\n\t<td>Der &#8220;neue Mensch&#8221; : ein ideologisches Leitbild der fru\u0308hen DDR-Literatur und sein Kontext<\/td>\n\t<td>2013<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Loest1992\" class=\"entry\">\n\t<td>Loest, E.<\/td>\n\t<td>Der elfte Mann : Roman<\/td>\n\t<td>1992<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Loschuetz2021\" class=\"entry\">\n\t<td>Losch\u00fctz, G.<\/td>\n\t<td>Besichtigung eines Ungl\u00fccks<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/40649185\/gert_loschuetz_besichtigung_eines_ungluecks.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Loth2020\" class=\"entry\">\n\t<td>Loth, W.<\/td>\n\t<td>Europas Einigung<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38899559\/wilfried_loth_europas_einigung.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"LucasVogelsang2020\" class=\"entry\">\n\t<td>Vogelsang, L.u.J.K.<\/td>\n\t<td>Was wollen die denn hier?<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/39076287\/lucas_vogelsang_joachim_krol_was_wollen_die_denn_hier.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Luger2015\" class=\"entry\">\n\t<td>Luger, U.<\/td>\n\t<td>Die Bremer Stadtmusikanten, Rotka\u0308ppchen und Aschenputtel<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"LundquistMog2020\" class=\"entry\">\n\t<td>Lundquist-Mog, A.<\/td>\n\t<td>55 Landeskunde-Spiele<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38490927\/angelika_lundquist_mog_55_landeskunde_spiele.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Lutes2019\" class=\"entry\">\n\t<td>Lutes, J.<\/td>\n\t<td>Berlin: Berlin Gesamtausgabe<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/32989708\/jason_lutes_berlin_berlin_gesamtausgabe.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Maehlert2019\" class=\"entry\">\n\t<td>Ma\u0308hlert, U.<\/td>\n\t<td>Von der Friedlichen Revolution zur Deutschen Einheit = From Peaceful Revolution to German Unity<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"MagdalenaDroste2019\" class=\"entry\">\n\t<td>Droste, M.<\/td>\n\t<td>Unser Bauhaus &#8211; Bauh\u00e4usler und Freunde erinnern sich<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/34801617\/magdalena_droste_boris_friedewald_unser_bauhaus_bauhaeusler_und_freunde_erinnern_sich.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Mai2018\" class=\"entry\">\n\t<td>Mai, G.<\/td>\n\t<td>Die Weimarer Republik<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/33023507\/gunther_mai_die_weimarer_republik.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Mak2020\" class=\"entry\">\n\t<td>Mak, G.<\/td>\n\t<td>Gro\u00dfe Erwartungen<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38858474\/geert_mak_grosse_erwartungen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"MarionDoebert2016\" class=\"entry\">\n\t<td>D\u00f6bert, M.<\/td>\n\t<td>Im Juli<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/26288985\/marion_doebert_doebert_marion_im_juli.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Marx2018\" class=\"entry\">\n\t<td>Marx, K.<\/td>\n\t<td>Es kommt darauf an, die Welt zu vera\u0308ndern ein Karl-Marx-Lesebuch<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Marx2020\" class=\"entry\">\n\t<td>Marx, C.<\/td>\n\t<td>101 x Politik<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/39014613\/christoph_marx_101_x_politik.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"MatteoMastragostino2019\" class=\"entry\">\n\t<td>Mastragostino, M. and Ranghiasci, A.<\/td>\n\t<td>Primo Levi<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/35194425\/matteo_mastragostino_alessandro_ranghiasci_primo_levi.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Mau2020\" class=\"entry\">\n\t<td>Mau, S.<\/td>\n\t<td>L\u00fctten Klein<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38828154\/steffen_mau_luetten_klein.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Mawil2005\" class=\"entry\">\n\t<td>Mawil<\/td>\n\t<td>Wir k\u00f6nnen ja Freunde bleiben<\/td>\n\t<td>2005<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/3523624\/mawil_wir_koennen_ja_freunde_bleiben.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Mawil2014\" class=\"entry\">\n\t<td>Mawil<\/td>\n\t<td>Kinderland<\/td>\n\t<td>2014<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/21896620\/mawil_kinderland.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Meiners2014\" class=\"entry\">\n\t<td>Meiners, A., Hamm-Br\u00fccher, H., Lange, G. and Maron, H.<\/td>\n\t<td>Wir haben wieder aufgebaut: Frauen der Stunde null erz\u00e4hlen<\/td>\n\t<td>2014<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/22422399\/antonia_meiners_hildegard_hamm_bruecher_gisela_lange_hella_maron_wir_haben_wieder_aufgebaut_frauen_der_stunde_null_erzaehlen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Menasse2018\" class=\"entry\">\n\t<td>Menasse, R.-3.-15.-020618.-8.<\/td>\n\t<td>Die Hauptstadt<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/32940564\/robert_menasse_die_hauptstadt.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Mentzel2019\" class=\"entry\">\n\t<td>Mentzel, B.<\/td>\n\t<td>Deutschlands Welterbe eine Reise zu allen UNESCO-Sta\u0308tten<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Metz2020\" class=\"entry\">\n\t<td>Metz, A.<\/td>\n\t<td>Ost Places<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/36968023\/andreas_metz_ost_places.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Meurer2018\" class=\"entry\">\n\t<td>Meurer, A.<\/td>\n\t<td>Bauhaus Spiel- und Bastelbuch<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/32603713\/alfred_meurer_bauhaus_spiel_und_bastelbuch.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Meuser2019\" class=\"entry\">\n\t<td>Meuser, N.<\/td>\n\t<td>To\u0308rten : Kriminalgeschichten aus einer Bauhaus-Siedlung<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"MichaelaSambanis2019\" class=\"entry\">\n\t<td>Michaela Sambanis, M.W.<\/td>\n\t<td>In Motion &#8211; Theaterimpulse zum Sprachenlernen<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/34881407\/michaela_sambanis_maik_walter_in_motion_theaterimpulse_zum_sprachenlernen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Michel2017\" class=\"entry\">\n\t<td>Michel, H.<\/td>\n\t<td>Das bunte Spielzeugdorf<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/28815776\/horst_michel_das_bunte_spielzeugdorf.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Mieg2017\" class=\"entry\">\n\t<td>Mieg, H.<\/td>\n\t<td>Forschendes Lernen wie die Lehre in Universita\u0308t und Fachhochschule erneuert werden kann<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Modan2013\" class=\"entry\">\n\t<td>Modan, R.<\/td>\n\t<td>Das Erbe<\/td>\n\t<td>2013<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/19967839\/rutu_modan_das_erbe.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Moellers2019\" class=\"entry\">\n\t<td>M\u00f6llers, C.<\/td>\n\t<td>Das Grundgesetz<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/34822554\/christoph_moellers_das_grundgesetz.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Mohr2010\" class=\"entry\">\n\t<td>Mohr, M.<\/td>\n\t<td>Till Eulenspiegel<\/td>\n\t<td>2010<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/12756744\/marion_mohr_till_eulenspiegel.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Morgner2017\" class=\"entry\">\n\t<td>Morgner, I.<\/td>\n\t<td>Leben und Abenteuer der Trobadora Beatriz nach Zeugnissen ihrer Spielfrau Laura<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/28961260\/irmtraud_morgner_leben_und_abenteuer_der_trobadora_beatriz_nach_zeugnissen_ihrer_spielfrau_laura.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Morsey2007\" class=\"entry\">\n\t<td>Morsey, R.<\/td>\n\t<td>Die Bundesrepublik Deutschland Entstehung und Entwicklung bis 1969<\/td>\n\t<td>2007<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Mueller2014\" class=\"entry\">\n\t<td>M\u00fcller, U.<\/td>\n\t<td>Bauhaus-Frauen<\/td>\n\t<td>2014<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/20670311\/ulrike_mueller_bauhaus_frauen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Muenkler2010\" class=\"entry\">\n\t<td>M\u00fcnkler, H.<\/td>\n\t<td>Die Deutschen und ihre Mythen<\/td>\n\t<td>2010<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/9422050\/herfried_muenkler_die_deutschen_und_ihre_mythen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Muenkler2021\" class=\"entry\">\n\t<td>M\u00fcnkler, H.<\/td>\n\t<td>Marx, Wagner, Nietzsche<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/39898355\/herfried_muenkler_marx_wagner_nietzsche.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Muscheler2016\" class=\"entry\">\n\t<td>Muscheler, U.<\/td>\n\t<td>Das rote Bauhaus<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/26128670\/ursula_muscheler_das_rote_bauhaus.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Nagelschmidt2020\" class=\"entry\">\n\t<td>Nagelschmidt, T.<\/td>\n\t<td>Arbeit<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38030085\/thorsten_nagelschmidt_arbeit.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Nast2019\" class=\"entry\">\n\t<td>Nast, M.<\/td>\n\t<td>Vom Sinn unseres Lebens<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/36439846\/michael_nast_vom_sinn_unseres_lebens.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Neffe2017\" class=\"entry\">\n\t<td>Neffe, J.<\/td>\n\t<td>Marx. Der Unvollendete<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/28960871\/juergen_neffe_marx_der_unvollendete.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Nichelmann2019\" class=\"entry\">\n\t<td>Nichelmann, J.<\/td>\n\t<td>Nachwendekinder<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/36578110\/johannes_nichelmann_nachwendekinder.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Niebisch2019\" class=\"entry\">\n\t<td>Niebisch, D.<\/td>\n\t<td>Deutsch \u00fcben. Phonetik &#8211; \u00dcbungen und Tipps f\u00fcr eine gute Aussprache A1<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/36059405\/daniela_niebisch_deutsch_ueben_phonetik_uebungen_und_tipps_fuer_eine_gute_aussprache_a1.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Niebisch2020\" class=\"entry\">\n\t<td>Niebisch, D.<\/td>\n\t<td>Deutsch \u00fcben. Phonetik &#8211; \u00dcbungen und Tipps f\u00fcr eine gute Aussprache A2<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38085011\/daniela_niebisch_deutsch_ueben_phonetik_uebungen_und_tipps_fuer_eine_gute_aussprache_a2.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Niebisch2020a\" class=\"entry\">\n\t<td>Niebisch, D.<\/td>\n\t<td>Deutsch \u00fcben- Phonetik &#8211; \u00dcbungen und Tipps f\u00fcr eine gute Aussprache B1<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38843663\/daniela_niebisch_deutsch_ueben_phonetik_uebungen_und_tipps_fuer_eine_gute_aussprache_b1.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Nielsen2016\" class=\"entry\">\n\t<td>Nielsen, M.<\/td>\n\t<td>Mission im Weltall<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/25351183\/maja_nielsen_mission_im_weltall.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Nord2010\" class=\"entry\">\n\t<td>Nord, C.<\/td>\n\t<td>Fertigkeit U\u0308bersetzen ein Kurs zum U\u0308bersetzenlehren und -lernen<\/td>\n\t<td>2010<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Oelschlaeger2017\" class=\"entry\">\n\t<td>Oelschla\u0308ger, B.<\/td>\n\t<td>Bu\u0308hne frei fu\u0308r Deutsch! das Theaterhandbuch fu\u0308r Deutsch als Fremdsprache<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Oezdamar2021\" class=\"entry\">\n\t<td>\u00d6zdamar, E.S.<\/td>\n\t<td>Ein von Schatten begrenzter Raum<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/40451454\/emine_sevgi_oezdamar_ein_von_schatten_begrenzter_raum.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Ogiermann2017\" class=\"entry\">\n\t<td>Ogiermann, J.<\/td>\n\t<td>Der Reichstag vom Parlament des Kaiserreichs zum Symbol der Berliner Republik<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Ohde2020\" class=\"entry\">\n\t<td>Ohde, D.<\/td>\n\t<td>Streulicht<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38826725\/deniz_ohde_streulicht.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Ostheimer2018\" class=\"entry\">\n\t<td>Ostheimer, M.<\/td>\n\t<td>Leseland : Chronotopographie der DDR- und Post-DDR-Literatur<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Othmann2020\" class=\"entry\">\n\t<td>Othmann, R.<\/td>\n\t<td>Die Sommer<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38828749\/ronya_othmann_die_sommer.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Otoo2021\" class=\"entry\">\n\t<td>Otoo, S.D.<\/td>\n\t<td>Adas Raum<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/39814263\/sharon_dodua_otoo_adas_raum.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Ott2017\" class=\"entry\">\n\t<td>Ott, F.<\/td>\n\t<td>Langenscheidt \u00dcbungsbuch Deutsch f\u00fcr den Beruf &#8211; Deutsch als Fremdsprache f\u00fcr Anf\u00e4nger<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/29082451\/friederike_ott_langenscheidt_uebungsbuch_deutsch_fuer_den_beruf_deutsch_als_fremdsprache_fuer_anfaenger.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Peters2020\" class=\"entry\">\n\t<td>Peters, C.<\/td>\n\t<td>Dorfroman<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38857738\/christoph_peters_dorfroman.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"PetraA.Arndt2017\" class=\"entry\">\n\t<td>Arndt, P.A. and Sambanis, M.<\/td>\n\t<td>Didaktik und Neurowissenschaften<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/29525856\/petra_a_arndt_michaela_sambanis_didaktik_und_neurowissenschaften.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Plenzdorf1981\" class=\"entry\">\n\t<td>Plenzdorf, U.<\/td>\n\t<td>Legende vom Gl\u00fcck ohne Ende<\/td>\n\t<td>1981<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/1414106\/ulrich_plenzdorf_legende_vom_glueck_ohne_ende.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Poechhacker2000\" class=\"entry\">\n\t<td>Po\u0308chhacker, F.<\/td>\n\t<td>Dolmetschen : konzeptuelle Grundlagen und deskriptive Untersuchungen<\/td>\n\t<td>2000<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Poschmann2020\" class=\"entry\">\n\t<td>Poschmann, M.<\/td>\n\t<td>Nimbus<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/37998018\/marion_poschmann_nimbus.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Preussler2018\" class=\"entry\">\n\t<td>Preu\u00dfler, O.<\/td>\n\t<td>Krabat<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/30296975\/otfried_preussler_krabat.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Prunc2018\" class=\"entry\">\n\t<td>Prunc, E.<\/td>\n\t<td>Entwicklungslinien der Translationswissenschaft<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/18692117\/erich_prunc_entwicklungslinien_der_translationswissenschaft.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Rabe2019\" class=\"entry\">\n\t<td>Rabe, W.<\/td>\n\t<td>Die Macht der Frauen<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/35618717\/wilfried_rabe_die_macht_der_frauen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Randt2020\" class=\"entry\">\n\t<td>Randt, L.<\/td>\n\t<td>Allegro Pastell<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38110410\/leif_randt_allegro_pastell.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Redelings2008\" class=\"entry\">\n\t<td>Redelings, B.<\/td>\n\t<td>Fu\u00dfball ist nicht das Wichtigste im Leben &#8230; es ist das Einzige<\/td>\n\t<td>2008<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Redelings2016\" class=\"entry\">\n\t<td>Redelings, B.<\/td>\n\t<td>Als die Axt den Toaster warf<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/26151724\/ben_redelings_als_die_axt_den_toaster_warf.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Redelings2017\" class=\"entry\">\n\t<td>Redelings, B.<\/td>\n\t<td>55 Jahre Bundesliga &#8211; das Jubil\u00e4umsalbum<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/28125606\/ben_redelings_55_jahre_bundesliga_das_jubilaeumsalbum.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Regener2021\" class=\"entry\">\n\t<td>Regener, S.<\/td>\n\t<td>Glitterschnitter<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/40796397\/sven_regener_glitterschnitter.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Reisinger2021\" class=\"entry\">\n\t<td>Reisinger, J.<\/td>\n\t<td>Spitzenreiterinnen<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/40013025\/jovana_reisinger_spitzenreiterinnen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Ribeiro2020\" class=\"entry\">\n\t<td>Ribeiro, L., Rodrigues, A., Desgualdo, P. and Markun, P.<\/td>\n\t<td>Im Dschungel wird gew\u00e4hlt<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38857440\/larissa_ribeiro_andre_rodrigues_paula_desgualdo_pedro_markun_im_dschungel_wird_gewaehlt.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Rinke2012\" class=\"entry\">\n\t<td>Rinke, M.<\/td>\n\t<td>Also sprach Metzelder zu Mertesacker &#8211; : lauter Liebeserkla\u0308rungen an den Fussball<\/td>\n\t<td>2012<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Roedder2020\" class=\"entry\">\n\t<td>R\u00f6dder, A.<\/td>\n\t<td>Geschichte der deutschen Wiedervereinigung<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38155533\/andreas_roedder_geschichte_der_deutschen_wiedervereinigung.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Roehl2018\" class=\"entry\">\n\t<td>R\u00f6hl, B.<\/td>\n\t<td>&#8220;Die RAF hat euch lieb&#8221;<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/30744799\/bettina_roehl_die_raf_hat_euch_lieb.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Roesler2012\" class=\"entry\">\n\t<td>R\u00f6sler, D.<\/td>\n\t<td>Deutsch als Fremdsprache<\/td>\n\t<td>2012<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/14916384\/dietmar_roesler_deutsch_als_fremdsprache.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Roessler2018\" class=\"entry\">\n\t<td>R\u00f6ssler, P.<\/td>\n\t<td>Neue Typografien \/ New Typographies<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/33027920\/patrick_roessler_neue_typografien_new_typographies.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Rohrmann2010\" class=\"entry\">\n\t<td>Rohrmann, L., Koenig, M. and Funk, H.<\/td>\n\t<td>Kompaktgrammatik. Lernerhandbuch. Europ\u00e4ischer Referenzrahmen: A1-B1. Deutsche Grammatik<\/td>\n\t<td>2010<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/9637687\/lutz_rohrmann_michael_koenig_hermann_funk_kompaktgrammatik_lernerhandbuch_europaeischer_referenzrahmen_a1_b1_deutsche_grammatik.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"RolfArnold2016\" class=\"entry\">\n\t<td>Arnold, J. and ohn Erpenbeck<\/td>\n\t<td>Wissen ist keine Kompetenz<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/22039070\/rolf_arnold_john_erpenbeck_wissen_ist_keine_kompetenz.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"RomyJaster2019\" class=\"entry\">\n\t<td>Jaster, R.<\/td>\n\t<td>Die Wahrheit schafft sich ab<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/34920890\/romy_jaster_david_lanius_die_wahrheit_schafft_sich_ab.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"RudolfDenk2017\" class=\"entry\">\n\t<td>Denk, R.<\/td>\n\t<td>Dramen- und Theaterdidaktik<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/28227833\/rudolf_denk_thomas_moebius_dramen_und_theaterdidaktik.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Salzmann2021\" class=\"entry\">\n\t<td>Salzmann, S.M.<\/td>\n\t<td>Im Menschen muss alles herrlich sein<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/40452169\/sasha_marianna_salzmann_im_menschen_muss_alles_herrlich_sein.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Sander2016\" class=\"entry\">\n\t<td>Sander, I.<\/td>\n\t<td>DaF im Unternehmen A1\/A2n[4], 4 Audio-CDs + DVD zum Kurs- und U\u0308bungsbuch A1\/A2<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Sander2019\" class=\"entry\">\n\t<td>Sander, G.<\/td>\n\t<td>Alles richtig gemacht<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/36013565\/gregor_sander_alles_richtig_gemacht.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Sandig2020\" class=\"entry\">\n\t<td>Sandig, U.A.<\/td>\n\t<td>Monster wie wir<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/39025469\/ulrike_almut_sandig_monster_wie_wir.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Sanyal2021\" class=\"entry\">\n\t<td>Sanyal, M.M.<\/td>\n\t<td>Identitti<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/39761078\/mithu_m_sanyal_identitti.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"SarahKirsch2019\" class=\"entry\">\n\t<td>Kirsch, S. and Wolf, C.<\/td>\n\t<td>\u00bbWir haben uns wirklich an allerhand gew\u00f6hnt\u00ab<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/36328260\/sarah_kirsch_christa_wolf_wir_haben_uns_wirklich_an_allerhand_gewoehnt.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"SasaStanisic2016\" class=\"entry\">\n\t<td>Sa\u0161a Stani\u0161ic, S.S.<\/td>\n\t<td>Fallensteller<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/25512066\/sa_a_stani_ic_sasa_stanisic_fallensteller.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Satrapi2021\" class=\"entry\">\n\t<td>Satrapi, M.<\/td>\n\t<td>Persepolis<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/40086306\/marjane_satrapi_persepolis.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Schachinger2019\" class=\"entry\">\n\t<td>Schachinger, T.<\/td>\n\t<td>Nicht wie ihr<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/36769232\/tonio_schachinger_nicht_wie_ihr.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Schiller2015\" class=\"entry\">\n\t<td>Schiller, F.<\/td>\n\t<td>Die R\u00e4uber<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/23866442\/friedrich_schiller_die_raeuber.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Schirach2020\" class=\"entry\">\n\t<td>von Schirach, F.<\/td>\n\t<td>GOTT<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38111115\/ferdinand_von_schirach_gott.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Schlueter2018\" class=\"entry\">\n\t<td>Schl\u00fcter, S.<\/td>\n\t<td>Menschen im Beruf &#8211; Training Besprechen und Pr\u00e4sentieren<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/31871694\/sabine_schlueter_menschen_im_beruf_training_besprechen_und_praesentieren.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Schlueter2019\" class=\"entry\">\n\t<td>Schl\u00fcter, S.<\/td>\n\t<td>Im Beruf NEU B2+\/C1<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/37247517\/sabine_schlueter_im_beruf_neu_b2_c1.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Schlueter2019a\" class=\"entry\">\n\t<td>Schl\u00fcter, S.<\/td>\n\t<td>Im Beruf NEU B2+\/C1<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/37916944\/sabine_schlueter_im_beruf_neu_b2_c1.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Schmidt2021\" class=\"entry\">\n\t<td>Schmidt, M.G.<\/td>\n\t<td>Das politische System Deutschlands<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38825895\/manfred_g_schmidt_das_politische_system_deutschlands.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Schneider2011\" class=\"entry\">\n\t<td>Schneider, W.<\/td>\n\t<td>Theater und Migration : Herausforderungen fu\u0308r Kulturpolitik und Theaterpraxis<\/td>\n\t<td>2011<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Schneider2020\" class=\"entry\">\n\t<td>Schneider, L.<\/td>\n\t<td>Made in China<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38307538\/lea_schneider_made_in_china.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Schoch2018\" class=\"entry\">\n\t<td>Schoch, J.<\/td>\n\t<td>Sch\u00f6ne Seelen und Komplizen<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/28934427\/julia_schoch_schoene_seelen_und_komplizen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Schubert2021\" class=\"entry\">\n\t<td>Schubert, H.<\/td>\n\t<td>Vom Aufstehen<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/39843166\/helga_schubert_vom_aufstehen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Schulze2020\" class=\"entry\">\n\t<td>Schulze, I.<\/td>\n\t<td>Die rechtschaffenen M\u00f6rder<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38030523\/ingo_schulze_die_rechtschaffenen_moerder.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Schwartz2009\" class=\"entry\">\n\t<td>Schwartz, S.<\/td>\n\t<td>dr\u00fcben!<\/td>\n\t<td>2009<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/8603566\/simon_schwartz_drueben.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Schwartz2019\" class=\"entry\">\n\t<td>Schwartz, S.<\/td>\n\t<td>Das Parlament<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/35031768\/simon_schwartz_das_parlament.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Schwochow2017\" class=\"entry\">\n\t<td>Schwochow, J.<\/td>\n\t<td>100 +1 Fakten &#8211; Das muss jeder Fu\u00dfballfan wissen<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Seghers2018\" class=\"entry\">\n\t<td>Seghers, A.<\/td>\n\t<td>Das siebte Kreuz<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/32369889\/anna_seghers_das_siebte_kreuz.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Seiffarth2003\" class=\"entry\">\n\t<td>Seiffarth, A.<\/td>\n\t<td>Die Verwandlung<\/td>\n\t<td>2003<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Seiffert2016\" class=\"entry\">\n\t<td>Seiffert, C.<\/td>\n\t<td>Schreiben in Alltag und Beruf Intensivtrainer NEU A2\/B1<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/25254820\/christian_seiffert_schreiben_in_alltag_und_beruf_intensivtrainer_neu_a2_b1.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Seiler2020\" class=\"entry\">\n\t<td>Seiler, L.<\/td>\n\t<td>Stern 111<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/37998589\/lutz_seiler_stern_111.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Setz2020\" class=\"entry\">\n\t<td>Setz, C.J.<\/td>\n\t<td>Die Bienen und das Unsichtbare<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38826497\/clemens_j_setz_die_bienen_und_das_unsichtbare.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Showghi2021\" class=\"entry\">\n\t<td>Showghi, F.<\/td>\n\t<td>Anlegestellen f\u00fcr Helligkeiten<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/41019572\/farhad_showghi_anlegestellen_fuer_helligkeiten.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Siemes2014\" class=\"entry\">\n\t<td>Siemes, C.<\/td>\n\t<td>Das Wunder von Bern<\/td>\n\t<td>2014<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/23288467\/christof_siemes_das_wunder_von_bern.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Siever2015\" class=\"entry\">\n\t<td>Siever, H.<\/td>\n\t<td>U\u0308bersetzungswissenschaft eine Einfu\u0308hrung<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Simms2016\" class=\"entry\">\n\t<td>Simms, B.<\/td>\n\t<td>Kampf um Vorherrschaft<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/25409475\/brendan_simms_kampf_um_vorherrschaft.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Simon2021\" class=\"entry\">\n\t<td>Simon, J.<\/td>\n\t<td>Unter Druck<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/39814161\/jana_simon_unter_druck.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Simrock2015\" class=\"entry\">\n\t<td>Simrock, K.<\/td>\n\t<td>Deutsche Sprichw\u00f6rter<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/23456464\/karl_simrock_deutsche_sprichwoerter.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"SnellHornby2006\" class=\"entry\">\n\t<td>Snell-Hornby, M., H\u00f6nig, H.G., Kussmaul, P. and Schmitt, P.A.<\/td>\n\t<td>Handbuch Translation<\/td>\n\t<td>2006<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/1328672\/mary_snell_hornby_hans_g_hoenig_paul_kussmaul_peter_a_schmitt_handbuch_translation.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Soupault2018\" class=\"entry\">\n\t<td>Soupault, R.<\/td>\n\t<td>Nur das Geistige z\u00e4hlt<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/31006026\/re_soupault_nur_das_geistige_zaehlt.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Sparr2020\" class=\"entry\">\n\t<td>Sparr, T.<\/td>\n\t<td>Todesfuge &#8211; Biographie eines Gedichts<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38111666\/thomas_sparr_todesfuge_biographie_eines_gedichts.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Spiegelman2012\" class=\"entry\">\n\t<td>Spiegelman, A.<\/td>\n\t<td>Maus<\/td>\n\t<td>2012<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/7057895\/art_spiegelman_maus.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Sreter2018\" class=\"entry\">\n\t<td>Sre\u0301ter, W.<\/td>\n\t<td>Milenas Erben<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Stallmann2017\" class=\"entry\">\n\t<td>Stallmann, M.<\/td>\n\t<td>Die Erfindung von &#8220;1968&#8221; der studentische Protest im bundesdeutschen Fernsehen 1977-1998<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Steidele2018\" class=\"entry\">\n\t<td>Steidele, A.<\/td>\n\t<td>Zeitreisen<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/33043655\/angela_steidele_zeitreisen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Stein2018\" class=\"entry\">\n\t<td>Stein, J.<\/td>\n\t<td>Die Bauhaus-Stadt<\/td>\n\t<td>2018978-3-86502-351-3<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/33028577\/ingolf_kern_die_bauhaus_stadt.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Stelter2021\" class=\"entry\">\n\t<td>Stelter, D.<\/td>\n\t<td>Ein Traum von einem Land: Deutschland 2040<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/39873525\/daniel_stelter_ein_traum_von_einem_land_deutschland_2040.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"StevenLevitsky2019\" class=\"entry\">\n\t<td>Steven Levitsky, D.Z.<\/td>\n\t<td>Wie Demokratien sterben<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/36004573\/steven_levitsky_daniel_ziblatt_wie_demokratien_sterben.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Stolze2009\" class=\"entry\">\n\t<td>Stolze, R.<\/td>\n\t<td>Fachu\u0308bersetzen &#8211; ein Lehrbuch fu\u0308r Theorie und Praxis<\/td>\n\t<td>2009<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Stolze2016\" class=\"entry\">\n\t<td>Stolze, R.<\/td>\n\t<td>U\u0308bersetzungstheorien<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Storm2007\" class=\"entry\">\n\t<td>Storm, T.<\/td>\n\t<td>Der Schimmelreiter<\/td>\n\t<td>2007<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/7368665\/theodor_storm_der_schimmelreiter.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Strasser2018\" class=\"entry\">\n\t<td>Stra\u00dfer, J.<\/td>\n\t<td>50 Bauhaus-Ikonen, die man kennen sollte<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/32953835\/josef_strasser_50_bauhaus_ikonen_die_man_kennen_sollte.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Streisand2019\" class=\"entry\">\n\t<td>Streisand, L.<\/td>\n\t<td>Hufeland, Ecke B\u00f6tzow<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/36577852\/lea_streisand_hufeland_ecke_boetzow.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Strittmatter2009\" class=\"entry\">\n\t<td>Strittmatter, E.<\/td>\n\t<td>Ole Bienkopp<\/td>\n\t<td>2009<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/7975763\/erwin_strittmatter_ole_bienkopp.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Strittmatter2015\" class=\"entry\">\n\t<td>Strittmatter, E.<\/td>\n\t<td>S\u00e4mtliche Gedichte<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/24298285\/eva_strittmatter_saemtliche_gedichte.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Strubel2021\" class=\"entry\">\n\t<td>Strubel, A.R.<\/td>\n\t<td>Blaue Frau<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/40649456\/antje_ravik_strubel_blaue_frau.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Tadsen2017\" class=\"entry\">\n\t<td>Tadsen, W.N.<\/td>\n\t<td>Anreizsysteme f\u00fcr Professorinnen und Professoren an Universit\u00e4ten<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/28944347\/woegen_n_tadsen_anreizsysteme_fuer_professorinnen_und_professoren_an_universitaeten.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Theis2021\" class=\"entry\">\n\t<td>Theis, K.<\/td>\n\t<td>Ergebnisbilder im Politikunterricht<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/40017393\/karl_theis_ergebnisbilder_im_politikunterricht.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Ther2019\" class=\"entry\">\n\t<td>Ther, P.<\/td>\n\t<td>Das andere Ende der Geschichte<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/36328912\/philipp_ther_das_andere_ende_der_geschichte.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Thoma2013\" class=\"entry\">\n\t<td>Thoma, L.<\/td>\n\t<td>Der Taubenf\u00fctterer und andere Geschichten<\/td>\n\t<td>2013<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/7498977\/leonhard_thoma_der_taubenfuetterer_und_andere_geschichten.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"ThomasHenseler2012\" class=\"entry\">\n\t<td>Buddenberg, S. and Thomas Henseler<\/td>\n\t<td>Berlin &#8211; Geteilte Stadt<\/td>\n\t<td>2012<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/19144122\/thomas_henseler_susanne_buddenberg_berlin_geteilte_stadt.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Timm1998\" class=\"entry\">\n\t<td>Timm, U.<\/td>\n\t<td>Hei\u00dfer Sommer<\/td>\n\t<td>1998<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/1463543\/uwe_timm_heisser_sommer.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Timm2015\" class=\"entry\">\n\t<td>Timm, U.<\/td>\n\t<td>Die Entdeckung der Currywurst<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/23801563\/uwe_timm_die_entdeckung_der_currywurst.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Tolan2018\" class=\"entry\">\n\t<td>Tolan, M.<\/td>\n\t<td>Manchmal gewinnt der Bessere<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/30427353\/metin_tolan_manchmal_gewinnt_der_bessere.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Tucholsky2018\" class=\"entry\">\n\t<td>Tucholsky, K.<\/td>\n\t<td>Schloss Gripsholm. Mit Audio via ELI Link-App<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/32059506\/kurt_tucholsky_schloss_gripsholm_mit_audio_via_eli_link_app.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"UlfAbraham2016\" class=\"entry\">\n\t<td>Abraham, U. and Sowa, H.<\/td>\n\t<td>Bild und Text im Unterricht<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/25325439\/ulf_abraham_hubert_sowa_bild_und_text_im_unterricht.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Unruh2004\" class=\"entry\">\n\t<td>Unruh, P.<\/td>\n\t<td>Weimarer Staatsrechtslehre und Grundgesetz.<\/td>\n\t<td>2004<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/9646646\/peter_unruh_weimarer_staatsrechtslehre_und_grundgesetz.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"ValeskaHagner2017\" class=\"entry\">\n\t<td>Hagner, V. and Schl\u00fcter, S.<\/td>\n\t<td>Im Beruf NEU B1+\/B2. Arbeitsbuch<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/30304252\/valeska_hagner_sabine_schlueter_im_beruf_neu_b1_b2_arbeitsbuch.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Vlcek2019\" class=\"entry\">\n\t<td>Vlcek, R.<\/td>\n\t<td>Workshop Improvisationstheater<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/1471474\/radim_vlcek_workshop_improvisationstheater.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Wachsmann2018\" class=\"entry\">\n\t<td>Wachsmann, C.<\/td>\n\t<td>Vom Bauhaus befl\u00fcgelt<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/33022532\/christiane_wachsmann_vom_bauhaus_befluegelt.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Wander2019\" class=\"entry\">\n\t<td>Wander, M.<\/td>\n\t<td>Guten Morgen, du Sch\u00f6ne<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/36329691\/maxie_wander_guten_morgen_du_schoene.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Warneken2018\" class=\"entry\">\n\t<td>Warneken, B.<\/td>\n\t<td>Mein 68 begann 65 eine Tu\u0308binger Retrospektive<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Weber2020\" class=\"entry\">\n\t<td>Weber, A.<\/td>\n\t<td>Annette, ein Heldinnenepos<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38470678\/anne_weber_annette_ein_heldinnenepos.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Weidenfeld2020\" class=\"entry\">\n\t<td>Weidenfeld, W.<\/td>\n\t<td>Die Europa\u0308ische Union<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Wenzel2020\" class=\"entry\">\n\t<td>Wenzel, O.<\/td>\n\t<td>1000 Serpentinen Angst<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38052791\/olivia_wenzel_1000_serpentinen_angst.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Wertheimer2020\" class=\"entry\">\n\t<td>Wertheimer, J.<\/td>\n\t<td>Europa &#8211; eine Geschichte seiner Kulturen<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38110392\/juergen_wertheimer_europa_eine_geschichte_seiner_kulturen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Weyhe2013\" class=\"entry\">\n\t<td>Weyhe, B.<\/td>\n\t<td>Im Himmel ist Jahrmarkt<\/td>\n\t<td>2013<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/20053931\/birgit_weyhe_im_himmel_ist_jahrmarkt.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Weyhe2016\" class=\"entry\">\n\t<td>Weyhe, B.<\/td>\n\t<td>Madgermanes<\/td>\n\t<td>2016<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/25542980\/birgit_weyhe_madgermanes.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Wichert2017\" class=\"entry\">\n\t<td>Wichert, S.<\/td>\n\t<td>The Germans : Stil und Ikonen einer Nation<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"WilfriedRabe2021\" class=\"entry\">\n\t<td>Rabe, W.<\/td>\n\t<td>Gender und die Gleichberechtigung<\/td>\n\t<td>2021<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/40160820\/wilfried_rabe_wilfried_dr_rabe_gender_und_die_gleichberechtigung.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Winkler2017\" class=\"entry\">\n\t<td>Winkler, H.A.<\/td>\n\t<td>Zerbricht der Westen?<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/28902192\/heinrich_august_winkler_zerbricht_der_westen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Winkler2018\" class=\"entry\">\n\t<td>Winkler, H.A.<\/td>\n\t<td>Weimar 1918-1933<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/32603881\/heinrich_august_winkler_weimar_1918_1933.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Wirsching2008\" class=\"entry\">\n\t<td>Wirsching, A.<\/td>\n\t<td>Die Weimarer Republik<\/td>\n\t<td>2008<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/7519665\/andreas_wirsching_die_weimarer_republik.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Wolf2009\" class=\"entry\">\n\t<td>Wolf, C.<\/td>\n\t<td>St\u00f6rfall<\/td>\n\t<td>2009<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/7961690\/christa_wolf_stoerfall.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Wolff2017\" class=\"entry\">\n\t<td>Wolff, N.<\/td>\n\t<td>Basiswissen Grundgesetz Grundrechte und politische Ordnung in Deutschland<\/td>\n\t<td>2017<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Wolff2019\" class=\"entry\">\n\t<td>Wolff, F.<\/td>\n\t<td>Die Mauergesellschaft<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/36328766\/frank_wolff_die_mauergesellschaft.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Wolff2020\" class=\"entry\">\n\t<td>Wolff, L.<\/td>\n\t<td>Von Warmduschern, Kettenretournierern und Giftzwergen<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38304561\/leo_wolff_von_warmduschern_kettenretournierern_und_giftzwergen.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Wolfrum2020\" class=\"entry\">\n\t<td>Wolfrum, E.<\/td>\n\t<td>Der Aufsteiger<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/37996433\/edgar_wolfrum_der_aufsteiger.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Woodfin2011\" class=\"entry\">\n\t<td>Woodfin, R.<\/td>\n\t<td>Marxismus<\/td>\n\t<td>2011<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/13735650\/rupert_woodfin_marxismus.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Wunnicke2020\" class=\"entry\">\n\t<td>Wunnicke, C.<\/td>\n\t<td>Die Dame mit der bemalten Hand<\/td>\n\t<td>2020<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/38932521\/christine_wunnicke_die_dame_mit_der_bemalten_hand.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Zejn2018\" class=\"entry\">\n\t<td>Zejn, J.<\/td>\n\t<td>Drei Wege<\/td>\n\t<td>2018<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/33056339\/julia_zejn_drei_wege.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Zimmerman2015\" class=\"entry\">\n\t<td>Zimmerman, C.<\/td>\n\t<td>Mies van der Rohe<\/td>\n\t<td>2015<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/24286496\/claire_zimmerman_mies_van_der_rohe.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"Zweig2012\" class=\"entry\">\n\t<td>Zweig, S.<\/td>\n\t<td>Die Welt von Gestern<\/td>\n\t<td>2012<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td><a href=\"https:\/\/www.ebook.de\/de\/product\/1489107\/stefan_zweig_die_welt_von_gestern.html\">URL<\/a>&nbsp;<\/td>\n<\/tr>\n<tr id=\"\" class=\"entry\">\n\t<td>Anonym<\/td>\n\t<td>Bratwurst, Bier und Gartenzwerge (Kartenspiel)<\/td>\n\t<td><\/td>\n\t<td>&nbsp;<\/td>\n\t<td>misc<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"\" class=\"entry\">\n\t<td>B\u00f6ckenf\u00f6rde, E.-W.<\/td>\n\t<td>Wissenschaft, Politik,Verfassungsgericht<\/td>\n\t<td>2011<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"\" class=\"entry\">\n\t<td>Riecke, T.-3.-596.-31895.-7.<\/td>\n\t<td>Europas Stunde. Der Kampf der gro\u00dfen M\u00e4chte und die Renaissance eines untersch\u00e4tzten Kontinents<\/td>\n\t<td><\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"\" class=\"entry\">\n\t<td>Sassen, S.<\/td>\n\t<td>Migranten, Siedler, Fl\u00fcchtlinge. Von der Massenauswanderung zur Festung Europa<\/td>\n\t<td><\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"\" class=\"entry\">\n\t<td>Thein, M.<\/td>\n\t<td>Fu\u00dfball, deine Fans. Deutsche Fankultur<\/td>\n\t<td>2013<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"\" class=\"entry\">\n\t<td><\/td>\n\t<td>Deutsche Mythen seit 1945 &#8211; Ausstellungskatalog<\/td>\n\t<td><\/td>\n\t<td>&nbsp;<\/td>\n\t<td>book<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<tr id=\"\" class=\"entry\">\n\t<td><\/td>\n\t<td>Theater \u2013 Dokument \u2013 Geschichte, Themenheft, Der Deutschunterricht Nr. 5\/2019<\/td>\n\t<td>2019<\/td>\n\t<td>&nbsp;<\/td>\n\t<td>misc<\/td>\n\t<td>&nbsp;<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n","protected":false},"excerpt":{"rendered":"<p>Matching entries: 0 settings&#8230; use RegExp ignore accents Author Title Year Journal\/Proceedings Reftype DOI\/URL Metzler Lexikon DDR-Literatur 2009 &nbsp; book URL&nbsp; Knapp, K. Angewandte Linguistik 2011 &nbsp; book URL&nbsp; Luger, U. Werther 2013 &nbsp; book &nbsp; Specht, F. Rumpelstilzchen 2013 &nbsp; book &nbsp; Kiraly, D. Projekte und Projektionen in der translatorischen Kompetenzentwicklung 2013 &nbsp; book&hellip; <a href=\"https:\/\/blogs.oregonstate.edu\/nebs\/testing-html-embeding\/\">Continue reading <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":5047,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-150","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Testing HTML Embeding - nebs1<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blogs.oregonstate.edu\/nebs\/testing-html-embeding\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Testing HTML Embeding - nebs1\" \/>\n<meta property=\"og:description\" content=\"Matching entries: 0 settings&#8230; use RegExp ignore accents Author Title Year Journal\/Proceedings Reftype DOI\/URL Metzler Lexikon DDR-Literatur 2009 &nbsp; book URL&nbsp; Knapp, K. Angewandte Linguistik 2011 &nbsp; book URL&nbsp; Luger, U. Werther 2013 &nbsp; book &nbsp; Specht, F. Rumpelstilzchen 2013 &nbsp; book &nbsp; Kiraly, D. Projekte und Projektionen in der translatorischen Kompetenzentwicklung 2013 &nbsp; book&hellip; Continue reading &rarr;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blogs.oregonstate.edu\/nebs\/testing-html-embeding\/\" \/>\n<meta property=\"og:site_name\" content=\"nebs1\" \/>\n<meta property=\"article:modified_time\" content=\"2022-01-21T22:02:30+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"23 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/blogs.oregonstate.edu\/nebs\/testing-html-embeding\/\",\"url\":\"https:\/\/blogs.oregonstate.edu\/nebs\/testing-html-embeding\/\",\"name\":\"Testing HTML Embeding - nebs1\",\"isPartOf\":{\"@id\":\"https:\/\/blogs.oregonstate.edu\/nebs\/#website\"},\"datePublished\":\"2022-01-21T22:00:12+00:00\",\"dateModified\":\"2022-01-21T22:02:30+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/blogs.oregonstate.edu\/nebs\/testing-html-embeding\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/blogs.oregonstate.edu\/nebs\/testing-html-embeding\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/blogs.oregonstate.edu\/nebs\/testing-html-embeding\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/blogs.oregonstate.edu\/nebs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Testing HTML Embeding\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/blogs.oregonstate.edu\/nebs\/#website\",\"url\":\"https:\/\/blogs.oregonstate.edu\/nebs\/\",\"name\":\"nebs1\",\"description\":\"Just another blogs.oregonstate.edu site\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/blogs.oregonstate.edu\/nebs\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Testing HTML Embeding - nebs1","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/blogs.oregonstate.edu\/nebs\/testing-html-embeding\/","og_locale":"en_US","og_type":"article","og_title":"Testing HTML Embeding - nebs1","og_description":"Matching entries: 0 settings&#8230; use RegExp ignore accents Author Title Year Journal\/Proceedings Reftype DOI\/URL Metzler Lexikon DDR-Literatur 2009 &nbsp; book URL&nbsp; Knapp, K. Angewandte Linguistik 2011 &nbsp; book URL&nbsp; Luger, U. Werther 2013 &nbsp; book &nbsp; Specht, F. Rumpelstilzchen 2013 &nbsp; book &nbsp; Kiraly, D. Projekte und Projektionen in der translatorischen Kompetenzentwicklung 2013 &nbsp; book&hellip; Continue reading &rarr;","og_url":"https:\/\/blogs.oregonstate.edu\/nebs\/testing-html-embeding\/","og_site_name":"nebs1","article_modified_time":"2022-01-21T22:02:30+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"23 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/blogs.oregonstate.edu\/nebs\/testing-html-embeding\/","url":"https:\/\/blogs.oregonstate.edu\/nebs\/testing-html-embeding\/","name":"Testing HTML Embeding - nebs1","isPartOf":{"@id":"https:\/\/blogs.oregonstate.edu\/nebs\/#website"},"datePublished":"2022-01-21T22:00:12+00:00","dateModified":"2022-01-21T22:02:30+00:00","breadcrumb":{"@id":"https:\/\/blogs.oregonstate.edu\/nebs\/testing-html-embeding\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blogs.oregonstate.edu\/nebs\/testing-html-embeding\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/blogs.oregonstate.edu\/nebs\/testing-html-embeding\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blogs.oregonstate.edu\/nebs\/"},{"@type":"ListItem","position":2,"name":"Testing HTML Embeding"}]},{"@type":"WebSite","@id":"https:\/\/blogs.oregonstate.edu\/nebs\/#website","url":"https:\/\/blogs.oregonstate.edu\/nebs\/","name":"nebs1","description":"Just another blogs.oregonstate.edu site","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blogs.oregonstate.edu\/nebs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"jetpack_sharing_enabled":true,"post_mailing_queue_ids":[],"_links":{"self":[{"href":"https:\/\/blogs.oregonstate.edu\/nebs\/wp-json\/wp\/v2\/pages\/150","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blogs.oregonstate.edu\/nebs\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/blogs.oregonstate.edu\/nebs\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/blogs.oregonstate.edu\/nebs\/wp-json\/wp\/v2\/users\/5047"}],"replies":[{"embeddable":true,"href":"https:\/\/blogs.oregonstate.edu\/nebs\/wp-json\/wp\/v2\/comments?post=150"}],"version-history":[{"count":3,"href":"https:\/\/blogs.oregonstate.edu\/nebs\/wp-json\/wp\/v2\/pages\/150\/revisions"}],"predecessor-version":[{"id":154,"href":"https:\/\/blogs.oregonstate.edu\/nebs\/wp-json\/wp\/v2\/pages\/150\/revisions\/154"}],"wp:attachment":[{"href":"https:\/\/blogs.oregonstate.edu\/nebs\/wp-json\/wp\/v2\/media?parent=150"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}