From 85c8755345da0088eaad6d8f9b0d4223fb751343 Mon Sep 17 00:00:00 2001 From: "Daniel A. Werning" <33833393+dwerning@users.noreply.github.com> Date: Thu, 14 Mar 2024 10:39:05 +0100 Subject: [PATCH] Release v2.1.2 --- src/main/java/tla/web/model/Sentence.java | 2 +- src/main/java/tla/web/model/Text.java | 14 +- src/main/java/tla/web/model/ThsEntry.java | 4 +- src/main/resources/application.yml | 9 +- .../resources/i18n/messages_de.properties | 44 +- .../resources/i18n/messages_en.properties | 46 +- src/main/resources/pages/de/home.html | 1 + src/main/resources/pages/de/info/authors.html | 61 +- .../resources/pages/de/info/introduction.html | 2 +- .../resources/pages/de/info/licenses.html | 13 +- .../resources/pages/de/info/text-corpus.html | 101 +- .../pages/de/info/tla-development.html | 26 +- .../resources/pages/de/legal/imprint.html | 8 +- .../resources/pages/de/listings/thesauri.html | 56 + src/main/resources/pages/en/home.html | 1 + src/main/resources/pages/en/info/authors.html | 59 +- .../resources/pages/en/info/introduction.html | 2 +- .../resources/pages/en/info/licenses.html | 15 +- .../resources/pages/en/info/text-corpus.html | 85 +- .../pages/en/info/tla-development.html | 26 +- .../resources/pages/en/legal/imprint.html | 8 +- .../pages/en/listings/bibliography.html | 2977 ++++------------- .../pages/en/listings/ling-glossings.html | 107 +- .../resources/pages/en/listings/thesauri.html | 57 + .../resources/templates/fragments/common.html | 31 +- .../templates/fragments/details.html | 65 +- src/main/resources/templates/ths/details.html | 2 +- 27 files changed, 1142 insertions(+), 2680 deletions(-) create mode 100644 src/main/resources/pages/de/listings/thesauri.html create mode 100644 src/main/resources/pages/en/listings/thesauri.html diff --git a/src/main/java/tla/web/model/Sentence.java b/src/main/java/tla/web/model/Sentence.java index 4bbb4010..ccd4dff2 100644 --- a/src/main/java/tla/web/model/Sentence.java +++ b/src/main/java/tla/web/model/Sentence.java @@ -134,7 +134,7 @@ private static List extractDatierung(Text text) { //System.out.println("Extracted "+text.getPassport().extractProperty("date.date.date").get(0).getContents()); } catch (Exception e) { // log.debug("could not extract date from text {}", text.getId()); - System.out.println("could not extract bibliography from text "+ text.getId()); + // System.out.println("could not extract date from text "+ text.getId()); } return datierung; } diff --git a/src/main/java/tla/web/model/Text.java b/src/main/java/tla/web/model/Text.java index 75999ee9..6d1d83d3 100644 --- a/src/main/java/tla/web/model/Text.java +++ b/src/main/java/tla/web/model/Text.java @@ -177,7 +177,7 @@ private static ObjectReference extractObjectReference(Text text, String searchSt Passport pass= text.getPassport().extractProperty(searchString).get(0); objectReference = pass.extractObjectReferences().get(0); } catch (Exception e) { - System.out.println("could not extract language from text {} "+text.getId()); + // System.out.println("could not extract language from text {} "+text.getId()); } return objectReference; } @@ -192,7 +192,7 @@ private static List extractNamesOfArray(Text text, String searchField) { values.add(pass.get(i).extractObjectReferences().get(0).getName()); } } catch (Exception e) { - System.out.println("could not extract" + searchField + "from text {} "+text.getId()); + // System.out.println("could not extract" + searchField + "from text {} "+text.getId()); } return values; } @@ -205,7 +205,7 @@ private static String extractString(Text text, String searchField, Integer numbe List pass = text.getPassport().extractProperty(searchField); value = pass.get(number).toString(); }catch (Exception e) { - System.out.println("could not extract " + searchField + " from text {} "+text.getId()); + // System.out.println("could not extract " + searchField + " from text {} "+text.getId()); } return value; } @@ -228,7 +228,7 @@ private static String extractIsOrigPlace(Text text) { if (isOrigPl.equals("true")) isOrigPl="original"; else isOrigPl=null; } catch (Exception e) { - System.out.println("could not extract is orig place from text {} "+text.getId());isOrigPl=null; + // System.out.println("could not extract is orig place from text {} "+text.getId());isOrigPl=null; } return isOrigPl; } @@ -243,7 +243,7 @@ private static List extractOrigplace(Text text) { } catch (Exception e) { - System.out.println("could not extract original place from text {} "+text.getId()); + // System.out.println("could not extract original place from text {} "+text.getId()); } return origplace; } @@ -258,7 +258,7 @@ private static List extractPresloc(Text text) { } catch (Exception e) { - System.out.println("could not extract present place from text {} "+text.getId()); + // System.out.println("could not extract present place from text {} "+text.getId()); } return presloc; } @@ -278,7 +278,7 @@ private static List extractDate(Text text) { } catch (Exception e) { // log.debug("could not extract date from text {}", text.getId()); - System.out.println("could not extract date from text "+ text.getId()); + // System.out.println("could not extract date from text "+ text.getId()); } return datierung; } diff --git a/src/main/java/tla/web/model/ThsEntry.java b/src/main/java/tla/web/model/ThsEntry.java index 74558685..d4d1e04c 100644 --- a/src/main/java/tla/web/model/ThsEntry.java +++ b/src/main/java/tla/web/model/ThsEntry.java @@ -66,7 +66,7 @@ private static List extractDescription(ThsEntry thsEntry) { ) ); } catch (Exception e) { - System.out.println("INFO: Could not extract description from thesaurus entry "+thsEntry.getId()); + // System.out.println("INFO: Could not extract description from thesaurus entry "+thsEntry.getId()); } return description; } @@ -102,7 +102,7 @@ private static List extractFileComment(ThsEntry thsEntry) { ) ); } catch (Exception e) { - System.out.println("INFO: Could not extract file comment from thesaurus entry "+thsEntry.getId()); + // System.out.println("INFO: Could not extract file comment from thesaurus entry "+thsEntry.getId()); } return fileComment; } diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 99ab621a..ad6b1e9a 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -29,8 +29,7 @@ tla: aegyptiaca: default-format: https://aegyptiaca.uni-muenster.de/Record/{id} bm: - type-formats: - object: https://www.britishmuseum.org/collection/object/{id} + default-format: https://www.britishmuseum.org/collection/object/{id} dwl: default-format: https://www.dwl.aegyptologie.lmu.de/suche.php?nummer={id} dza: @@ -82,7 +81,7 @@ tla: dpdp: type-formats: lemmata: http://129.206.5.162/beta/palaeography/palaeography.html?q=tla:{id} - papyri: http://129.206.5.162/beta/palaeography/database/papyri/{id}.html + papyri: http://129.206.5.162/beta/palaeography/database/papyri/{id} pleiades: default-format: https://pleiades.stoa.org/places/{id} id-pattern: ^[1-9][0-9]*$ @@ -92,6 +91,10 @@ tla: default-format: https://collections.louvre.fr/en/ark:/53355/{id} pnm: default-format: https://pnm.uni-mainz.de/name/{id} + vega: + default-format: https://app.vega-lexique.fr/?entries=w{id} + smb: + default-format: https://id.smb.museum/object/{id} search: config: diff --git a/src/main/resources/i18n/messages_de.properties b/src/main/resources/i18n/messages_de.properties index 681ed93b..f67d2fb7 100644 --- a/src/main/resources/i18n/messages_de.properties +++ b/src/main/resources/i18n/messages_de.properties @@ -3,21 +3,21 @@ date_not_edited=kein Datum eingegeben tla_Title=Thesaurus Linguae Aegyptiae tla_Editor=Tonio Sebastian Richter & Daniel A. Werning im Auftrag der Berlin-Brandenburgischen Akademie der Wissenschaften und Hans-Werner Fischer-Elfert & Peter Dils im Auftrag der Sächsischen Akademie der Wissenschaften zu Leipzig -tla_version=2.1.1 -tla_ReleaseDate=3.11.2023 - -tla_corpusversion=17 -tla_corpusdate=25.10.2022 -lemma-entries-types-hiero-en=54,681 -lemma-entries-types-dem-en=15,253 -lemma-tokens-hiero-en=1,115 thous. -lemma-tokens-dem-en=326 thous. -corpus-lemma-tokens-amount-en=1.44 mill. -lemma-entries-types-hiero-de=54.681 -lemma-entries-types-dem-de=15.253 -lemma-tokens-hiero-de=1.115 Tsd. -lemma-tokens-dem-de=326 Tsd. -corpus-lemma-tokens-amount-de=1,44 Mill. +tla_version=2.1.2 +tla_ReleaseDate=24.11.2023 + +tla_corpusversion=18 +tla_corpusdate=24.11.2023 +lemma-entries-types-hiero-en=55,333 +lemma-entries-types-dem-en=15,321 +lemma-tokens-hiero-en=1,159 thous. +lemma-tokens-dem-en=328 thous. +corpus-lemma-tokens-amount-en=1.49 mill. +lemma-entries-types-hiero-de=55.333 +lemma-entries-types-dem-de=15.321 +lemma-tokens-hiero-de=1.159 Tsd. +lemma-tokens-dem-de=328 Tsd. +corpus-lemma-tokens-amount-de=1,49 Mill. error_404=Objekt nicht gefunden oder nicht geliefert (Server-Timeout) error_500=Serverfehler @@ -27,7 +27,7 @@ msg_loading_sentences=Lade Sätze... msg_loading_sentences_browser=Wir arbeiten daran, die Performance dieser Seite zu verbessern. msg_more_metadata=Wenige weitere Metadaten in einer zukünftigen Version der TLA-Web-Applikation. msg_hieroglyph_search=Eine Hieroglyphensuche wird in einer zukünftigen Version der TLA-Web-Applikation hinzugefügt werden. Den Entwicklungsplan finden Sie hier. -msg_collocation_search=Eine Kollokationssuche mit definiertem Lemma-Abstand wird in einer zukünftigen Version der TLA-Web-Applikation hinzugefügt werden. Den Entwicklungsplan finden Sie hier. +msg_collocation_search=Es können aktuell nur zwei verschiedene Lemmata gesucht werden.
Eine Kollokationssuche >mit definiertem Lemma-Abstand wird in einer zukünftigen Version der TLA-Web-Applikation hinzugefügt werden.
Den Entwicklungsplan finden Sie hier. msg_occurences_sorting=Möglichkeiten die Ergebnisliste zu sortieren werden in einer zukünftigen Version der TLA-Web-Applikation hinzugefügt werden. msg_sentences_page=Eine Seite mit der Sequenz von Sätzen des Textes wird aktuell für eine nächste Version der TLA-Web-Applikation programmiert. Den Entwicklungsplan finden Sie hier. msg_pid_variant_warning=Achtung: Aus technischen Gründen können für Satzlesungsvarianten keine individuellen permanenten IDs gearantiert werden. Die Zitation erfolgt daher nur über die Basis-Satz-ID inkl. aller Varianten. @@ -90,10 +90,11 @@ menu_global_help=Hilfe editorial_title_home= editorial_title_contact=Kontakt +editorial_title_listings_thesauri=Thesauri editorial_title_listings_bts-glossings=BTS Glossierung editorial_title_listings_ling-glossings=Linguistische Glossierung editorial_title_listings_digital-references=Digitale Verweise -editorial_title_listings_bibliography=Abgekürzte Literatur +editorial_title_listings_bibliography=Abgekürzte (selbständige) Literatur editorial_title_info_collaboration=Kooperation editorial_title_info_lemma-lists=Lemma-Listen editorial_title_info_introduction=Einführung @@ -266,6 +267,7 @@ dict_hieratic=Hieroglyphisch/Hieratisch review_state_published=Verifiziert review_state_published-inactive=Inaktiv +review_state_published-obsolete=Obsolet review_state_published-awaiting-verification=Verifizierung steht aus artificially_aligned=Hieroglyphen künstlich angeordnet @@ -422,6 +424,9 @@ external_reference_provider_wikidata=Wikidata external_reference_provider_zdb=Zeitschriftendatenbank external_reference_provider_dpdp=Demotic Palaeographical Database Project external_reference_provider_pleiades=Pleiades +external_reference_provider_cachette_de_karnak=Cachette de Karnak +external_reference_provider_louvre=Louvre +external_reference_provider_pnm=Persons and Names of the Middle Kingdom lang_label_de=Deutsch lang_label_en=English @@ -582,6 +587,8 @@ button_label_hide_property_switchannotation-wordtokenid=Satzelement-ID button_label_hide_property_translation=Übersetzung button_label_hide_property_dating=Datierung button_label_hide_property_texteditor=Text-Editor:innen + +button_label_hideTextsentences_property_hieroglyphs=Hieroglyphen button_label_hideTextsentences_property_switchannotation=Wechsel Annotations-/Block-Ansicht button_label_hideTextsentences_property_switchannotation-wordclass=Lemma-Wortklasse button_label_hideTextsentences_property_switchannotation-tlaglossing=Gram. Annotation BTS @@ -589,6 +596,7 @@ button_label_hideTextsentences_property_switchannotation-linguisticglossing= Lin button_label_hideTextsentences_property_switchannotation-tokentranslation=Lemma-Übersetzung button_label_hideTextsentences_property_switchannotation-wordtokenid=Satzelement-ID button_label_hideTextsentences_property_translation=Übersetzung + sentence_main_editor=Autor:innen sentence_contributors=unter Mitarbeit von sentence_created=Textdatensatz erstellt @@ -612,7 +620,7 @@ result_page_description_middle=von result_page_description_right_lemma=Lemma-Listen-Eintrag result_page_description_right_lemmas=Lemma-Listen-Einträgen result_page_description_right_sentence=Satz mit Beleg(en) -result_page_description_right_sentences=Sätzen mit Belegen +result_page_description_right_sentences=Sätzen mit Belegen (inkl. Lesevarianten) result_page_no_results=Keine Ergebnisse. result_page_facets=Ergebnisse filtern diff --git a/src/main/resources/i18n/messages_en.properties b/src/main/resources/i18n/messages_en.properties index 8d391d6a..471173d3 100644 --- a/src/main/resources/i18n/messages_en.properties +++ b/src/main/resources/i18n/messages_en.properties @@ -3,21 +3,21 @@ date_not_edited=no date edited tla_Title=Thesaurus Linguae Aegyptiae tla_Editor=Tonio Sebastian Richter & Daniel A. Werning on behalf of the Berlin-Brandenburgische Akademie der Wissenschaften and Hans-Werner Fischer-Elfert & Peter Dils on behalf of the Sächsische Akademie der Wissenschaften zu Leipzig -tla_version=2.1.1 -tla_ReleaseDate=11/3/2023 - -tla_corpusversion=17 -tla_corpusdate=10/25/2022 -lemma-entries-types-hiero-en=54,681 -lemma-entries-types-dem-en=15,253 -lemma-tokens-hiero-en=1,115 thous. -lemma-tokens-dem-en=326 thous. -corpus-lemma-tokens-amount-en=1.44 mill. -lemma-entries-types-hiero-de=54.681 -lemma-entries-types-dem-de=15.253 -lemma-tokens-hiero-de=1.115 Tsd. -lemma-tokens-dem-de=326 Tsd. -corpus-lemma-tokens-amount-de=1,44 Mill. +tla_version=2.1.2 +tla_ReleaseDate=11/24/2023 + +tla_corpusversion=18 +tla_corpusdate=11/24/2023 +lemma-entries-types-hiero-en=55,333 +lemma-entries-types-dem-en=15,321 +lemma-tokens-hiero-en=1,159 thous. +lemma-tokens-dem-en=328 thous. +corpus-lemma-tokens-amount-en=1.49 mill. +lemma-entries-types-hiero-de=55.333 +lemma-entries-types-dem-de=15.321 +lemma-tokens-hiero-de=1.159 Tsd. +lemma-tokens-dem-de=328 Tsd. +corpus-lemma-tokens-amount-de=1,49 Mill. error_404=Object not found or not delivered (server timeout) error_500=Server error @@ -27,7 +27,7 @@ msg_loading_sentences=Loading sentences... msg_loading_sentences_browser=We are struggling to improve the performance of this page. msg_more_metadata=Few more metadata in a future version of the TLA web app. msg_hieroglyph_search=Hieroglyph search yet to be implemented for a future version of the TLA web app. For the development plan, see here. -msg_collocation_search=A collocation search with defined lemma distance yet to be implemented for a future version of the TLA web app. For the development plan, see here. +msg_collocation_search=Only two different lemmata can currently be searched for.
A collocation search with defined lemma distance will be implemented in a future version of the TLA web app.
For the development plan, see here. msg_occurences_sorting=Possibilities to sort the results list will be added in a future version of the TLA web application. msg_sentences_page=A page that displays the sequence of sentences of the text is currently being implemented for a future release of the TLA web app. For the development plan, see here. msg_pid_variant_warning=Attention: For technical reasons, no permanent IDs can be assigned to individual sentence reading variants. Therefore, the citation is only via the base sentence ID incl. all variants. @@ -90,10 +90,11 @@ menu_global_help=Help editorial_title_home= editorial_title_contact=Contact +editorial_title_listings_thesauri=Thesauri editorial_title_listings_bts-glossings=BTS Glossing editorial_title_listings_ling-glossings=Linguistic Glossing editorial_title_listings_digital-references=Digital References -editorial_title_listings_bibliography=Abbreviated Literature +editorial_title_listings_bibliography=Abbreviated Literature (Monographs, Independent and in Series) editorial_title_info_collaboration=Collaboration editorial_title_info_lemma-lists=Lemma Lists editorial_title_info_introduction=Introduction @@ -266,6 +267,7 @@ dict_hieratic=Hieroglyphic/hieratic review_state_published=Verified review_state_published-inactive=Inactive +review_state_published-obsolete=Obsolete review_state_published-awaiting-verification=Verification pending artificially_aligned=Glyphs artificially arranged @@ -401,8 +403,8 @@ text_sentences_property_object_paths=Text path(s) object_property_object_paths=Context external_reference_provider_aaew=Legacy TLA -external_reference_provider_aegyptiaca=Aegyptiaca external_reference_provider_aegaron=Ancient Egyptian Architecture Online +external_reference_provider_aegyptiaca=Aegyptiaca external_reference_provider_bm=British Museum external_reference_provider_cfeetk=Projet Karnak external_reference_provider_dwl=Demotische Wortliste @@ -422,6 +424,9 @@ external_reference_provider_wikidata=Wikidata external_reference_provider_zdb=Zeitschriftendatenbank external_reference_provider_dpdp=Demotic Palaeographical Database Project external_reference_provider_pleiades=Pleiades +external_reference_provider_cachette_de_karnak=Cachette de Karnak +external_reference_provider_louvre=Louvre +external_reference_provider_pnm=Persons and Names of the Middle Kingdom lang_label_de=Deutsch lang_label_en=English @@ -558,6 +563,7 @@ button_label_modify_search=Modify Search button_label_hide_property_lemma-id=Lemma ID button_label_hide1Lemma_property_lemma-id=Lemma ID button_label_hide_property_hieroglyphs=Hieroglyphs +button_label_hideTextsentences_property_hieroglyphs=Hieroglyphs button_label_hide1Lemma_property_hieroglyphs=Hieroglyphs button_label_hide_property_wordClass=Word class button_label_hide1Lemma_property_wordClass=Word class @@ -572,7 +578,6 @@ button_label_show_property_de=German button_label_show_property_en=English button_label_show_property_fr=French - button_label_hide_property_switchannotation=Switch annotation/block view button_label_hide_property_switchannotation-wordclass=Lemma word class button_label_hide_property_switchannotation-tlaglossing=Gram. tagging BTS @@ -591,6 +596,7 @@ button_label_hideTextsentences_property_switchannotation-linguisticglossing=Ling button_label_hideTextsentences_property_switchannotation-tokentranslation=Lemma translation button_label_hideTextsentences_property_switchannotation-wordtokenid=Sentence token ID button_label_hideTextsentences_property_translation=Translation + sentence_main_editor=Author(s) sentence_contributors=with contributions by sentence_created=Text file created @@ -614,7 +620,7 @@ result_page_description_middle=of result_page_description_right_lemma=lemma list entry result_page_description_right_lemmas=lemma list entries result_page_description_right_sentence=sentence with occurrence(s) -result_page_description_right_sentences=sentences with occurrences +result_page_description_right_sentences=sentences with occurrences (incl. reading variants) result_page_no_results=No results. result_page_facets=Search facets diff --git a/src/main/resources/pages/de/home.html b/src/main/resources/pages/de/home.html index 6194da46..6eccea40 100644 --- a/src/main/resources/pages/de/home.html +++ b/src/main/resources/pages/de/home.html @@ -12,6 +12,7 @@

Willkommen im Thesaurus Linguae Aegyptiae!

+
Neu: Textkorpus-Ausgabe 18 (Nov. 2023): neue Autor:innen, neue/erweiterte Korpora, Überblick Textobjekt-Baum [PDF].
diff --git a/src/main/resources/pages/de/info/authors.html b/src/main/resources/pages/de/info/authors.html index a13c6400..39f18a96 100644 --- a/src/main/resources/pages/de/info/authors.html +++ b/src/main/resources/pages/de/info/authors.html @@ -7,25 +7,26 @@

Einzelne Text-Autor:innen

Genannte Texte und Textgruppen sind solche, in denen die Autor:innen als „Haupt-Autor:innen‟ eingetragen sind.

Forschungsprojekte

  • Projekt Deir el Medine online (geleitet von Günter Burkard, mit Beiträgen von Maren Goecke-Bauer, Martina Landrino)
  • Göttinger Medizinprojekt (geleitet von Camilla Di Biase-Dyson, mit Beiträgen von Lisa Augner, Melanie Glöckner, Mareike Göhmann, Sven Philippi, Anja Roß, Eike Willenbockel, Jan-Malte Ziegenbein; weitere editorische Arbeiten: Billy Böhm, Peter Dils, Johannes Jüngling, Lutz Popko): pHearst)
  • +
  • Projekt Nile in Contact (Roberto A. Díaz Hernández)
@@ -74,7 +77,7 @@

Projekt-Teams

  • AV Altägyptisches Wörterbuch, BBAW
  • AV Wortschatz der ägyptischen Sprache, BBAW
      -
    • R. Dominik Blöse (Datentransformation BTS > TLA)
    • +
    • R. Dominik Blöse (Datentransformation BTS > TLA, Web-Anwendung)
    • Angela Böhme (editorische Arbeit, Thesauri)
    • Frank Feder (koptische Lemmaliste)
    • Silke Grallert (Thesauri)
    • @@ -89,6 +92,7 @@

      Projekt-Teams

      • Anke Blöbaum (Lemmalisten)
      • Billy Böhm (Eingabe von Hieroglyphen, editorische Arbeit)
      • +
      • Neu: Svenja Damm (Eingabe von Hieroglyphen, editorische Arbeit)
      • Peter Dils (editorische Arbeit, Thesauri)
      • Jessica Jancziak (Eingabe von Hieroglyphen, editorische Arbeit)
      • Ines Köhler (Thesauri)
      • @@ -99,11 +103,13 @@

        Projekt-Teams

        Einzelne Forscher:innen

        • Horst Beinlich (hieroglyphisch-hieratische Lemmaliste)
        • -
        • Marianne Eaton-Krauss (englische Übersetzung von Lemmata)
        • +
        • Marianne Eaton-Krauss (englische Übersetzungsäquivalente für Lemmata)
        • Jochen Hallof (hieroglyphisch-hieratische Lemmaliste: Personennamen)
        • Friedhelm Hoffmann (demotische Lemmaliste, hieroglyphisch-hieratische Lemmaliste)
        • -
        • Andrea Sinclair (englische Übersetzung von Lemmata)
        • +
        • Neu: Alexander Ilin-Tomich (Links zum PNM-Projekt)
        • +
        • Andrea Sinclair (englische Übersetzungsäquivalente für Lemmata)
        • Günter Vittmann (demotische Lemmaliste)
        • +
        • Neu: Fabian Wespi (Links zum/vomm DPDP-Projekt)

        Studentische Hilfskräfte

        (Eingabe von Hieroglyphen, editorische Arbeit)

        @@ -112,14 +118,17 @@

        Studentische Hilfskräfte

      • Sophie Diepold (BBAW)
      • Charlotte Dietrich (DFG-Projekt geleitet von Marc Brose)
      • Ricarda Gericke (DFG-Projekt geleitet von Marc Brose)
      • +
      • Neu: Elsa Goerschel (SAW)
      • Christine Greger (SAW)
      • Sebastian Hoedt (BBAW)
      • +
      • Neu: Samuel Huster (SAW)
      • Joanna Hypszer (BBAW)
      • Johannes Jüngling (SAW)
      • Kay Christine Klinger (SAW)
      • Sabrina Karoui (SAW)
      • Florence Langermann (SAW)
      • Vivian Rätzke (BBAW)
      • +
      • Neu: Elio N.D. Rossetti (BBAW)
      • Lisa Seelau (BBAW)
      • Jonas Treptow (BBAW)
      • Anja Weber (BBAW)
      • @@ -138,14 +147,21 @@

        Praktikant:innen

      • Vinca Michaelis (BBAW)
      • Franka Milde (BBAW)
      • Nina Overesch (BBAW)
      • +
      • Neu: Johannes Schmitt (BBAW)
      • +
      • Neu: Carolina Schweitzer (BBAW)
      • +
      • Neu: Sara Toumi (BBAW)
      • Veronica Zampedri (BBAW)

      Student:innen-Projekte/Unterricht

      (Eingabe von Texten und Hieroglyphen)

        +
      • Neu: Jake Colloff (HU Berlin)
      • Anne Grischeck (HU Berlin)
      • +
      • Neu: Niklas Hartmann (HU Berlin)
      • +
      • Neu: Pauline Klemke (HU Berlin)
      • Patryck Polan (HU Berlin)
      • -
      • Elio Nicolas Rossetti (HU Berlin)
      • +
      • Neu: Thordis A. Reuter (HU Berlin)
      • +
      • Elio N.D. Rossetti (HU Berlin)
  • @@ -158,6 +174,7 @@

    Fortlaufende Liste von Autor:innen

    Burkhard Backes, Max Bader, Josefine Bar Sagi, + Stefan Baumann, Susanne Beck, Horst Beinlich, Maria Roza Beshara, @@ -170,6 +187,7 @@

    Fortlaufende Liste von Autor:innen

    Marc Brose, Günter Burkard, Adelheid Burkhardt, + Jake Colloff, Svenja Damm, Camilla Di Biase-Dyson, Roberto A. Díaz Hernández, @@ -190,6 +208,7 @@

    Fortlaufende Liste von Autor:innen

    Melanie Glöckner, Maren Goecke-Bauer, Mareike Göhmann, + Roberto Gozzoli, Erhart Graefe, Silke Grallert, Christine Greger, @@ -198,15 +217,19 @@

    Fortlaufende Liste von Autor:innen

    Stefan Grunert, Ingelore Hafemann, Jochen Hallof, + Niklas Hartmann, Anne Herzberg, Sebastian Hoedt, Jakob Höper, Friedhelm Hoffmann, + Samuel Huster, Joanna Hypszer, + Alexander Ilin-Tomich, John M. Iskander, Jessica Jancziak, Johannes Jüngling, Sabrina Karoui, + Pauline Klemke, Kay Christine Klinger, Ines Köhler, Carina Kühne-Wespi, @@ -216,9 +239,11 @@

    Fortlaufende Liste von Autor:innen

    Florence Langermann, Verena Lepper, Antonie Loeschner, + Claudia Maderna-Sieben, Emilia Mammola, Vinca Michaelis, Franka Milde, + Marcel Moser, Nina Overesch, Aurélie Paulet, Sven Philippi, @@ -230,10 +255,12 @@

    Fortlaufende Liste von Autor:innen

    Miriam Rathenow, Vivian Rätzke, Daniel von Recklinghausen, + Thordis A. Reuter, Alexa Rickert, Anja Roß, - Elio Nicolas Rossetti, + Elio N. D. Rossetti, Donata Schäfer, + Johannes Schmitt, Jakob Schneider, Alexander Schütze, Simon D. Schweitzer, @@ -248,11 +275,13 @@

    Fortlaufende Liste von Autor:innen

    Jan Tattko, Susanne Töpfer, Doris Topmann, + Sara Toumi, Jonas Treptow, - Günter Vittmann, Cristina Vertan, + Günter Vittmann, Anja Weber, Daniel A. Werning, + Fabian Wespi, Eike Willenbockel, Annik Wüthrich, Veronica Zampedri, @@ -260,6 +289,6 @@

    Fortlaufende Liste von Autor:innen

    -
    +
    \ No newline at end of file diff --git a/src/main/resources/pages/de/info/introduction.html b/src/main/resources/pages/de/info/introduction.html index 1fa18626..695638f4 100644 --- a/src/main/resources/pages/de/info/introduction.html +++ b/src/main/resources/pages/de/info/introduction.html @@ -13,7 +13,7 @@

    TLA – Geschichte des TLA

    Der TLA baut auf lexikographischen Arbeiten zur altägyptischen Sprache auf, die unter der Leitung von Adolf Erman an der Königlichen Akademie der Wissenschaften zu Berlin ab 1897 durchgeführt wurden und zu dem gedruckten Berliner Wörterbuch führten (A. Erman & H. Grapow, Wörterbuch der aegyptischen Sprache, 5 Bde., 1926–1931, sieben weitere Ergänzungsbände bis 1961). 1992 wurde an derselben Akademie (heute: Berlin-Brandenburgische Akademie der Wissenschaften, BBAW) das Projekt „Altägyptisches Wörterbuch‟ (1992–2012) ins Leben gerufen. Seine neue digitale Agenda war die Erstellung eines elektronischen lemmatisierten Korpus ägyptischer Texte. 1996 schloss sich ein zweites Team an der Sächsischen Akademie der Wissenschaften zu Leipzig dem Projekt an.

    Der erste Schritt der digitalen Agenda wurde 1999 unternommen, als die in den Jahrzehnten der Arbeit am originalen Wörterbuch gedruckten, redigierten und lexikographisch in Kästen angeordneten Zettel des Textkorpus digitalisiert und als Digitalisiertes Zettelarchiv (DZA) [des Wörterbuchs der ägyptischen Sprache] online veröffentlicht wurden. Während das gedruckte Ergebnis des ursprünglichen Wörterbuch-Projekts im frühen 20. Jahrhundert nur etwa 10% des gesammelten Materials in den ergänzenden Belegstellen-Bänden (1935–1953) referenzierte, bot und bietet das Digitalisierte Zettelarchiv weltweit freien Zugang zur vollständigen Textgrundlage des ursprünglichen Wörterbuch-Projekts.

    Die erste TLA-Webanwendung wurde hauptsächlich von dem ehemaligen Arbeitsstellenleiter und Projektleiter Stefan Seidlmayer programmiert und am 31. Oktober 2004—dem 150. Geburtstag von Adolf Erman—online gestellt. Seitdem hat sich der TLA zu einem zuverlässigen und leistungsstarken Forschungsinstrument für Ägyptolog:innen entwickelt. Seine verschiedenen Suchfunktionen, wie die Suche nach ägyptischen Wörtern (Lemmata), die Suche nach Wortkollokationen und -kombinationen und die Suche nach hieroglyphischen Schreibweisen (von Lemmata), sollen Wissenschaftlern helfen, ihre philologischen, linguistischen oder historischen Forschungsinteressen zu verfolgen. Bis 2014, dem Jahr der letzten Aktualisierung dieses ersten, jetzt „alten‟ TLA, war der Textkorpus auf etwa 1,2 Millionen Instanzen ägyptischer Lemmata angewachsen.

    -

    Inzwischen beinhaltet das Eingabesystem des TLA (Berliner Texterfassungssystem, BTS) etwa 1,44 Mill. Lemma-Instanzen. Allerdings werden im neuen TLA nur Texte veröffentlicht, deren Autor:innen zugestimmt haben, ihre Beiträge unter einer freien Lizenz (CC BY-SA 4.0 Int.) zu veröffentlichen. Diese erste Version des „neuen TLA‟ bietet nzunächst nur eine begrenzte Funktionalität. Daher wird der „alte TLA‟ so lange online bleiben, wie es technisch möglich ist, oder bis die nach und nach verbesserten Funktionalitäten des „neuen TLA‟ den „alten TLA‟ überflüssig machen.

    +

    Inzwischen beinhaltet das Eingabesystem des TLA (Berliner Texterfassungssystem, BTS) etwa 1,44 Mill. Lemma-Instanzen. Allerdings werden im neuen TLA nur Texte veröffentlicht, deren Autor:innen zugestimmt haben, ihre Beiträge unter einer freien Lizenz zu veröffentlichen. Die aktuelle Version des „neuen TLA‟ bietet zunächst nur eine begrenzte Funktionalität. Daher wird der „alte TLA‟ so lange online bleiben, wie es technisch möglich ist, oder bis die nach und nach verbesserten Funktionalitäten des „neuen TLA‟ den „alten TLA‟ überflüssig machen.

    Zukunftsaussichten

    diff --git a/src/main/resources/pages/de/info/licenses.html b/src/main/resources/pages/de/info/licenses.html index 75133370..5fc7a4e0 100644 --- a/src/main/resources/pages/de/info/licenses.html +++ b/src/main/resources/pages/de/info/licenses.html @@ -4,14 +4,13 @@

    TLA – Lizenzierungen

    Wissenschaftliche Daten

    -

    Die in dieser Publikation verfügbaren wissenschaftlichen Daten sind unter einer Creative Commons Attribution-ShareAlike 4.0 International License (CC BY-SA 4.0 Int.) lizenziert. -
    Creative Commons License

    -

    Einen Link auf die zitierbaren und nachnutzbaren Rohdaten finden Sie zu gegebener Zeit auf der Seite: aaew.bbaw.de/daten-veroeffentlichungen.

    - +

    Sie können einzelne Datensätze, aber nicht ganze Teilkorpora dieser Website für akademische Forschungszwecke kopieren und zitieren. +
    Wir bereiten derzeit eine Rohdatenpublikation des wissenschaftlichen Inhalts vor, die unter einer freien Lizenz veröffentlicht werden soll. Diese finden Sie verlinkt auf der Seite aaew.bbaw.de/daten-veroeffentlichungen.

    Implementierung der Webseite

    -

    Die die Implementierung dieser Webseite ist unter einer Apache-2.0 License lizenziert, siehe dazu hier. Wenn Sie Implementierung oder Design dieser Website verwenden möchten, wenden Sie sich bitte an den ausführenden Redakteur.

    -

    Zur Lizenzierung des für die Wiedergabe von Hieroglyphen in Unicode verwendeten Fonts EgyptianHiero siehe github.com/MKilani/Djehuty.

    +

    Bezüglich des Designs dieser Webseite, wie es sich maßgeblich aus der tla-styles.css ergibt, behalten wir uns die Nutzungsrechte vor.

    +

    Zur Lizenzierung des für die Wiedergabe von Hieroglyphen in Unicode verwendeten Fonts EgyptianHiero siehe github.com/MKilani/Djehuty.

    +
    +

    If you have any questions, please contact the executive editor.

    diff --git a/src/main/resources/pages/de/info/text-corpus.html b/src/main/resources/pages/de/info/text-corpus.html index 936931ad..1c41ddb7 100644 --- a/src/main/resources/pages/de/info/text-corpus.html +++ b/src/main/resources/pages/de/info/text-corpus.html @@ -15,26 +15,26 @@

    Details

    Text-Metadaten und Textobjekt-Metadaten

    -

    Texte und Textobjekte werden systematisch mit zusätzlichen Metadaten versehen, die nicht im Text oder Textobjekt selbst immanent sind. Um die Datenabfrage zu verbessern, werden mögliche Werte von Metadaten in kontrollierten Vokabularen (Thesauri) bearbeitet. Kategorien von Daten und Metadaten, die sich auf Texte und Textobjekte beziehen, sind in der folgenden Tabelle aufgeführt: +

    Texte und Textobjekte werden systematisch mit zusätzlichen Metadaten versehen, die nicht im Text oder Textobjekt selbst immanent sind. Um die Datenabfrage zu verbessern, werden mögliche Werte von Metadaten in kontrollierten Vokabularen (Thesauri) bearbeitet. Kategorien von Daten und Metadaten, die sich auf Texte und Textobjekte beziehen, sind in der folgenden Tabelle aufgeführt: - + - - - - - - - + + + + + + + - - - - - - + + + + + +
    Textdaten und MetadatenTextobjekt-Metadaten
    Ägyptologische Transkription
    (Digitale) Hieroglyphentransliteration
    (digitale) Hieroglyphentransliteration
    Übersetzung (Deutsch, Englisch oder Französisch)
    Schriftart (Hieroglyphisch, Hieratisch, Demotisch)
    Sprachphase (Altägyptisch, Mittelägyptisch, usw.)
    Datierung des TextesDatierung des Textobjekts
    Textkategorie/Typ ('Genre')Art des Textobjekts
    Komponente
    Akteur einer sozialen Handlung
    Material
    Schriftart (Hieroglyphisch, Hieratisch, Demotisch)
    Sprache (Phase) (Altägyptisch, Mittelägyptisch, usw.)
    Datierung des TextzeugenDatierung der Textproduktion
    Textkategorie/TypArt des Textobjekts
    Komponente
    Akteur einer sozialen Handlung
    Material
    Abmessungen
    Erhaltungszustand
    Herstellungsart
    Archäologischer Kontext
    Kultureller Kontext
    Fundort
    Aktueller Standort
    Erhaltungszustand
    Herstellungsart
    archäologischer Kontext
    kultureller Kontext
    Fundort
    aktueller Standort
    bibliographische Referenzenbibliographische Referenzen

    @@ -49,23 +49,24 @@

    Allgemeine Grundsätze der Textbearbeitung im TLA

    Der Inhalt des Textkorpus

    -

    Aktuell sind die folgenden Teilkorpora altägyptischer Texte im TLA-Korpus zugänglich. Teilkorpora mit digitaler Hieroglyphen-Transliteration sind mit [H] gekennzeichnet, solche mit grammatischer Annotation mit [G]. (Listen-Stand Anfang 2022)

    +

    Neu: Eine komplette Übersicht über den Textobjekt-Baum des TLA finden Sie hier [PDF, 1.200 Seiten mit Links].

    +

    Im Folgenden finden sie eine händisch erstellte, nach Textdatierungen unterteilte Aufstellung. Teilkorpora mit digitaler Hieroglyphen-Transliteration sind mit [H] gekennzeichnet, solche mit grammatischer Annotation mit [G].

    Geschichte des hieroglyphisch-hieratischen Textkorpus

    -

    Das digitale Textkorpus des TLA wurde im Rahmen des Vorgängerprojekts „Altägyptisches Wörterbuch‟ (1992–2012) an der Berlin-Brandenburgischen Akademie der Wissenschaften initiiert (gefördert durch das Akademienprogramm der Union der deutschen Akademien der Wissenschaften). Die Idee war, im Zeitalter der korpusbasierten computergestützten Lexikographie einen digitalen Nachfolger von A. Ermans & H. Grapows Wörterbuch der aegyptischen Sprache (1926–1931; 1950, 1963) zu schaffen, insbesondere einschließlich der Belegstellen-Bände (1935–1953): (a) ein lemmatisiertes, ausgewogenes digitales Korpus ägyptischer Texte in hieroglyphischer, hieratischer und demotischer Schrift, das (b) ein korpusbasiertes ‚Wörterbuch‛ der altägyptischen Sprache aufbaut.

    +

    Das digitale Textkorpus des TLA wurde im Rahmen des Vorgängerprojekts „Altägyptisches Wörterbuch‟ (AAeW, 1992–2012) an der Berlin-Brandenburgischen Akademie der Wissenschaften initiiert (gefördert durch das Akademienprogramm der Union der deutschen Akademien der Wissenschaften). Die Idee war, im Zeitalter der korpusbasierten computergestützten Lexikographie einen digitalen Nachfolger von A. Ermans & H. Grapows Wörterbuch der aegyptischen Sprache (1926–1931; 1950, 1963) zu schaffen, insbesondere einschließlich der Belegstellen-Bände (1935–1953): (a) ein lemmatisiertes, ausgewogenes digitales Korpus ägyptischer Texte in hieroglyphischer, hieratischer und demotischer Schrift, das (b) ein korpusbasiertes ‚Wörterbuch‛ der altägyptischen Sprache aufbaut.

    Um die Lemmaliste weiter zu vervollständigen, wurden auf der Grundlage einer Reihe von Kriterien zusätzliche Texte ausgewählt, die in den TLA aufgenommen werden sollten. Texte, die nicht für das ursprüngliche Wörterbuch-Projekt verwendet worden waren, und Texte, die nach Abschluss des Projekts veröffentlicht oder neu bearbeitet worden waren, wurden bei der Aufnahme bevorzugt. Neuägyptische Texte, die im Rahmen des Projet Ramsès (Liège) kodiert werden sollten, wurden dagegen hinten angestellt. Mit der Vergrößerung des Projektteams und der zunehmenden Unterstützung durch kooperierende Projekte und einzelne Forscher:innen entwickelt sich ein breiteres, ausgewogeneres und vielfältigeres Korpus.

    diff --git a/src/main/resources/pages/de/info/tla-development.html b/src/main/resources/pages/de/info/tla-development.html index be1e3467..d7f98a8a 100644 --- a/src/main/resources/pages/de/info/tla-development.html +++ b/src/main/resources/pages/de/info/tla-development.html @@ -5,12 +5,20 @@

    TLA-Entwicklung

    Versionshistorie

      +
    • 24.11.2023: +
        +
      • Web app: v2.1.2, Verbesserungen +
        (verbessert:) Glossierungsabkürzungsliste; +
        (aktualisiert:) Infos über Korpusinhalte, Autor:innen, Bibliographie; +
        (geändert:) Zählweise von Satzlesevarianten nun dezimal, Lizenzinformationen, +
        (neu:) Übersichtsliste Metadaten-Thesauri.
      • +
      • Text-Korpus: v18, erweitert
      • +
      +
    • 3.11.2023:
      • Web app: v2.1.1, Verbesserungen -
        (neu:) --; -
        (geändert:) --; -
        (verbessert:) Bugfix: Satzlesevarianten-Aufzählung.
      • +
        (verbessert:) Bugfix: Satzlesevarianten-Aufzählung.
      • Text-Korpus: v17, unverändert
    • @@ -64,7 +72,7 @@

      Vergleich alter vs. neuer TLA, mit Entwicklungsperspektiven

      Lemmata: französische Übersetzungsäquivalenteteils (nur hiero.)teils (nur hiero.) Lemmata: Kommentare✕✓ (insb. medizinische Texte) Lemmata: Verlinkung Zusammensetzungen/Teile (ḥm-nṯr > ḥm, ...)✓ (nur Demotisch)✓ - Sätze/Satzwörter: Kommentare✓ (satzbezogen)✓ (satzbezogen; Bug: in Korpus v17
      nur Kommentare von vor 2015),
      Bezugsangabe kommt (mittlere Priorität) + Sätze/Satzwörter: Kommentare✓ (satzbezogen)✓ (satzbezogen;
      Bezugsangabe kommt (mittlere Priorität) Sätze/Satzwörter: Annotationen✕kommt (mittlere Priorität) Satzwörter: Hieroglyphen(✓) (JSesh-MdC; vereinzelt)✓ (JSesh-MdC; viele) Satzwörter: Wortklasse✕✓ @@ -72,7 +80,7 @@

      Vergleich alter vs. neuer TLA, mit Entwicklungsperspektiven

      Satzwörter: Spezifizierung Kontextbedeutung(✓) (nur für gesuchtes Lemma)✓ Texte/Objekte: Autor:innenschaft✓ (Hauptautor:in)✓ (Hauptautor:in, weitere Editor:innen) Texte/Objekte: Kommentare/Annotationen✕kommt (mittlere Priorität) - Inhalte mit freier Lizenz✕✓ (CC BY-SA 4.0 Int.) + Inhalte unter freier Lizenz✕(✓) (separate Rohdatenpublikation,
      noch zu veröffentlichen) Inhalte ohne freie Lizenz✓✕ (Weiternutzung im alten TLA;
      betrifft Edfu-Projekt-Daten) Digitale Verweise Verweise auf DZA✓ (Website-intern)✓ (vorerst Verweis auf alten TLA) @@ -83,7 +91,7 @@

      Vergleich alter vs. neuer TLA, mit Entwicklungsperspektiven

      Lemma-Suche: inkl. Hierarchie✓kommt (mittlere Priorität) Lemma-Suche: inkl. Zusammensetzungen (ḥm > ḥm-nṯr, ...)✕kommt (mittlere Priorität) Wurzel-Suche; Lemma-Suche: via Wurzeltranskription✕✓ - Lemmasuchen-Sortierung✓✓ (neu: chronologisch) + Lemmasuchen-Sortierung✓✓ Lemma-Kollokationssuche✓✓ (einfach), Abstandswahl
      kommt (mittlere Priorität) Satz-Suche (Transkription, Grammatik, Übersetzung, ...)✕kommt (mittlere Priorität) Hieroglyphen-Suche, Lemma-Nennschreibung✓(niedrige Priorität) @@ -96,7 +104,7 @@

      Vergleich alter vs. neuer TLA, mit Entwicklungsperspektiven

      Text-Seite: Textinhalt (Sätze)✓✓ 0bjektanzeige-Seite✓✓ Text-/Objekt-Suche✓kommt (hohe Priorität) - Text-/Objekt-Baum/Browser✓kommt (mittlere Priorität) + Text-/Objekt-Baum/Browser✓(✓) (PDF) Thesauruseintrag-Seiten✕✓ (zitierbar) Auswertung Wortstatistiken✓(niedrige Priorität) @@ -112,7 +120,7 @@

      Vergleich alter vs. neuer TLA, mit Entwicklungsperspektiven

      Text/Objekt-ID nachschlagen✕✓ Persistente Thesaurus-Eintrag-IDs/-URLs✕✓ Thesaurus-Eintrag-ID nachschlagen✕✓ - Inhalt nachhaltig verifizierbar✕kommt: Rohdaten-Publikation
      (hohe Priorität) + Inhalt nachhaltig verifizierbar✕kommt: Rohdaten-Publikation
      (mittlere Priorität) Usability WebanwendungssprachenDE, ENDE, EN; perspektivisch weitere Smartphone-Tauglichkeit (Responsive Design)✕✓ @@ -121,7 +129,7 @@

      Vergleich alter vs. neuer TLA, mit Entwicklungsperspektiven

      Share-Funktionalität✕✓ Feedback-Formular✕kommt (mittlere Priorität) Nachnutzung - Freie Lizensierung der Daten✕✓ (CC BY-SA 4.0 Int.) + Freie Lizensierung der Daten✕Siehe hier. Transkription in Unicode✕✓ Hieroglyphen in Unicode✕✓ (Lemmata; für Sätze experimentell) Zusatzangebote diff --git a/src/main/resources/pages/de/legal/imprint.html b/src/main/resources/pages/de/legal/imprint.html index fcac3086..25aeb071 100644 --- a/src/main/resources/pages/de/legal/imprint.html +++ b/src/main/resources/pages/de/legal/imprint.html @@ -57,8 +57,8 @@

      Finanzierung

      Technische Realisierung

      Datentransformation BTS > TLA: Jakob Höper (2018–2020); Dominik Blöse, Daniel A. Werning (seit 2021)
      - Backend: Jakob Höper (2018–2020); Dominik Blöse, Cristina Vertan, Daniel A. Werning (seit 2021)
      - Frontend: Jakob Höper (2018–2020); Daniel A. Werning (seit 2019), Cristina Vertan (seit 2021), Dominik Blöse (seit 2023) + Backend: Jakob Höper (2018–2020), Cristina Vertan (2021–2023); Dominik Blöse, Daniel A. Werning (seit 2021)
      + Frontend: Jakob Höper (2018–2020), Cristina Vertan (2021–2023); Daniel A. Werning (seit 2019), Dominik Blöse (seit 2023)

      Design-Konzept

      @@ -71,7 +71,7 @@

      Design-Konzept

      Webmaster

      - tla-web@bbaw.de + tla-web@bbaw.de

      Ausführender Redakteur der Webanwendung

      @@ -98,7 +98,7 @@

      Kontakt

      Die Herausgeber, der ausführende Redakteur und sein Team versuchen alles die Informationen auf der Website akurat zu halten, können aber keine rechtliche Verantwortung dafür übernehmen.
      Mit Fragen und Vorschlägen bezüglich des Inhalts wenden Sie sich bitte an: Dr. Daniel Werning.
      - Mit technischen Fragen wenden Sie sich bitte an das TLA Webmaster-Team: tla-web@bbaw.de. + Mit technischen Fragen wenden Sie sich bitte an das TLA Webmaster-Team: tla-web@bbaw.de.

      diff --git a/src/main/resources/pages/de/listings/thesauri.html b/src/main/resources/pages/de/listings/thesauri.html new file mode 100644 index 00000000..16c53dad --- /dev/null +++ b/src/main/resources/pages/de/listings/thesauri.html @@ -0,0 +1,56 @@ +
      +
      +

      TLA Thesauri (kontrolliertes Vokabular)

      +
      +
      + +
      +
      +
      +
      +
      diff --git a/src/main/resources/pages/en/home.html b/src/main/resources/pages/en/home.html index fe953f32..2dd3dc84 100644 --- a/src/main/resources/pages/en/home.html +++ b/src/main/resources/pages/en/home.html @@ -12,6 +12,7 @@

      Welcome to the Thesaurus Linguae Aegyptiae.

      +
      New: Text corpus issue 18 (Nov. 2023): new authors, new/expanded corpora, overview text object tree [PDF].
    diff --git a/src/main/resources/pages/en/info/authors.html b/src/main/resources/pages/en/info/authors.html index f1604f45..19685797 100644 --- a/src/main/resources/pages/en/info/authors.html +++ b/src/main/resources/pages/en/info/authors.html @@ -7,25 +7,26 @@

    Individual authors of texts

    Text and text groups mentioned are those in which the authors are noted as “main authors.”

    Research projects

    • Project Deir el Medine online (led by Günter Burkard, with contributions by Maren Goecke-Bauer, Martina Landrino)
    • Göttinger Medizinprojekt (led by Camilla Di Biase-Dyson, with contributions by Lisa Augner, Melanie Glöckner, Mareike Göhmann, Sven Philippi, Anja Roß, Eike Willenbockel, Jan-Malte Ziegenbein; further editors: Billy Böhm, Peter Dils, Johannes Jüngling, Lutz Popko): pHearst)
    • +
    • Project Nile in Contact (Roberto A. Díaz Hernández)
    @@ -74,7 +77,7 @@

    Project teams

  • AV Altägyptisches Wörterbuch, BBAW
  • AV Wortschatz der ägyptischen Sprache, BBAW
      -
    • R. Dominik Blöse (Data transformation BTS > TLA)
    • +
    • R. Dominik Blöse (Data transformation BTS > TLA, Web application)
    • Angela Böhme (Editorial work, Thesauri)
    • Frank Feder (Coptic lemma list)
    • Silke Grallert (Thesauri)
    • @@ -89,6 +92,7 @@

      Project teams

      • Anke Blöbaum (Lemma lists)
      • Billy Böhm (Editing hieroglyphs, Editorial work)
      • +
      • New: Svenja Damm (Editing hieroglyphs, Editorial work)
      • Peter Dils (Editorial work, Thesauri)
      • Jessica Jancziak (Editing hieroglyphs, Editorial work)
      • Ines Köhler (Thesauri)
      • @@ -99,11 +103,13 @@

        Project teams

        Individual researchers

        • Horst Beinlich (Hieroglyphic-hieratic lemma list)
        • -
        • Marianne Eaton-Krauss (English translations of lemmata)
        • +
        • Marianne Eaton-Krauss (English translations equivalents for lemmata)
        • Jochen Hallof (Hieroglyphic-hieratic lemma list: personal names)
        • Friedhelm Hoffmann (Demotic lemma list, hieroglyphic-hieratic lemma list)
        • -
        • Andrea Sinclair (English translations of lemmata)
        • +
        • New: Alexander Ilin-Tomich (Links to PNM project)
        • +
        • Andrea Sinclair (English translations equivalents for lemmata)
        • Günter Vittmann (Demotic lemma list)
        • +
        • New: Fabian Wespi (Links to/from DPDP project)

        Student Assistents

        (Editing hieroglyphs, Editorial work)

        @@ -112,14 +118,17 @@

        Student Assistents

      • Sophie Diepold (BBAW)
      • Charlotte Dietrich (DFG Project led by Marc Brose)
      • Ricarda Gericke (DFG Project led by Marc Brose)
      • +
      • New: Elsa Goerschel (SAW)
      • Christine Greger (SAW)
      • Sebastian Hoedt (BBAW)
      • +
      • New: Samuel Huster (SAW)
      • Joanna Hypszer (BBAW)
      • Johannes Jüngling (SAW)
      • Kay Christine Klinger (SAW)
      • Sabrina Karoui (SAW)
      • Florence Langermann (SAW)
      • Vivian Rätzke (BBAW)
      • +
      • New: Elio N.D. Rossetti (BBAW)
      • Lisa Seelau (BBAW)
      • Jonas Treptow (BBAW)
      • Anja Weber (BBAW)
      • @@ -138,14 +147,21 @@

        Interns

      • Vinca Michaelis (BBAW)
      • Franka Milde (BBAW)
      • Nina Overesch (BBAW)
      • +
      • New: Johannes Schmitt (BBAW)
      • +
      • New: Carolina Schweitzer (BBAW)
      • +
      • New: Sara Toumi (BBAW)
      • Veronica Zampedri (BBAW)

      Student projects/classes

      (Editing texts/hieroglyphs)

        +
      • New: Jake Colloff (HU Berlin)
      • Anne Grischeck (HU Berlin)
      • +
      • New: Niklas Hartmann (HU Berlin)
      • +
      • New: Pauline Klemke (HU Berlin)
      • Patryck Polan (HU Berlin)
      • -
      • Elio Nicolas Rossetti (HU Berlin)
      • +
      • New: Thordis A. Reuter (HU Berlin)
      • +
      • Elio N.D. Rossetti (HU Berlin)
  • @@ -158,6 +174,7 @@

    Sequential list of authors

    Burkhard Backes, Max Bader, Josefine Bar Sagi, + Stefan Baumann, Susanne Beck, Horst Beinlich, Maria Roza Beshara, @@ -170,6 +187,7 @@

    Sequential list of authors

    Marc Brose, Günter Burkard, Adelheid Burkhardt, + Jake Colloff, Svenja Damm, Camilla Di Biase-Dyson, Roberto A. Díaz Hernández, @@ -190,6 +208,7 @@

    Sequential list of authors

    Melanie Glöckner, Maren Goecke-Bauer, Mareike Göhmann, + Roberto Gozzoli, Erhart Graefe, Silke Grallert, Christine Greger, @@ -198,15 +217,19 @@

    Sequential list of authors

    Stefan Grunert, Ingelore Hafemann, Jochen Hallof, + Niklas Hartmann, Anne Herzberg, Sebastian Hoedt, Friedhelm Hoffmann, Jakob Höper, + Samuel Huster, Joanna Hypszer, + Alexander Ilin-Tomich, John M. Iskander, Jessica Jancziak, Johannes Jüngling, Sabrina Karoui, + Pauline Klemke, Kay Christine Klinger, Ines Köhler, Carina Kühne-Wespi, @@ -216,9 +239,11 @@

    Sequential list of authors

    Florence Langermann, Verena Lepper, Antonie Loeschner, + Claudia Maderna-Sieben, Emilia Mammola, Vinca Michaelis, Franka Milde, + Marcel Moser, Nina Overesch, Aurélie Paulet, Sven Philippi, @@ -229,10 +254,12 @@

    Sequential list of authors

    Joachim Friedrich Quack, Miriam Rathenow, Vivian Rätzke, + Thordis A. Reuter, Alexa Rickert, Anja Roß, - Elio Nicolas Rossetti, + Elio N. D. Rossetti, Donata Schäfer, + Johannes Schmitt, Jakob Schneider, Alexander Schütze, Simon D. Schweitzer, @@ -247,12 +274,14 @@

    Sequential list of authors

    Jan Tattko, Susanne Töpfer, Doris Topmann, + Sara Toumi, Jonas Treptow, + Cristina Vertan, Günter Vittmann, Daniel von Recklinghausen, - Cristina Vertan, Anja Weber, Daniel A. Werning, + Fabian Wespi, Eike Willenbockel, Annik Wüthrich, Veronica Zampedri, diff --git a/src/main/resources/pages/en/info/introduction.html b/src/main/resources/pages/en/info/introduction.html index db9cf02d..b988b218 100644 --- a/src/main/resources/pages/en/info/introduction.html +++ b/src/main/resources/pages/en/info/introduction.html @@ -13,7 +13,7 @@

    TLA – History of the TLA

    The TLA builds upon lexicographical work on the Ancient Egyptian language conducted under the direction of Adolf Erman at the Königliche Akademie der Wissenschaften zu Berlin starting in 1897, which resulted in the printed Berlin dictionary (A. Erman & H. Grapow, Wörterbuch der aegyptischen Sprache, 5 vols., 1926–1931, seven further supplement volumes until 1961). In 1992, the project “Altägyptisches Wörterbuch” (1992–2012) was inaugurated at the same academy (now: Berlin-Brandenburg Academy of Sciences and Humanities, BBAW). Its new digital agenda was the creation of an electronic lemmatized corpus of Egyptian texts. In 1996, a second team at the Saxon Academy of Sciences and Humanities in Leipzig joined the project.

    The first step of the digital agenda was taken in 1999 when the text corpus slips that had been printed, edited and lexicographically arranged in boxes in the decades of work on the original Wörterbuch were digitized and published online as the Digitalisiertes Zettelarchiv (DZA) [des Wörterbuchs der ägyptischen Sprache]. While the printed outcome of the original Wörterbuch project in the early 20th century referenced only about 10% of the collected material in the supplementary Belegstellen volumes (1935–1953), the digitized slip archive offered and still offers free access worldwide to the complete textual basis of the original Wörterbuch project.

    The first TLA web application was mainly programmed by the former research coordinator and project leader Stefan Seidlmayer and was put online on October 31, 2004— Adolf Erman’s 150th birthday. Since then, the TLA has become a reliable and powerful research instrument for Egyptologists. Its several search functionalities, such as search for Egyptian words (lemmata), search for word collocations and combinations, and search for hieroglyphic spellings (of lemmata), are designed to help scholars to pursue their philological, linguistic, or historical research interests. By 2014, the year of the last update of this first, now “legacy” TLA, the text corpus had increased to about 1.2 million instances (tokens) of Egyptian lemmata.

    -

    Meanwhile the TLA’s editorial system (Berlin Text System, BTS) contains about 1.47 mill. lemma tokens. However, only texts whose authors have agreed to share their contributions under a culture free license (CC BY-SA 4.0 Int.) will be published in the present new TLA. For a start, this first version of the “new TLA” only offers limited functionality. Therefore, the “legacy TLA” will stay online as long as technically possible, or until the constantly improving functionalities of the “new TLA” make the “legacy TLA” obsolete.

    +

    Meanwhile the TLA’s editorial system (Berlin Text System, BTS) contains about 1.47 mill. lemma tokens. However, only texts whose authors have agreed to share their contributions under a free license will be published in the present new TLA. The current version of the “new TLA” only offers limited functionality. Therefore, the “legacy TLA” will stay online as long as technically possible, or until the constantly improving functionalities of the “new TLA” make the “legacy TLA” obsolete.

    Some prospects for the future

    diff --git a/src/main/resources/pages/en/info/licenses.html b/src/main/resources/pages/en/info/licenses.html index 91d128af..7239d6da 100644 --- a/src/main/resources/pages/en/info/licenses.html +++ b/src/main/resources/pages/en/info/licenses.html @@ -4,15 +4,14 @@

    TLA – Licenses

    Scientific data

    -

    The scientific data available in this publication is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (CC BY-SA 4.0 Int.). -
    Creative Commons License

    -

    In due course, you will find a link to the citable and reusable raw data on the web page: aaew.bbaw.de/daten-veroeffentlichungen.

    - +

    You can copy and cite individual data sets, but not entire sub-corpora of this website for academic research purposes. +
    We are currently preparing a raw data publication of the scientific content to be published under a free license. You will find this linked on the page aaew.bbaw.de/daten-veroeffentlichungen, eventually.

    Implementation of the website

    -

    The implementation of this website is licensed under an Apache-2.0 license, see here. If you wish to use the implementation or design of this website, please contact the responsible editor.

    -

    For license information on the font EgyptianHiero used for rendering hieroglyphs in Unicode, see github.com/MKilani/Djehuty.

    -
    +

    We reserve the rights of use with regard to the design of this website, as it results primarily from tla-styles.css.

    +

    For license information on the font EgyptianHiero used for rendering hieroglyphs in Unicode, see github.com/MKilani/Djehuty.

    +
    +

    If you have any questions, please contact the executive editor. +

    diff --git a/src/main/resources/pages/en/info/text-corpus.html b/src/main/resources/pages/en/info/text-corpus.html index b8218736..d1d92ff8 100644 --- a/src/main/resources/pages/en/info/text-corpus.html +++ b/src/main/resources/pages/en/info/text-corpus.html @@ -15,27 +15,27 @@

    Details

    Text metadata and text object metadata

    -

    Texts and text objects systematically come with additional metadata which are not immanent in the text or text object itself. In order to enhance data retrieval, possible values of metadata are edited in controlled vocabularies (thesauri). Categories of data and metadata relating to texts and text objects are shown in the following table: +

    Texts and text objects systematically come with additional metadata which are not immanent in the text or text object itself. In order to enhance data retrieval, possible values of metadata are edited in controlled vocabularies (Thesauri). Categories of data and metadata relating to texts and text objects are shown in the following table: - - - - - - - + + + + + + + - - - - - - - + + + + + + +
    Text data and metadata Text object metadata
    Egyptological transliteration
    (Digital) hieroglyphic transcription
    Translation (German, English, or French)
    Script (Hieroglyphic, Hieratic, Demotic)
    Language phase (Old Egyptian, Middle Egyptian, etc.)
    Dating of the textDating of the text object
    Text category/type (‘genre’)Type of text object
    Component
    Agent of a social action
    Material
    Script (Hieroglyphic, Hieratic, Demotic)
    Language (phase) (Old Egyptian, Middle Egyptian, etc.)
    Dating of the text witnessDating of the text production
    Text category/typeType of text object
    Component
    Agent of a social action
    Material
    Dimension
    Condition
    Technique
    Archaeological Context
    Cultural Context
    Finding place
    Current location
    Bibliographical referencesBibliographical references
    Condition
    Technique
    Archaeological Context
    Cultural Context
    Finding place
    Current location
    Bibliographical referencesBibliographical references

    @@ -49,19 +49,20 @@

    General principles of text editing in the TLA

    The content of the text corpus

    -

    Currently, the following sub-corpora of ancient Egyptian texts are accessible in the TLA corpus. Sub-corpora with digital hieroglyphic transcription text are marked with [H], those with grammatical annotation are marked with [G]. (State of the list: early 2022)

    +

    New: A complete overview of the TLA's text object tree can be found here [PDF, 1,200 pages with links].

    +

    In the following you will find a manually compiled list, subdivided according to text dating. Sub-corpora with digital hieroglyphic transliteration are marked with [H], those with grammatical annotation with [G].

    -

    List of TLA authors

    +

    List of TLA authors

    For a complete list of authors, see here.

    History of the hieroglyphic/hieratic text corpus

    -

    The digital text corpus of the TLA was initiated as part of the Academy’s previous project “Altägyptisches Wörterbuch” (AAeW, 1992–2012) at the Berlin-Brandenburg Academy of Sciences and Humanities (funded by the Academies’ program of the Union of the German Academies of Sciences and Humanities). The idea was to create a digital successor to A. Erman’s & H. Grapow’s Wörterbuch der aegyptischen Sprache (1926–1931; 1950, 1963), notably including the Belegstellen (1935–1953) volumes, in the age of corpus-based computational lexicography: (i) a lemmatized balanced digital corpus of Egyptian texts in hieroglyphic, hieratic, and Demotic script, which builds up (ii) a corpus-based ‘dictionary’ of the ancient Egyptian language.

    +

    The digital text corpus of the TLA was initiated as part of the Academy’s previous project “Altägyptisches Wörterbuch” (AAeW, 1992–2012) at the Berlin-Brandenburg Academy of Sciences and Humanities (funded by the Academies’ program of the Union of the German Academies of Sciences and Humanities). The idea was to create a digital successor to A. Erman’s & H. Grapow’s Wörterbuch der aegyptischen Sprache (1926–1931; 1950, 1963), notably including the Belegstellen (1935–1953) volumes, in the age of corpus-based computational lexicography: (i) a lemmatized balanced digital corpus of Egyptian texts in hieroglyphic, hieratic, and Demotic script, which builds up (ii) a corpus-based ‘dictionary’ of the ancient Egyptian language.

    In order to further complete the lemma list, additional texts were selected to be added into the TLA based on a set of criteria. Texts that had not been used for the original Wörterbuch project and texts that had been published or re-edited after the project had ended were favored for inclusion. Late Egyptian texts that were to be encoded in the Projet Ramsès (Liège), on the other hand, were disfavored. With the growth of the project team and increasing support from cooperating projects and individual researchers, a broader, more balanced, more diverse corpus is evolving.

    diff --git a/src/main/resources/pages/en/info/tla-development.html b/src/main/resources/pages/en/info/tla-development.html index b71ac1bc..7e3dcbf8 100644 --- a/src/main/resources/pages/en/info/tla-development.html +++ b/src/main/resources/pages/en/info/tla-development.html @@ -5,12 +5,20 @@

    TLA Development

    Version history

      +
    • 11/24/2023: +
        +
      • Web app: v2.1.2, improvements +
        (Improved:) List of glossing abbreviations; +
        (Updated:) Information on corpus, authors, bibliography; +
        (Changed:) Counting of sentence reading variants now decimal, license information, +
        (New:) List of metadata thesauri.
      • +
      • Text corpus: v18, expanded
      • +
      +
    • 11/3/2023:
      • Web app: v2.1.1, improvements -
        (New:) --; -
        (Changed:) --; -
        (Improved:) Bugfix: sentence reading variant enumeration.
      • +
        (Improved:) Bugfix: sentence reading variant enumeration.
      • Text corpus: v17, unchanged
    • @@ -64,7 +72,7 @@

      Comparison of legacy vs. new TLA, with development perspectives

      Lemmata: French translation equivalentspartly (hiero. only)partly (hiero. only) Lemmata: comments✕✓ (esp. medical texts) Lemmata: linking composites/parts (ḥm-nṯr > ḥm, ...)✓ (Demotic only)✓ - Sentences/sentence words: comments✓ (scope: sentence)(✓) (scope: sentence; Bug: comments
      from before 2015 only in corpus v17);
      spec. of scope to come (medium priority) + Sentences/sentence words: comments✓ (scope: sentence)(✓) (scope: sentence;
      spec. of scope to come (medium priority) Sentences/sentence words: annotations✕to come (medium priority) Sentence words: hieroglyphs(✓) (JSesh MdC; few)✓ (JSesh-MdC; many) Sentence words: word class✕✓ @@ -72,7 +80,7 @@

      Comparison of legacy vs. new TLA, with development perspectives

      Sentence words: contextual meaning(✓) (for searched lemma only)✓ Texts/objects: authorship✓ (main author)✓ (main author, further editors) Texts/objects: comments/annotations✕to come (medium priority) - Content with free license✕✓ (CC BY-SA 4.0 Int.) + Content comes with free license✕(✓) (separate raw data publication,
      to be published) Content without free license✓✕ (continued usage in legacy TLA;
      concerns Edfu project data) Digital references References to DZA✓ (website internal)✓ (reference to legacy TLA
      for the time being) @@ -83,7 +91,7 @@

      Comparison of legacy vs. new TLA, with development perspectives

      Lemma search: incl. hierarchy✓to come (medium priority) Lemma search: incl. composites (ḥm > ḥm-nṯr, ...)✕to come (medium priority) Root search; Lemma search: via root transcription✕✓ - Lemma search result: sorting✓✓ (new: chronological) + Lemma search result: sorting✓✓ Lemma collocation search✓✓ (simple), distance spec.
      to come (medium priority) Sentence search (transliteration, grammar, translation, ...)✕to come (medium priority) Hieroglyph search, lemma spelling✓ (low priority) @@ -96,7 +104,7 @@

      Comparison of legacy vs. new TLA, with development perspectives

      Text pages: text content (sentences)✓✓ 0bject page✓✓ Text/object search✓to come (high priority) - Text/object tree/browser✓to come (medium priority) + Text/object tree/browser✓(✓) (PDF) Thesaurus entry pages✕✓ (citable) Analysis Word statistics✓(low priority) @@ -112,7 +120,7 @@

      Comparison of legacy vs. new TLA, with development perspectives

      Look up text/object ID✕✓ Persistent thesaurus entry IDs/URLs✕✓ Look up thesaurus entry ID✕✓ - Content persistently verifiable✕to come: raw data publication
      (high priority) + Content persistently verifiable✕to come: raw data publication
      (medium priority) Usability Web application languagesDE, ENDE, EN; perspectively more Smartphone compatibility (responsive design)✕✓ @@ -121,7 +129,7 @@

      Comparison of legacy vs. new TLA, with development perspectives

      Share functionality✕✓ Feedback form✕to come (medium priority) Reuse - Free licensing of data✕✓ (CC BY-SA 4.0 Int.) + Free licensing of data✕See here. Transcription in Unicode✕✓ Hieroglyphs in Unicode✕✓ (lemmata; experimental for sentences) Additional resources diff --git a/src/main/resources/pages/en/legal/imprint.html b/src/main/resources/pages/en/legal/imprint.html index f0bccc72..b05c6b16 100644 --- a/src/main/resources/pages/en/legal/imprint.html +++ b/src/main/resources/pages/en/legal/imprint.html @@ -63,8 +63,8 @@

      Financing

      Technical realisation

      Data processing BTS > TLA: Jakob Höper (2018–2020); Dominik Blöse, Daniel A. Werning (since 2021)
      - Backend: Jakob Höper (2018–2020); Dominik Blöse, Cristina Vertan, Daniel A. Werning (since 2021)
      - Frontend: Jakob Höper (2018–2020); Daniel A. Werning (since 2019), Cristina Vertan (since 2021), Dominik Blöse (since 2023) + Backend: Jakob Höper (2018–2020), Cristina Vertan (2021–2023); Dominik Blöse, Daniel A. Werning (since 2021)
      + Frontend: Jakob Höper (2018–2020), Cristina Vertan (2021–2023); Daniel A. Werning (since 2019), Dominik Blöse (since 2023)

      Basic design

      @@ -77,7 +77,7 @@

      Basic design

      Webmaster

      - tla-web@bbaw.de + tla-web@bbaw.de

      Executive editor of the web application

      @@ -105,7 +105,7 @@

      Contact

      The editors, the executive editor, and his team make every effort to ensure that information is accurate, but they can accept no legal liability for this. For questions and suggestions on content, please contact: Dr. Daniel Werning; - for technical questions please contact the TLA webmaster team: tla-web@bbaw.de. + for technical questions please contact the TLA webmaster team: tla-web@bbaw.de.

      diff --git a/src/main/resources/pages/en/listings/bibliography.html b/src/main/resources/pages/en/listings/bibliography.html index e96ab0d8..9e351d27 100644 --- a/src/main/resources/pages/en/listings/bibliography.html +++ b/src/main/resources/pages/en/listings/bibliography.html @@ -11,26 +11,23 @@

      Abbreviat 4. Tempeltagung4. Ägyptologische Tempeltagung. Köln, 10.-12. Oktober 1996. Feste im Tempel. Hrsg. von Gundlach, Rolf, Rochholz, Matthias. ÄUAT 33,2. 1998. 5. Tempeltagung5. Ägyptologische Tempeltagung: Würzburg, 23.-26. September 1999. Hrsg. von Beinlich, Horst, Hallof, Jochen, Hussy, Holger, Pfeil, Christiane von. ÄUAT 33, 3. 2002. À l'école des scribesÀ l’école des écribes, Les écritures de l’Égypte ancienne. Hrsg. von Bazin Rizzo, L. CENIM 15. 2016. - Abder-Raziq, in: Fs MokhtarAbder-Raziq, Mahmud, Das Grab des Schepesj-pu-Ptah in Saqqara. In: Fs Mokhtar, 1985, 219-230. - Abou-Roasch [I.3.]Bisson de La Roque, Fernand, Rapport sur les fouilles d'Abou-Roasch. [I.3] (1922 - 1923). FIFAO I,3. 1924. - Abou-Roasch [II.1]Bisson de La Roque, Fernand, Rapport sur les fouilles d'Abou-Roasch. [II.1] (1924). FIFAO II.1. 1925. - Abou-RoaschBisson de La Roque, Fernand, Rapport sur les fouilles d'Abou-Roasch. 1924-1925. + Abou-RoaschBisson de La Roque, Fernand, Rapport sur les fouilles d’Abou-Roasch. 1924-1925. + Abou-Roasch [I.3.]Bisson de La Roque, Fernand, Rapport sur les fouilles d’Abou-Roasch. [I.3] (1922 - 1923). FIFAO I,3. 1924. + Abou-Roasch [II.1]Bisson de La Roque, Fernand, Rapport sur les fouilles d’Abou-Roasch. [II.1] (1924). FIFAO II.1. 1925. Abubakr, KronenAbubakr, Abd el Monem, Untersuchungen über die ägyptischen Kronen. 1937. - Abubakr/Osing, MDAIK 29, 1973Abubakr, Abd el Monem, Osing, Jürgen, Ächtungstexte aus dem Alten Reich. In: MDAIK 29, 1973, 97-133. + AbydosPetrie, William M. Flinders, Abydos. EEF 22, 24-25. 1902-1904. Abydos I.Petrie, William M. Flinders, Weigall, Arthur E. P., Abydos. Part I. EEF 22. 1902. Abydos II.Petrie, William M. Flinders, Griffith, Francis Llewellyn, Abydos. Part II. EEF 24. 1903. Abydos III.Ayrton, Edward Russell, Currelly, Charles T., Weigall, Arthur E. P., Abydos. Part III. EEF 25. 1904. - AbydosPetrie, William M. Flinders, Abydos. EEF 22, 24-25. 1902-1904. - Act. 1949Les Actes des journées scientifiques d'orientalisme. Praha-Dobřiš 20.6. - 25.6.1949. AcOr 19. 1951. + Act. 1949Les Actes des journées scientifiques d’orientalisme. Praha-Dobřiš 20.6. - 25.6.1949. AcOr 19. 1951. Act. NubieActes du IIe Symposium International sur la Nubie (Février 1-3, 1971). Hrsg. von Habachi, Labib. SASAE 24. 1981. Act. VActes du Ve Congrès International de Papyrologie. Oxford, 30 août - 3 septembre 1937. 1938. Act. XXIActes du XXIe Congrès International des Orientalistes, Paris, 23-31 juillet 1948. 1949. Actes du IXe congr. intern. des études démotiquesActes du IXe congrès international des études démotiques Paris, 31 août - 3 septembre 2005. Hrsg. von Widmer, Ghislaine, Devauchelle, Didier. BdE 147. 2009. Acts 1st ICEActs. First International Congress of Egyptology. Cairo, October 2-10, 1976. Hrsg. von Reineke, Walter Friedrich. SGKAO 14. 1979. + Acts of the 13th Intern. Conf. of Dem. StudiesNew Approaches in Demotic Studies. Acts of the 13th International Conference of Demotic Studies. Hrsg. von Naether, Franziska. 2019. (new) Acts of the 7th Intern. Conf. of Dem. StudiesActs of the Seventh International Conference of Demotic Studies Copenhagen, 23-27 August 1999. Hrsg. von Ryholt, Kim. CNI Publications 27. 2002. - Adam/El-ShabouryAdam, Shehata, El-Shaboury, Farid, Report on the Work of Karnak during the Seasons 1954-55 and 1955-56. In: ASAE 56, 1959, 35-52. Adrom, AmenemhetAdrom, Faried, Die Lehre des Amenemhet. BAe 19. 2006. - Adrom, LingAeg 12, 2004Adrom, Faried, Der Gipfel der Frömmigkeit? Überlegungen zur Semantik und religiösen Symbolik von tꜣ-dhn.t. In: LingAeg 12, 2004, 1-20. AEBJanssen, Jozef M. A., Annual Egyptological Bibliography. 1.1947 (1948) - . AEGDAl-Ayedi, Abdul Rahman, Ancient Egyptian geographic dictionary. 2012. Aegyptische Kunst (Ausstellungskat. Essen)5000 Jahre Aegyptische Kunst. 15. Mai bis 27. August 1961 in Villa Hügel, Essen. Hrsg. von Müller, Hans Wolfgang, Wessel, Klaus, Beckerath, Jürgen von. 1961. @@ -43,371 +40,214 @@

      Abbreviat Ägyptens Schätze entdeckenÄgyptens Schätze entdecken. Meisterwerke aus dem Ägyptischen Museum Turin. Hrsg. von Heimann, Simone. 2012. Ägyptische TempelÄgyptische Tempel - Struktur, Funktion und Programm (Akten der Ägyptologischen Tempeltagungen in Gosen 1990 und in Mainz 1992). Hrsg. von Gundlach, Rolf, Rochholz, Matthias. HÄB 37. 1994. Aharoni, LandAharoni, Yohanan, Das Land der Bibel. Eine historische Geographie. 1984. - ÄHG (2. Aufl.)Assmann, Jan, Ägyptische Hymnen und Gebete übersetzt, kommentiert und eingeleitet. Zweite, verbesserte und erweiterte Auflage. OBO. 1999. ÄHGAssmann, Jan, Ägyptische Hymnen und Gebete. BAW. 1975. + ÄHG (2. Aufl.)Assmann, Jan, Ägyptische Hymnen und Gebete übersetzt, kommentiert und eingeleitet. Zweite, verbesserte und erweiterte Auflage. OBO. 1999. Ahituv, Canaanite ToponymsAhituv, Shmuel, Canaanite Toponyms in Ancient Egyptian Documents. 1984. - Ahituv, IEJ 46, 1996Ahituv, Shmuel, Sources for the Study of the Egyptian-Canaanite Border Administration. In: IEJ 46, 1996, 219-224. + ÄIBÄgyptische Inschriften aus den Königlichen Museen zu Berlin. 1913-1924. ÄIB IÄgyptische Inschriften aus den Königlichen Museen zu Berlin. Bd. 1. Inschriften von der ältesten Zeit bis zum Ende der Hyksoszeit. 1913. ÄIB IIÄgyptische Inschriften aus den Königlichen Museen zu Berlin. Bd. 2. Inschriften des Neuen Reiches. 1924. - ÄIBÄgyptische Inschriften aus den Königlichen Museen zu Berlin. 1913-1924. AKMBÄgyptische und vorderasiatische Alterthümer aus den Königlichen Museen zu Berlin (4 Bde.). 1895-1897. + Akten 8. Intern. Konferenz Dem. StudienAkten der 8. Internationalen Konferenz für Demotische Studien Würzburg 27.– 30. August 2002. Hrsg. von Zauzich, Karl-Theodor. 2019. (new) Akten VIIIAkten des VIII. Internationalen Kongresses für Papyrologie Wien 1955. 1956. Akten XIIIAkten des XIII. internationalen Papyrologenkongresses: Marburg/Lahn, 2. bis 6. August 1971. Hrsg. von Kießling, Emil, Rupprecht, Hans-Albert. MBP 66. 1974. Al-Ayedi, Titles NKAl-Ayedi, Abdul Rahman, Index of Egyptian Administrative, Religious and Military Titles of the New Kingdom. 2006. Al-Ayedi, WarAl-Ayedi, Abdul Rahman, The Liberation War. The Expulsion of the Hyksos from Egypt. 2007. - Albright/Rowe, JEA 14, 1928Albright, William Foxwell, Rowe, Alan, A royal stele of the New Empire from Galilee. In: JEA 14, 1928, 281-287. - Aldred, JEA 45, 1959Aldred, Cyril, The Beginning of the el-'Amārna Period. In: JEA 45, 1959, 19-33. - Ali, GM 131, 1992Ali, Mohammed Sherif, ṯꜥr: eine Maßeinheit im Papyrus Boulaq 19. In: GM 131, 1992, 7-10. - Allam, ASAE 71, 1987Allam, Schafik, Trois missives d'un commandant (Pap. CGC 58053-5). In: ASAE 71, 1987, 5-27. - Allam, FuB 22, 1982Allam, Schafik, Einige hieratische Ostraka der Papyrussammlung der Staatlichen Museen zu Berlin. In: FuB 22, 1982, 51-61. Allam, HathorkultAllam, Schafik, Beiträge zum Hathorkult (bis zum Ende des Mittleren Reiches). MÄS 4. 1963. Allam, in: Fs GoedickeAllam, Schafik, Implications in the Hieratic P. Berlin 8523 (Registration of Land-holdings). . - Allam, in: Fs MokhtarAllam, Schafik, Trois lettres d'affaires (P. Caire CG 58056, 58058, 58060). In: Fs Mokhtar, 1985, 19-30. - Allam, JEA 61, 1975Allam, Schafik, Papyrus Moscow 127 (Translation and Notes). In: JEA 61, 1975, 147-153. - Allam, Journal of the Faculty of Archaeology (Cairo) 7, 1996Allam, Mourad Zaki, Zum Ausdruck fꜣj mhd. In: Journal of the Faculty of Archaeology 7, 1996, 83-84. - Allam, MDAIK 37, 1981Allam, Schafik, Ostracon Berlin P. 12398. In: MDAIK 37, 1981, 9-13. Allam, Ostr. u. Pap.Allam, Schafik, Hieratische Ostraka und Papyri aus der Ramessidenzeit. 1973. Allam, pBerlin 3031Allam, Mourad Zaki, Papyrus Berlin 3031. Totentexte der 21. Dynastie mit und ohne Parallelen. 1992. - Allam, WdO 14, 1983Allam, Schafik, Papyrus Boulaq XIV und die Silber-Schrift. In: WdO 14, 1983, 22-29. - Allen, AJSL 38, 1921-1922Allen, Thomas George, The Story of an Egyptian Politician. In: AJSL 38, 1921-1922, 55-62. + Allen, AEPTAllen, James P., The Ancient Egyptian Pyramid Texts. 2005. Allen, Art Of MedicineAllen, James P., The Art of Medicine in Ancient Egypt. 2005. - Allen, BASOR 352, 2008Allen, James P., The historical inscription of Khnumhotep at Dahshur: preliminary report. In: BASOR 352, 2008, 29-39. Allen, Book of DeadAllen, Thomas George, The Book of the Dead or Going forth by Day. SAOC 37. 1974. - Allen, BSFE 173, 2009Allen, James P., L'inscription historique de Khnoumhotep à Dahchour. In: BSFE 173, 2009, 13-31. + Allen, ConcordanceAllen, James P., A New Concordance of the Pyramid Texts. 2013. (new) + Allen, Concordance IAllen, James P., A New Concordance of the Pyramid Texts. Volume I: Introduction, Occurrences, Transcription. 2013. https://oi-idb.uchicago.edu/id/b154b937-6036-43f4-a28d-3c92adc04aab (new) + Allen, Concordance IIAllen, James P., A New Concordance of the Pyramid Texts. Volume II: PT 1–246. 2013. https://oi-idb.uchicago.edu/id/15c1eef8-e82e-4208-9d72-b4cd7cfa643f (new) + Allen, Concordance IIIAllen, James P., A New Concordance of the Pyramid Texts. Volume III: PT 247–421. 2013. https://oi-idb.uchicago.edu/id/8ff1bdc5-9b26-467b-9402-297c99774908 (new) + Allen, Concordance IVAllen, James P., A New Concordance of the Pyramid Texts. Volume IV: PT 422-538. 2013. https://oi-idb.uchicago.edu/id/55860209-f09f-4b6f-bd3f-40ce4c1a83ab (new) + Allen, Concordance VAllen, James P., A New Concordance of the Pyramid Texts. Volume V: PT 539–672. 2013. https://oi-idb.uchicago.edu/id/c0cc49dc-ec4b-4381-aa3b-b2da02052509 (new) + Allen, Concordance VIAllen, James P., A New Concordance of the Pyramid Texts. Volume VI: PT 673–*806. 2013. https://oi-idb.uchicago.edu/id/58879236-5ede-4bf5-b1b7-e09c6b12fee7 (new) Allen, Genesis Allen, James P., Genesis in Egypt: the philosophy of ancient Egyptian creation accounts. YES 2. 1988. Allen, Heqanakht PapyriAllen, James P., The Heqanakht Papyri. PMMA 27. 2002. - Allen, in: Archaism and InnovationAllen, James P., Old and New in the Middle Kingdom. In: Archaism and Innovation, 2009, 263-275. - Allen, in: Context of Scripture III (1)Papyrus Anastasi I, The Craft of the Scribe. In: Context of Scripture III, 2002, 9-14. - Allen, in: Context of Scripture III (2)Allen, James P., Papyrus Anastasi III, Praise of Pi-Ramessu. In: Context of Scripture III, 2002, 15. - Allen, in: Context of Scripture III (3)Allen, James P., Papyrus Anastasi V, A Report of Escaped Laborers. In: Context of Scripture III, 2002, 16. - Allen, in: Context of Scripture III (4)Allen, James P., Papyrus Anastasi VI. In: Context of Scripture III, 2002, 16-17. - Allen, in: Fs GriffithsAllen, James P., Rē'wer's Accident. In: Fs Griffiths, 1992, 14-20. - Allen, in: Fs LeclantAllen, James P., Reading a Pyramid. In: Fs Leclant I, 1994, 5-28. Allen, InflectionAllen, James P., The Inflection of the Verb in the Pyramid Texts. Bibliotheca Aegyptia 2/1-2. 1984. - Allen, JEA 90, 2004Allen, James P., Review: Berger el-Naggar, Catherine/ Leclant, Jean/ Mathieu Bernard/ Pierre-Croisiau, Isabelle (Hg.) 2001. Les textes de la pyramide de Pépy 1er. In: Leclant, Pepy, 2004, 12-16. - Allen, Middle Egyptian LiteratureAllen, James P., Middle Egyptian Literature. Eight Literary Works of the Middle Kingdom. 2015. Allen, Middle EgyptianAllen, James P., Middle Egyptian. An Introduction to the Language and Culture of Hieroglyphs. 2000. - Allen, Pyramid TextsAllen, James P., The Ancient Egyptian Pyramid Texts. 2005. + Allen, Middle Egyptian LiteratureAllen, James P., Middle Egyptian Literature. Eight Literary Works of the Middle Kingdom. 2015. Allen, StelaeAllen, Thomas George, Egyptian Stelae in Field Museum of Natural History. FMNH Anthropol. Ser. 24. 1936. - Alliot, BIFAO 37, 1937Alliot, Maurice, Un nouvel exemple de vizir divinisé dans l'Égypte ancienne. In: BIFAO 37, 1937, 93-160. Alliot, EdfouAlliot, Maurice, Fouilles de Tell Edfou (1933). FIFAO 10. 1935. - Alliot, RdE 10, 1955Alliot, Maurice, Une famille de mots reconstituée: 𓇋‌𓈖𓋴 Pyr., 𓇋‌𓆛𓈖‌𓋴‌𓍱 Gr., ins "être rouge". In: RdE 10, 1955, 1-7. - Alliot, RdE 5, 1946Alliot, Maurice, Les rites de la chasse au filett, aux temples de Karnak. In: RdE 5, 1946, 57-118, Anm. 1. - Alt, ZDPV 70, 1954Alt, Albrecht, Neue Berichte über Feldzüge von Pharaonen des Neuen Reiches nach Palästina. In: ZDPV 70, 1954, 33-75. Altenmüller, AnnalenfragmenteAltenmüller, Hartwig, Zwei Annalenfragmente aus dem frühen Mittleren Reich. SAK Beihefte 16. 2015. - Altenmüller, GM 200, 2004Altenmüller, Hartwig, šdt m dšr - der Bau von Schiffen aus Importholz. In: GM 200, 2004, 27-36. - Altenmüller, in: Fs AßfalgAltenmüller, Hartwig, Ein Edelstein. Einmal um die Ecke gedacht. In: Fs Aßfalg, 1990, 1-8. - Altenmüller, in: Fs DreyerAltenmüller, Hartwig, Der König als Vogelfänger und Fischer (nbty wḥꜥ). Zu frühen Belegen eines traditionellen Motivs. In: Fs Dreyer, 2008, 1-18. - Altenmüller, in: Gs WildAltenmüller, Hartwig, Das "Sänftenlied" des Alten Reiches. In: Gs Wild, 1984-85, 15-30. - Altenmüller, JEA 57, 1971Altenmüller, Hartwig, Eine neue Deutung der Zeremonie des init rd. In: JEA 57, 1971, 146-153. Altenmüller, MehuAltenmüller, Hartwig, Die Wanddarstellungen im Grab des Mehu in Saqqara. AV 42. 1998. - Altenmüller, SAK 14, 1987Altenmüller, Hartwig, Die sog. Kornspeicher in den Ernteszenen des Alten Reiches. In: SAK 14, 1987, 1-26. - Altenmüller, SAK 28, 2000Altenmüller, Hartwig, Die Nachtfahrt des Grabherrn im Alten Reich. Zur Frage der Schiffe mit Igelkopfbug. In: SAK 28, 2000, 1-26. - Altenmüller, SAK 6, 1978Altenmüller, Hartwig, Zur Bedeutung der Harfnerlieder des Alten Reiches. In: SAK 6, 1978, 1-24. - Altenmüller, SAK 9, 1981Altenmüller, Hartwig, Das Grab des Hetepniptah (G 2430) auf dem Westfriedhof von Giza. In: SAK 9, 1981, 9-56. - Altenmüller, ZÄS 92, 1966Altenmüller, Hartwig, "Messersee", "gewundener Wasserlauf" und "Flammensee". Eine Untersuchung zur Gleichsetzung und Lesung der drei Bereiche. In: ZÄS 92, 1966, 86-95. - Altenmüller/Moussa, SAK 18, 1991Altenmüller, Hartwig, Moussa, Ahmed M., Die Inschrift Amenemhets II. aus dem Ptah-Tempel von Memphis. Ein Vorbericht. In: SAK 18, 1991, 1-48. Althoff, KronenAlthoff, Eva Barbara, Kronen und Kopfputz von Königsfrauen im Neuen Reich. HÄB 49. 2009. - Aly, JACF 3, 1989/90Aly, Mohamed, Once more Netjerikhet and his family: a limestone stela from Sakkara. In: JACF 3, 1989/90, 27-28. Aly/Hamid/Leblanc, Le temple de Dandour IIAly, Mohamed, Hamid, Fouad-Abdel, Leblanc, Christian, Le temple de Dandour II: Dessins. CEDAE. 1979. - AmadaGauthier, Henri, Le Temple d'Amada. Temples Immergés. 1913. + AmadaGauthier, Henri, Le Temple d’Amada. Temples Immergés. 1913. Amarna VII, Vol. IMartin, Geoffrey Thorndike, The Rock Tombs of el-'Amarna VII. The Royal Tomb at El-'Amarna I. The Objects. ASE 35. 1974. Amarna VII, Vol. IIMartin, Geoffrey Thorndike, The Rock Tombs of el-'Amarna VII. The Royal Tomb at el-'Amarna II. The Reliefs, Inscriptions, and Architecture. ASE 39. 1989. - ÄMB KatalogÄgyptisches Museum. Staatliche Museen zu Berlin. Hrsg. von Priese, Karl-Heinz. 1991. ÄMBÄgyptisches Museum Berlin, Östlicher Stülerbau am Schloss Charlottenburg. Hrsg. von Kaiser, Werner. 1967. + ÄMB KatalogÄgyptisches Museum. Staatliche Museen zu Berlin. Hrsg. von Priese, Karl-Heinz. 1991. + Amélineau, AbydosAmélineau, Emile, Les nouvelles fouilles d’Abydos. 1895-1904. Amélineau, Abydos IAmélineau, Emile, Les nouvelles fouilles d´Abydos: 1895-1896. 1899. - Amélineau, Abydos IIAmélineau, Emile, Les nouvelles fouilles d'Abydos: Seconde campagne 1896-1897. 1902. - Amélineau, Abydos IIIAmélineau, Emile, Les nouvelles fouilles d'Abydos: 1897-1898. 1904-1905. - Amélineau, AbydosAmélineau, Emile, Les nouvelles fouilles d'Abydos. 1895-1904. + Amélineau, Abydos IIAmélineau, Emile, Les nouvelles fouilles d’Abydos: Seconde campagne 1896-1897. 1902. + Amélineau, Abydos IIIAmélineau, Emile, Les nouvelles fouilles d’Abydos: 1897-1898. 1904-1905. AmenemhetVolten, Aksel, Zwei altägyptische politische Schriften. Die Lehre für König Merikarê (Pap. Carlsberg VI) und die Lehre des Königs Amenemhet. AnAe 4. 1945. AmenemopeLange, Hans Ostenfeldt, Das Weisheitsbuch des Amenemope. Aus dem Papyrus 10, 474 des British Museum. 1925. Amenhotep IIIAmenhotep III: Perspectives on His Reign. Hrsg. von O'Connor, David B., Cline, Eric H. 1998. - Anch-ScheschonkiGlanville, Stephen Ranulph Kingdon, The instructions of Onchsheshonqy. British Museum papyrus 10508 . CDPBM 2,1. 1955. - Ancient Egypt Transformed (Ausstellungskat.)Ancient Egypt Transformed. The Middle Kingdom. Hrsg. von Oppenheim, A. L., Arnold, Dorothea, Arnold, Dieter, Yamamoto, Kei. 2015. - Andersson, Sphinx 15, 1911-1912Akmar, Ernst Teodor Andersson, Rezension: Valdemar Schmidt, Museum Münterianum. Collection de stèles égyptiennes léguées à l'évêché de Copenhague par feu Frédéric Münter, évêque de Sélande, et actuellement conservées à la Glyptothèque Ny Carlsberg, à Copenhague. In: Sphinx 15, 1911-1912, 61-66. - Andrássy, JESHO 45, 2002Andrássy, Petra, Jones, Dilwyn 2000. An index of ancient Egyptian titles, epithets and phrases of the Old Kingdom. In: Jones, Titles OK, 2002, 387-398. - Andreu/Cauville, RdE 29, 1977Andreu, Guillemette, Cauville, Sylvie, Vocabulaire absent du Wörterbuch (I). In: RdE 29, 1977, 5-13. - Andreu/Cauville, RdE 30, 1978Andreu, Guillemette, Cauville, Sylvie, Vocabulaire absent du Wörterbuch (II). In: RdE 30, 1978, 10-21. + Anch-ScheschonkiGlanville, Stephen Ranulph Kingdon, The instructions of Onchsheshonqy. British Museum papyrus 10508. CDPBM 2,1. 1955. + Ancient Egypt TransformedAncient Egypt Transformed. The Middle Kingdom. Hrsg. von Oppenheim, A. L., Arnold, Dorothea, Arnold, Dieter, Yamamoto, Kei. 2015. Andrews, Legal TextsAndrews, Carol, Catalogue of Demotic Papyri in the British Museum, vol. IV. Ptolemaic Legal Texts from the Theban Area. 1990. - ANEP 2. Aufl.Pritchard, James B., The ancient Near East in pictures relating to the Old Testament, 2. Aufl. with Supplement. 1969. ANEPPritchard, James B., The Ancient Near East in Pictures relating to the Old Testament. 1954. + ANEP 2. Aufl.Pritchard, James B., The ancient Near East in pictures relating to the Old Testament, 2. Aufl. with Supplement. 1969. ANETAncient Near Eastern Texts Relating to the Old Testament. Hrsg. von Pritchard, James B. 1950, 1955 (2. ed., corr. and enl.), 1969 (3. ed.). - Ani(i)Die Lehre des Anii. In: pBoulaq Bd. I. Pap. nos 1-9, 1871 , Taf. 15-28. ANOCSimpson, William Kelly, The Terrace of the Great God at Abydos. The Offering Chapels of Dynasties 12 and 13. PPYE 5. 1974. - Anonym, VA 6, 1990Time Capsule. In: VA 6, 1990, 99. AntaeopolisPetrie, William M. Flinders, Antaeopolis. The Tombs of Qau. BSAE 51. 1930. Anthes, HatnubAnthes, Rudolf, Die Felseninschriften von Hatnub. UGAÄ 9. 1928. - Anthes, in: Fs Mus. BerlinAnthes, Rudolf, Die Berichte des Neferhotep und des Ichernofret über das Osirisfest in Abydos. In: Festschrift zum 150jährigen Bestehen des Berliner Ägyptischen Museums, 1974, 15-49. - Anthes, ZÄS 110, 1983Anthes, Rudolf, Der König als Atum in den Pyramidentexten. In: ZÄS 110, 1983, 1-9. - Anthes, ZÄS 90, 1963Anthes, Rudolf, "... in seinem Namen und im Sonnenlicht …". In: ZÄS 90, 1963, 1-10. ApocalypticismApocalypticism in the Mediterranean World and the Near East. Proceedings of the International Colloquium on Apocalypticism, Uppsala, August 12-17, 1979. Hrsg. von Hellholm, David. 1983. Apokalyptik und ÄgyptenApokalyptik und Ägypten. Eine kritische Analyse der relevanten Texte aus dem griechisch-römischen Ägypten. Hrsg. von Blasius, Andreas, Schipper, Bernd U. OLA 107. 2002. Arch. Survey of NubiaThe Archaeological Survey of Nubia. 1910-1912. Archaism and InnovationArchaism and Innovation. Studies in the Culture of Middle Kingdom Egypt. Hrsg. von Silverman, David P., Simpson, William Kelly, Wegner, Josef W. 2009. Arkell, History SudanArkell, Anthony John, A History of the Sudan. From the Earliest Times to 1821, (Second edition, revised). 1955, 1961 (2. Aufl.). - Arkell, JEA 36, 1950Arkell, Anthony John, Varia Sudanica. In: JEA 36, 1950, 24-40. - Arkell, JEA 42, 1956Arkell, Anthony John, Stone bowls of Kha'ba (Third Dynasty). In: JEA 42, 1956, 116. Arlt, Mumienschilder im British MuseumArlt, Carolin, Deine Seele möge leben für immer und ewig. Die demotischen Mumienschilder im British Museum. StudDem 10. 2011. Arnold, El-TarifArnold, Dieter, Gräber des Alten und Mittleren Reiches in El-Tarif. AV 17. 1976. - Arnold, MDAIK, 32, 1976Arnold, Dorothea, Wandbild und Scherbenfund. Zur Töpfertechnik der alten Ägypter vom Beginn der pharaonischen Zeit bis zu den Hyksos. In: MDAIK 32, 1976, 1-34. Arnold, WandreliefArnold, Dieter, Wandrelief und Raumfunktion in ägyptischen Tempeln des Neuen Reiches. 1962. ARp 1907-1908Archaeological Report 1907-1908. Comprising the Work of the Egypt Exploration Fund and the Progress of Egyptology during the Year 1907-1908. Hrsg. von Griffith, Francis Llewellyn. ARp 1907-1908. 1908. Art Amenhotep IIIThe Art of Amenhotep III: Art Historical Analysis. Papers Presented at the International Symposium Held at The Cleveland Museum of Art. Cleveland, Ohio 20-21 November 1987. Hrsg. von Berman, Lawrence M. 1990. Art and AfterlifeArt and Afterlife in Ancient Egypt: from the British Museum [Tokyo]. 1999. Artistes de PharaonLes artistes de Pharaon. Deir el-Médineh et la Vallée des Rois. Hrsg. von Andreu, Guillemette. 2002. + Arts of MakingThe Arts of Making in Ancient Egypt. Voices, images, and objects of material producers 2000–1550 BC. Hrsg. von Miniaci, Gianluca, Moreno García, Juan Carlos, Quirke, Stephen, Stauder, Andréas. 2018. (new) Aspekte der spätägyptischen ReligionAspekte der spätägyptischen Religion. Hrsg. von Westendorf, Wolfhart. GOF 9. 1979. Asselberghs, ChaosAsselberghs, Henri, Chaos en Beheersing. 1961. - AssioutChassinat, Émile, Palanque, Charles, Une campagne de fouilles dans la nécropole d'Assiout. MIFAO 24. 1911. + AssioutChassinat, Émile, Palanque, Charles, Une campagne de fouilles dans la nécropole d’Assiout. MIFAO 24. 1911. Assmann, BasaAssmann, Jan, Das Grab des Basa (Nr. 389) in der thebanischen Nekropole. AV 6. 1973. Assmann, GedächtnisAssmann, Jan, Das kulturelle Gedächtnis. Schrift, Erinnerung und politische Identität in frühen Hochkulturen. 1992. - Assmann, in: ApocalypticismAssmann, Jan, Königsdogma und Heilserwartung. Politische und kultische Chaosbeschreibungen in ägyptischen Texten. In: Apocalypticism, 1983, 345-377. - Assmann, in: Fs Leclant IAssmann, Jan, Spruch 23 der Pyramidentexte und die Ächtung der Feinde Pharaos. In: Fs Leclant I, 1994, 45-59. - Assmann, in: Gs OttoAssmann, Jan, Fest des Augenblicks - Verheißung der Dauer. Die Kontroverse der ägyptischen Harfnerlieder. In: Gs Otto, 1977, 55-84. - Assmann, in: HymnenAssmann, Jan, Verkünden und verklären - Grundformen hymnischer Rede im Alten Ägypten. In: Hymnen, 1992, 33-58. - Assmann, in: Karnevaleske PhänomeneAssmann, Jan, Literatur und Karneval im alten Ägypten. In: Karnevaleske Phänomene, 1993, 31-57. - Assmann, in: Schrift und GedächtnisAssmann, Jan, Schrift, Tod und Identität. Das Grab als Vorschule der Literatur im alten Ägypten. In: Schrift und Gedächtnis, 1983, 64-93. - Assmann, in: Self, Soul and BodyAssmann, Jan, A Dialogue Between Self and Soul: Papyrus Berlin 3024. In: Self, Soul and Body, 1998, 384-403. - Assmann, in: TUAT 2,6Assmann, Jan, Ägyptische Hymnen und Gebete. In: TUAT 2,6, 1991, 827-928. - Assmann, JEA 65, 1979Assmann, Jan, Harfnerlied and Horussöhne. Zwei Blöcke aus dem verschollenen Grab des Bürgermeisters Amenemḥēt (Theben Nr. 163) im Britischen Museum. In: JEA 65, 1979, 54-77, Tf. 9. - Assmann, JNES 31, 1972Assmann, Jan, Palast oder Tempel? Überlegungen zur Architektur und Topographie von Amarna. In: JNES 31, 1972, 143-155. Assmann, Liturgische LiederAssmann, Jan, Untersuchungen zur altägyptischen Hymnik. Teil I: Liturgische Lieder an den Sonnengott. MÄS 19. 1969. Assmann, MutirdisAssmann, Jan, Das Grab der Mutirdis. AV 13. 1977. - Assmann, Saeculum 35, 1984Assmann, Jan, Politik zwischen Ritual und Dogma. Spielräume politischen Handelns im pharaonischen Ägypten. In: Saeculum 35, 1984, 97-114. Assmann, SonnenpriesterAssmann, Jan, Der König als Sonnenpriester. Ein kosmographischer Begleittext zur kultischen Sonnenhymnik in thebanischen Tempeln und Gräbern. ADAIK 7. 1970. Assmann, Stein und ZeitAssmann, Jan, Stein und Zeit. Menschen und Gesellschaft im Alten Ägypten. 1991. Assmann, Tod und JenseitsAssmann, Jan, Tod und Jenseits im Alten Ägypten. 2001. Assmann/Kucharek, Ägyptische ReligionAssmann, Jan, Kucharek, Andrea, Ägyptische Religion: Totenliteratur. 2008. + Assmann/Kucharek, TotenliturgienAssmann, Jan, Kucharek, Andrea, Altägyptische Totenliturgien. SHAWSuppl. 14-22. 2002-2010. Assmann/Kucharek, Totenliturgien 1Assmann, Jan, Altägyptische Totenliturgien. Band 1: Totenliturgien in den Sargtexten des Mittleren Reiches. SHAWSuppl. 14. 2002. Assmann/Kucharek, Totenliturgien 2Assmann, Jan, Altägyptische Totenliturgien. Band 2: Totenliturgien und Totensprüche in Grabinschriften des Neuen Reiches. SHAWSuppl. 17. 2005. Assmann/Kucharek, Totenliturgien 3Assmann, Jan, Altägyptische Totenliturgien. Band 3: Osirisliturgien in Papyri der Spätzeit. SHAWSuppl. 20. 2008. Assmann/Kucharek, Totenliturgien 4Kucharek, Andrea, Altägyptische Totenliturgie. Band 4: Die Klagelieder von Isis und Nephthys in Texten der Griechisch-Römischen Zeit. SHAWSuppl. 22. 2010. - Assmann/Kucharek, TotenliturgienAssmann, Jan, Kucharek, Andrea, Altägyptische Totenliturgien. SHAWSuppl. 14-22. 2002-2010. Assyrian DictionaryThe Assyrian Dictionary of the Oriental Institute of the University of Chicago. Hrsg. von Civil, Miguel, Gelb, Ignace J., Landsberger, Benno. 1956-2010. Aston, Burial Assemblages of Dynasty 21-25Aston, David A., Burial assemblages of dynasty 21-25: chronology - typology - developments. 2009. - Aston, in: The Libyan Period in EgyptAston, David A., Takeloth II, a king of the Herakleopolitan/Theban Twenty-Third Dynasty revisited: the chronology of Dynasties 22 and 23. In: Broekman/Demarée/Kaper, The Libyan period in Egypt, 2009, 1-28. Aston, Stone VesselsAston, Barbara G., Ancient Egyptian Stone Vessels. SAGA 5. 1994. - Aston/Taylor, in: Libya and EgyptAston, David A., Taylor, John H., The family of Takeloth III and the "Theban" twenty-third dynasty. In: Leahy, Libya and Egypt, 1990, 131-154. AthribisPetrie, William M. Flinders, Athribis. BSAE 14. 1908. - Auenmüller, in: HANAuenmüller, Johannes, Pharaonic Rock Inscriptions in Nubia - The 3rd and 2nd Millennia BC. In: HAN, 2019, 393-412. - Aufrère, BIFAO 100, 2000Aufrère, Sydney H., La liste des sept oasis d'Edfou. In: BIFAO 100, 2000, 79-127, Amn. j. - Aufrère, BIFAO 83, 1983Aufrère, Sydney H., Études de lexicologie et d'histoire naturelle I-III. In: BIFAO 83, 1983, 1-31. - Aufrère, BIFAO 87, 1987Aufrère, Sydney H., Études de lexicologie et d'histoire naturelle XVIII-XXVI. In: BIFAO 87, 1987, 21-44. Aufrère, Le propylôneAufrère, Sydney H., Le propylône d’Amon-Rê-Montou à Karnak-Nord. MIFAO 117. 2000. - Aufrère, L'univers minéralAufrère, Sydney H., L’univers minéral dans la pensée égyptienne. BdE 105/1-2. 1991. + Aufrère, L’univers minéralAufrère, Sydney H., L’univers minéral dans la pensée égyptienne. BdE 105/1-2. 1991. Auktionskatalog Paris 1904Antiquités égyptiennes trouvées à Abydos : ivoires, bois sculptés, terres émaillées, amulettes, scarabées, statuettes funéraires, objets en or et en bronze, silex, terres cuites et poteries, sculptures diverses, vases et coupes en pierre dure, stèles, tables et fragments avec inscriptions hiéroglyphiques, etc. ; dont la vente aura lieu, à Paris, Hôtel Drouot, salle no. 7, les lundi 8 et mardi 9 février 1904. 1904. - Ayrton/Loat, ARp 1908-1909, 1909Ayrton, Edward Russell, Loat, William Leonard Stevenson, Excavations at El Mahasna. In: ARp 1908-1909, 1909, 5-7. - Azim/Réveillac, KarnakAzim, Michel, Réveillac, Gérard, Karnak dans l'objectif de Georges Legrain. Catalogue raisonné des archives photographiques du premier directeur des travaux de Karnak de 1895 à 1917, 2 vols. 2004. + Azim/Réveillac, KarnakAzim, Michel, Réveillac, Gérard, Karnak dans l’objectif de Georges Legrain. Catalogue raisonné des archives photographiques du premier directeur des travaux de Karnak de 1895 à 1917, 2 vols. 2004. B. Altenmüller, SynkretismusAltenmüller, Brigitte, Synkretismus in den Sargtexten. GOF 7. 1975. - Bacchi, L'inno al NiloBacchi, Ernesta, L'inno al Nilo. 1943. + Bacchi, L’inno al NiloBacchi, Ernesta, L’inno al Nilo. 1943. Backes, HedjhotepBackes, Burkhard, Rituelle Wirklichkeit. Über Erscheinung und Wirkungsbereich des Webergottes Hedjhotep und den gedanklichen Umgang mit einer Gottes-Konzeption im Alten Ägypten. RitesEg 9. 2001. - Backes, in: Fs MunroBackes, Burkhard, "Was zu sagen ist" - zum Gesamttitel des Totenbuches. In: Fs Munro, 2009, 5-27. Backes, Papyrus SchmittBackes, Burkhard, Der Papyrus Schmitt (Berlin P. 3057). Ein funeräres Ritualbuch der ägyptischen Spätzeit. 2016. Backes, WortindexBackes, Burkhard, Wortindex zum späten Totenbuch (pTurin 1791). SAT 9. 2005. Bács/Beinlich, Constructing authorityConstructing authority: prestige, reputation and the perception of power in Egyptian kingship, Budapest, May 12-14, 2016. 8. Symposion zur ägyptischen Königsideologie / 8th symposium on Egyptian royal ideology. Hrsg. von Bács, Tamás A., Beinlich, Horst. 2017. Badarian CivilisationBrunton, Guy, Caton-Thompson, Gertrude, The Badarian Civilisation and Predynastic Remains Near Badari. BSAE 46. 1928. - Badawi, ASAE 42, 1943Badawi, Ahmad Mohamad, Die neue historische Stele Amenophis' II. In: ASAE 42, 1943, 1-23. - Badawi, ASAE 54, 1956Badawi, Ahmad Mohamad, Das Grab des Kronprinzen Scheschonk, Sohnes Osorkon's II. und Hohenpriester von Memphis. In: ASAE 54, 1956, 153-177. Badawy, ArchitectureBadawy, Alexander, A History of Egyptian Architecture. 1954, 1966-1968. Badawy, ItetiBadawy, Alexander, The Tomb of Iteti, Sekhem‘ankh-Ptah and Kaemnofret at Giza. 1976. Badawy, Nyhetep-Ptah and AnkhmahorBadawy, Alexander, The Tomb Nyhetep-Ptah at Giza and the Tomb of ‘Ankhm‘ahor at Saqqara. UCLAP 11. 1978. BaedekerÄgypten und der Sudan. Handbuch für Reisende. 1928. - Baer, JEA 51, 1965Baer, Klaus, Temporal wnn in Late Egyptian. In: JEA 51, 1965, 137-143. - Baer, Or 34, 1965Baer, Klaus, Ein Grab verfluchen? In: Or 34, 1965, 428-438. Baer, Rank and TitleBaer, Klaus, Rank and Title in the Old Kingdom. 1960. - Baer, ZÄS 93, 1966Baer, Klaus, A deed of endowment in a letter of the time of Ppjj I? In: ZÄS 93, 1966, 1-9. Bahrein and HemamiehMackay, Ernest, Harding, Lankester, Petrie, William M. Flinders, Bahrein and Hemamieh. BSAE 47. 1929. - Baillet, in: Fs ChampollionBaillet, Auguste, Hypothèse sur Amen-m-hât II. In: Fs Champollion, 1922, 257-260. - Baillet, RecTrav 26, 1904Baillet, Jules, La stèle de Si-montou-ousir. In: RecTrav 26, 1904, 20-22. - Baines, AcOr 36, 1974Baines, John, The Inundation Stela of Sebekḥotpe VIII. In: AcOr 36, 1974, 39-54. - Baines, AcOr 37, 1976Baines, John, The Sebekḥotpe VIII Inundation Stela. An Additional Fragment. In: AcOr 37, 1976, 11-20. - Baines, in: Fs FechtBaines, John, The Stela of Khusobek. Private and Royal Military Narrative and Values. In: Fs Fecht, 1987, 43-61. - Baines, JEA 72, 1986Baines, John, The Stela of Emhab. Innovation, Tradition, Hierarchy. In: JEA 72, 1986, 41-53. - Baines, JEA 76, 1990Baines, John, Interpreting the story of the Shipwrecked Sailor. In: JEA 76, 1990, 55-72, Anm. 25. - Baines, Or 39, 1970Baines, John, bnbn. Mythological and Linguistic Notes. In: Or 39, 1970, 389-404. - Baines/Parkinson, in: Fs te VeldeBaines, John, Parkinson, R. B., An Old Kingdom Record of an Oracle? Sinai Inscription 13. In: Fs te Velde, 1997, 9-27. Bakir, EpistolographyEgyptian Epistolography from the Eighteenth to the Twenty-First Dynasty. 1970. Bakir, SlaveryBakir, Abd el-Mohsen, Slavery in Pharaonic Egypt. CASAE 18. 1952. - Balcz, MDAIK 4, 1933Balcz, Heinrich, Die Gefäßdarstellungen des Alten Reiches. Fortsetzung des Aufsatzes im Band III, Heft 1 und 2. In: MDAIK 4, 1933, 18-36. - Balcz/Bittel, MDAIK 3, 1932Balcz, Heinrich, Bittel, Kurt, Grabungsbericht Hermopolis 1932. In: MDAIK 3, 1932, 9-45. Baligh, Tuthmosis IBaligh, Randa Omar Kazem, Tuthmosis I (Dissertation). 1997. Balty/Homès-Fredericq/De Meulenaere, Koninklijke museaBalty, Jean Charles, Homès-Fredericq, Denyse, De Meulenaere, Herman, Koninklijke musea voor kunst en geschiedenis Brussel. Oudheid. 1988. + BARBreasted, James Henry, Ancient Records of Egypt. 1927 (3. Aufl.). BAR IBreasted, James Henry, Ancient Records of Egypt. Historical Documents from the Earliest Times to the Persian Conquest, I. The First to the Seventeenth Dynasties. 1906. BAR IIBreasted, James Henry, Ancient Records of Egypt. Historical Documents. From the Earliest times to the Persian Conquest. Vol. II The Eighteenth Dynasty. 1906. BAR IIIBreasted, James Henry, Ancient Records of Egypt. Historical Documents. From the Earliest times to the Persian Conquest. III The Nineteenth Dynasty. 1906. - BARBreasted, James Henry, Ancient Records of Egypt. 1927 (3. Aufl.). Barbotin, ÂhmosisBarbotin, Christophe, Âhmosis et le début de la XVIIIe dynastie. 2008. - Barbotin, RdE 50, 1999Barbotin, Christophe, Le papyrus Chassinat III. In: RdE 50, 1999, 5-49. - Barbotin, RdE 63, 2012Barbotin, Christophe, Le dialogue de Khâkheperrêseneb avec son Ba: tablette British Museum EA 5645/Ostracon Caire JE 50249 + Papyri Amherst III & Berlin 3024. In: RdE 63, 2012, 1-20. Barbotin, Voix des HiéroglyphesBarbotin, Christophe, La voix des hiéroglyphes: promenade au département des antiquités égyptiennes du Musée du Louvre. 2005. - Barbotin/Clère, BIFAO 91, 1991Barbotin, Christophe, Clère, Jacques Jean, L'inscription de Sésostris Ier à Tôd. In: BIFAO 91, 1991, 1-33. - Barbotin/David, Ramsès IIBarbotin, Christophe, David, Élisabeth, L'ABCdaire de Ramsès II. Serie Archéologie et Civilisations. 1997. + Barbotin/David, Ramsès IIBarbotin, Christophe, David, Élisabeth, L’ABCdaire de Ramsès II. Serie Archéologie et Civilisations. 1997. Bardinet, Dents et mâchoiresBardinet, Thierry, Dents et mâchoires dans les représentations religieuses et la pratique médicale de l’Égypte ancienne. 1990. + Bardinet, PaludismeBardinet, Thierry, Le Paludisme (Malaria) dans l’Égypte des Pharaons. 2021. (new) Bardinet, Papyrus médicauxBardinet, Thierry, Les papyrus médicaux de l’Égypte pharaonique, traduction intégrale et commentaire. 1995. Bareš, Abusir IVBareš, Ladislav, Abusir IV, The Shaft Tomb of Udjahorresnet at Abusir. 1999. Bareš/Coppens/Smoláriková, Egypt in TransitionEgypt in Transition: Social and Religious Development of Egypt in the First Millennium BCE. Proceedings of an International Conference, Prague, September 1-4, 2009. Hrsg. von Bareš, Ladislav, Coppens, Filip, Smoláriková, Květa. 2010. - Barguet, BIFAO 49, 1950Barguet, Paul, La déesse Khensout. In: BIFAO 49, 1950, 1-7. - Barguet, BIFAO 50, 1952Barguet, Paul, Les stèles du Nil au Gebel Silsileh. In: BIFAO 50, 1952, 49-63. Barguet, Livre des MortsLe Livre des Morts des anciens Égyptiens. LAPO 1. 1967. - Barguet, RdE 9, 1952Barguet, Paul, Le rituel archaïque de fondation des temples de Medinet-Habou et de Louxor. In: RdE 9, 1952, 1-22, Anm. 3. Barguet, Stèle de la FamineBarguet, Paul, La stèle de la famine à Séhel. BdE 24. 1953. - Barguet, Temple d'Amon-RêBarguet, Paul, Le temple d'Amon-Re à Karnak. Essai d'exégèse. RAPH 21. 1962. + Barguet, Temple d’Amon-RêBarguet, Paul, Le temple d’Amon-Re à Karnak. Essai d’exégèse. RAPH 21. 1962. Barguet, Textes des sarcophagesBarguet, Paul, Les textes des sarcophages égyptiens du Moyen Empire. LAPO 12. 1986. Barns, Five Ramesseum PapyriBarns, John W. B., Five Ramesseum Papyri. 1956. - Barns, JEA 34, 1948Barns, John W. B., Three hieratic papyri in the Duke of Northumberland's collection. In: JEA 34, 1948, 35-46, pl. IX-X. - Barns, JEA 35, 1949Barns, John W. B., The Nevill Papyrus. A late Ramesside letter to an oracle. In: JEA 35, 1949, 69-71. - Barns, JEA 54, 1968Barns, John W. B., A New Wisdom Text from a Writing-Board in Oxford. In: JEA 54, 1968, 71-76. - Barns, JEA 58, 1972Barns, John W. B., Some Readings and Interpretations in Sundry Egyptian Texts. In: JEA 58, 1972, 159-166. - Barns, Kush 2, 1954Barns, John W. B., Four Khartoum Stelae. In: Kush 2, 1954, 19-25. Barns, SinuheBarns, John W. B., The Ashmolean Ostracon of Sinuhe. 1952. - Barsanti, ASAE 9, 1908Barsanti, Alexandre, Stèle inédite au nom du roi Radadouhotep Doudoumes. In: ASAE 9, 1908, 1-2. Bárta et al., Abusir XIXBárta, Miroslav, Coppens, Filip, Vymazalová, Hana, Abusir XIX, Tomb of Hetepi (AS 20), Tombs AS 33-35, and AS 50-53. 2010. - Barta, BiOr 32, 1975Barta, Winfried, Bemerkungen zum Feldzugsbericht des Königs Kamose. In: BiOr 32, 1975, 287-290. Barta, Gespräch eines Mannes mit seinem BaBarta, Winfried, Das Gespräch eines Mannes mit seinem BA (Papyrus Berlin 3024). MÄS 18. 1969. - Barta, in: Fs FechtBarta, Winfried, Ein metrisch geformter Stelentext des Mittleren Reiches. In: Fs Fecht, 1987, 63-77. - Barta, in: Fs Mus. BerlinBarta, Winfried, Der Terminus twt auf den Grenzstelen Sesostris'III. In: Fs Mus. Berlin, 1974, 51-54. - Barta, MDAIK 27, 1971Barta, Winfried, Zu einigen Textpassagen der Prophezeiung des Neferti. In: MDAIK 27, 1971, 35-45. Barta, NeunheitBarta, Winfried, Untersuchungen zum Götterkreis der Neunheit. MÄS 28. 1973. Barta, OpferformelBarta, Winfried, Aufbau und Bedeutung der altägyptischen Opferformel. ÄF 24. 1968. Barta, OpferlisteDie altägyptische Opferliste von der Frühzeit bis zur griechisch-römischen Epoche. 1963. Bárta, SinuheBárta, Miroslav, Sinuhe, the Bible, and the Patriarchs. 2003. - Barta, ZÄS 105, 1978Barta, Winfried, Das Schulbuch Kemit. In: ZÄS 105, 1978, 6-14. - Barta, ZÄS 118, 1991Barta, Winfried, Phonetische Substitutionen in den Handschriften der Lebenslehren des Ani. In: ZÄS 118, 1991, 97-103. Bárta/Bareš/Krejčí/Megahed/Varadzinová, Czech EgyptologyCreated for eternity: the greatest discoveries of Czech Egyptology. Hrsg. von Bárta, Miroslav, Bareš, Ladislav, Krejčí, Jaromír, Megahed, Mohamed, Varadzinová, Lenka. 2019. Bárta/Coppens/Krejčí, Abusir and Saqqara 2010Abusir and Saqqara in the year 2010. Hrsg. von Bárta, Miroslav, Coppens, Filip, Krejčí, Jaromír. 2011. - Bartel, GM 171, 1999Bartel, Hans-Georg, Über die Opfergabe šꜥ(j).t als Getränk und die Antonymie von "trennen" und "vereinigen". Teil 1: zum šꜥj.t-Getränk. In: GM 171, 1999, 43-48. - Barucq, ASAE 49, 1949Barucq, André, Deux fragments d'une stèle historique d'Aménophis II au Musée Guimet de Lyon. In: ASAE 49, 1949, 183-202. - Barucq, BIFAO 64, 1966Barucq, André, Les textes cosmogoniques d'Edfou d'après les manuscrits laissés par Maurice Alliot présentés. In: BIFAO 64, 1966, 125-167. Barucq/Daumas, Hymnes et prièresBarucq, André, Daumas, François, Hymnes et prières de l’Égypte ancienne. LAPO 10. 1980. Basel Egyptology Prize 1Basel Egyptology Prize 1, Junior Research in Egyptian History, Archaeology, and Philology. Hrsg. von Bickel, Susanne, Loprieno, Antonio. AH 17. 2003. Baud, Famille royaleBaud, Michel, Famille royale et pouvoir sous l’Ancien Empire égyptien. BdE 126/1-2. 1999. Baumgartel, Prehistoric EgyptBaumgartel, Elise, The Cultures of Prehistoric Egypt. 1947, 1960. Bayer, EchnatonBayer, Christian, Echnaton. Sonnenhymnen: Ägyptisch/Deutsch. 2007. Bayer, TejeBayer, Christian, Teje. Die den Herrn der Beiden Länder mit ihrer Schönheit erfreut. Eine ikonographische Studie. 2014. - Beck, in: Ramses (Karlsruhe)Beck, Susanne, Stele des Ramose (Nr. 127). In: Ramses (Karlsruhe), 2016, 226. Beck, Papyrus Leiden I 343 + 345Beck, Susanne, Exorcism, illness and demons in an ancient Near Eastern context: the Egyptian magical papyrus Leiden I 343 + 345. PALMA 18. 2018. Beck, SamanuBeck, Susanne, Samanu. Ein vorderasiatischer Dämon in Ägypten. 2015. Beckerath, 2. ZwischenzeitBeckerath, Jürgen von, Untersuchungen zur politischen Geschichte der Zweiten Zwischenzeit in Ägypten. ÄF 23. 1964. Beckerath, AbrißBeckerath, Jürgen von, Abriß der Geschichte des Alten Ägypten. 1971. Beckerath, ChronologieBeckerath, Jürgen von, Chronologie des pharaonischen Ägypten: die Zeitbestimmung der ägyptischen Geschichte von der Vorzeit bis 332 v. Chr. MÄS 46. 1997. Beckerath, KönigsnamenBeckerath, Jürgen von, Handbuch der ägyptischen Königsnamen. MÄS 49. 1999. - Beckerath, MDAIK 37, 1981Beckerath, Jürgen von, Ein Wunder des Amun bei der Tempelgründung in Karnak. In: MDAIK 37, 1981, 41-49. - Beckerath, RdE 20, 1968Beckerath, Jürgen von, Die "Stele der Verbannten" im Museum des Louvre. In: RdE 20, 1968, 7-36, Anm. c. Beckerath, Tanis und ThebenBeckerath, Jürgen von, Tanis und Theben. Historische Grundlagen der Ramessidenzeit in Ägypten. 1951. - Beckerath, ZÄS 119, 1992Beckerath, Jürgen von, Zur Geschichte von Chonsemḥab und dem Geist. In: ZÄS 119, 1992, 90-107. - Bedier, BACPSI 10, 1994Bedier, Shafia, Ein Stiftungsdekret Thutmosis III. In: BACPSI 10, 1994, 1-23. Bedier, GebBedier, Shafia, Die Rolle des Gottes Geb in den ägyptischen Tempelinschriften der griechisch-römischen Zeit. HÄB 41. 1995. - Bedier, in: Fs WinterBedier, Shafia, Ein Stiftungsdekret Thutmosis' III. aus Buto. In: Fs Winter, 1994, 35-50. Begelsbacher-Fischer, GötterweltBegelsbacher-Fischer, Barbara L., Untersuchungen zur Götterwelt des Alten Reiches. OBO 37. 1981. - Begon, Archéo-Nil 25, 2015Begon, Matthieu, La ville de Bouto (Pé) sous la Ire dynastie: étude d'une mention inédite inscrite sur une étiquette méconnue découverte à Abou Rawach (Louvre Inv. AF 11872). In: Archéo-Nil 25, 2015, 11-18. - Beinlich, MDAIK 43, 1987Beinlich, Horst, Das Iteru-Maß nach dem "Buch vom Fayum". In: MDAIK 43, 1987, 1-5. + Beinlich, Handbuch der SzenentitelBeinlich, Horst, Handbuch der Szenentitel in den Tempeln der griechisch-römischen Zeit Ägyptens. 2008. (new) Beinlich, Mythos in seiner LandschaftBeinlich, Horst, Der Mythos in seiner Landschaft. Das ägyptische "Buch vom Fayum". 2013-2017. - Beinlich, ZÄS 115, 1988Beinlich, Horst, Fragmente dreier geographischer Listen. In: ZÄS 115, 1988, 96-107. - Beinlich, ZÄS 122, 1995Beinlich, Horst, Zwei Osirishymnen in Dendera. In: ZÄS 122, 1995, 5-31. Anm. 77. - Bell, DHA 101, 1986Bell, Lanny David, Une nouvelle version de l'inscription de Bakhtan de Ramsès II et la fête d'Opet dans la légende tardive. In: DHA 101, 1986, 24. Bell, InterpretersBell, Lanny David, Interpreters and Egyptianized Nubians in Ancient Egyptian Foreign Policy. 1977. - Bell/Johnson/Whitcomb, JNES 43, 1984Bell, Lanny David, Johnson, Janet H., Whitcomb, Donald, The Eastern Desert of Upper Egypt: Routes and Inscriptions. In: JNES 43, 1984, 27-46. Bellion, Catalogue des manuscrits hiéroglyphiques et hiératiquesBellion, Madeleine, Égypte ancienne. Catalogue des manuscrits hiéroglyphiques et hiératiques et des dessins, sur papyrus, cuir ou tissu, publies ou signalés. 1987. - Bénédite, MMAF 5, 1893Bénédite, Georges, Tombeau de Neferhotpou, fils d'Amenemanit. In: MMAF 5, 1893, 489-540. + Beni HasanNewberry, Percy Edward, Griffith, Francis Llewellyn, Beni Hasan. ASE 1, 2, 5, 7. 1893, 1894, 1896, 1900. Beni Hasan INewberry, Percy Edward, Beni Hasan. Part I. ASE 1. 1893. Beni Hasan IINewberry, Percy Edward, Beni Hasan. Part II. ASE 2. 1894. Beni Hasan IIIGriffith, Francis Llewellyn, Beni Hasan III. ASE 5. 1896. Beni Hasan IVCarter, Howard, Beni Hasan. Part IV. Zoological and Other Details. Hrsg. von Griffith, Francis Llewellyn. ASE 7. 1900. - Beni HasanNewberry, Percy Edward, Griffith, Francis Llewellyn, Beni Hasan. ASE 1, 2, 5, 7. 1893, 1894, 1896, 1900. - Bennett, JEA 25, 1939Bennett, John, The restoration inscription of Tut'ankhamūn. In: JEA 25, 1939, 8-15. - Bennett, JEA 48, 1962Bennett, John, A New Interpretation of B.M. Stela 1203. In: JEA 48, 1962, 158-159. - Berg SSEAJ 17, 1987Berg, David A., Early 18th Dynasty Expansion into Nubia. In: SSEAJ 17, 1987, 1-14. - Berger El-Naggar, in: Between the Cataracts IBerger, Catherine, Contribution de Sedeinga à l'histoire de la Nubie. In: Between the Cataracts I, 2008, 179-193. - Berger El-Naggar, in: Sudan Treasures (Ausstellungskat.)Berger, Catherine, Stela of Amenhotep III. In: Sudan Treasures (Ausstellungskat.), 2004, 106-107. - Bergman, in: Fs ZandeeBergman, Jan, Ancient Egyptian theogony in a Greek magical papyrus (PGM VII, II. 516-521). In: Fs Zandee, 1982, 28-37. Bergmann, Hiera./hiera.-dem. TexteBergmann, Ernst von, Hieratische und hieratisch-demotische Texte der Sammlung aegyptischer Alterthümer des Allerhöchsten Kaiserhauses. 1886. - Bergmann, RecTrav 4, 1883Bergmann, Ernst von, Ein Denkmal aus den Zeiten Amenophis II. In: RecTrav 4, 1883, 33-38. - Bergmann, RecTrav 7, 1886Bergmann, Ernst von, Inschriftliche Denkmäler der Sammlung ägyptischer Alterthümer des österr. Kaiserhauses. In: RecTrav 7, 1886, 177-196. - Bergmann, ZÄS 18, 1880Bergmann, Ernst von, Varia. In: ZÄS 18, 1880, 49-53. BerichtigungslisteBrinker, A. A. den, Muhs, Brian P., Vleeming, Sven P., A Berichtigungsliste of Demotic Documents. StudDem 7. 2005. - Berlev, in: Fs VergoteBerlev, Oleg Dmitrievic, Un don du roi Rahotep. In: Fs Vergote, 1975-1976, 31-42. - Berlev, in: Labor in Ancient Near EastBerlev, Oleg Dmitrievic, A Social Experiment in Nubia during the Years 9-17 of Sesostris I. In: Labor in Ancient Near East, 1987, 143-157. Berlev, Obch. Otn.Berlev, Oleg Dmitrievic, Obšcestvennye otnošenija v Egipte epochi Srednego carstva, Social’nyj sloj „carskich ḥmww“. 1978. Berlev, RdE 23, 1971. . - Berlev, VDI 1, 1969Berlev, Oleg Dmitrievic, "'Sokol, plyvushchiy v lad'ye,' iyeroglif i bog"; "'Falcon in boat', a hieroglyph and a god." In: VDI 1, 1969, 3-30. - Berlev, VDI 92 (!), 1966Berlev, Oleg Dmitrievic, Стоимость раба в Египте эпохи Среднего царства [The Price of a Slave in Egypt during the Middle Kingdom]. In: VDI 92 (sic für: 95), 1966, 28-39. Berlin, Ausf. Verz.Königliche Museen zu Berlin. Ausführliches Verzeichnis der ägyptischen Altertümer und Gipsabgüsse. 1899. Berman, Amenemhet IBerman, Lawrence M., Amenemhet I. 1986. Bet El-WaliRoeder, Günther, Der Felsentempel von Bet El-Wali. Temples Immergés [10]. 1938. Between the Cataracts IBetween the Cataracts. Proceedings of the 11th Conference for Nubian Studies, Warsaw University, 27 August - 2 September 2006. Part I Main Papers. Hrsg. von Godlewski, Włodzimierz, Łajtar, Adam. PAM Suppl. 2,1. 2008. - Beylage, in: Fs GraefeBeylage, Peter, "Ich war ein Vorbild für die Kinder, ein ruhig Sprechender und Geduldiger ...". In: Fs Graefe, 2003, 17-32. - Beylage, JAnCI 21, 2006Beylage, Peter, Zur inhaltlichen Struktur des Berichtes Ramses' II. In: JAnCi 21, 2006, 99-111. Beylage, Königliche StelentexteBeylage, Peter, Aufbau der königlichen Stelentexte vom Beginn der 18. Dynastie bis zur Amarnazeit (2 Teil-Bände). Hrsg. von Görg, Manfred. ÄUAT 54. 2002. Beyond the PyramidsBeyond the Pyramids. Egyptian Regional Art from the Museo Egizio, Turin. Hrsg. von Robins, Gay. 1990. BGUÄgyptische Urkunden aus den Königlichen Museen zu Berlin. Griechische Urkunden]. 1892-1912. Biase-Dyson, ForeignersBiase-Dyson, Camilla di, Foreigners and Egyptians in the Late Egyptian Stories. Linguistic, Literary and Historical Perspectives. PÄ 32. 2013. - Bickel, in: BdE 139, 2004Bickel, Susanne, D'un monde à l'autre: le thème du passeur et de sa barque dans la pensée funéraire. In: Textes des Pyramides et Textes des Sarcophages, 2004, 91-117. - Bickel, in: Textes des Pyramides et Textes des SarcophagesBickel, Susanne, D’un monde à l’autre: le thème du passeur et de sa barque dans la pensée funéraire. In: Textes des Pyramides et Textes des Sarcophages, 2004, 91-117. - Bickel/Mathieu, BIFAO 93, 1993Bickel, Susanne, Mathieu, Bernard, L'écrivain Amennakht et son Enseignement. In: BIFAO 93, 1993, 31-51. Bidoli, FangnetzeDie Sprüche der Fangnetze in den altägyptischen Sargtexten. 1976. Bietak, Tell el-Dab‘a IIBietak, Manfred, Tell el-Dab‘a II. UZK 1. 1975. + Bietak/Prell, Palaces IAncient Egyptian and Ancient Near Eastern Palaces Volume I: Proceedings of the Conference on Palaces in Ancient Egypt, held in London 12th-14th June 2013, organised by the Austrian Academy of Sciences, the University of Würzburg and the Egypt Eyploration Society. Hrsg. von Bietak, Manfred, Prell, Silvia. CAENL 5. 2018. (new) Bietak/Reiser-Haslauer, Anch-Hor IBietak, Manfred, Reiser-Haslauer, Elfriede, Das Grab des Anch-Hor I. UZK 4. 1978. Bietak/Reiser-Haslauer, Anch-Hor IIBietak, Manfred, Reiser-Haslauer, Elfriede, Das Grab des Anch-Hor II. UZK 5. 1982. BigehBlackman, Aylward Manley, The Temple of Bîgeh. Temples Immergés [11]. 1915. - Bigler/Geiger, ZÄS 121, 1994Bigler, Robert R., Geiger, Benjamin, Eine Schenkungsstele Thutmosis' IV. In: ZÄS 121, 1994, 11-17. - Bilderatlas zur Religionsgeschichte 2-4Bonnet, Hans, Bilderatlas zur Religionsgeschichte. 2.-4. Lieferung: Ägyptische Religion. Hrsg. von Haas, Hans. 1924. Bilderatlas zur ReligionsgeschichteBilderatlas zur Religionsgeschichte, 20 Lieferungen in 13 Bänden. Hrsg. von Haas, Hans. 1924-1934. - Birch, Archaeologia 38, 1860Birch, Samuel, On a historical tablet of the reign of Thothmes III recently discovered at Thebes. In: Archaeologia 38, 1860, 373-388. + Bilderatlas zur Religionsgeschichte 2-4Bonnet, Hans, Bilderatlas zur Religionsgeschichte. 2.-4. Lieferung: Ägyptische Religion. Hrsg. von Haas, Hans. 1924. Birch, Catalogue Alnwick CastleBirch, Samuel, Catalogue of the Collection of Egyptian Antiquities at Alnwick Castle. 1880. - Birch, ZÄS 12, 1874 (1)Birch, Samuel, Steles of the XII. Dynasty. In: ZÄS 12, 1874, 65-67. - Birch, ZÄS 12, 1874 (2)Birch, Samuel, Tablets of the Twelfth Dynasty. In: ZÄS 12, 1874, 111-114. - Birch, ZÄS 9, 1871Birch, Samuel, On some Leather Rolls. In: ZÄS 9, 1871, 103-104, 117-118. + Birch/Hawkins, Select PapyriBirch, Samuel, Hawkins, E., Select papyri in the hieratic character from the collections of the British Museum. 1841-1860. Birch/Hawkins, Select Papyri I,1Birch, Samuel, Hawkins, E., Select papyri in the hieratic character from the collections of the British Museum, Bd. 1,1: Sallier papyri, no. 1. 2. 3. 1841. Birch/Hawkins, Select Papyri I,2Birch, Samuel, Hawkins, E., Select papyri in the hieratic character from the collections of the British Museum, Bd. 1,2: Anastasi papyri, no. 1. 2. 3. 4. 1842. Birch/Hawkins, Select Papyri I,3Birch, Samuel, Hawkins, E., Select papyri in the hieratic character from the collections of the British Museum, Bd. 1,3: Anastasi papyri, no. 5. 6. 7. 8. 9 and Sallier, no. 4. 1844. Birch/Hawkins, Select Papyri IIBirch, Samuel, Hawkins, E., Select papyri in the hieratic character from the collections of the British Museum, Bd. 2: Abbott and D'Orbiney papyri. 1860. - Birch/Hawkins, Select PapyriBirch, Samuel, Hawkins, E., Select papyri in the hieratic character from the collections of the British Museum. 1841-1860. + Birk, TüröffnerBirk, Ralph, Türöffner des Himmels. Prosopographische Studien zur thebanischen Hohepriesterschaft der Ptolemäerzeit. ÄA 76. 2020. (new) Bissing, DenkmälerBissing, Friedrich Wilhelm von, Denkmäler ägyptischer Sculptur. 1914. Bissing, LebensweisheitBissing, Friedrich Wilhelm von, Altägyptische Lebensweisheit. BAW. 1955. + Bissing, Re-HeiligtumDas Re-Heiligtum des Königs Ne-Woser-Re (Rathures). Hrsg. von Bissing, Friedrich Wilhelm von. 1905-1928. Bissing, Re-Heiligtum, Bd. 1Borchardt, Ludwig, Das Re-Heiligtum des Königs Ne-Woser-Re (Rathures). [1.] Der Bau. Hrsg. von Bissing, Friedrich Wilhelm von. 1905. Bissing, Re-Heiligtum, Bd. 2Bissing, Friedrich Wilhelm von, Kees, Hermann, Das Re-Heiligtum des Königs Ne-Woser-Re (Rathures). 2. Die kleine Festdarstellung. Hrsg. von Bissing, Friedrich Wilhelm von. 1923. Bissing, Re-Heiligtum, Bd. 3Kees, Hermann, Das Re-Heiligtum des Königs Ne-Woser-Re (Rathures). 3. Die große Festdarstellung. Hrsg. von Bissing, Friedrich Wilhelm von. 1928. - Bissing, Re-HeiligtumDas Re-Heiligtum des Königs Ne-Woser-Re (Rathures). Hrsg. von Bissing, Friedrich Wilhelm von. 1905-1928. - Bissing, ZÄS 25, 1939Bissing, Friedrich Wilhelm von, Zur Deutung der "pantheistischen Besfiguren". In: ZÄS 75, 1939, 130-132. - Bissing, ZÄS 53, 1917Bissing, Friedrich Wilhelm von, Die "Gottesstraße". In: ZÄS 53, 1917, 144-145. - Bissing, ZÄS 64, 1929Bissing, Friedrich Wilhelm von, Stele des Nechtmin aus der El Amarnazeit. In: ZÄS 64, 1929, 113-117. Bisson de la Roque, Trésor de TôdBisson de La Roque, Fernand, Contenau, Georges, Chapouthier, Fernand, Le trésor de Tôd. DFIFAO 11. 1953. - Bittel/Hermann, MDAIK 5, 1934Bittel, Kurt, Hermann, Alfred, Grabungsbericht Hermopolis 1933. In: MDAIK 5, 1934, 11-44. Björkman, Kings at KarnakBjörkman, Gun, Kings at Karnak. A Study of the Treatment of the Monuments of Royal Predecessors in the Early New Kingdom. Boreas 2. 1971. - Blackman, BIFAO 30, 1931Blackman, Aylward Manley, A new translation of the inscription of Ḥerwerrēʿ at Serâbîṭ el-Khâdim. In: BIFAO 30, 1931, 97-101. - Blackman, JEA 16, 1930Blackman, Aylward Manley, Notes on certain passages in various Middle Egyptian texts. In: JEA 16, 1930, 63-72. - Blackman, JEA 17, 1931Blackman, Aylward Manley, The Stele of Thethi, Brit. Mus. no. 614. In: JEA 17, 1931, 55-61. - Blackman, JEA 21, 1935Blackman, Aylward Manley, The Stela of Nebipusenwosret: British Museum no. 101. In: JEA 21, 1935, 1-9. - Blackman, JEA 22, 1936Blackman, Aylward Manley, Some notes on the story of Sinuhe and other Egyptian texts. In: JEA 22, 1936, 35-44. - Blackman, JEA 31, 1945Blackman, Aylward Manley, The king of Egypt's grace before meat. In: JEA 31, 1945, 57-73. Blackman, MESBlackman, Aylward Manley, Middle-Egyptian Stories I. BAe 2. 1932. Blackman, WestcarBlackman, Aylward Manley, The Story of King Kheops and the Magicians. Transcribed from Papyrus Westcar (Berlin Papyrus 3033). 1988. - Blackman/Fairman, JEA 29, 1943Blackman, Aylward Manley, Fairman, Herbert Walter, The myth of Horus at Edfu, II: C. The triumph of Horus over his enemies - a sacred drama (continued). In: JEA 29, 1943, 2-36. - Blackman/Fairman, JEA 36, 1950Blackman, Aylward Manley, Fairman, Herbert Walter, The significance of the ceremony ḥwt bḥsw in the Temple of Horus at Edfu. In: JEA 36, 1950, 63-81. - Blackman/Peet, JEA 11, 1925Blackman, Aylward Manley, Peet, Thomas Eric, Papyrus Lansing: a translation with notes. In: JEA 11, 1925, 284-298. - Blaschta, in: Von Elephantine bis zu den Küsten des MeeresBlaschta, Stephanie, The geographical procession from the temple of Nectanebo I in Heliopolis. In: Von Elephantine bis zu den Küsten des Meeres, 2019, 1-70. - Bleiberg, JARCE 21, 1984Bleiberg, Edward, The king's privy purse during the New Kingdom: an examination of inw. In: JARCE 21, 1984, 155-167. - Blöbaum, in: Fs Graefe IIBlöbaum, Anke Ilona, Der falbe Esel – eine Chimäre? In: Fs Graefe II, 2018, 83-101. Blok, pHarris 500 vs.Blok, Henri Peter, De beide volksverhalen van Papyrus Harris 500 verso. 1925. - Blumenthal, in: Fs HintzeBlumenthal, Elke, Die Koptosstele des Königs Rahotep (London U.C. 14327). In: Fs Hintze, 1977, 63-80. Blumenthal, KönigtumBlumenthal, Elke, Untersuchungen zum ägyptischen Königtum des Mittleren Reiches. 1. Die Phraseologie. ASAW 61, 1. 1970. Blumenthal, ReiseerzählungenBlumenthal, Elke, Altägyptische Reiseerzählungen. Die Lebensgeschichte des Sinuhe. Der Reisebericht des Wen-Amun. 1982, 1984 (2., veränd. Aufl.). - Blumenthal, ThLZ 115, 1990Blumenthal, Elke, Hiob und die Harfnerlieder. In: ThLZ 115, 1990, 721-730. - Blumenthal, ZÄS 100, 1973Blumenthal, Elke, "Befehl des Königs" in den königlichen Rechtsurkunden des Alten Reiches. In: ZÄS 100, 1973, 72-76. - Blumenthal, ZÄS 110, 1983Blumenthal, Elke, Die erste Koregenz der 12. Dynastie. In: ZÄS 110, 1983, 104-121. - Blumenthal, ZÄS 111, 1984Blumenthal, Elke, Die Lehre des Königs Amenemhat (Teil I). In: ZÄS 111, 1984, 85-107. - Blumenthal, ZÄS 112, 1985Blumenthal, Elke, Die Lehre des Königs Amenemhet (Teil II). In: ZÄS 112, 1985, 104-115. BM BookThe British Museum Book of Ancient Egypt. Hrsg. von Quirke, Stephen, Spencer, A. Jeffrey. 1992. BM Guide 1924Budge, Ernest Alfred Th. Wallis, A Guide to the 1st, 2nd and 3rd Egyptian rooms. 1924. BM StelaeHieroglyphic Texts from Egyptian Stelae, etc., in the British Museum. 1911 ff. Boeser, LeidenBoeser, Pieter Adriaan Aart, Beschrijving van de Egyptische Verzameling in het Rijskmuseum van Oudheden te Leiden. 1905-1932. - Bogoslovskij, VDI 123/1, 1973Bogoslovskij, Evgenij S., Памятники и документы из Дэр-эль-Мэдина, хранящиеся в музеях СССР: выпуск V [Monuments and Documents from Deir el-Medîna in Museums of the USSR. Part V]. In: VDI 123/1, 78-104, 1973. - Bojowald, GM 195, 2003Bojowald, Stefan, Einige Bemerkungen zu oDeM 1675 vs. 13/14. In: GM 195, 2003, 13-16. - Bojowald, JARCE 53, 2017Bojowald, Stefan, Zwei zusätzliche Bemerkungen zu pBerlin 15765a. In: JARCE 53, 2017, 283-285. - Bojowald, SAK 34, 2006Bojowald, Stefan, Gedanken zum syntaktischen wie idiomatischen Funktionszusammenhang des Geierflügels im ägyptischen pAnastasi IV, 10, 4. In: SAK 34, 2006, 73-77. - Bolshakov, GM 156, 1997Bolshakov, Andrey O., Miscellanea Hermitagiana 4: three ushabtis recently bequeathed to the Hermitage Museum. In: GM 156, 1997, 27-31. Bommas, MythisierungBommas, Martin, Die Mythisierung der Zeit. Die beiden Bücher über die altägyptischen Schalttage des magischen pLeiden I 346. GOF 37. 1999. - Bongrani Fanfoni, in: Fs Orsolina MontevecchiBongrani Fanfoni, Luisa, La stele di Hatscepsut a Thutmosi III presso il Museo Gregoriano Egizio. In: Fs Orsolina Montevecchi, 1981, 39-40. - Bontty, GM 145, 1995Bontty, Mónica, The Haunebu. In: GM 145, 1995, 45-58. + Bonhême, Noms royauxBonhême, Marie-Ange, Les noms royaux dans l’Égypte de la troisième période intermédiaire. BdE 98. 1987. (new) Borchardt, Große Pyramide bei GiseBorchardt, Ludwig, Längen und Richtungen der vier Grundkanten der großen Pyramide bei Gise. BeiträgeBf 1. 1937. Borchardt, KleinigkeitenBorchardt, Ludwig, Allerhand Kleinigkeiten: seinen wissenschaftlichen Freunden und Bekannten zu seinem 70. Geburtstage am 5. Oktober 1933 überreicht. 1933. Borchardt, Mittel zur zeitl. FestlegungBorchardt, Ludwig, Die Mittel zur zeitlichen Festlegung von Punkten der ägyptischen Geschichte und ihre Anwendung. 1935. @@ -415,117 +255,85 @@

      Abbreviat Borchardt, Nefer-ir-ke-reʿBorchardt, Ludwig, Das Grabdenkmal des Königs Nefer-ir-ke-reʿ. WVDOG 11. 1909. Borchardt, Ne-user-reʿBorchardt, Ludwig, Das Grabdenkmal des Königs Ne-user-reʿ. WVDOG 7. 1907. Borchardt, NofreteteBorchardt, Ludwig, Porträts der Königin Nofret-ete aus den Grabungen 1912/13 in Tell el-Amarna. WVDOG 44. 1923. + Borchardt, S'aḥu-reʿBorchardt, Ludwig, Das Grabdenkmal des Königs S'aḥu-reʿ. WVDOG 14, 26. 1910, 1913. Borchardt, S'aḥu-reʿ IBorchardt, Ludwig, Das Grabdenkmal des Königs S'aḥu-reʿ. Bd. I. Der Bau. WVDOG 14. 1910. Borchardt, S'aḥu-reʿ IIBorchardt, Ludwig, Das Grabdenkmal des Königs S'aḥu-reʿ. Bd. II. Die Wandbilder. WVDOG 26. 1913. - Borchardt, S'aḥu-reʿBorchardt, Ludwig, Das Grabdenkmal des Königs S'aḥu-reʿ. WVDOG 14, 26. 1910, 1913. Borchardt, TejeBorchardt, Ludwig, Der Porträtkopf der Königin Teje im Besitz von Dr. James Simon in Berlin. WVDOG 18. 1911. Borchardt, Tempel mit UmgangBorchardt, Ludwig, Ägyptische Tempel mit Umgang. BeiträgeBf 2. 1938. - Borchardt, ZÄS 36, 1898Borchardt, Ludwig, Ansiedelung Kriegsgefangener in Tempeln. In: ZÄS 36, 1898, 84. - Borchardt, ZÄS 37, 1899Borchardt, Ludwig, Der zweite Papyrusfund von Kahun und die zeitliche Festlegung des Mittleren Reiches der ägyptischen Geschichte. In: ZÄS 37, 1899, 89-103. - Borchardt, ZÄS 66, 1931Borchardt, Ludwig, Zwei Kalksteinscherben mit literarischen Aufschriften. In: ZÄS 66, 1931, 14-16. Borchardt/ Ricke, WohnhäuserBorchardt, Ludwig, Ricke, Herbert, Die Wohnhäuser in Tell el-Amarna. WVDOG 91. 1980. + Boreux, Musée National du LouvreBoreux, Charles, Musée National du Louvre, Département des Antiquités Égyptiennes : guide-catalogue sommaire. Bd. 1-2. 1932. Boreux, Musée National du Louvre 1Boreux, Charles, Musée National du Louvre, Département des Antiquités Égyptiennes : guide-catalogue sommaire, Bd. 1. 1932. Boreux, Musée National du Louvre 2Boreux, Charles, Musée National du Louvre, Département des Antiquités Égyptiennes : guide-catalogue sommaire, Bd. 2. 1932. - Boreux, Musée National du LouvreBoreux, Charles, Musée National du Louvre, Département des Antiquités Égyptiennes : guide-catalogue sommaire. Bd. 1-2. 1932. + Borg, Rewriting Dialectal Arabic PrehistoryBorg, Alexander, Rewriting Dialectal Arabic Prehistory. The Ancient Egyptian Lexical Evidence. 2021. (new) Borghouts, Book of the DeadBorghouts, Joris F., Book of the Dead [39]: From shouting to structure. SAT 10. 2007. + Borghouts, EgyptianBorghouts, Joris F., Egyptian. An Introduction to the Writing and Language of the Middle Kingdom. EgUit 24. 2010. Borghouts, Egyptian IBorghouts, Joris F., Egyptian. An Introduction to the Writing and Language of the Middle Kingdom, Vol. I: Grammar, Syntax and Indexes. EgUit 24,1. 2010. Borghouts, Egyptian IIBorghouts, Joris F., Egyptian. An Introduction to the Writing and Language of the Middle Kingdom, Vol. II: Sign Lists, Exercises and Reading Texts. EgUit 24,2. 2010. - Borghouts, EgyptianBorghouts, Joris F., Egyptian. An Introduction to the Writing and Language of the Middle Kingdom. EgUit 24. 2010. Borghouts, EgyptischBorghouts, Joris F., Egyptisch, een inleiding in schrift en taal van het Middenrijk. 1993. - Borghouts, in: Fs Westendorf 2Borghouts, Joris F., The victorious eyes: a structural analysis of two Egyptian mythologizing texts of the Middle Kingdom. In: Fs Westendorf 2, 1984, 703-716. - Borghouts, in: Gleanings (1)Borghouts, Joris F., Divine Intervention in Ancient Egypt and its Manifestation (bꜢw). In: Gleanings, 1982, 1-70. - Borghouts, in: Gleanings (2)Borghouts, Joris F., A deputy of the gang knows his business (Hier.Ostr. 67,1). In: Gleanings, 1982, 71-99. - Borghouts, in: Roccati/Siliotti, La magia in EgittoBorghouts, Joris F., The edition of magical papyri in Turin: a progress report. In: Roccati/Siliotti, La magia in Egitto, 1987, 257-269. - Borghouts, JEA 59, 1973Borghouts, Joris F., The evil eye of Apopis. In: JEA 59, 1973, 114-150. Borghouts, Mag. TextsBorghouts, Joris F., Ancient Egyptian Magical Texts. NISABA 9. 1978. - Borghouts, OMRO 51, 1970Borghouts, Joris F., The magical texts of Papyrus Leiden I 348. In: OMRO 51, 1971, 1-249. Borghouts, pLeiden I 348Borghouts, Joris F., The magical texts of Papyrus Leiden I 348. OMRO 51. 1971. Borghouts, SagenBorghouts, Joris F., Egyptische sagen en verhalen. 1974. - Borghouts, SAK 8, 1980Borghouts, Joris F., Late Egyptian precursors of Coptic 'genitival' ⲛⲧⲉ-/ⲛⲧⲁ⸗ . In: SAK 8, 1980, 65-78. - Borrmann-Dücker, in: EpigraphyBorrmann-Dücker, Linda, Royal stelae revisited. Neue Überlegungen zu altbekannten Texten. In: Epigraphy, 2020, 33-60. Boschung/Hesberg/Linfert, SkulpturenBoschung, Dietrich, Hesberg, Henner von, Linfert, Andreas, Die antiken Skulpturen in Chatsworth sowie in Dunham Massey und Withington Hall. Mit Beiträgen von Philippe Derchain, Christian Eder, Bruno Jacobs, Georg Petzl, Jutta Rumscheid, Egbert von Weiher. MAR 26. 1997. - Bosticco, Stele IBosticco, Sergio, Museo Archeologico di Firenze. Le stele egiziane dall' Antico al Nuovo Regno. 1959. + Bosticco, SteleBosticco, Sergio, Museo Archeologico di Firenze. Le stele egiziane (3 Bde.). 1959-1972. + Bosticco, Stele IBosticco, Sergio, Museo Archeologico di Firenze. Le stele egiziane dall’ Antico al Nuovo Regno. 1959. Bosticco, Stele IIBosticco, Sergio, Museo Archeologico di Firenze. Le stele egiziane del Nuovo Regno. 1965. Bosticco, Stele IIIBosticco, Sergio, Museo Archeologico di Firenze. Le stele egiziane di epoca tarda. 1972. - Bosticco, SteleBosticco, Sergio, Museo Archeologico di Firenze. Le stele egiziane (3 Bde.). 1959-1972. Boswinkel/Pestman, Archives privéesBoswinkel, E., Pestman, Pieter W., Les archives privées de Dionysios, fils de Kephalas. Textes grecs et démotiques. 1982. - Bothmer, BMA 8, 1966-1967Bothmer, Bernard V., Private Sculpture of Dynasty XVIII in Brooklyn. In: BMA 8, 1966-1967, 55-89. Bothmer, Egyptian SculptureBothmer, Bernard V., Egyptian Sculpture of the Late Period. 1960. Botta, Aramaic and Egyptian Legal TraditionsBotta, Alejandro F., The Aramaic and Egyptian Legal Traditions at Elephantine. An Egyptological Approach. Library of Second Temple Studies 64. 2009. Botti, ArchivioBotti, Giuseppe, L’archivio demotico da Deir el-Medineh, Catalogo del Museo Egizio di Torino. CMT 1; 1. 1967. Botti, I cimeli egiziBotti, Giuseppe, I cimeli egizi del Museo di Antichità di Parma. 1964. - Botti, JEA 41, 1955Botti, Giuseppe, A fragment of the story of a military expedition of Tuthmosis III to Syria (P.Turin 1940-1941). In: JEA 41, 1955, 64-71. Botti, Testi DemoticiBotti, Giuseppe, Testi demotici. 1941. Botti/Peet, GiornaleBotti, Giuseppe, Peet, Thomas Eric, Il Giornale della necropoli di Tebe. 1928. Botti/Romanelli, Sculture Museo GregorianoBotti, Giuseppe, Romanelli, Pietro, Le sculture del Museo Gregoriano Egizio. MVAA 9. 1951. Bourguet, Le temple de Deir al-MedinaBourguet, Pierre Du, Le temple de Deir al-Medina. MIFAO 121. 2002. - Bouriant, RecTrav 13, 1890Bouriant, Urbain, Notes de voyage. In: RecTrav 13, 1890, 153-179. - Bouriant, RecTrav 15, 1893Bouriant, Urbain, Notes de voyage. In: RecTrav 15, 1893, 176-189. - Bouriant/Legrain/Jéquier, Culte d'AtonouBouriant, Urbain, Legrain, Georges, Jéquier, Gustave, Monuments pour servir à l’étude du culte d’Atonou en Égypte, T. 1: Les tombes de Khouitatonou. 1903. - Bourriau, JEA 68, 1982Bourriau, Janine, Three Monuments from Memphis in the Fitzwilliam Museum. In: JEA 68, 1982, 51-59. + Bouriant/Legrain/Jéquier, Culte d’AtonouBouriant, Urbain, Legrain, Georges, Jéquier, Gustave, Monuments pour servir à l’étude du culte d’Atonou en Égypte, T. 1: Les tombes de Khouitatonou. 1903. Bourriau, Pharaohs and MortalsBourriau, Janine, Pharaohs and Mortals. Egyptian Art in the Middle Kingdom. 1988. - Boussac, RecTrav 31, 1909Boussac, Hippolyte, Le pluvier de Mongolie: Charadrius mongolicus, Pallas. In: RecTrav 31, 1909, 138-139. Boussac, Tombeaux ThébainsBoussac, Hippolyte, Tombeaux Thébains. 1896. - Bouvier, BIFAO 101, 2001Bouvier, Guillaume, Un ostracon hiératique inédit de Leyde: RMO F. 1980/3.7. In: BIFAO 101, 2001, 87-97. - Bradbury, KMT 3, 1992Bradbury, Louise, Following Thutmose I on His Campaign to Kush. In: KMT 3,3, 1992, 50-59, 76-77. - Bradbury, Serapis 8, 1985Bradbury, Louise, The Tombos Inscription: A New Interpretation. In: Serapis 8, 1985, 1-20. - Brand, GM 170, 1999Brand, Peter J., Methods used in Restoring Reliefs vandalized during the Amarna Period. In: GM 170, 1999, 37-48. Brand, Monuments of Seti I.Brand, Peter J., The monuments of Seti I: epigraphic, historical and art historical analysis. PÄ 16. 2000. - Brandl, in: Fs Endesfelder, Priese, Reineke, WenigBrandl, Helmut, Die Schutzgottheiten Sched und Thoeris in Amarna: Die Stele Cambridge E. 31.1937 und das Polytheismusphänomen unter Echnaton. In: Fs Endesfelder, Priese, Reineke, Wenig, 2001, 91-106. Braun, Pharao und PriesterBraun, Nadja Stefanie, Pharao und Priester – sakrale Affirmation von Herrschaft durch Kultvollzug. Das Tägliche Kultbildritual im Neuen Reich und der Dritten Zwischenzeit. Philippika 23. 2013. - Brawanski, SAK 35, 2006Brawanski, Alexander, Mittelgesichtsverletzungen im Pap. Smith (Fälle 9-14). In: SAK 35, 2006, 43-60. - Breasted, AJSL 21, 1904-1905 (1)Breasted, James Henry, When did the Hittites enter Palestine? In: AJSL 21, 1904-1905, 153-158. - Breasted, AJSL 21, 1904-1905 (2)Breasted, James Henry, New Light on the History of the Eleventh Dynasty. In: AJSL 21, 1904-1905, 163-166. - Breasted, AJSL 25, 1908Breasted, James Henry, Second Preliminary Report of the Egyptian Expedition. In: AJSL 25, 1908, 1-110. + Breasted, Ancient RecordsBreasted, James Henry, Ancient records of Egypt: historical documents from the earliest times to the Persian conquest, 5 Bde. 1906-1907. Breasted, Ancient Records IBreasted, James Henry, Ancient records of Egypt, Bd. 1, The First to Seventeenth Dynasties. 1906. Breasted, Ancient Records IIBreasted, James Henry, Ancient records of Egypt, Bd. 2, The Eighteenth Dynasty. 1906. Breasted, Ancient Records IIIBreasted, James Henry, Ancient records of Egypt, Bd. 3, The Nineteenth Dynasty. 1906. Breasted, Ancient Records IVBreasted, James Henry, Ancient records of Egypt, Bd. IV, The Twentieth to the Twenty-sixth Dynasties. 1906. Breasted, Ancient Records VBreasted, James Henry, Ancient records of Egypt, Bd. 5, Indices. 1907. - Breasted, Ancient RecordsBreasted, James Henry, Ancient records of Egypt: historical documents from the earliest times to the Persian conquest, 5 Bde. 1906-1907. Breasted, DevelopmentBreasted, James Henry, Development of Religion and Thought in Ancient Egypt. 1912. Breasted, Egyptian Servant StatuesBreasted, James Henry, Egyptian Servant Statues. BS 13. 1948. - Breasted, PSBA 23, 1901Breasted, James Henry, The Wadi Halfa Stela of Senwosret I. In: PSBA 23, 1901, 230-235. - Breasted, PSBA 31, 1909Breasted, James Henry, The Royal Feud in the Wadi Halfa Temple. In: PSBA 31, 1909, 269-279. - Breasted, Syria 16, 1935Breasted, James Henry, The Ras Shamra Statue of Sesostris-Onekh. In: Syria 16, 1935, 318-320. Bresciani, ArchivioBresciani, Edda, L’archivio demotico del tempio di Soknopaiu Nesos nel Griffith Institute di Oxford, Vol. I. TDSA 49. 1975. Bresciani, Collezione egizia BolognaBresciani, Edda, La collezione egizia nel Museo Civico di Bologna. 1975. - Bresciani, EVO 3, 1980Bresciani, Edda, L'attività archeologica dell'Università di Pisa in Egitto: 1977-1980. In: EVO 3, 1980, 1-36. - Bresciani, Letteratura e poesia 2Bresciani, Edda, Letteratura e poesia dell’antico Egitto. Cultura e società attraverso i testi. 1999 (rev. Ed.). Bresciani, Letteratura e poesiaBresciani, Edda, Letteratura e poesia dell’antico Egitto. Cultura e società attraverso is testi. 1969. + Bresciani, Letteratura e poesia 2Bresciani, Edda, Letteratura e poesia dell’antico Egitto. Cultura e società attraverso i testi. 1999 (rev. Ed.). Bresciani, Narmuti IBresciani, Edda, Ostraca demotici da Narmuti I (nn. 1-33). 1983. Bresciani, Testi dem. MichaelidisBresciani, Edda, Testi demotici nella Collezione Michaelidis. Orientis antiqui collectio 2. 1963. Bresciani, Testi religiosiBresciani, Edda, Testi religiosi dell’antico Egitto. 1974, 2001. Bresciani/ Pernigotti, AssuanAssuan. Hrsg. von Bresciani, Edda, Pernigotti, Sergio. BSASE 16. 1978. Breyer, Ägypten und AnatolienBreyer, Francis, Ägypten und Anatolien, Politische kulturelle und sprachliche Kontakte zwischen dem Niltal und Kleinasien im 2. Jahrtausend v. Chr. DÖAW 63. 2010. Breyer, TanutamaniBreyer, Francis, Tanutamani, Die Traumstele und ihr Umfeld. 2003. - Brinks/Westendorf, GM 23, 1977Brinks, Jürgen, Westendorf, Wolfhart, gmḥ.wj "Doppelter Teil der Tür". In: GM 23, 1977, 25-29. + Brix, Faune ophidienne IIBrix, Nicole, Étude de la faune ophidienne de l’Égypte ancienne. Tome 2. Les monographies ophidiennes. 2010. (new) Broekhuis, RenenwetetBroekhuis, Jan, De Godin Renenwetet. 1971. - Broekman, in: The Libyan period in EgyptBroekman, Gerard P. F., Takeloth III and the end of the 23rd Dynasty. In: Broekman/Demarée/Kaper, The Libyan period in Egypt, 2009, 1-28. Broekman/Demarée/Kaper, The Libyan period in EgyptThe Libyan period in Egypt: historical and cultural studies into the 21st-24th Dynasties. Proceedings of a conference at Leiden University, 25-27 October 2007. Hrsg. von Demarée, Robert Johannes, Kaper, Olaf Ernst, Broekman, Gerard P. F. EgUit 23. 2009. Brose, Grammatik der dokumentarischen TexteBrose, Marc, Grammatik der dokumentarischen Texte des Mittleren Reiches. LingAeg – StudMon 13. 2014. Brovarski, Giza Mastabas 7Brovarski, Edward, The Senedjemib Complex, Part I. Giza Mastabas 7. 2001. - Brovarski, in: Fs SimpsonBrovarski, Edward, An inventory list from "Covington's Tomb" and nomenclature for furniture in the Old Kingdom. In: Fs Simpson, 1996, 117-155. - Brovarski, in: Fs WenteBrovarski, Edward, Inventory of offering lists and the nomenclature for boxes and chests in the Old Kingdom. In: Fs Wente, 1999, 27-54. - Broze, Mythe et romanBroze, Michèle, Mythe et roman en Égypte ancienne. Les aventures d'Horus et Seth dans le papyrus Chester Beatty I. OLA 76. 1996. - Broze, PrincesseBroze, Michèle, La princesse de Bakhtan. Essai d'analyse stylistique. MRE 6. 1989. + Broze, Mythe et romanBroze, Michèle, Mythe et roman en Égypte ancienne. Les aventures d’Horus et Seth dans le papyrus Chester Beatty I. OLA 76. 1996. + Broze, PrincesseBroze, Michèle, La princesse de Bakhtan. Essai d’analyse stylistique. MRE 6. 1989. Brugsch, AegyptologieBrugsch, Heinrich, Die Aegyptologie. Abriss der Entzifferungen und Forschungen auf dem Gebiete der aegyptischen Schrift, Sprache und Alterthumskunde. 1891. - Brugsch, AMWL, 1853Brugsch, Heinrich, Über die medicinischen Kenntnisse der alten Ägypter und über ein alt-ägyptisches medicinisches Manuscript im Königl. Museum zu Berlin. In: AMWL, 1853, 44-56. - Brugsch, DGBrugsch, Heinrich, Dictionnaire géographique de l'ancienne Egypte. 1879. + Brugsch, DGBrugsch, Heinrich, Dictionnaire géographique de l’ancienne Egypte. 1879. Brugsch, GeschichteBrugsch, Heinrich, Geschichte Aegyptens unter den Pharaonen. 1877. - Brugsch, Monuments de l'ÉgypteBrugsch, Heinrich, Monuments de l'Égypte. Déscrits, commentés et reproduits pendant le séjour qu'il a fait dans ce pays en 1853 et 1854 par ordre de Sa Maj. le roi de Prusse. 1857. - Brugsch, Monuments égyptiens IBrugsch, Heinrich, Recueil de monuments égyptiens: dessinés sur lieux et publiés sous les auspices de Son Altesse le Vice-roi d'Égypte Mohammed-Saïd-Pacha, Bd. 1, Planches I-L. 1862. - Brugsch, Monuments égyptiens IIBrugsch, Heinrich, Recueil de monuments égyptiens: dessinés sur lieux et publiés sous les auspices de Son Altesse le Vice-roi d'Égypte Mohammed-Saïd-Pacha, Bd. 2, Planches LI-CVII. 1863. - Brugsch, Monuments égyptiensBrugsch, Heinrich, Recueil de monuments égyptiens: dessinés sur lieux et publiés sous les auspices de Son Altesse le Vice-roi d'Égypte Mohammed-Saïd-Pacha. 1862-1863. + Brugsch, Monuments de l’ÉgypteBrugsch, Heinrich, Monuments de l’Égypte. Déscrits, commentés et reproduits pendant le séjour qu’il a fait dans ce pays en 1853 et 1854 par ordre de Sa Maj. le roi de Prusse. 1857. + Brugsch, Monuments égyptiensBrugsch, Heinrich, Recueil de monuments égyptiens: dessinés sur lieux et publiés sous les auspices de Son Altesse le Vice-roi d’Égypte Mohammed-Saïd-Pacha. 1862-1863. + Brugsch, Monuments égyptiens IBrugsch, Heinrich, Recueil de monuments égyptiens: dessinés sur lieux et publiés sous les auspices de Son Altesse le Vice-roi d’Égypte Mohammed-Saïd-Pacha, Bd. 1, Planches I-L. 1862. + Brugsch, Monuments égyptiens IIBrugsch, Heinrich, Recueil de monuments égyptiens: dessinés sur lieux et publiés sous les auspices de Son Altesse le Vice-roi d’Égypte Mohammed-Saïd-Pacha, Bd. 2, Planches LI-CVII. 1863. Brugsch, ReiseberichteBrugsch, Heinrich, Reiseberichte aus Aegypten. Geschrieben während einer auf Befehl seiner Majestät des Königs Friedrich Wilhelm IV. von Preussen in den Jahren 1853 und 1854 unternommenen wissenschaftlichen Reise nach dem Nilthale. 1855. + Brugsch, Thes.Brugsch, Heinrich, Thesaurus inscriptionum Aegytiacarum. Altägyptische Inschriften. Gesammelt, verglichen, übertragen, erklärt und autographiert. 1893-1891, Nachdr. 1968. Brugsch, Thes. 1Brugsch, Heinrich, Thesaurus inscriptionum Aegytiacarum. Abt. 1. Astronomische und astrologische Inschriften altägyptischer Denkmäler. 1883-1891, Nachdr. 1968. Brugsch, Thes. 2 Brugsch, Heinrich, Thesaurus inscriptionum Aegytiacarum. Abt. 2. Kalendarische Inschriften altägyptischer Denkmäler. 1883-1891, Nachdr. 1891. Brugsch, Thes. 3Brugsch, Heinrich, Thesaurus inscriptionum Aegytiacarum. Abt. 3. Geographische Inschriften altägyptischer Denkmäler. 1883-1891, Nachdr. 1968. Brugsch, Thes. 4Brugsch, Heinrich, Thesaurus inscriptionum Aegytiacarum. Abt. 4. Mythologische Inschriften altägyptischer Denkmäler. 1883-1891, Nachdr. 1968. Brugsch, Thes. 5Brugsch, Heinrich, Thesaurus inscriptionum Aegytiacarum. Abt. 5. Historisch-Biographische Inschriften altägyptischer Denkmäler. 1883-1891, Nachdr. 1968. Brugsch, Thes. 6Brugsch, Heinrich, Thesaurus inscriptionum Aegytiacarum. Abt. 6. Bautexte und Inschriften verschiedenen Inhalts altägyptischer Denkmäler. 1883-1891, Nachdr. 1968. - Brugsch, Thes.Brugsch, Heinrich, Thesaurus inscriptionum Aegytiacarum. Altägyptische Inschriften. Gesammelt, verglichen, übertragen, erklärt und autographiert. 1893-1891, Nachdr. 1968. - Brugsch, Traité Médical Brugsch, Heinrich, Notice raisonnée d'un traité médical datant du XIVme siècle avant notre ère et contenu dans un papyrus hiératique du Musée Royal (Département des antiquités égyptiennes) de Berlin. 1863. + Brugsch, Traité Médical Brugsch, Heinrich, Notice raisonnée d’un traité médical datant du XIVme siècle avant notre ère et contenu dans un papyrus hiératique du Musée Royal (Département des antiquités égyptiennes) de Berlin. 1863. + Brugsch, WbBrugsch, Heinrich, Hieroglyphisch-demotisches Wörterbuch. 1867-1882. Brugsch, Wb IBrugsch, Heinrich, Hieroglyphisch-demotisches Wörterbuch I. 1867. Brugsch, Wb IIBrugsch, Heinrich, Hieroglyphisch-demotisches Wörterbuch II. 1868. Brugsch, Wb IIIBrugsch, Heinrich, Hieroglyphisch-demotisches Wörterbuch III. 1868. @@ -533,80 +341,52 @@

      Abbreviat Brugsch, Wb VBrugsch, Heinrich, Hieroglyphisch-demotisches Wörterbuch V. 1880. Brugsch, Wb VIBrugsch, Heinrich, Hieroglyphisch-demotisches Wörterbuch VI. 1881. Brugsch, Wb VIIBrugsch, Heinrich, Hieroglyphisch-demotisches Wörterbuch VII. 1882. - Brugsch, WbBrugsch, Heinrich, Hieroglyphisch-demotisches Wörterbuch. 1867-1882. - Brugsch, ZÄS 14, 1876Brugsch, Heinrich, Der Traum Königs Thutmes IV bei der Sphinx. In: ZÄS 14, 1876, 89-95. - Brunner, Chrestomathie (2. Aufl.)Brunner, Hellmut, Hieroglyphische Chrestomathie. 1992. Brunner, ChrestomathieBrunner, Hellmut, Hieroglyphische Chrestomathie. 1965, 1992 (2. Aufl.). + Brunner, Chrestomathie (2. Aufl.)Brunner, Hellmut, Hieroglyphische Chrestomathie. 1992. Brunner, ErziehungBrunner, Hellmut, Altägyptische Erziehung. 1957. Brunner, FelsgräberBrunner, Hellmut, Die Anlagen der ägyptischen Felsgräber bis zum Mittleren Reich. ÄF 3. 1936. Brunner, Geburt des GottkönigsBrunner, Hellmut, Die Geburt des Gottkönigs. Studien zur Überlieferung eines altägyptischen Mythos. ÄA 10. 1964, 1986 (2., erg. Aufl.). Brunner, HerakleopolitenzeitBrunner, Hellmut, Die Texte aus den Gräbern der Herakleopolitenzeit von Siut. Mit Übersetzung und Erläuterungen. 1937. - Brunner, in: HdO I 1,2Brunner, Hellmut, Die Weisheitsliteratur. In: HdO I 1,2, 1952, 1970, 90-110, 113-139. Brunner, Lehre des ChetiBrunner, Hellmut, Die Lehre des Cheti, Sohnes des Duauf. ÄF 13. 1944. Brunner, LuxorBrunner, Hellmut, Die südlichen Räme des Tempels von Luxor. AV 18. 1977. - Brunner, MDAIK 14, 1956Brunner, Hellmut, Eine neue Entlehnung aus der Lehre des Djedefhor. In: MDAIK 14, 1956, 17-19. - Brunner, MDAIK 19, 1963Brunner, Hellmut, Ein weiteres Djedefhor-Zitat. In: MDAIK 19, 1963, 53. Brunner, WeisheitBrunner, Hellmut, Altägyptische Weisheit. Lehren für das Leben. BAW. 1988. Brunner, WeisheitsbücherBrunner, Hellmut, Die Weisheitsbücher der Ägypter. Lehren für das Leben. 1991 (2. verb. Aufl.). - Brunner, ZÄS 102, 1975Brunner, Hellmut, Zur Aussprache der Namen Chephren und Djedefhor. In: ZÄS 102, 1975, 94-99. - Brunner, ZÄS 93, 1966Brunner, Hellmut, Die "Weisen", ihre "Lehren" und "Prophezeiungen" in altägyptischer Sicht. In: ZÄS 93, 1966, 29-35. Brunner/Brunner-Traut, Ägyptische Sammlung IBrunner, Hellmut, Brunner-Traut, Emma, Die Ägyptische Sammlung der Universität Tübingen I. Textbd. 1981. Brunner/Brunner-Traut, Ägyptische Sammlung IIBrunner, Hellmut, Brunner-Traut, Emma, Die Ägyptische Sammlung der Universität Tübingen II. Tafelbd. 1981. Brunner-Traut, LebensweisheitBrunner-Traut, Emma, Lebensweisheit der Alten Ägypter. 1985. Brunner-Traut, MärchenBrunner-Traut, Emma, Altägyptische Märchen. 1965 (2., verb. Aufl.), 1976 (4., verb. Aufl.), 1990 (9. Aufl.). Brunner-Traut, Seschemnofer IIIBrunner-Traut, Emma, Die altägyptische Grabkammer Seschemnofers III. aus Gîsa. Eine Stiftung des Geheimen Hofrats Dr. h. c. Ernst von Sieglin an die Tübinger Universität. 1977, 1982 (2. verb. Aufl.), 1995 (neue Aufl.). - Brunner-Traut, ZÄS 76, 1940Brunner-Traut, Emma, Die Weisheitslehre des Djedef-Hor. In: ZÄS 76, 1940, 3-9. - Brunner-Traut, ZÄS 94, 1967Brunner-Traut, Emma, Der Lebensmüde und sein Ba. In: ZÄS 94, 1967, 6-15. - Bruyère, ASAE 54, 1956Bruyère, Bernard, Une nouvelle famille de prêtres de Montou trouvée par Baraize à Deir el Bahri. In: ASAE 54, 1956, 11-33. Bruyère, Fouilles de Deir el Médineh (1927)Bruyère, Bernard, Rapport sur les fouilles de Deir el Médineh (1927). FIFAO 5,2. 1928. Bruyère, Fouilles de Deir el Médineh (1929)Bruyère, Bernard, Rapport sur les fouilles de Deir el Médineh (1929). FIFAO 7. 1930. + Bruyère, Fouilles de Deir el Médineh (1935-1940) IIIBruyère, Bernard, Rapport sur les fouilles de Deir el Médineh (1935-1940). Fascicule III. Notes à propos de quelques objets trouvés en 1939 et 1940. FIFAO 20,3. 1952. Bruyère, Mert SegerBruyère, Bernard, Mert Seger à Deir el Médineh. MIFAO 58. 1930. - Bruyère/Kuentz, Tombes ThébainesBruyère, Bernard, Kuentz, Charles, Tombes Thébaines. La nécropole de Deir el-Médineh I.1 La tombe de Nakht-Min et la tombe d'Ari Nefer. MIFAO 54. 1926. - Bryan, in: Amenhotep IIIBryan, Betsy M., Antecedents to Amenhotep III. In: Amenhotep III, 1998, 27-62. - Bryan, in: Temple in Ancient EgyptBryan, Betsy M., The Statue Program for the Mortuary Temple of Amenhotep III. In: Temple in Ancient Egypt, 1997, 57-81. + Bruyère/Kuentz, Tombes ThébainesBruyère, Bernard, Kuentz, Charles, Tombes Thébaines. La nécropole de Deir el-Médineh I.1 La tombe de Nakht-Min et la tombe d’Ari Nefer. MIFAO 54. 1926. Bryan, Thutmose IVBryan, Betsy M., The Reign of Thutmose IV. 1991. - Buchberger, in: Fs GuglielmiBuchberger, Hannes, Sesostris und die Inschrift von et-Tôd? Eine philologische Anfrage. In: Fs Guglielmi, 2006, 15-21. - Buchberger, SAK 18, 1981Buchberger, Hannes, 1tp an Ipw-rs.ti - der Brief auf dem Gefäß München ÄS 4313. In: SAK 18, 1991, 49-87. Buchberger, TransformationBuchberger, Hannes, Transformation und Transformat. Sargtextstudien I. ÄA 52. 1993. - Bucher, Tombes des Thoutmosis III et d'Aménophis IIBucher, Paul, Les textes des tombes de Thoutmosis III et d'Aménophis II. MIFAO 60. 1932. + Bucher, Tombes des Thoutmosis III et d’Aménophis IIBucher, Paul, Les textes des tombes de Thoutmosis III et d’Aménophis II. MIFAO 60. 1932. + BucheumMond, Robert Ludwig, Myers, Oliver Humphreys, The Bucheum. EES 41. 1934. Bucheum 1Mond, Robert Ludwig, Myers, Oliver Humphreys, The Bucheum. Vol. 1. The History and Archaeology of the Site. EES 41. 1934. Bucheum 2Mond, Robert Ludwig, Myers, Oliver Humphreys, The Bucheum. Vol. 2. The Inscriptions. EES 41. 1934. Bucheum 3Mond, Robert Ludwig, Myers, Oliver Humphreys, The Bucheum. Vol. 3. The Plates. EES 41. 1934. - BucheumMond, Robert Ludwig, Myers, Oliver Humphreys, The Bucheum. EES 41. 1934. Buck, Egyptian ReadingbookBuck, Adriaan de, Egyptian Readingbook. Volume I. Exercises and Middle Egyptian Texts. 1948. - Buck, in: Fs Griffith Buck, Adriaan de, Some new interpretations in Sinuhe. In: Fs Griffith, 1932, 57-60. - Buck, in: Studia Aegyptiaca IBuck, Adriaan de, The building inscription of the Berlin leather roll. In: Studia Aegyptiaca I, 1938, 48-57. - Buck, JEOL 5, 1938Buck, Adriaan de, Egyptische litteraire papyri. In: JEOL 5, 1938, 290-296. - Buck, JEOL 6, 1939Buck, Adriaan de, Een sportief Egyptisch koning. In: JEOL 6, 1939, 9-14. - Buck/ Stricker, OMRO 21, 1940Buck, Adriaan de, Stricker, B. H., Teksten tegen schorpioenen naar Pap. I 349. In: OMRO 21, 1940, 53-62. - Budde, in: Inschriften des Tempels von Edfu, Begleitheft 6Budde, Dagmar, Das Kind, das mit allem beginnt. Zu einer Bezeichnung der Hathor von Dendera, von Kindgöttern und vom König in griechisch-römischen Tempeltexten. In: Inschriften des Tempels von Edfu, Begleitheft 6, 2010, 1-23. Budde, SeschatBudde, Dagmar, Die Göttin Seschat. Kanobos 2. 2000. - Budde/Kurth, in: Edfu: Studien zu VokabularBudde, Dagmar, Kurth, Dieter, Zum Vokabular der Bände Edfou V - VIII. In: Edfu: Studien zu Vokabular, 1994, 1-24. Budge, BM Collections GuideBudge, Ernest Alfred Th. Wallis, A Guide to the Egyptian Collections in the British Museum. 1909. Budge, BM Galleries GuideBudge, Ernest Alfred Th. Wallis, A Guide to the Egyptian Galleries (Sculpture). 1909. Budge, By NileBudge, Ernest Alfred Th. Wallis, By Nile and Tigris. A Narrative of Journeys in Egypt and Mesopotamia on behalf of the British Museum between the Years 1886 and 1913, 2 vols. 1920. Budge, Egyptian SculpturesBudge, Ernest Alfred Th. Wallis, Egyptian Sculptures in the British Museum. 1914. + Budge, Hieratic PapyriBudge, Ernest Alfred Th. Wallis, Facsimiles of Egyptian hieratic papyri in the British Museum with descriptions, translations, etc. 1910-1923. Budge, Hieratic Papyri 1Budge, Ernest Alfred Th. Wallis, Facsimiles of Egyptian hieratic papyri in the British Museum with descriptions, translations, etc., Bd. 1. 1910. Budge, Hieratic Papyri 2Budge, Ernest Alfred Th. Wallis, Facsimiles of Egyptian Hieratic Papyri in the British Museum. 2. 1923. - Budge, Hieratic PapyriBudge, Ernest Alfred Th. Wallis, Facsimiles of Egyptian hieratic papyri in the British Museum with descriptions, translations, etc. 1910-1923. - Budge, History of Egypt IVBudge, Ernest Alfred Th. Wallis, A history of Egypt from the end of the neolithic period to the death of Cleopatra VII, B. C. 30, Vol. IV Egypt and her Asiatic empire. 1902. Budge, History of EgyptBudge, Ernest Alfred Th. Wallis, A History of Egypt from the End of the Neolithic Period to the Death of Cleopatra VII, B. C. 30. 1902. - Budge, ObelisksBudge, Ernest Alfred Th. Wallis, Cleopatra's Needles and other Egyptian Obelisks. A Series of Descriptions of all the Important Inscribed Obelisks, with Hieroglyphic Texts, Translations, etc. 1926. - Budge, PSBA 7, 1885Budge, Ernest Alfred Th. Wallis, [Some Egyptian Stelae in the Collection of Queen's College, Oxford]. In: PSBA 7, 1885, 122-123. + Budge, History of Egypt IVBudge, Ernest Alfred Th. Wallis, A history of Egypt from the end of the neolithic period to the death of Cleopatra VII, B. C. 30, Vol. IV Egypt and her Asiatic empire. 1902. + Budge, ObelisksBudge, Ernest Alfred Th. Wallis, Cleopatra’s Needles and other Egyptian Obelisks. A Series of Descriptions of all the Important Inscribed Obelisks, with Hieroglyphic Texts, Translations, etc. 1926. Budge, SudanThe Egyptian Sûdân. Its History and Monuments. 1907 (2 Bde.). - Budka, in: Fs BietakBudka, Julia, Die Inschrift eines Türgewändes im ḥwt-kꜢ des Chnumpriesters Sobekemzaf auf Elephantine. In: Fs Bietak, 2006, 75-80. Burkard, Geschichte des SchiffbrüchigenBurkard, Günter, Überlegungen zur Form der ägyptischen Literatur. Die Geschichte des Schiffbrüchigen als literarisches Kunstwerk. ÄUAT 22. 1993. - Burkard, in: Fs AltenmüllerBurkard, Günter, Ein früher Beleg der Kemit (O DAN hierat 5). In: Fs Altenmüller, 2003, 37-48. - Burkard, in: Gs PosenerBurkard, Günter, "Als Gott erschienen spricht er". Die Lehre des Amenemhet als postumes Vermächtnis. In: Gs Posener, 1999, 153-173. - Burkard, in: TUAT 3,2Burkard, Günter, Die Lehre des Ptahhotep. In: TUAT 3,2, 1991, 195-221. Burkard, Osiris-Liturgien Burkard, Günter, Spätzeitliche Osiris-Liturgien im Corpus der Asasif-Papyri: Übersetzung, Kommentar, formale und inhaltliche Analyse. ÄUAT 31. 1995. Burkard, Papyrusfunde AsasifBurkard, Günter, Die Papyrusfunde. Grabung im Asasif, Bd. III. AV 22. 1986. - Burkard, SAK 10, 1983Burkard, Günter, Der formale Aufbau altägyptischer Literaturwerke. Zur Problematik der Erschließung seiner Grundstrukturen. In: SAK 10, 1983, 79-118. - Burkard, TUAT 3, 1991Burkard, Günter, Die Lehre des Ptahhotep. In: TUAT 3,2, 1991, 195-221. Burkard, WeisheitslehrenBurkard, Günter, Textkritische Untersuchungen zu ägyptischen Weisheitslehren des Alten und Mittleren Reiches. ÄA 34. 1977. Burkard/Fischer-Elfert, Ägyptische Handschriften 4Burkard, Günter, Fischer-Elfert, Hans-Werner, Ägyptische Handschriften Teil 4. Hrsg. von Lüddeckens, Erich. VOHD 19/4. 1994. Burton, Excerpta hieroglyphicaBurton, James, Excerpta hieroglyphica : or exact copies of various hieroglyphical inscriptions and sculptured monuments still existing in Egypt and Nubia, and at Mount Sinai. 1825-1828. - Bush, Wepwawet 2, 1986Bush, Mark, The Yam Jam and Florence Stele 2540. In: Wepwawet 2, 1986, 23-25. Bussmann, Provinztempel Bussmann, Richard, Die Provinztempel Ägyptens von der 0. bis zur 11. Dynastie. PÄ 30. 2010. Buttles, QueensButtles, Janet R., The Queens of Egypt. 1908. CAA Amsterdam 3Haarlem, Willem M. van, Allard Pierson Museum Amsterdam Fascicle 3 Stelae and Reliefs. CAA 3. 1995. @@ -626,104 +406,83 @@

      Abbreviat CAA Wien 9Rogge, Eva, Kusthistorisches Museum Wien, Ägyptisch-Orientalische Sammlung, Lieferung 9: Statuen der Spätzeit (750 - ca. 300 v. Chr.). CAA 9. 1992. CAGCommentaria in Aristotelem Graeca. 1891-1909 (Nachdruck 1955 ff.). CAHThe Cambridge Ancient History.1923-1939 (1. Auflage) . - Cailliaud, Voyage à l'oasisCailliaud, Frédéric, Voyage à l'oasis de Thèbes et dans les déserts situés à l'orient et à l'occident de la Thébaïde : fait pendant les années 1815, 1816, 1817 et 1818 (2 Bde.). 1821-1862. + Cailliaud, Voyage à l’oasisCailliaud, Frédéric, Voyage à l’oasis de Thèbes et dans les déserts situés à l’orient et à l’occident de la Thébaïde : fait pendant les années 1815, 1816, 1817 et 1818 (2 Bde.). 1821-1862. + Calverley-Gardiner, AbydosCalverley, Amice Mary, Gardiner, Alan H., Broome, Myrtle F., The Temple of King Sethos I at Abydos. 1933-1958. Calverley-Gardiner, Abydos ICalverley, Amice Mary, Gardiner, Alan H., Broome, Myrtle F., The Temple of King Sethos I at Abydos. Vol. I. The Chapels of Osiris, Isis and Horus. 1933. Calverley-Gardiner, Abydos IICalverley, Amice Mary, Gardiner, Alan H., Broome, Myrtle F., The Temple of King Sethos I at Abydos. Vol. II. The Chapels of Amen-Re', Re'-Harakhti, Ptah, and King Sethos. 1935. Calverley-Gardiner, Abydos IIICalverley, Amice Mary, Gardiner, Alan H., Broome, Myrtle F., The Temple of King Sethos I at Abydos. Vol. III. The Osiris Complex. 1938. Calverley-Gardiner, Abydos IVCalverley, Amice Mary, Gardiner, Alan H., Broome, Myrtle F., The Temple of King Sethos I at Abydos. Vol. IV. The Second Hypostyle Hale. 1958. - Calverley-Gardiner, AbydosCalverley, Amice Mary, Gardiner, Alan H., Broome, Myrtle F., The Temple of King Sethos I at Abydos. 1933-1958. Caminos, BuhenCaminos, Ricardo Augusto, The New-Kingdom Temples of Buhen. ASE 33-34. 1974. - Caminos, JEA 44, 1958Caminos, Ricardo Augusto, A Fragmentary Duplicate of Papyrus Anastasi I in the Turin Museum. In: JEA 44, 1958, 3-4. - Caminos, JEA 49, 1963Caminos, Ricardo Augusto, Papyrus Berlin 10463. In: JEA 49, 1963, 29-37. Caminos, LEMCaminos, Ricardo Augusto, Late-Egyptian Miscellanies. BEStud 1. 1954. Caminos, Lit. Frag.Caminos, Ricardo Augusto, Literary Fragments in the Hieratic Script. 1956. Caminos, OsorkonCaminos, Ricardo Augusto, The Chronicle of Prince Osorkon. AnOr 37. 1958. Caminos, WoeCaminos, Ricardo Augusto, A Tale of Woe. From a Hieratic Papyrus in the A. S. Pushkin Museum of Fine Arts in Moscow, Papyrus Puschkin 127. 1977. Campbell, Amarna LettersCampbell, Edward Fay, The Chronology of the Amarna Letters. 1964. - Cannuyer, VA 1, 1985Cannuyer, Christian, Notules à propos de la stèle du Sphinx. In: VA 1, 1985, 83-90. - Cannuyer, ZÄS 117, 1990Cannuyer, Christian, Recherches sur l'onomasiologie du feu en Ancien Egyptien. In: ZÄS 117, 1990, 103-111. - Capart, BMRADI 3, 1903-1904Capart, Jean, Nouvelles acquisitions: section égyptienne. In: BMRADI 3, 1903-1904, 4-7, 81-84, 89-92. - Capart, CdE 16, 1941Capart, Jean, Ostraca illustrant des textes littéraires. In: CdE 16, 1941, 190-195. - Capart, CdE 23, 1948Capart, Jean, Review: Jonckheere, Frans 1947. Le papyrus médical Chester Beatty. In: Jonckheere, Papyrus Médical Chester Beatty, 1948, 97-100. - Capart, Gardiner, van de Walle, JEA 22, 1936Capart, Jean, Gardiner, Alan H., Van de Walle, Baudouin, New light on the Ramesside tomb-robberies. In: JEA 22, 1936, 169-93. + Cannata, Funerary IndustryCannata, Maria, Three Hundred Years of Death. The Egyptian Funerary Industry in the Ptolemaic Period. CHANE 110. 2020. (new) Capart, RecueilCapart, Jean, Recueil de monuments égyptiens. 1902-1905. - Capart, ThèbesCapart, Jean, Thèbes: la gloire d'un grand passé. 1925. - Caravane du CaireLa caravane du Caire. L'Égypte sur d'autres rives. Hrsg. von Warmenbol, Eugène. 2006. + Capart, ThèbesCapart, Jean, Thèbes: la gloire d’un grand passé. 1925. + Caravane du CaireLa caravane du Caire. L’Égypte sur d’autres rives. Hrsg. von Warmenbol, Eugène. 2006. Carlsberg Papyri 1The Carlsberg Papyri 1: Demotic texts from the collection. Hrsg. von Frandsen, Paul John. CNI Publications 15. 1991. Carlsberg Papyri 3A Miscellany of Demotic Texts and Studies. Hrsg. von Frandsen, Paul John, Ryholt, Kim. CNI Publications 22. 2000. Carlsberg Papyri 7The Carlsberg Papyri 7: Hieratic Texts from the Collection. Hrsg. von Ryholt, Kim. CNI Publications 30. 2006. Carlsberg Papyri 8Lieven, Alexandra von, The Carlsberg Papyri 8: Grundriss des Laufes der Sterne. Das sogenannte Nutbuch. CNI Publications 31. 2007. - Carotti, L'ArteCarotti, Giulio, L'arte dell'antico Egitto. 1937. + Carotti, L’ArteCarotti, Giulio, L’arte dell’antico Egitto. 1937. Carter, Tut-ankh-AmenCarter, Howard, The Tomb of Tut-ankh-Amen. 1923, 1927, 1933. Carter, Tut-ench-AmunCarter, Howard, Mace, Arthur Cruttenden, Tut-ench-Amun. Ein ägyptisches Königsgrab. Entdeckt von Earl of Carnavon und Howard Carter. 1924, 1927, 1934. Carter/Newberry, Thoutmôsis IVCarter, Howard, Newberry, Percy Edward, The Tomb of Thoutmôsis IV. 1904. - Castel/Köhler/Mathieu/Pouit, BIFAO 98, 1998Castel, Georges, Köhler, Eva Christiana, Mathieu, Bernard, Pouit, Georges, Les mines du ouadi Um Balad (désert oriental). In: BIFAO 98, 1998, 57-87. Castioni et al., ÉgypteCastioni, Christiane, Dérobert, Dominique, Hari, Robert, Muller-Aubert, Jocelyne, Stahl-Guinand, Bérengère, Égypte. IMAH 10. 1977. - Cat. Collection AthanasiCatalogue of the very magnificent and extraordinary collection of Egyptian antiquities, the property of Giovanni d'Athanasi, which will be sold by auction by Mr Leigh Sotheby [...] on Monday, March 13th, 1837, and six following days. 1837. + Cat. Collection AthanasiCatalogue of the very magnificent and extraordinary collection of Egyptian antiquities, the property of Giovanni d’Athanasi, which will be sold by auction by Mr Leigh Sotheby [...] on Monday, March 13th, 1837, and six following days. 1837. Caulfeild, AbydosCaulfeild, Algernon Thomas Saint George, The Temple of the Kings at Abydos (Sety I). ERA 8. 1902. Cauville, Dendara IDendara I, Traduction. OLA 81. 1998. Cauville, Dendara IICauville, Sylvie, Dendara II, Traduction. OLA 88. 1999. Cauville, Dendara IIICauville, Sylvie, Dendara III: traduction. OLA 95. 2000. Cauville, Dendara IVCauville, Sylvie, Dendara IV, Traduction. OLA 101. 2001. Cauville, Dendara V-VICauville, Sylvie, Dendara V-VI, Traduction, Les cryptes du temple d’Hathor, Vol. 1. OLA 131. 2004. + Cauville, Dendara XCauville, Sylvie, Le temple de Dendara 10: les chapelles osiriennes, 2 Bde. 1997. Cauville, Dendara X, 1Cauville, Sylvie, Le temple de Dendara 10: les chapelles osiriennes, Bd. 1: Texte. 1997. Cauville, Dendara X, 2Cauville, Sylvie, Le temple de Dendara 10: les chapelles osiriennes, Bd. 2: Planches. 1997. - Cauville, Dendara XCauville, Sylvie, Le temple de Dendara 10: les chapelles osiriennes, 2 Bde. 1997. Cauville, Dendara XICauville, Sylvie, Le temple de Dendara XI. 2000. Cauville, Dendara, chapelles osiriennes, Index, BdE 119Cauville, Sylvie, Le temple de Dendara, [X.] Les chapelles osiriennes, Index. 1997. - Cauville/Gasse, BIFAO 88, 1988Cauville, Sylvie, Gasse, Annie, Fouilles de Dendera. Premiers résultats. In: BIFAO 88, 1988, 25-32. - CDD AThe Chicago Demotic Dictionary, A, Version 02.1 vom 23. August 2002. http://oi.uchicago.edu/pdf/CDD_3.pdf - CDD aThe Chicago Demotic Dictionary, a, Version 03.1 vom 23. Juli 2003. http://oi.uchicago.edu/pdf/CDD_c.pdf + CDD ꜣThe Chicago Demotic Dictionary, ꜣ, Version 02.1 vom 23. August 2002. http://oi.uchicago.edu/pdf/CDD_3.pdf + CDD jThe Chicago Demotic Dictionary, j, Version 11.1 vom 18. April 2011. http://oi.uchicago.edu/pdf/CDD_'I.pdf + CDD yThe Chicago Demotic Dictionary, y, Version 01.1 vom 29. Juni 2001. http://oi.uchicago.edu/pdf/CDD_Y.pdf + CDD ꜥThe Chicago Demotic Dictionary, ꜥ, Version 03.1 vom 23. Juli 2003. http://oi.uchicago.edu/pdf/CDD_c.pdf CDD bThe Chicago Demotic Dictionary, b, Version 02.1 vom 23. August 2002. http://oi.uchicago.edu/pdf/CDD_B.pdf - CDD DThe Chicago Demotic Dictionary, D, Version 01.1 vom 29. Juni 2001. http://oi.uchicago.edu/pdf/CDD_DJ.pdf + CDD wThe Chicago Demotic Dictionary, w, Version 09.1 vom 7. August 2009. http://oi.uchicago.edu/pdf/CDD_W.pdf + CDD pThe Chicago Demotic Dictionary, p, Version 10.1 vom 26. Juli 2010. http://oi.uchicago.edu/pdf/CDD_P.pdf CDD fThe Chicago Demotic Dictionary, f, Version 01.1 vom 29. Juni 2001. http://oi.uchicago.edu/pdf/CDD_F.pdf - CDD gThe Chicago Demotic Dictionary, g, Version 04.1 vom 25. Mai 2004. http://oi.uchicago.edu/pdf/CDD_G.pdf - CDD hThe Chicago Demotic Dictionary, h, Version 01.1 vom 29. Juni 2001. http://oi.uchicago.edu/pdf/CDD_H.pdf - CDD HThe Chicago Demotic Dictionary, H, Version 09.1 vom 30. Juli 2009. http://oi.uchicago.edu/pdf/CDD_H2.pdf - CDD jThe Chicago Demotic Dictionary, j, Version 11.1 vom 18. April 2011. http://oi.uchicago.edu/pdf/CDD_'I.pdf - CDD kThe Chicago Demotic Dictionary, k, Version 01.1 vom 29. Juni 2001. http://oi.uchicago.edu/pdf/CDD_K.pdf CDD lThe Chicago Demotic Dictionary, l, Version 01.1 vom 29. Juni 2001. http://oi.uchicago.edu/pdf/CDD_L.pdf CDD mThe Chicago Demotic Dictionary, m, Version 10.1 vom 13. Juli 2010. http://oi.uchicago.edu/pdf/CDD_M.pdf CDD nThe Chicago Demotic Dictionary, n, Version 04.1 vom 19. Juli 2004. http://oi.uchicago.edu/pdf/CDD_N.pdf - CDD pThe Chicago Demotic Dictionary, p, Version 10.1 vom 26. Juli 2010. http://oi.uchicago.edu/pdf/CDD_P.pdf - CDD qThe Chicago Demotic Dictionary, q, Version 04.1 vom 24. Februar 2004. http://oi.uchicago.edu/pdf/CDD_Q.pdf CDD rThe Chicago Demotic Dictionary, r, Version 01.1 vom 29. Juni 2001. http://oi.uchicago.edu/pdf/CDD_R.pdf - CDD SThe Chicago Demotic Dictionary, S, Version 10.1 vom 24. März 2010. http://oi.uchicago.edu/pdf/CDD_SH.pdf + CDD hThe Chicago Demotic Dictionary, h, Version 01.1 vom 29. Juni 2001. http://oi.uchicago.edu/pdf/CDD_H.pdf + CDD ḥThe Chicago Demotic Dictionary, ḥ, Version 09.1 vom 30. Juli 2009. http://oi.uchicago.edu/pdf/CDD_H2.pdf + CDD ḫThe Chicago Demotic Dictionary, ḫ, Version 06.1 vom 14. Juni 2006. http://oi.uchicago.edu/pdf/CDD_H3.pdf + CDD ẖThe Chicago Demotic Dictionary, ẖ, Version 01.1 vom 29. Juni 2001. http://oi.uchicago.edu/pdf/CDD_H4.pdf CDD sThe Chicago Demotic Dictionary, s, Version 13.1 vom 15. November 2013. http://oi.uchicago.edu/pdf/CDD_S.pdf - CDD TThe Chicago Demotic Dictionary, T, Version 01.1 vom 29. Juni 2001. http://oi.uchicago.edu/pdf/CDD_T.pdf + CDD šThe Chicago Demotic Dictionary, š, Version 10.1 vom 24. März 2010. http://oi.uchicago.edu/pdf/CDD_SH.pdf + CDD gThe Chicago Demotic Dictionary, g, Version 04.1 vom 25. Mai 2004. http://oi.uchicago.edu/pdf/CDD_G.pdf + CDD kThe Chicago Demotic Dictionary, k, Version 01.1 vom 29. Juni 2001. http://oi.uchicago.edu/pdf/CDD_K.pdf + CDD qThe Chicago Demotic Dictionary, q, Version 04.1 vom 24. Februar 2004. http://oi.uchicago.edu/pdf/CDD_Q.pdf CDD tThe Chicago Demotic Dictionary, t, Version 12.1 vom 14. Juli 2012. http://oi.uchicago.edu/pdf/CDD_TJ.pdf - CDD wThe Chicago Demotic Dictionary, w, Version 09.1 vom 7. August 2009. http://oi.uchicago.edu/pdf/CDD_W.pdf - CDD XThe Chicago Demotic Dictionary, X, Version 01.1 vom 29. Juni 2001. http://oi.uchicago.edu/pdf/CDD_H4.pdf - CDD xThe Chicago Demotic Dictionary, x, Version 06.1 vom 14. Juni 2006. http://oi.uchicago.edu/pdf/CDD_H3.pdf - CDD yThe Chicago Demotic Dictionary, y, Version 01.1 vom 29. Juni 2001. http://oi.uchicago.edu/pdf/CDD_Y.pdf + CDD ṯThe Chicago Demotic Dictionary, ṯ, Version 01.1 vom 29. Juni 2001. http://oi.uchicago.edu/pdf/CDD_T.pdf + CDD ḏThe Chicago Demotic Dictionary, ḏ, Version 01.1 vom 29. Juni 2001. http://oi.uchicago.edu/pdf/CDD_DJ.pdf + Cemeteries of AbydosNaville, Édouard, The Cemeteries of Abydos. EEF 33, 34, 35. 1913-1914. Cemeteries of Abydos 1Naville, Édouard, Peet, Thomas Eric, The Cemeteries of Abydos. 1. 1909 - 1910. The Mixed Cemetery and Umm el-Ga'ab. EEF 33. 1914. Cemeteries of Abydos 2Naville, Édouard, Peet, Thomas Eric, Loat, William Leonard Stevenson, The Cemeteries of Abydos. 2. 1911 - 1912. EEF 34. 1914. Cemeteries of Abydos 3Naville, Édouard, Peet, Thomas Eric, Loat, William Leonard Stevenson, The Cemeteries of Abydos. 3. 1912 - 1913. EEF 35. 1913. - Cemeteries of AbydosNaville, Édouard, The Cemeteries of Abydos. EEF 33, 34, 35. 1913-1914. Cenival, AssociationsCenival, Françoise de, Les associations religieuses en Égypte d’après les documents démotiques. BdE 46. 1972. Cenival, CautionnementsCenival, Françoise de, Cautionnements démotiques du début de l’époque ptolémaïque (P. Dém. Lille 34 à 96). 1973. Cenival, Le Livre pour sortir le jourCenival, Jean Louis de, Le Livre pour sortir le jour: le Livre des Morts des anciens Égyptiens. 1992. Cenotaph of Seti IFrankfort, Henri, Buck, Adriaan de, Gunn, Battiscombe G., The Cenotaph of Seti I at Abydos. EES 39. 1933. - Černý, BIFAO 27, 1927Černý, Jaroslav, Le culte d'Amenophis Ier chez les ouvriers de la nécropole thébaine. In: BIFAO 27, 1927, 159-203. - Černý, BIFAO 37, 1937Černý, Jaroslav, Deux noms de poisson du Nouvel Empire. In: BIFAO 37, 1937, 35-40. - Černý, BIFAO 57, 1958Černý, Jaroslav, Some Coptic etymologies III. In: BIFAO 57, 1958, 203-213. Černý, CEDČerný, Jaroslav, Coptic Etymological Dictionary. 1976. Černý, CommunityČerný, Jaroslav, A Community of Workmen at Thebes in the Ramesside Period. BdE 50. 1973, 2001 (2nd ed.). - Černý, EI 5, 1958Černý, Jaroslav, Stela of Ramesses II from Beisan. In: EI 5, 1958, 75-82. Černý, Hieratic InscriptionsČerný, Jaroslav, Hieratic Inscriptions from the Tomb of Tut’ankhamun. TUTOS II. 1965. - Černý, in: Fs GrapowČerný, Jaroslav, Some Coptic etymologies. In: Fs Grapow, 1955, 30-37. - Černý, JEA 26, 1940Černý, Jaroslav, 'The temple', 𓏏𓄿‌𓉗‌𓏏𓉐, as an abbreviated name for the temple of Medinet Habu. In: JEA 26, 1940, 127-130. - Černý, JEA 26, 1941Černý, Jaroslav, 'The temple', 𓏏𓄿‌𓉗‌𓏏𓉐, as an abbreviated name for the temple of Medīnet Habu. In: JEA 26, 1941, 127-130. - Černý, JEA 31, 1945Černý, Jaroslav, The will of Naunakhte and the related documents. In: JEA 31, 1945, 29-53. - Cerny, JEA 33, 1947Černý, Jaroslav, Graffiti at the Wadi el-`Allaki. In: JEA 33, 19447, 52-57. - Černý, MDAIK 24, 1969Černý, Jaroslav, Stela of Emḥab from Tell Edfu. In: MDAIK 24, 1969, 87-92. Černý, Ostraca HieratiquesČerný, Jaroslav, Ostraca hiératiques, CG 25501-25832, T. 1-2. 1935. Černý, Pap. hiératiques IČerný, Jaroslav, Papyrus hiératiques de Deir el-Médineh. Tome I. Nos I-XVII. DFIFAO 8. 1978. Černý, PaperČerný, Jaroslav, Paper and Books in Ancient Egypt. 1977. - Černý, REA 1, 1927Černý, Jaroslav, Deux nouveaux fragments de textes littéraires connus depuis longtemps. In: REA 1, 1927, 221-226. - Černý, Temple d'Amada VČerný, Jaroslav, Le temple d'Amada V: Les inscriptions historiques. CS 55. 1967. + Černý, Temple d’Amada VČerný, Jaroslav, Le temple d’Amada V: Les inscriptions historiques. CS 55. 1967. Černý, The Valley of the KingsČerný, Jaroslav, The Valley of the Kings. BdE 61. 1973. - Černý, ZÄS 93, 1966Černý, Jaroslav, A Note on the Chancellor Bay. In: ZÄS 93, 1966, 35-39. Černý/Gardiner, Hier. OstracaČerný, Jaroslav, Gardiner, Alan H., Hieratic Ostraca. I. 1957. Černý/Koenig, Pap. hieratiques IIČerný, Jaroslav, Papyrus hiératiques de Deir el-Médineh, T. II (Nos. XVIII-XXXIV). Hrsg. von Koenig, Yvan. DFIFAO 22. 1986. Černý-Bruyère, Rép. OnomastiqueČerný, Jaroslav, Bruyère, Bernard, Clère, Jacques Jean, Répertoire onomastique de Deir el-Médineh. DFIFAO 12. 1949. @@ -740,7 +499,7 @@

      Abbreviat CG 20001-20780Lange, Hans Ostenfeldt, Schäfer, Heinrich, Grab- und Denksteine des Mittleren Reichs. CG Nos. 20001-20780. 1902-1925. CG 2001-2152 u. v. a.Bissing, Friedrich Wilhelm von, Tongefäße. 1. Bis zum Beginn des Alten Reiches. CG 66: 2001-2152 u. v. a. 1913. CG 22001-22208Kamal, Ahmed Bey, Stèles ptolémaiques et romaines. 1. [Text]. 2. [Tafeln]. CG [20-21]: Nos. 22001-22208. 1904-1905. - CG 23001-23256Kamal, Ahmed Bey, Tables d'offrandes. 1. [Text]. 2. [Tafeln]. CG [46-47]: Nos. 23001-23256. 1906-1909. + CG 23001-23256Kamal, Ahmed Bey, Tables d’offrandes. 1. [Text]. 2. [Tafeln]. CG [46-47]: Nos. 23001-23256. 1906-1909. CG 24001-24990Daressy, Georges, Fouilles de la Vallée des Rois (1898-1899). CG Nos. 24001-24990. 1902. CG 25001-25385Daressy, Georges, Ostraca. CG Nos. 25001-25385. 1901. CG 25501-25832Černý, Jaroslav, Ostraca hiératiques. CG 87: Nos. 25501-25832. 1935. @@ -748,13 +507,13 @@

      Abbreviat CG 27425-27630Edgar, Campbell Cowan, Greek Sculpture. CG [13]: Nos. 27425-27630. 1903. CG 28001-28126Lacau, Pierre, Sarcophages antérieurs au nouvel empire. CG Nos. 28001-28126. 1904-1906. CG 29301-29323Maspero, Gaston, Gauthier, Henri, Sarcophages des époques persane et ptolémaïque. CG Nos. 29301-29323. 1914-1939. - CG 29501-29733 u. 29751-29834Gaillard, Claude, Daressy, Georges, La faune momifiée de l'antique Égypte. 1905. + CG 29501-29733 u. 29751-29834Gaillard, Claude, Daressy, Georges, La faune momifiée de l’antique Égypte. 1905. CG 30601-31166Spiegelberg, Wilhelm, Die demotischen Denkmäler. I. Die demotischen Inschriften. CG [16]: Nos. 30601-31166. 1904. CG 30601-31270 u. 50001-50022Spiegelberg, Wilhelm, Die demotischen Denkmäler. II. Die demotischen Papyrus. CG [14]: Nos. 30601-31270 u. 50001-50022. 1908. CG 30601-31270 u. 50001-50165Spiegelberg, Wilhelm, Die Demotischen Denkmäler. I-III. CG 30601-31270 u. 50001-50165. 1904-1932. CG 31271-31670Weigall, Arthur E. P., Weights and Balances. CG Nos. 31271-31670. 1908. CG 32001-32367Edgar, Campbell Cowan, Greek Moulds. CG 8: Nos. 32001-32367. 1903. - CG 33301-33506Edgar, Campbell Cowan, Sculptors' Studies and Unfinished Works. CG 31: Nos. 33301-33506. 1906. + CG 33301-33506Edgar, Campbell Cowan, Sculptors’ Studies and Unfinished Works. CG 31: Nos. 33301-33506. 1906. CG 34001-34068Lacau, Pierre, Stèles du nouvel empire. T. 1,1 - T. 1,2. CG Nos. 34001-34068. 1909-1926. CG 34087-34189Lacau, Pierre, Stèles du la XVIIIe Dynastie. T. 1,3. CG Nos. 34087-34189. 1957. CG 3426-3587Bissing, Friedrich Wilhelm von, Metallgefäße. CG [2]: Nos. 3426-3587. 1901. @@ -762,7 +521,7 @@

      Abbreviat CG 3618-4000, 18001-18037, 18600, 18603Bissing, Friedrich Wilhelm von, Fayencegefäße. CG Nos. 3618-4000, 18001-18037, 18600, 18603. 1902. CG 38001-39348Daressy, Georges, Statues de divinités. CG [28]: Nos. 38001-39384. 1905-1906. CG 381-653Borchardt, Ludwig, Statuen und Statuetten von Königen und Privatleuten. 2. Text und Tafeln zu Nr. 381-653. CG 77: Nr. 381-653. 1925. - CG 41001-41041Moret, Alexandre, Sarcophages de l'époque Bubastite à l'époque Saïte. T. 1-2. CG Nos. 41001-41041. 1913. + CG 41001-41041Moret, Alexandre, Sarcophages de l’époque Bubastite à l’époque Saïte. T. 1-2. CG Nos. 41001-41041. 1913. CG 41042-41072Gauthier, Henri, Cercueils anthropoïdes des prêtres de Montou. T. 1-2. CG [65]: Nos. 41042-41072. 1913. CG 42001-42250Legrain, Georges, Statues et statuettes de rois et de particuliers. CG Nos. 42001-42250. 1906-1925. CG 44001-44102Bénédite, Georges, Miroirs. CG [37]: Nos. 44001-44102. 1907. @@ -786,7 +545,7 @@

      Abbreviat CG 61051-61100Smith, Grafton Elliot, The Royal Mummies. CG 59: Nos. 61051-61100. 1912. CG 63001-64906Currelly, Charles T., Stone Implements. CG 69: Nos. 63001-64906. 1913. CG 654-950Borchardt, Ludwig, Statuen und Statuetten von Königen und Privatleuten. 3. Text und Tafeln zu Nr. 654-950. CG 88: Nr. 654-950. 1930. - CG 67001-67359Maspero, Jean, Papyrus grecs d'époque byzantine. CG Nos. 67001-67359. 1911-1916. + CG 67001-67359Maspero, Jean, Papyrus grecs d’époque byzantine. CG Nos. 67001-67359. 1911-1916. CG 69201-69852Hickmann, Hans, Instruments de musique. CG Nos. 69201-69852. 1949. CG 70001-70050Roeder, Günther, Naos. CG Nos. 70001-70050. 1914. CG 7001-7394 u. 8742-9200Strzygowski, Josef, Koptische Kunst. CG Nos. 7001-7394 et 8742-9200. 1904. @@ -798,115 +557,67 @@

      Abbreviat CG 951-1294 Borchardt, Ludwig, Statuen und Statuetten von Königen und Privatleuten. 4. Text und Tafeln zu Nr. 951-1294. CG 94: Nr. 951-1294. 1934. CG NachweiseBorchardt, Ludwig, Volten, Aksel, Statuen und Statuetten von Königen und Privatleuten. T. 5 Nachweise. CG 96. 1936. CGGČerný, Jaroslav, Groll, Sarah Israelit, Eyre, Christopher, A Late Egyptian Grammar. StudPohl 4. 1978. - Chabas, AniChabas, François-Joseph, Les maximes du scribe Ani d'après le papyrus hiératique no. IV du Musée de Boulaq. 1874-1877. - Chabas, CRAIBL 19, 1875Chabas, François-Joseph, Sur un papyrus de formules magiques du Musée de Turin. In: CRAIBL 19, 1875, 57-68. - Chabas, in: Leemans, Papyrus égyptiens hiératiquesChabas, François-Joseph, Notices sommaires des papyrus hiératiques égyptiens I. 243 [i. e. 343] - 371 du Musée d'Antiquités des Pays-Bas à Leide. In: Leemans, Papyrus égyptiens hiératiques, 1853-1862, 62-79. - Chabas, in: Mél. égyptologiques III,2Chabas, François-Joseph, Correspondance des scribes Kaouisar et Bekenptah. In: Mél. égyptologiques, 1873, 120-139. - Chabas, L'antiquité historiqueChabas, François-Joseph, Études sur l'antiquité historique d'après les sources égyptiennes et les monuments réputés préhistoriques. 1872, 1873 (2e éd., rev. et augm.). + Chabas, AniChabas, François-Joseph, Les maximes du scribe Ani d’après le papyrus hiératique no. IV du Musée de Boulaq. 1874-1877. + Chabas, L’antiquité historiqueChabas, François-Joseph, Études sur l’antiquité historique d’après les sources égyptiennes et les monuments réputés préhistoriques. 1872, 1873 (2e éd., rev. et augm.). Cha-cheper-re-senebGardiner, Alan H., The Admonitions of an Egyptian Sage from a Hieratic Papyrus in Leiden (Pap. Leiden 344 recto). 1909, Neudr. 1969, 1990. - Chadefaud, Les statues porte-enseignes Chadefaud, Catherine, Les statues porte-enseignes de l'Égypte ancienne (1580-1085 avant J.C.): signification et insertion dans le culte du ka royal. 1982. - Champollion, Mon.Champollion, Jean François, Monuments de l'Égypte et de la Nubie. Planches. 1835-1845. + Chadefaud, Les statues porte-enseignes Chadefaud, Catherine, Les statues porte-enseignes de l’Égypte ancienne (1580-1085 avant J.C.): signification et insertion dans le culte du ka royal. 1982. + Champollion, Mon.Champollion, Jean François, Monuments de l’Égypte et de la Nubie. Planches. 1835-1845. Champollion, NoticeChampollion, Jean François, Notice descriptive des monumens égyptiens du Musée Charles X. 1827. - Champollion, Notices Descr.Champollion, Jean François, Monuments de l'Egypte et de la Nubie. Notices descriptives conformes aux manuscrits autographes rédigés sur les lieux par Champollion le Jeune. 1844-1889. - Chappaz, BSEG 13, 1989Chappaz, Jean-Luc, Remarques sur un exercice scolaire. In: BSEG 13, 1989, 33-43. - Chappaz, BSEG 2, 1979Chappaz, Jean-Luc, Un manifeste littéraire du Moyen Empire. Les lamentations de Kha-khéper-ré-séneb. In: BSEG 2, 1979, 3-12. - Chappaz, BSEG 7, 1982Chappaz, Jean-Luc, Un nouvel ostracon de L'Enseignement loyaliste. In: BSEG 7, 1982, 3-9. - Chappaz, BSEG 8, 1983Chappaz, Jean-Luc, Le premier édifice d'Aménophis IV à Karnak. In: BSEG 8, 1983, 13-45. - Chappaz, CdE 69, 1994Chappaz, Jean-Luc, Rezension: Peter F. Dorman, The Monuments of Senenmut. Problems in Historical Methodology. In: CdE 69, 1994, 278-281. + Champollion, Notices Descr.Champollion, Jean François, Monuments de l’Egypte et de la Nubie. Notices descriptives conformes aux manuscrits autographes rédigés sur les lieux par Champollion le Jeune. 1844-1889. Charpentier, RecueilCharpentier, Gérard, Recueil de matériaux épigraphiques relatifs à la botanique de l’Égypte antique. 1981. - Charron/Barbotin, KhâemouasetKhâemouaset, le prince archéologue: savoir et pouvoir à l'époque de Ramsès II. Hrsg. von Charron, Alain, Barbotin, Christophe. 2016. + Charron/Barbotin, KhâemouasetKhâemouaset, le prince archéologue: savoir et pouvoir à l’époque de Ramsès II. Hrsg. von Charron, Alain, Barbotin, Christophe. 2016. Chasing ChariotsChasing chariots. Proceedings of the First International Chariot Conference (Cairo 2012). Hrsg. von Veldmeijer, André J., Ikram, Salima. 2013. Chassinat, KhoiakChassinat, Émile, Le Mystère d’Osiris au mois de Khoiak. 1966-1968. - Chassinat, Mammisi d'EdfouChassinat, Émile, Le mammisi d’Edfou. MIFAO 16. 1939. + Chassinat, Mammisi d’EdfouChassinat, Émile, Le mammisi d’Edfou. MIFAO 16. 1939. Chassinat, Manuscrit magique copte No 42573Chassinat, Émile, Le manuscrit magique copte No 42573 du Musée égyptien du Caire. 1955. Chassinat, Papyrus médical copteChassinat, Émile, Un papyrus médical copte. MIFAO 32. 1921. - Chassinat, RecTrav 14, 1893Chassinat, Émile, Les papyrus magiques 3237 et 3239 du Louvre. In: RecTrav 14, 1893, 10-17. - Chassinat, RecTrav 25, 1903Chassinat, Émile, Textes provenant du Sérapéum de Memphis. In: RecTrav 25, 1903, 50-62. Chaufray/Wackenier, Papyrus de la SorbonneChaufray, Marie-Pierre, Wackenier, Stéphanie, Papyrus de la Sorbonne. 2016. - Chermette/Goyon, SAK 23, 1996Chermette, Michèle, Goyon, Jean-Claude, Le catalogue raisonné des producteurs de styrax et d'oliban d'Edfou et d'Athribis de Haute Égypte. In: SAK 23, 1996, 47-82. - Chevereau, Cadres Militaires Basse ÉpoqueChevereau, Pierre-Marie, Prosopographie des cadres militaires égyptiens de la Basse Époque. 1985. Chevereau, Cadres MilitairesChevereau, Pierre-Marie, Prosopographie des cadres militaires égyptiens du Nouvel Empire. 1994. - Chevereau, RdE 43, 1992Chevereau, Pierre-Marie, Contribution à la prosopographie des cadres militaires du Moyen Empire. In: RdE 43, 1992, 11-34. - Chevrier, ASAE 27, 1927Chevrier, Henri, Rapport sur les travaux de Karnak (novembre 1926 - mai 1927). In: ASAE 27, 1927, 134-153. - Chevrier, ASAE 28, 1928Chevrier, Henri, Rapport sur les travaux de Karnak (1927-1928). In: ASAE 28, 1928, 114-128. - Chevrier, ASAE 35, 1935Chevrier, Henri, Rapport sur les travaux de Karnak (1934-1935). In: ASAE 35, 1935, 97-121. - Chevrier, ASAE 36, 1936Chevrier, Henri, Rapport sur les travaux de Karnak (1935-1936). In: ASAE 36, 1936, 131-157. - Chevrier, ASAE 50, 1950Chevrier, Henri, Rapport sur les travaux de Karnak 1949-1950. In: ASAE 50, 1950, 429-442. - Chevrier, ASAE 52, 1954Chevrier, Henri, Rapport sur les travaux de Karnak 1951-1952. In: ASAE 52, 1954, 229-242. + Chevereau, Cadres Militaires Basse ÉpoqueChevereau, Pierre-Marie, Prosopographie des cadres militaires égyptiens de la Basse Époque. 1985. Christ, Antiquarium MünchenChrist, Wilhelm, Führer durch das k. Antiquarium in München. 1901. - Christophe, GM 96, 1987Christophe, Luc, A propos de mots désignant des parures. In: GM 96, 1987, 23-32. - Christophe, RdE 6, 1951Christophe, Louis-André, Notes géographiques à propos des campagnes de Thoutmosis III. In: RdE 6, 1951, 89-114. - CIG I-IICorpus Inscriptionum Graecarum. I-II. Hrsg. von Boeckhius, Augustus. 1828. + CIGCorpus Inscriptionum Graecarum. 1828-1877. CIG IIICorpus Inscriptionum Graecarum. III. Hrsg. von Franzius, Ionaaes. 1853. + CIG I-IICorpus Inscriptionum Graecarum. I-II. Hrsg. von Boeckhius, Augustus. 1828. CIG IV, 1-2Corpus Inscriptionum Graecarum. IV, 1-2. Hrsg. von Curtius, Ernestus, Kirchhoff, Adolphus. 1877. CIG IV, 3Corpus Inscriptionum Graecarum. IV, 3. Indices. Hrsg. von Roehl, Hermannus. 1877. - CIGCorpus Inscriptionum Graecarum. 1828-1877. CILCorpus Inscriptionum Latinarum. CIL. Consilio et auctoritate Academiae Litterarum Regiae Borussicae editum. 1862-. Clark, MythClark, R. T. Rundle, Myth and Symbol in Ancient Egypt. 1959. Clarke-Engelbach, MasonryClarke, Somers, Engelbach, Reginald, Ancient Egyptian Masonry. 1930. Clarysse et al., Eponymous PriestsClarysse, Willy C., Van der Veken, G., Vleeming, Sven P., The Eponymous Priests of Ptolemaic Egypt. 1983. Clarysse/Thompson, Counting the PeopleClarysse, Willy C., Thompson, Dorothy, Counting the People in Hellenistic Egypt. 2006. - Clédat, BIFAO 21, 1923Clédat, Jean, Notes sur l'Isthme de Suez. In: BIFAO 21, 1923, 55-106, 145-187. - Clédat, BIFAO 23, 1924Clédat, Jean, Notes sur l'Isthme de Suez. In: BIFAO 23, 1924, 27-84. - Clère, BIFAO 30, 1931Clère, Jacques Jean, Un passage de la stèle du général Antef (Glyptothèque Ny Carlsberg, Copenhague). In: BIFAO 30, 1931, 425-447. - Clère, BIFAO 79, 1979Clère, Jacques Jean, Recherches sur le mot des textes gréco-romains et sur d'autres mots apparentes. In: BIFAO 79, 1979, 285-310. - Clère, BIFAO 85, 1985Clère, Jacques Jean, Une stèle familiale abydénienne de la XIIe dynastie. In: BIFAO 85, 1985, 77-87. + Clère, ChauvesClère, Jacques Jean, Les chauves d’Hathor. OLA 63. 1995. (new) Clère, ÉvergèteClère, Pierre, La porte d’Évergète à Karnak. 2e partie. MIFAO 84. 1961. - Clère, in: Fs LexaClère, Jacques Jean, La lecture de la fraction "deux tiers" en égyptien. In: Fs Lexa, 1952, 629-641. - Clère, JEA 35, 1949Clère, Jacques Jean, L'Expression dnś mhwt des autobiographies égyptiennes. In: JEA 35, 1949, 38-42. - Clère, RdE 11, 1957Clère, Jacques Jean, Notes sur la chapelle funéraire de Ramsès I à Abydos et sur son inscription dédicatoire. In: RdE 11, 1957, 1-38. - Clère, RdE 22, 1970Clère, Jacques Jean, Notes sur l'inscription biographique de Sarenpout Ier à Assouan. In: RdE 22, 1970, 41-49. - Clère, RdE 4, 1940Clère, Jacques Jean, À propos du mot (zbi) de l'inscription de Nékhébou. In: RdE 4, 1940, 113-121. - Clère, ZÄS 93, 1966Clère, Jacques Jean, Notes sur la stèle d'Antef fils de Myt du British Museum. In: ZÄS 93, 1966, 39-42. Clère/Vandier, TextesClère, Jacques Jean, Vandier, Jacques, Textes de la première période intermédiaire et de la XIème dynastie. BAe 10. 1948. + CoAThe City of Akhenaten. I-III. EEF 38, 40, 44. 1923-1951. CoA IPeet, Thomas Eric, Woolley, C. Leonard, The City of Akhenaten. I. Excavations of 1921 and 1922 at El-'Amarneh. EEF 38. 1923. CoA IIFrankfort, Henri, Pendlebury, John Devitt S., The City of Akhenaten. II. The North Suburb and the Desert Altars. The Excavations at Tell el Amarna during the Season 1926-1932. EEF 40. 1933. CoA IIIPendlebury, John Devitt S., Frankfort, Henri, The City of Akhenaten. III. The Central City and the Official Quarters. The Excavations at Tell El-Amarna During the Seasons 1926-1927 and 1931-1936. Text u. Tafeln. EEF 44. 1951. - CoAThe City of Akhenaten. I-III. EEF 38, 40, 44. 1923-1951. - Coenen, CdE 79, 2004Coenen, Marc, Owners of documents of breathing made by Isis. In: CdE 79, 2004, 59-72. - Colin, BIFAO 105, 2005Colin, Frédéric, Kamose et les Hyksos dans l'oasis de Djesdjes. In: BIFAO 105, 2005, 35-47. - Colin, in: Das Ägyptsiche und die Sprachen Vorderasiens, Nordafrikas und der ÄgäisColin, Frédéric, Transcriptions égyptiennes de termes sémitiques: Assyriens, Israéliens et aqueducs (Edfou VI 194-198). In: Das Ägyptische und die Sprachen Vorderasiens, Nordafrikas und der Ägäis, 2004, 219-255. Coll. Ny CarlsbergFrom the Collections of the Ny Carlsberg Glyptotek. 1931-1942. Collection Earl of BelmoreTablets and other Egyptian monuments from the collection of the Earl of Belmore, now deposited in the British Museum. Hrsg. von Hawkins, E., Birch, Samuel. 1843. Collier/Manley, HieroglyphsCollier, Mark, Manley, Bill, How to Read Egyptian Hieroglyphs. A Step-by-Step Guide to Teach Yourself. 1998. Collier/Quirke, Lahun Pap., AccountsCollier, Mark, Quirke, Stephen, The UCL Lahun Papyri, Accounts. BAR-IS 1471. 2006. Collier/Quirke, Lahun Pap., LettersCollier, Mark, Quirke, Stephen, The UCL Lahun Papyri, Letters. BAR-IS 1083. 2002. Collier/Quirke, Lahun Pap., Religious, LiteraryCollier, Mark, Quirke, Stephen, The UCL Lahun Papyri: Religious, Literary, Legal, Mathematical and Medical. 2004. - Collombert, BSEG 28, 2008-2010Collombert, Philippe, Les stèles d'enceinte de Thoutmosis III à Héliopolis. In: BSEG 28, 2008-2010, 5-13. - Collombert, in: Fs AguizyCollombert, Philippe, À propos de pꜣ ḏd(-wnw.t), "heure", en égyptien tardif. In: Fs Aguizy, 2015, 85-99. - Collombert/Coulon, BIFAO 100, 2000Collombert, Philippe, Coulon, Laurent, Les dieux contre la mer: le début du “papyrus d'Astarté” (pBN 202). In: BIFAO 100, 2000, 193-242. Colloquium Egyptian DeltaProceedings of Colloquium "The Archaeology, Geography and History of the Egyptian Delta in Pharaonic Times", Wadham College 29-31 August, 1988. Hrsg. von Nibbi, Alessandra. DE SN 1. 1989. Colour and PaintingColour and Painting in Ancient Egypt. Hrsg. von Davies, W. V. 2001. CommerceLe commerce en Égypte ancienne. Hrsg. von Grimal, Nicolas-Christophe, Menu, Bernadette. BdE 121. 1998. CompanionA Companion to Ancient Egypt, 2 Vols. Hrsg. von Lloyd, Alan B. 2010. Condon, Seven Royal HymnsCondon, Virginia, Seven Royal Hymns of the Ramesside Period, Papyrus Turin CG 54031. MÄS 37. 1978. Congr. intern. des orient. IICongrès international des orientalistes. Compte-rendu de la première session, Paris - 1873, Tome deuxième. 1876. + Context of ScriptureThe Context of Scripture. Hrsg. von Hallo, William W., Younger, K. Lawson. 1997-2016. Context of Scripture IThe Context of Scripture I. Canonical Compositions from the Biblical World. Hrsg. von Hallo, William W., Younger, K. Lawson. 1997. Context of Scripture IIThe Context of Scripture, Vol. II. Monumental Inscriptions from the Biblical World. Hrsg. von Hallo, William W., Younger, K. Lawson. 2000. Context of Scripture IIIThe Context of Scripture, Vol. III. Archival Documents from the Biblical World. Hrsg. von Hallo, William W., Younger, K. Lawson. 2002. - Context of ScriptureThe Context of Scripture. Hrsg. von Hallo, William W., Younger, K. Lawson. 1997-2016. Continuity and InnovationContinuity and innovation in the magical tradition. Hrsg. von Bohak, Gideon. Jerusalem Studies in Religion and Culture 15. 2011. Cooney, Cost of DeathCooney, Kathlyn M., The Cost of Death, The Social and Economic Value of Ancient Egyptian Funerary Art in the Ramesside Period. EgUit 22. 2007. Coppens/Smoláriková, Abusir XXCoppens, Filip, Smoláriková, Květa, Abusir XX, Lesser Late Period Tombs at Abusir, The Tomb of Padihor and the Anonymous Tomb R3. 2009. - CoptosCoptos. L'Égypte antique aux portes du désert. Lyon, Musée des Beaux-Arts 3 février - 7 mai 2000 (Ausstellungskatalog). Hrsg. von Gabolde, Marc, Galliano, Geneviève. 2000. - Corteggiani, in: Gs SauneronCorteggiani, Jean-Pierre, Une stèle héliopolitaine d'époque saïte. In: Gs Sauneron, 1979, 115-154. - Cortese, in: Donadoni Roveri, Scuola Cortese, V., Le materie scientifiche . In: Donadoni Roveri, Anna Maria, La Scuola nell’antico Egitto, 1997, 117-136 . - Coulon, AEPHE 124, 2015-2016Coulon, Laurent, Religion de l'Égypte ancienne. In: AEPHE 124, 2015-2016, 69-79. - Coulon, in: La XXVIe dynastieCoulon, Laurent, Les uræi gardiens du fétiche abydénien: un motif osirien et sa diffusion à l’époque saïte. In: La XXVIe dynastie, 2011, 85-108. - Couroyer, Or 33, 1964Couroyer, Bernard, Trois épithètes de Ramsès II. In: Or 33, 1964, 443-460. + CoptosCoptos. L’Égypte antique aux portes du désert. Lyon, Musée des Beaux-Arts 3 février - 7 mai 2000 (Ausstellungskatalog). Hrsg. von Gabolde, Marc, Galliano, Geneviève. 2000. Couyat/Montet, HammamatCouyat, Jules, Montet, Pierre, Les inscriptions hiéroglyphiques et hiératiques du Ouâdi Hammâmât. MIFAO 34. 1912. Couyat-Montet, Inscr. du Ouâdi HammâmâtCouyat, Jules, Montet, Pierre, Les inscriptions hiéroglyphiques et hiératiques du Ouâdi Hammâmât. MIFAO 34. 1912. - Cozi, GM 143, 1994Cozi, Massimo, Khefethernebes et la stèle de Hatshepsut. In: GM 143, 1994, 31/35. - Cozi, GM 163, 1998Cozi, Massimo, Les interventions de la XVIII dynastie sur le "Petit Temple" de Medinet Habu. Quelques observations sur les dates d'exécution des travaux. In: GM 163, 1998, 35-46. - Cozi, GM 169, 1999Cozi, Massimo, Neferourê et son époque. In: GM 169, 1999, 17-30. - Cramer, ZÄS 72, 1936Cramer, Maria, Ägyptische Denkmäler im Kestner-Museum zu Hannover. In: ZÄS 72, 1936, 81-108. - Crawford, Kush 1, 1953Crawford, Osbert Guy Stanhope, Field Archaeology of the Middle Nile Region. In: Kush 1, 1953, 2-29. CrossroadCrossroad. Chaos or the Beginning of a new Paradigm. Papers from the Conference on Egyptian Grammar, Helsingør 28-30 May 1986. Hrsg. von Englund, Gertie, Frandsen, Paul John. CNI Publications 1. 1986. Crum, CDCrum, Walter Ewing, A Coptic Dictionary. 1939. - Crum, PSBA 16, 1894Crum, Walter Ewing, M. Lefébure and the [mskꜣ] at Abydos. The title [jwn-knm.wt]. In: PSBA 16, 1894, 131-137. - Crum, PSBA 18, 1896Crum, Walter Ewing, A Stele of the XIIIth Dynasty. In: PSBA 18, 1896, 272-274. Cruz-Uribe, Cattle DocumentsCruz-Uribe, E., Saite and Persian Cattle Documents. A Study in Legal Forms and Principles in Ancient Egypt. ASP 26. 1985. - Cruz-Uribe, ZÄS 113, 1986Cruz-Uribe, E., Late Egyptian varia. In: ZÄS 113, 1986, 18-20. + CTThe Egyptian Coffin Texts. Hrsg. von Buck, Adriaan de, Gardiner, Alan H., Allen, James P. OIP 34, 49, 64, 67, 73, 81, 87. 1935-1961. CT IThe Egyptian Coffin Texts. I. Texts of Spells 1-75. Hrsg. von Buck, Adriaan de. OIP 34. 1935. CT IIThe Egyptian Coffin Texts. II. Texts of Spells 76-163. Hrsg. von Buck, Adriaan de. OIP 49. 1938. CT IIIThe Egyptian Coffin Texts. III. Texts of Spells 164-267. Hrsg. von Buck, Adriaan de. OIP 64. 1947. @@ -914,95 +625,56 @@

      Abbreviat CT VThe Egyptian Coffin Texts. V. Texts of Spells 355-471. Hrsg. von Buck, Adriaan de. OIP 73. 1954. CT VIThe Egyptian Coffin Texts. VI. Texts of Spells 472-786. Hrsg. von Buck, Adriaan de. OIP 81. 1956. CT VIIThe Egyptian Coffin Texts. VII. Texts of Spells 787-1185. Hrsg. von Buck, Adriaan de. OIP 87. 1961. - CTThe Egyptian Coffin Texts. Hrsg. von Buck, Adriaan de, Gardiner, Alan H., Allen, James P. OIP 34, 49, 64, 67, 73, 81, 87. 1935-1961. - Curto, Egitto Museo TorinoCurto, Silvio, L'antico Egitto nel Museo Egizio di Torino. 1984. + Curto, Egitto Museo TorinoCurto, Silvio, L’antico Egitto nel Museo Egizio di Torino. 1984. Curto, GhizaCurto, Silvio, Gli Scavi italiani a el-Ghiza (1903). 1963. - Curto, in: Act. NubieCurto, Silvio, Dehmit, Talmis-Kalabcheh, Korosko, Kasr Ibrim et Ellesija. In: Act. Nubie, 1981, 7-22. - Curto, L'Egitto anticoCurto, Silvio, L'Egitto antico nelle collezioni dell'Italia settentrionale. Museo Civico Bologna. 1961. + Curto, L’Egitto anticoCurto, Silvio, L’Egitto antico nelle collezioni dell’Italia settentrionale. Museo Civico Bologna. 1961. Curto, SpeosCurto, Silvio, Lo Speos di Ellesija. Un tempio della Nubia salvato dalle acque del Lago Nasser. 2010. Curto, Storia Museo TorinoCurto, Silvio, Storia del Museo Egizio di Torino. 1976. - Curto, Tempio Museo TorinoCurto, Silvio, Il tempio di Ellesija (Museumskatalog). QMT 6. 1970. Curto, TempioCurto, Silvio, Il tempio di Ellesija. 1999. + Curto, Tempio Museo TorinoCurto, Silvio, Il tempio di Ellesija (Museumskatalog). QMT 6. 1970. + DahchourMorgan, Jacques Jean Marie de, Fouilles à Dahchour. 1895-1903. Dahchour IMorgan, Jacques Jean Marie de, Fouilles à Dahchour. I. Mars-Juni 1894. 1895. Dahchour IIMorgan, Jacques Jean Marie de, Fouilles à Dahchour. II. 1903. - DahchourMorgan, Jacques Jean Marie de, Fouilles à Dahchour. 1895-1903. - Dahms, Pehal, Willems, JEA 100, 2014Dahms, Jan-Michael, Pehal, Martin, Willems, Harco, Ramses II helps the dead. An interpretation of Book of the Dead supplementary chapter 166. In: JEA 100, 2014, 395-420. - Dakin, in: Sesto CongressoDakin, Alec N., Kemit: A Revised Translation with Material for a Commentary. In: Sesto Congresso, 1992, 465-471. + DakkeRoeder, Günther, Der Tempel von Dakke. 1930. Dakke IRoeder, Günther, Der Temple von Dakke. I. Texte. 1930. Dakke IIRoeder, Günther, Der Tempel von Dakke. II. Plances. 1930. Dakke IIIRoeder, Günther, Ruppel, Walter, Der Tempel von Dakke. III. Die griechischen und lateinischen Inschriften von Dakke nach den Aufnahmen von Oric Bates und Günther Roeder. 1930. - DakkeRoeder, Günther, Der Tempel von Dakke. 1930. - Dalino, ZÄS 147, 2020Dalino, Edwin, La grande fête d'Abydos et le "Tribunal de Justification": note sur un titre du grand prêtre d'Osiris Ounennéfer. In: ZÄS 147, 2020, 30-33. Dann, CRE 2004Current research in Egyptology 2004: proceedings of the fifth annual symposium which took place at the University of Durham January 2004. Hrsg. von Dann, Rachael J. CRE. 2006. - Dantong, JAnCi 14, 1999Dantong, Guo, The Inscription of Amenemhet II from Memphis. Transliteration, Translation and Commentary. In: JAnCi 14, 1999, 45-66. - Daressy, ASAE 11, 1911Daressy, Georges, Inscriptions des carrières de Tourah et Mâsarah. In: ASAE 11, 1911, 257-268. - Daressy, ASAE 16, 1916 (1)Daressy, Georges, Fragment de socle de statue provenant d'Athribis. In: ASAE 16, 1916, 54-56. - Daressy, ASAE 16, 1916 (2)Daressy, Georges, Un scarabée d'Amenhotep IV. In: ASAE 16, 1916, 178. - Daressy, ASAE 17, 1917Daressy, Georges, Monuments d'Edfou datant du Moyen Empire. In: ASAE 17, 1917, 237-244. - Daressy, ASAE 18, 1919 (1)Daressy, Georges, Monuments d'Edfou datant du Moyen Empire. In: ASAE 18, 1919, 49-52. - Daressy, ASAE 18, 1919 (2)Daressy, Georges, Deux statues de Balansourah. In: ASAE 18, 1919, 53-57. - Daressy, ASAE 27, 1927Daressy, Georges, Quelques ostraca de Biban el Molouk. In: ASAE 27, 1927, 161-182. - Daressy, ASAE 8, 1907Daressy, Georges, Fragments de stèles de la XIe dynastie. In: ASAE 8, 1907, 242-247. - Daressy, ASAE 9, 1908Daressy, Georges, Stèle d'un prince Antef. In: ASAE 9, 1908, 150-151. - Daressy, MIE 3, 1900Daressy, Georges, Le mastaba de Mera. In: MIE 3, 1900, 521-574. - Daressy, RecTrav 10, 1888Daressy, Georges, Remarques et notes. In: RecTrav 10, 1888, 139-150. - Daressy, RecTrav 11, 1889Daressy, Georges, Remarques et notes. In: RecTrav 11, 1889, 79-95. - Daressy, RecTrav 14, 1893Daressy, Georges, Notes et remarques. In: RecTrav 14, 1893, 20-38, 165-185. - Daressy, RecTrav 16, 1894Daressy, Georges, Notes et remarques. In: RecTrav 16, 1894, 42-60, 123-133. Darnell, Desert Road Survey IDarnell, John Coleman, Theban Desert Road Survey in the Egyptian Western Desert, I. Gebel Tjauti Rock Inscriptions 1-45 and Wadi el-Hôl Rock Inscriptions 1-45. OIP 119. 2002. - Darnell, Enchoria 17, 1990Darnell, John Coleman, Articular Km.t / Kmy and Partitive ⲕⲏⲙⲉ. (Including An Isis of Memphis and Syria, and the Kmy of Setne I 5,11 West of which Lived Ta-Bubu). In: Enchoria 17, 1990, 69-81. - Darnell, GM 83, 1984Darnell, John Coleman, The annotation šd (m) dšr. In: GM 83, 1984, 17-26. - Darnell, in: Gs BehrensDarnell, John Coleman, Two sieges in the Aethiopic stelae. In: Gs Behrens, 1991, 73-93. - Darnell, JEA 75, 1989Darnell, John Coleman, The chief bake. In: JEA 75, 1989, 216-219. Darnell, KatimalaDarnell, John Coleman, The Inscription of Queen Katimala at Semna, Textual Evidence for the Origins of the Napatan State. YES 7. 2006. - Darnell, RdE 59, 2008Darnell, John Coleman, The Eleventh Dynasty royal inscription from Deir el-Ballas. In: RdE 59, 2008, 81-110. - Darnell, SAK 22, 1995Darnell, John Coleman, Hathor returns to Medamûd. In: SAK 22, 1995, 47-94. - Darnell, SAK 31, 2003Darnell, John Coleman, A stela of the reign of Tutankhamun from the region of Kurkur oasis. In: SAK 31, 2003, 73-91. - Darnell, ZÄS 124, 1997Darnell, John Coleman, The Message of King Wahankh Antef II to Khety, Ruler of Heracleopolis. In: ZÄS 124, 1997, 101-108. Das Ägyptische und die Sprachen Vorderasiens, Nordafrikas und der ÄgäisDas Ägyptische und die Sprachen Vorderasiens, Nordafrikas und der Ägäis. Akten des Basler Kolloquiums zum ägyptisch-nichtsemitischen Sprachkontakt. Basel 9.-11. Juli 2003. Hrsg. von Schneider, Thomas. AOAT 310. 2004. - Daumas, CivilisationDaumas, François, La civilisation de l'Égypte pharaonique. 1965, 1967 (rev. ed.), 1987 (rev. ed.). - Daumas, in: Livre du CentenaireDaumas, François, Quelques textes de l'atelier des orfèvres dans le temple de Dendara. In: Livre du Centenaire, 1980, 109-118. - Daumas, Mammisis de DendaraDaumas, François, Les mammisis de Dendara. PIFAO 7. 1959. + Daumas, CivilisationDaumas, François, La civilisation de l’Égypte pharaonique. 1965, 1967 (rev. ed.), 1987 (rev. ed.). Daumas, MammisisDaumas, François, Les mammisis des temples égyptiens. 1958. + Daumas, Mammisis de DendaraDaumas, François, Les mammisis de Dendara. PIFAO 7. 1959. Daumas, MoyensDaumas, François, Le moyens d’expression du grec et de l’égyptien comparés dans les décrets de Canope et de Memphis. CASAE 16. 1952. David, Ramesside Royal DecreesDavid, Arlette, Syntactic and lexico-semantic aspects of the legal register in Ramesside royal decrees. GOF 38,5. 2006. David/Cockitt, Pharmacy and Medicine in Ancient EgyptPharmacy and Medicine in Ancient Egypt. Proceedings of the Conferences Held in Cairo (2007) and Manchester (2008). Hrsg. von David, Ann Rosalie, Cockitt, Jenefer A. BAR-IS 2141. 2010. Davies (et al.), Saqqara Tombs IDavies, W. V., El-Khouli, A., Lloyd, Alan B., Spencer, A. Jeffrey, Saqqâra Tombs I. The Mastabas of Mereri and Wernu. ASE Memoirs 36. 1984. Davies, (Tombs of) Two OfficialsDavies, Norman de Garis, The tombs of two officials of Thutmosis IV (nos 75 and 90). 1923. + Davies, AmarnaDavies, Norman de Garis, The Rock Tombs of El Amarna. ASE 13-18. 1903-1908. Davies, Amarna IDavies, Norman de Garis, The Rock Tombs of El Amarna. I. The Tomb of Meryra. ASE 13. 1903. Davies, Amarna IIDavies, Norman de Garis, The Rock Tombs of El Amarna. II. The Tombs of Panehesy and Meryra. ASE 14. 1905. Davies, Amarna IIIDavies, Norman de Garis, The Rock Tombs of El Amarna III. The Tombs of Huya and Ahmes. ASE 15. 1905. Davies, Amarna IVDavies, Norman de Garis, The Rock Tombs of El Amarna. IV. Tombs of Penthu, Mahu, and Others. ASE 16. 1906. Davies, Amarna VDavies, Norman de Garis, The Rock Tombs of El Amarna. V. Smaller Tombs and Boundray Stelae. ASE 17. 1908. Davies, Amarna VIDavies, Norman de Garis, The Rock Tombs of El Amarna. VI. Tombs of Parennefer, Tutu, and Ay. ASE 18. 1908. - Davies, AmarnaDavies, Norman de Garis, The Rock Tombs of El Amarna. ASE 13-18. 1903-1908. Davies, AxesDavies, W. V., Tools and Weapons I: Axes. CEABM 7. 1987. Davies, Five Theban TombsDavies, Norman de Garis, Five Theban Tombs. Being those of Mentuherkhepeshef, User, Daga, Nehemawäy and Tati. ASE Memoirs 21. 1913. - Davies, GM 137, 1993Davies, Benedict G., O.Berlin P.11239 and the Coppersmiths at Deir el-Medina. In: GM 137, 1993, 39-47. Davies, Historical InscriptionsDavies, Benedict G., Egyptian Historical Inscriptions of the Nineteenth Dynasty. Documenta Mundi. Aegyptiaca 2. 1997. - Davies, in: Nubia in New KingdomDavies, W. V., Nubia in the New Kingdom. The Egyptians at Kurgus. In: Nubia in New Kingdom, 2017, 65-105. - Davies, in: SéhelDavies, W. V., The Rock Inscriptions at Kurgus in the Sudan. In: Séhel, 2004, 149-160. - Davies, JEA 35, 1949Davies, Nina de Garis, Birds and bats at Beni Ḥasan. In: JEA 35, 1949, 13-20. - Davies, JEA 58, 1972Davies, W. V., The meaning of the group m r ḫꜣt(y) in the inscription of ḥr-wr-rꜥ (Sinai, No. 90,8). In: JEA 58, 1972, 300. - Davies, JEA 61, 1975Davies, W. V., Readings in the Story of Sinuhe and other Egyptian texts. In: JEA 61, 1975, 45-53. - Davies, JEA 62, 1976Davies, W. V., 'Hands and Hearts (Berlin 1157)' - an Alternative. In: JEA 62, 1976, 176-177. - Davies, JEA 68, 1982Davies, W. V., The Origin of the Blue Crown. In: JEA 68, 1982, 69-76. Davies, Ken-AmunDavies, Norman de Garis, The Tomb of Ken-Amun at Thebes. PMMA 5. 1930. Davies, Life within the Five WallsDavies, Benedict G., Life within the Five Walls. A Handbook to Deir el-Medina. 2018. Davies, MenkheperrasonbDavies, Norman de Garis, The Tombs of Menkheperrasonb, Amenmose, and another (Nos. 86, 112, 42, 226). TTS 5. 1933. Davies, NakhtDavies, Norman de Garis, The Tomb of Nakht at Thebes. RPTMS 1. 1917. Davies, NeferhotepDavies, Norman de Garis, The Tomb of Nefer-Hotep at Thebes. 1933. + Davies, Ptahhetep and AkhethetepDavies, Norman de Garis, The Mastaba of Ptahhetep and Akhethetep at Saqqareh. ASE Memoirs 8-9. 1900-1901. Davies, Ptahhetep and Akhethetep IDavies, Norman de Garis, The Mastaba of Ptahhetep and Akhethetep. I. The Chapel of Ptahhetep and the Hieroglyphs. ASE 8. 1900. Davies, Ptahhetep and Akhethetep IIDavies, Norman de Garis, The Mastaba of Ptahhetep and Akhethetep at Saqqareh. II. The Mastaba. The Sculptures of Akhethetep. ASE Memoirs 9. 1901. - Davies, Ptahhetep and AkhethetepDavies, Norman de Garis, The Mastaba of Ptahhetep and Akhethetep at Saqqareh. ASE Memoirs 8-9. 1900-1901. + Davies, PuyemrêDavies, Norman de Garis, The Tomb of Puyemrê at Thebes. RPTMS 2-3. 1922-1923. Davies, Puyemrê IDavies, Norman de Garis, The Tomb of Puyemrê at Thebes. I. The Hall of Memories. RPTMS 2. 1922. Davies, Puyemrê IIDavies, Norman de Garis, The Tomb of Puyemrê at Thebes. II. The Chapels of Hope. RPTMS 3. 1923. - Davies, PuyemrêDavies, Norman de Garis, The Tomb of Puyemrê at Thebes. RPTMS 2-3. 1922-1923. Davies, RamoseDavies, Norman de Garis, The Tomb of the Vizier Ramose. MET 1. 1941. Davies, Rekh-mi-Rē'Davies, Norman de Garis, The Tomb of Rekh-mi-Rē' at Thebes. PMMA 11. 1943. Davies, Seven Private TombsDavies, Norman de Garis, Seven Private Tombs at Kurnah. MET 2. 1948. - Davies, Sudan & Nubia 2, 1998Davies, W. V., New Fieldwork at Kurgus. The Pharaonic inscriptions. In: Sudan & Nubia 2, 1998, 26-30. - Davies, Sudan & Nubia 5, 2001Davies, W. V., Kurgus 2000: The Egyptian Inscriptions. In: Sudan & Nubia 5, 2001, 46-58. Davies, Two Ramesside TombsDavies, Norman de Garis, Two Ramesside Tombs at Thebes. RPTMS 5. 1927. Davies, Two SculptorsDavies, Norman de Garis, The Tomb of Two Sculptors at Thebes. RPTMS 4. 1925. Davies/Friedman, Unbekanntes ÄgyptenDavies, W. V., Friedman, Renée F., Unbekanntes Ägypten - Mit neuen Methoden alten Geheimnissen auf der Spur. 1999. @@ -1013,54 +685,41 @@

      Abbreviat Davis, Bw and bn in Late EgyptianDavis, Virginia Lee, Syntax of the Negative Particles bw and bn in Late Egyptian. MÄS 29. 1973. Davis, JouiyaDavis, Theodore M., The funeral papyrus of Jouiya. 1908. Dawson (and Gray), Cat. BM IDawson, Warren Royal, Gray, Peter Hugh Ker, Catalogue of Egyptian antiquities in the British Museum. I. Mummies and Human Remains. 1968. - Dawson, Aegyptus 11, 1930-31Dawson, Warren Royal, Notes on Egyptian magic. In: Aegyptus 11, 1930-31, 23-28. - Dawson, JEA 10, 1924Dawson, Warren Royal, Note on some ostraca from el-'Amarnah. In: JEA 10, 1924, 133. - Dawson, JEA 22, 1936Dawson, Warren Royal, Notices of Recent Publications. In: JEA 22, 1936, 106-108. - Dawson, JEA 35, 1949Dawson, Warren Royal, Anastasi, Sallier, and Harris and their Papyri. In: JEA 35, 1949, 158-166. - Dawson/Peet, JEA 19, 1933Dawson, Warren Royal, Peet, Thomas Eric, The so-called poem on the king's chariot. In: JEA 19, 1933, 167-174. - De Bruyn, JEA 44, 1958De Bruyn, P., Falcon Graffiti in the Eastern Desert. In: JEA 44, 1958, 97-98, pl. XIV. - de Meulenaere, BIFAO, Suppl. 81, 1981De Meulenaere, Herman, Le signe hiéroglyphique D154. In: BIFAO Suppl. 81, 1981, 87-89. - de Meulenaere, BiOr 64, 2007De Meulenaere, Herman, Rezension: Guermeur, Ivan, Les Cultes d' Amon hors de Thèbes. Recherches de géographie religieuse. In: BiOr 64, 2007, 132-136. - de Meulenaere, in: Mél. Mar.De Meulenaere, Herman, Un titre memphite méconnu. In: Mél. Mar., 1961, 285-290. - de Meulenaere, Kemi 16, 1962De Meulenaere, Herman, Recherches onomastiques. In: Kêmi 16, 1962, 28-37. - De Morgan, Cat. des Mon., 1Morgan, Jacques Jean Marie de, Catalogue des Monuments et Inscriptions de l'Egypte Antique, 1. Ser. 1894-. - De Morgan, Catalogue des Monuments, Sér. 1, T. IMorgan, Jacques Jean Marie de, Bouriant, Urbain, Legrain, Georges, Catalogue des Monuments et Inscriptions de l'Egypte Antique, Sér. 1, Haute Egypte, T. 1, De la frontière de Nubie à Kom Ombos. 1894. - De Morgan, Catalogue des Monuments, Sér. 1, T. IIMorgan, Jacques Jean Marie de, Bouriant, Urbain, Legrain, Georges, Catalogue des Monuments et Inscriptions de l'Egypte Antique, Sér. 1, Haute Egypte, T. 2 Kom Ombos, Teil 1. 1895. - De Morgan, Catalogue des Monuments, Sér. 1, T. IIIMorgan, Jacques Jean Marie de, Bouriant, Urbain, Legrain, Georges, Catalogue des Monuments et Inscriptions de l'Egypte Antique, Sér. 1, Haute Egypte, T. 2 Kom Ombos, Teil 2. 1909. - De Morgan, Tombeau royal de NégadahMorgan, Jacques Jean Marie de, Recherches sur les origines de l'Égypte: ethnographie préhistorique et tombeau royal de Négadah. 1897. - de Wit, Temple d'Opet IWit, Constant de, Les inscriptions du temple d'Opet, à Karnak. BAe 11, 1958. - de Wit, Temple d'Opet IIWit, Constant de, Les inscriptions du temple d'Opet, à Karnak, 2 (Index, croquis de position et Planches). BAe 12, 1962. - de Wit, Temple d'Opet IIIWit, Constant de, Les inscriptions du temple d'Opet, à Karnak. III. Traduction intégrale des textes rituels - Essai d'interprétation. BAe 13, 1968. - de Wit, Temple d'OpetWit, Constant de, Les inscriptions du temple d'Opet, à Karnak. BAe 11, 12, 13. 1958-1968. - Deakin, THAS 10, 1971Deakin, G. B., Two Egyptian stelae in the Devonshire Collection. In: THAS 10, 1971, 63-67. + De Morgan, Cat. des Mon., 1Morgan, Jacques Jean Marie de, Catalogue des Monuments et Inscriptions de l’Egypte Antique, 1. Ser. 1894-. + De Morgan, Catalogue des Monuments, Sér. 1, T. IMorgan, Jacques Jean Marie de, Bouriant, Urbain, Legrain, Georges, Catalogue des Monuments et Inscriptions de l’Egypte Antique, Sér. 1, Haute Egypte, T. 1, De la frontière de Nubie à Kom Ombos. 1894. + De Morgan, Catalogue des Monuments, Sér. 1, T. IIMorgan, Jacques Jean Marie de, Bouriant, Urbain, Legrain, Georges, Catalogue des Monuments et Inscriptions de l’Egypte Antique, Sér. 1, Haute Egypte, T. 2 Kom Ombos, Teil 1. 1895. + De Morgan, Catalogue des Monuments, Sér. 1, T. IIIMorgan, Jacques Jean Marie de, Bouriant, Urbain, Legrain, Georges, Catalogue des Monuments et Inscriptions de l’Egypte Antique, Sér. 1, Haute Egypte, T. 2 Kom Ombos, Teil 2. 1909. + De Morgan, Tombeau royal de NégadahMorgan, Jacques Jean Marie de, Recherches sur les origines de l’Égypte: ethnographie préhistorique et tombeau royal de Négadah. 1897. + de Wit, Temple d’OpetWit, Constant de, Les inscriptions du temple d’Opet, à Karnak. BAe 11, 12, 13. 1958-1968. + de Wit, Temple d’Opet IWit, Constant de, Les inscriptions du temple d’Opet, à Karnak. BAe 11, 1958. + de Wit, Temple d’Opet IIWit, Constant de, Les inscriptions du temple d’Opet, à Karnak, 2 (Index, croquis de position et Planches). BAe 12, 1962. Debod bis KalabscheRoeder, Günther, Von Debod bis Bab Kalabsche. 1911-1912. Decker, LeistungDecker, Wolfgang, Die physische Leistung Pharaos. Untersuchungen zu Heldentum, Jagd und Leibesübung der ägyptischen Könige. 1971. Decker, PharaoDecker, Wolfgang, Pharao und Sport. 2006. Decker, QuellentexteDecker, Wolfgang, Quellentexte zu Sport und Körperkultur im alten Ägypten. 1975. - Decker, SAK 5, 1977Decker, Wolfgang, Sportliche Elemente im altägyptischen Krönungsritual. In: SAK 5, 1977, 1-20. Decker, SpielDecker, Wolfgang, Sport und Spiel im Alten Ägypten. 1987. Decker, SportDecker, Wolfgang, Sport am Nil. Texte aus drei Jahrtausenden ägyptischer Geschichte. 2012. Decker/Herb, Bildatlas SportDecker, Wolfgang, Herb, Michael, Bildatlas zum Sport im Alten Ägypten. Corpus der bildlichen Quellen zu Leibesübungen, Spiel, Jagd, Tanz und verwandten Themen. HdO 14. 1994. - Defossez, GM 85, 1985Defossez, Michel, L'inscription d'Amenhotep II à Giza. Notes de lecture. In: GM 85, 1985, 25-36. - Dehler, in: Fs HelckDehler, Dorothea, Mry-msw und der Nubienfeldzug Amenophis' III. im Jahre 5. In: Fs Helck, 1984, 77-85. + Decoding Signs of IdentityDecoding Signs of Identity. Egyptian Workmen’s Marks in Archaeological, Historical, Comparative and Theoretical Perspective. Hrsg. von Haring, Bernardus Johannes Jozef, Moezel, Kyra van der, Soliman, Daniel Maurice. EgUit 32. 2018. (new) Deir el Gebrâwi IIDavies, Norman de Garis, The Rock Tombs of Deir el Gebrâwi. II. Tomb of Zau and Tombs of the Northern Group. ASE 12. 1902. + Deir el MédinehBruyère, Bernard, Rapport sur les fouilles de Deir el-Médineh. 1922-1951. FIFAO I,1; II,2; III,3; IV,3; IV.4; V,2; VI,2-3; VII,2; VIII,3; X,1; XIV-XVI; XX; XXI; XXVI. 1924-1953. Deir el Médineh 1922/1923Bruyère, Bernard, Rapport sur les fouilles de Deir el-Médineh. 1922/1923. FIFAO I,1. 1924. Deir el Médineh 1923/1924Bruyère, Bernard, Rapport sur les fouilles de Deir el-Médineh. 1923/1924. FIFAO II,2. 1925. Deir el Médineh 1924/1925Bruyère, Bernard, Rapport sur les fouilles de Deir el-Médineh. 1924/1925. FIFAO III,3. 1926. - Deir el Médineh 1926 (2)Bruyère, Bernard, Rapport sur les fouilles de Deir el-Médineh. 1926. Sondage au temple funéraire de Thotmès II (Hat Ankh Shesept). FIFAO IV,4. 1952. Deir el Médineh 1926Bruyère, Bernard, Rapport sur les fouilles de Deir el-Médineh. 1926. FIFAO IV,3. 1927. + Deir el Médineh 1926 (2)Bruyère, Bernard, Rapport sur les fouilles de Deir el-Médineh. 1926. Sondage au temple funéraire de Thotmès II (Hat Ankh Shesept). FIFAO IV,4. 1952. Deir el Médineh 1927Bruyère, Bernard, Rapport sur les fouilles de Deir el-Médineh. 1927. FIFAO V,2. 1928. Deir el Médineh 1928Bruyère, Bernard, Rapport sur les fouilles de Deir el-Médineh. 1928. FIFAO VI,2-3. 1929. Deir el Médineh 1929Bruyère, Bernard, Rapport sur les fouilles de Deir el-Médineh. 1929. FIFAO VII,2. 1930. Deir el Médineh 1930Bruyère, Bernard, Rapport sur les fouilles de Deir el-Médineh. 1930. FIFAO VIII,3. 1933. Deir el Médineh 1931/1932Bruyère, Bernard, Rapport sur les fouilles de Deir el-Médineh. 1931/1932. FIFAO X,1. 1934. Deir el Médineh 1933/1934,1Bruyère, Bernard, Rapport sur les fouilles de Deir el-Médineh. 1933/1934,1. La necropole de l’ouest. FIFAO XIV. 1937. - Deir el Médineh 1934/1935,2Bruyère, Bernard, Rapport sur les fouilles de Deir el-Médineh. 1934/1935,2. Deuxième partie: la nécropole de l'est. FIFAO XV. 1937. + Deir el Médineh 1934/1935,2Bruyère, Bernard, Rapport sur les fouilles de Deir el-Médineh. 1934/1935,2. Deuxième partie: la nécropole de l’est. FIFAO XV. 1937. Deir el Médineh 1934/1935,3Bruyère, Bernard, Rapport sur les fouilles de Deir el-Médineh. 1934/1935,3. Le village, les décharges publiques, la station de repos du col de la Vallée des Rois. FIFAO XVI. 1939. Deir el Médineh 1935/1940Bruyère, Bernard, Rapport sur les Fouilles de Deir el Médineh. 1935-1940. FIFAO XX,1-3. 1948-1952. Deir el Médineh 1945/1946 et 1946/1947Bruyère, Bernard, Rapport sur les fouilles de Deir el Médineh. Annees 1945-1946 et 1946-1947. FIFAO XXI. 1952. Deir el Médineh 1948/1951Bruyère, Bernard, Rapport sur les fouilles de Deir el Médineh. Annees 1948 à 1951. FIFAO XXVI. 1953. - Deir el MédinehBruyère, Bernard, Rapport sur les fouilles de Deir el-Médineh. 1922-1951. FIFAO I,1; II,2; III,3; IV,3; IV.4; V,2; VI,2-3; VII,2; VIII,3; X,1; XIV-XVI; XX; XXI; XXVI. 1924-1953. + Deir el-BahariNaville, Édouard, The Temple of Deir el Bahari. EEF 12-14, 16, 19, 27, 28, 29, 30, 32. 1894-1913. Deir el-Bahari [0]Naville, Édouard, The Temple of Deir el Bahari. [0]. Introductory Memoir. EEF 12. 1894. Deir el-Bahari INaville, Édouard, The Temple of Deir el Bahari. I. The North-Western End of the Upper Platform. EEF 13. 1895. Deir el-Bahari IINaville, Édouard, The Temple of Deir el Bahari. II. The Ebony Shrine, Northern Half of the Middle Platform. EEF 14. 1896. @@ -1068,19 +727,15 @@

      Abbreviat Deir el-Bahari IVNaville, Édouard, The Temple of Deir el Bahari. 4. The Shrine of Hathor and the Southern Hall of Offerings. EEF 19. 1901. Deir el-Bahari VNaville, Édouard, The Temple of Deir el Bahari. V. The Upper Court and Sanctuary. EEF 27. 1906. Deir el-Bahari VINaville, Édouard, Clarke, Somers, The Temple of Deir el Bahari. VI. The Lower Terrace, Additions and Plans. EEF 29. 1908. - Deir el-BahariNaville, Édouard, The Temple of Deir el Bahari. EEF 12-14, 16, 19, 27, 28, 29, 30, 32. 1894-1913. - Deir el-Gebrâwi IDavies, Norman de Garis, The Rock Tombs of Deir el Gebrâwi. I. Tomb of Aba and Smaller Tombs of the Southern Group. ASE 11. 1902. Deir el-GebrâwiDavies, Norman de Garis, The Rock Tombs of Deir el Gebrâwi. ASE 11-12. 1902. - Del Nord, in: Fs DunhamNord, Del, The term ḫnr: 'harem' or 'musical performers'? In: Fs Dunham, 1981, 137-145. + Deir el-Gebrâwi IDavies, Norman de Garis, The Rock Tombs of Deir el Gebrâwi. I. Tomb of Aba and Smaller Tombs of the Southern Group. ASE 11. 1902. Delange, Catalogue des statuesDelange, Elisabeth, Catalogue des statues égyptiennes du Moyen Empire, 2060-1560 avant J.-C. 1987. - Delia, JARCE 30, 1993Delia, Robert D., First Cataract Rock Inscriptions: Some Comments, Maps, and a New Group. In: JARCE 30, 1993, 71-91. - Delia, JARCE 36, 1999Delia, Robert D., Palimpsests, Copyists, Atenists and Others at the First Cataract. In: JARCE 36, 1999, 103-112. Delia, Reign Senwosret IIIDelia, Robert D., A Study of the Reign of Senwosret III. 1980. - Demarée, in: Fs WenteDemarée, Robert Johannes, A letter of reproach. In: Fs Wente, 1999, 75-82. Demarée, PapyriDemarée, Robert Johannes, The Bankes Late Ramesside Papyri. 2006. Demarée, Ramesside OstracaDemarée, Robert Johannes, Ramesside Ostraca. 2002. Demot. NbDemotisches Namenbuch. Hrsg. von Lüddeckens, Erich, Thissen, Heinz-Josef, Brunsch, W., Vittmann, Günter, Zauzich, Karl-Theodor. 1980-2000. Demotic OstracaRay, John D., Demotic Ostraca and Other Inscriptions from the Sacred Animal Necropolis, North Saqqara. EES Texts 16. 2013. + DendaraChassinat, Émile, Le temple de Dendara. 1934-1965, 1972, 1978. Dendara IChassinat, Émile, Le temple de Dendara. I. 1934. Dendara IIChassinat, Émile, Le temple de Dendara. II. 1934. Dendara IIIChassinat, Émile, Le temple de Dendara. III. 1935. @@ -1089,150 +744,99 @@

      Abbreviat Dendara VIChassinat, Émile, Daumas, François, Le temple de Dendara. VI. 1965. Dendara VIIChassinat, Émile, Daumas, François, Le temple de Dendara. VII. Texte. 1972 [erschienen 1974]. Dendara VIIIChassinat, Émile, Daumas, François, Cauville, Sylvie, Le temple de Dendara. VIII, [1] Texte. VIII, [2] Plances. 1978. - DendaraChassinat, Émile, Le temple de Dendara. 1934-1965, 1972, 1978. DendûrBlackman, Aylward Manley, The Temple of Dendûr. Temples Immergés [3]. 1911. Denkm. memphit. TheologieJunker, Hermann, Die Götterlehre von Memphis (Schabaka-Inschrift). APAW 1939, Nr. 23. 1940. Depauw, Archive of TeosDepauw, M., The Archive of Teos and Thabis from Early Ptolemaic Thebes. P. Brux. Dem. Inv. E. 8252-8256. MRE 8. 2000. Depauw, Demotic LetterDepauw, M., The Demotic Letter. A Study of Epistolographic Scribal Traditions against their Intra- and Intercultural Background. Dem.Stud. 14. 2006. - Depauw, SAK 34, 2006Depauw, M., Egyptianizing the chancellery during the great Theban revolt (205-186 BC): a new study of limestone tablet Cairo 38258. In: SAK 34, 2006, 97-105. - Depauw, ZÄS 130, 2003Depauw, M., Notes on transgressing gender boundaries in ancient Egypt. In: ZÄS 130, 2003, 49-59. - Dépendance ruraleLa dépendance rurale dans l'antiquité égyptienne et proche-orientale. Hrsg. von Menu, Bernadette. BdE 140. 2004. - Depuydt, JEA 77, 1991Depuydt, Leo, Late Egyptian i͗nn, 'if', and the conditional clause in Egyptian. In: JEA 77, 1991, 69-78. - Depuydt, JEH 1, 2008Depuydt, Leo, Function and significance of the Ebers calendar's lone feast-hieroglyph (Gardiner sign-list W 3). In: JEH 1, 2008, 117-138. + Dépendance ruraleLa dépendance rurale dans l’antiquité égyptienne et proche-orientale. Hrsg. von Menu, Bernadette. BdE 140. 2004. Depuydt, Or 65, 1996Depuydt, Leo, The function of the Ebers calendar concordance. Or 65/2. 1996. - Derchain, CdE 30, 1955Derchain, Philippe, La couronne de la justification: essai d'analyse d'un rite ptolémaïque. In: CdE 30, 1955, 225-287. - Derchain, CdE 64, 1989Derchain, Philippe, Harkhébis, le Psylle-astrologue. In: CdE 64, 1989, 74-89. - Derchain, CdE 74, 1999Derchain, Philippe, De l'éloquence judiciaire: la plaidoirie d'Onnophris ou le concussionnaire innocent. In: CdE 74, 1999, 31-42. - Derchain, RdE 43, 1992Derchain, Philippe, Les débuts de l'histoire [Rouleau de cuir Berlin 3029]. In: RdE 43, 1992, 35-47. - Derchain/ Derchain-Urtel, ZÄS 101, 1974Derchain, Philippe, Derchain-Urtel, Maria-Theresia, Zur ägyptischen Wortforschung. In: ZÄS 101, 1974, 5-12. Derchain/Recklinghausen, SchöpfungDerchain, Philippe, Recklinghausen, Daniel von, La Création - Die Schöpfung. Poème pariétal. Ein Wandgedicht. RitesEg 10. 2004. - Derchain-Urtel, GM 30, 1978Derchain-Urtel, Maria-Theresia, Zum besseren Verständnis eines Textes aus Esna. In: GM 30, 1978, 27-34. - Derchain-Urtel, GM 6, 1973Derchain-Urtel, Maria-Theresia, Das n-Präfix im Ägyptischen. In: GM 6, 1973, 39-54. DerrBlackman, Aylward Manley, The Temple of Derr. Temples Immergés [7]. 1913. - Description (Atlas)Description de l'Égypte, Atlas. Hrsg. von Jomard, Edme François. 1826. - Description (Tafeln) 1 Description de l'Égypte, Bd. 1, Antiquités : planches. T. 1. Hrsg. von Jomard, Edme François. 1809. - Description (Tafeln) 10Description de l'Égypte, Bd. 10, Histoire naturelle : planches. T. 2. Hrsg. von Jomard, Edme François. 1826. - Description (Tafeln) 2 Description de l'Égypte, Bd. 2, Antiquités : planches. T. 2. Hrsg. von Jomard, Edme François. 1812. - Description (Tafeln) 3 Description de l'Égypte, Bd. 3, Antiquités : planches. T. 3. Hrsg. von Jomard, Edme François. 1812. - Description (Tafeln) 4 Description de l'Égypte, Bd. 4, Antiquités : planches. T. 4. Hrsg. von Jomard, Edme François. 1817. - Description (Tafeln) 5Description de l'Égypte, Bd. 5, Antiquités : planches. T. 5. Hrsg. von Jomard, Edme François. 1822. - Description (Tafeln) 6Description de l'Égypte, Bd. 6, État moderne : planches. T. 1. Hrsg. von Jomard, Edme François. 1809. - Description (Tafeln) 7Description de l'Égypte, Bd. 7, État moderne : planches. T. 2. Hrsg. von Jomard, Edme François. 1817. - Description (Tafeln) 8Description de l'Égypte, Bd. 8, Histoire naturelle : planches. T. 1. Hrsg. von Jomard, Edme François. 1809. - Description (Tafeln) 9Description de l'Égypte, Bd. 9, Histoire naturelle : planches. T. 2. Hrsg. von Jomard, Edme François. 1817. - Description (Text) 1 Description de l'Égypte, Bd. 1, Antiquités : descriptions, T. 1. Hrsg. von Jomard, Edme François. 1809. - Description (Text) 2 Description de l'Égypte, Bd. 2, Antiquités : descriptions., T. 2. Hrsg. von Jomard, Edme François. 1818. - Description (Text) 3 Description de l'Égypte, Bd. 3, Antiquités : mémoires. T. 1. Hrsg. von Jomard, Edme François. 1809. - Description (Text) 4 Description de l'Égypte, Bd. 4, Antiquités : mémoires. T. 2. Hrsg. von Jomard, Edme François. 1818. - Description (Text) 5 Description de l'Égypte, Bd, 5, État moderne. T. 1. Hrsg. von Jomard, Edme François. 1809. - Description (Text) 6 Description de l'Égypte, Bd. 6, État moderne. T. 2, pt. 1. Hrsg. von Jomard, Edme François. 1812. - Description (Text) 7 Description de l'Égypte, Bd. 7, État moderne. T. 2, pt. 2. Hrsg. von Jomard, Edme François. 1822. - Description (Text) 8 Description de l'Égypte, Bd. 8, Histoire naturelle. T. 1. Hrsg. von Jomard, Edme François. 1809. - Description (Text) 9 Description de l'Égypte, Bd. 9, Histoire naturelle. T. 2. Hrsg. von Jomard, Edme François. 1812. - DescriptionDescription de L'Égypte, ou recueil des observations et des recherches qui ont été faites en Égypte pendant l'expédition de l'armée française, publié par les ordres de sa Majesté L'Empereur Napoléon Le Grand. Hrsg. von Jomard, Edme François. 1809-1828. + DescriptionDescription de L’Égypte, ou recueil des observations et des recherches qui ont été faites en Égypte pendant l’expédition de l’armée française, publié par les ordres de sa Majesté L’Empereur Napoléon Le Grand. Hrsg. von Jomard, Edme François. 1809-1828. + Description (Atlas)Description de l’Égypte, Atlas. Hrsg. von Jomard, Edme François. 1826. + Description (Tafeln) 1 Description de l’Égypte, Bd. 1, Antiquités : planches. T. 1. Hrsg. von Jomard, Edme François. 1809. + Description (Tafeln) 10Description de l’Égypte, Bd. 10, Histoire naturelle : planches. T. 2. Hrsg. von Jomard, Edme François. 1826. + Description (Tafeln) 2 Description de l’Égypte, Bd. 2, Antiquités : planches. T. 2. Hrsg. von Jomard, Edme François. 1812. + Description (Tafeln) 3 Description de l’Égypte, Bd. 3, Antiquités : planches. T. 3. Hrsg. von Jomard, Edme François. 1812. + Description (Tafeln) 4 Description de l’Égypte, Bd. 4, Antiquités : planches. T. 4. Hrsg. von Jomard, Edme François. 1817. + Description (Tafeln) 5Description de l’Égypte, Bd. 5, Antiquités : planches. T. 5. Hrsg. von Jomard, Edme François. 1822. + Description (Tafeln) 6Description de l’Égypte, Bd. 6, État moderne : planches. T. 1. Hrsg. von Jomard, Edme François. 1809. + Description (Tafeln) 7Description de l’Égypte, Bd. 7, État moderne : planches. T. 2. Hrsg. von Jomard, Edme François. 1817. + Description (Tafeln) 8Description de l’Égypte, Bd. 8, Histoire naturelle : planches. T. 1. Hrsg. von Jomard, Edme François. 1809. + Description (Tafeln) 9Description de l’Égypte, Bd. 9, Histoire naturelle : planches. T. 2. Hrsg. von Jomard, Edme François. 1817. + Description (Text) 1 Description de l’Égypte, Bd. 1, Antiquités : descriptions, T. 1. Hrsg. von Jomard, Edme François. 1809. + Description (Text) 2 Description de l’Égypte, Bd. 2, Antiquités : descriptions., T. 2. Hrsg. von Jomard, Edme François. 1818. + Description (Text) 3 Description de l’Égypte, Bd. 3, Antiquités : mémoires. T. 1. Hrsg. von Jomard, Edme François. 1809. + Description (Text) 4 Description de l’Égypte, Bd. 4, Antiquités : mémoires. T. 2. Hrsg. von Jomard, Edme François. 1818. + Description (Text) 5 Description de l’Égypte, Bd, 5, État moderne. T. 1. Hrsg. von Jomard, Edme François. 1809. + Description (Text) 6 Description de l’Égypte, Bd. 6, État moderne. T. 2, pt. 1. Hrsg. von Jomard, Edme François. 1812. + Description (Text) 7 Description de l’Égypte, Bd. 7, État moderne. T. 2, pt. 2. Hrsg. von Jomard, Edme François. 1822. + Description (Text) 8 Description de l’Égypte, Bd. 8, Histoire naturelle. T. 1. Hrsg. von Jomard, Edme François. 1809. + Description (Text) 9 Description de l’Égypte, Bd. 9, Histoire naturelle. T. 2. Hrsg. von Jomard, Edme François. 1812. Desert Road ArchaeologyDesert Road Archaeology in Ancient Egypt and Beyond. Hrsg. von Förster, Frank, Riemer, Heiko. Africa 27. 2013. DeshashehPetrie, William M. Flinders, Deshasheh 1897. EEF 15. 1898. - Desjardins, RGATP 18, 1860Desjardins, Ernest, Découvértes de M. Mariette en Égypte. Ensemble de son oeuvre. L'histoire de l'ancienne égypte refaite d'après ses monuments. In: RGATP 18, 1860, 49-61. - Desplancques, CRIPEL 23, 2003Desplancques, Sophie, L'implication du trésor et de ses administrateurs dans les travaux royaux sous le règne de Sésostris Ier. In: CRIPEL 23, 2003, 19-27. Desroches, RamsèsRamsès le Grand. Hrsg. von Desroches, Ch. 1976. - Desroches-Noblecourt/Donadoni/Edel, Abou SimbelDesroches, Ch., Donadoni, Sergio, Edel, Elmar, Grand temple d'Abou Simbel [II]: la bataille de Qadech. Description et inscriptions, dessins et photographies. CS 47. 1971. - Desroches-Noblecourt/Donadoni/Mokhtar, SpeosDesroches, Ch., Donadoni, Sergio, Mokhtar, Gamal Eddin, Le speos d'el-Lessiya I. Description archéologique. Planches. CS 62. 1968. + Desroches-Noblecourt/Donadoni/Edel, Abou SimbelDesroches, Ch., Donadoni, Sergio, Edel, Elmar, Grand temple d’Abou Simbel [II]: la bataille de Qadech. Description et inscriptions, dessins et photographies. CS 47. 1971. + Desroches-Noblecourt/Donadoni/Mokhtar, SpeosDesroches, Ch., Donadoni, Sergio, Mokhtar, Gamal Eddin, Le speos d’el-Lessiya I. Description archéologique. Planches. CS 62. 1968. Devauchelle, Gebel TeirDevauchelle, Didier, Wagner, Guy, Le graffites du Gebel Teir. Textes démotiques et grecs. RAPH 22. 1984. - Devauchelle, GM 127, 1992Devauchelle, Didier, ḥry: "qui-est-au-dessus", "qui-est-à-l'est". In: GM 127, 1992, 21-22. Devauchelle, Ostraca LouvreDevauchelle, Didier, Ostraca démotiques du Musée du Louvre. BdE 92. 1983. - Devauchelle, RdE 32, 1980Devauchelle, Didier, L'arbre rdm.t. In: RdE 32, 1980, 65-68. Dévaud, ÉtymologieDévaud, Eugène, Études d’Étymologie Copte. 1923. - Dévaud, PtahhotepDévaud, Eugène, Les Maximes de Ptahhotep d'après le Papyrus Prisse, les papyrus 10371/10435 et 10509 du British Museum et la Tablette Carnarvon. 1916. - Dévaud, ZÄS 49, 1911Dévaud, Eugène, A propos d'un groupe hiératique. In: ZÄS 49, 1911, 106-116. + Dévaud, PtahhotepDévaud, Eugène, Les Maximes de Ptahhotep d’après le Papyrus Prisse, les papyrus 10371/10435 et 10509 du British Museum et la Tablette Carnarvon. 1916. Devéria, CatalogueDevéria, Théodule, Catalogue des manuscrits Egyptiens écrits sur papyrus, toile, tablettes et ostraca en caractères hiéroglyphiques, hiératiques, démotiques, grecs, coptes, arabes et latins, qui sont conservés au Musée Égyptien du Louvre. 1872. Die aegyptischen Denkmäler in St. Petersburg, Helsingfors, Upsala und CopenhagenLieblein, Jens, Die aegyptischen Denkmäler in St. Petersburg, Helsingfors, Upsala und Copenhagen. 1873. - Die Zeit Ptolemaios' VI. bis VIII.Ägypten zwischen innerem Zwist und äußerem Druck, Die Zeit Ptolemaios’ VI. bis VIII., Internationales Symposion Heidelberg 16.-19. 9. 2007. Hrsg. von Jördens, Andrea, Quack, Joachim Friedrich. Philippika 45. 2011. - Diego Espinel, in: Fs BainesDiego Espinel, Andrés, A Newly Identified Old Kingdom Execration Text. In: Fs Baines, 2013, 26-33. - Diego Espinel, JEA 91, 2005Diego Espinel, Andrés, A Newly Identified Stela from Wadi el-Hudi (Cairo JE 86119). In: JEA 91, 2005, 55-70. - Dieleman, in: Historische documentenDieleman, J., De Profetie van Neferti. In: Historische documenten, 2003, 73-84. + Die Zeit Ptolemaios’ VI. bis VIII.Ägypten zwischen innerem Zwist und äußerem Druck, Die Zeit Ptolemaios’ VI. bis VIII., Internationales Symposion Heidelberg 16.-19. 9. 2007. Hrsg. von Jördens, Andrea, Quack, Joachim Friedrich. Philippika 45. 2011. Dieleman, Priests, Tongues, and RitesDieleman, J., Priests, Tongues, and Rites. The London-Leiden Magical Manuscripts and Translation in Egyptian Ritual (100-300 CE). Religions in the Graeco-Roman World 153. 2005. - Dijk, JEOL 26, 1979/80Dijk, Jacobus van, The birth of Horus according to the Ebers papyrus. In: JEOL 26, 1979/80, 10-25. - Dijk, OMRO 75, 1995Dijk, Jacobus van, Entering the House of Hearts: an addition to chapter 151 in the Book of the Dead of Qenna. In: OMRO 75, 1995, 7-12. Dijkstra, Syene IDijkstra, Jitse H. F., Cruz-Uribe, E., Syene I, The Figural and Textual Graffiti from the Temple of Isis at Aswan. BeiträgeBf 18. 2012. - Dils/Böhm, in: Gs ReinekeDils, Peter, Böhm, Billy, Die medizinische Schreibtafel Cambridge E.GA.6141.1943 neu bearbeitet. In: Gs Reineke, 2021, 109-152. Dils/Popko, Zwischen Philologie und Lexikographie des Ägyptisch-KoptischenZwischen Philologie und Lexikographie des Ägyptisch-Koptischen. Akten der Leipziger Abschlusstagung des Akademienprojekts „Altägyptisches Wörterbuch“. Hrsg. von Dils, Peter, Popko, Lutz. ASAW 84 (3). 2016. Dio nella Bibbia Dio nella Bibbia e nelle culture ad essa contempe: ranee e connesse, Associazione biblica italiana. 1980. - Diringer, Aegyptus 14, 1934Diringer, David, Una città siriana del III e del II millennio av. Cr. In: Aegyptus 14, 1934, 381-428. - Dobrev/Labrousse/Mathieu, BIFAO 100, 2000Dobrev, Vassil, Labrousse, Audran, Mathieu, Bernard, La dixième pyramide à textes de Saqqâra: Ânkhesenpépy II. Rapport préliminaire de la campagne de fouilles 2000. In: BIFAO 100, 2000, 275-296. Dodson, Amarna SunriseDodson, Aidan, Amarna Sunrise. Egypt from Golden Age to Age of Heresy. 2014. Doll, TextsDoll, Susan Kay, Texts and Decoration on the Napatan Sarcophagi of Anlamani and Aspelta. 1978. Dominicus, Totentempel des MerenptahDominicus, Brigitte, Untersuchungen im Totentempel des Merenptah in Theben II: Die Dekoration und Ausstattung des Tempels. BeiträgeBf 15. 2004. + Donadoni Roveri, ÄgyptenDas alte Ägypten (Civiltà degli Egizi). Hrsg. von Donadoni Roveri, Anna Maria. 1987-1989. Donadoni Roveri, Ägypten IDas alte Ägypten, Bd. 1, Das Alltagsleben (Civiltà degli Egizi. La vita quotidiana). Hrsg. von Donadoni Roveri, Anna Maria. 1987. Donadoni Roveri, Ägypten IIDas alte Ägypten, Bd. 2, Die religiösen Vorstellungen (Civiltà degli Egizi. Le credenze religiose). Hrsg. von Donadoni Roveri, Anna Maria. 1988. Donadoni Roveri, Ägypten IIIDas alte Ägypten, Bd. 3, Die Kunst als Fest (Civiltà degli Egizi. Le arti della celabrazione). Hrsg. von Donadoni Roveri, Anna Maria. 1989. - Donadoni Roveri, ÄgyptenDas alte Ägypten (Civiltà degli Egizi). Hrsg. von Donadoni Roveri, Anna Maria. 1987-1989. - Donadoni Roveri, Sarcofagi EgiziDonadoni Roveri, Anna Maria, I sarcofagi egizi dalle origini alla fine dell'antico regno. Serie archeologica 16. 1969. - Donadoni Roveri, Scuola La scuola nell'antico Egitto. Hrsg. von Donadoni Roveri, Anna Maria. 1997. - Donadoni Roveri/Amicone/Leospo, GebeleinDonadoni Roveri, Anna Maria, Amicone, Elvira D', Leospo, Enrichetta, Gebelein: il villaggio e la necropoli. 1994. - Donadoni Roveri/Leospo/Amicone/Roccati/Donadoni, Museumskatalog Turin (1. Aufl.)Donadoni Roveri, Anna Maria, Leospo, Enrichetta, Amicone, Elvira D', Roccati, Alessandro, Donadoni, Sergio, Il Museo Egizio di Torino: guida alla lettura di una civiltà. 1988 (1. Aufl.). - Donadoni Roveri/Leospo/Amicone/Roccati/Donadoni, Museumskatalog Turin Donadoni Roveri, Anna Maria, Leospo, Enrichetta, Amicone, Elvira D', Roccati, Alessandro, Donadoni, Sergio, Il Museo Egizio di Torino. Guida alla lettura di una civiltà. 1993 (2. Aufl.). - Donadoni Roveri/Roccati/Leospo/Amicone, Museumskatalog TurinDonadoni Roveri, Anna Maria, Roccati, Alessandro, Leospo, Enrichetta, Amicone, Elvira D', Das Ägyptische Museum Turin. 1988. - Donadoni, in: Fs MokhtarDonadoni, Sergio, Frammento di una epigrafe nubiana di Thutmose III. In: Fs Mokhtar, 1985, 219-222. + Donadoni Roveri, Sarcofagi EgiziDonadoni Roveri, Anna Maria, I sarcofagi egizi dalle origini alla fine dell’antico regno. Serie archeologica 16. 1969. + Donadoni Roveri, Scuola La scuola nell’antico Egitto. Hrsg. von Donadoni Roveri, Anna Maria. 1997. + Donadoni Roveri/Amicone/Leospo, GebeleinDonadoni Roveri, Anna Maria, Amicone, Elvira D’, Leospo, Enrichetta, Gebelein: il villaggio e la necropoli. 1994. + Donadoni Roveri/Leospo/Amicone/Roccati/Donadoni, Museumskatalog Turin Donadoni Roveri, Anna Maria, Leospo, Enrichetta, Amicone, Elvira D’, Roccati, Alessandro, Donadoni, Sergio, Il Museo Egizio di Torino. Guida alla lettura di una civiltà. 1993 (2. Aufl.). + Donadoni Roveri/Leospo/Amicone/Roccati/Donadoni, Museumskatalog Turin (1. Aufl.)Donadoni Roveri, Anna Maria, Leospo, Enrichetta, Amicone, Elvira D’, Roccati, Alessandro, Donadoni, Sergio, Il Museo Egizio di Torino: guida alla lettura di una civiltà. 1988 (1. Aufl.). + Donadoni Roveri/Roccati/Leospo/Amicone, Museumskatalog TurinDonadoni Roveri, Anna Maria, Roccati, Alessandro, Leospo, Enrichetta, Amicone, Elvira D’, Das Ägyptische Museum Turin. 1988. Donadoni, Letteratura EgiziaDonadoni, Sergio, La Letteratura Egizia. 1967. - Donadoni, OrAnt 1, 1962Donadoni, Sergio, Campagna di scavi a Qubēn. In: OrAnt 1, 1962, 134. Dondelinger, Totenbuch des Schreibers AniDondelinger, Edmund, Das Totenbuch des Schreibers Ani. 1987. Donker van Heel, Abnormal Hieratic and Early Demotic TextsDonker van Heel, Koenraad, Abnormal Hieratic and Early Demotic Texts Collected by the Theban Choachytes in the Reign of Amasis. (Dissertation). 1995. - Donnat, RdE 67, 2016Donnat, Sylvie, Un billet contre la chaleur-séref: le papyrus hiérat. 69 de la BNU de Strasbourg. In: RdE 67, 2016, 1-32. Donner, Geschichte IDonner, Herbert, Geschichte des Volkes Israel und seiner Nachbarn in Grundzügen, Teil 1. Von den Anfängen bis zur Staatenbildungszeit. ATD Erg. 4. 1984. - Doresse, Or 24, 1955Doresse, Marianne, Les temples atoniens de la région thébaine. In: Or 24, 1955, 113-135. - Doresse/Doresse, JA 233, 1941-1942Doresse, Marianne, Doresse, Jean, Le culte d'Aton sous la XVIIIe dynastie avant le schisme amarnien. In: JA 233, 1941-1942, 181-199. Doret, Narrative Verbal SystemDoret, Éric, The Narrative Verbal System of Old and Middle Egyptian. CahOr 12. 1986. Dorman, MonumentsDorman, Peter, The Monuments of Senenmut. Problems in Historical Methodology. 1988. Dorman, SenenmutDorman, Peter, The Tombs of Senenmut. The Architecture and Decoration of Tombs 71 and 353. 1991. Dorn, ArbeiterhüttenDorn, Andreas, Arbeiterhütten im Tal der Könige. Ein Beitrag zur altägyptischen Sozialgeschichte aufgrund von neuem Quellenmaterial aus der Mitte der 20. Dynastie (ca. 1150 v. Chr.). AH 23. 2011. - Dorn, in: TUAT NF 7Dorn, Andreas, Der Gebetshymnus des Hay an Amun-Re-Harachte (Cairo, IFAO, Ostr. DeM 1038). In: TUAT NF 7, 2013, 195-197. - Dorn, ZÄS 131, 2004Dorn, Andreas, Die Lehre Amunnachts. In: ZÄS 131, 2004, 38-55. Doxey, EpithetsDoxey, Denise M., Egyptian Non-Royal Epithets in the Middle Kingdom. PÄ 12. 1998. - Doyen, in: Caravane du CaireDoyen, Florence, Catalogue des objets égyptiens du Musée Curtius. In: Caravane du Caire, 2006, 198-317. - Doyen/Gabolde, in: Nubia in New KingdomDoyen, Florence, Gabolde, Luc, Egyptians versus Kushites: The cultural question of writing or not. In: Nubia in New Kingdom, 2017, 149-158. Drenkhahn, Ägyptische ReliefsDrenkhahn, Rosemarie, Ägyptische Reliefs im Kestner-Museum Hannover: 100 Jahre, Kestner-Museum Hannover, 1889-1989. SKMH 5. 1989. Drenkhahn, HandwerkerDrenkhahn, Rosemarie, Die Handwerker und ihre Tätigkeiten im alten Ägypten. ÄA 31. 1976. - Dreyer, EgA 3, 1993Dreyer, Günter, A hundred years at Abydos. In: EgA 3, 1993, 10-12. - Dreyer, et al., MDAIK 56, 2000Dreyer, Günter, Driesch, Angela von den, Engel, Eva-Maria, Hartmann, Rita, Hartung, Ulrich, Hikade, Thomas, Müller, Vera, Peters, Joris, Umm el-Qaab. Nachuntersuchungen im frühzeitlichen Königsfriedhof, 11./12. Vorbericht. In: MDAIK 56, 2000, 43-129. - Dreyer, in: Dreyer/Polz, BegegnungDreyer, Günter, Frühe Schriftzeugnisse. In: Dreyer/Polz, Begegnung, 2007, 211-217. - Dreyer, in: Fs FechtDreyer, Günter, Drei archaisch-hieratische Gefäßaufschriften mit Jahresnamen aus Elephantine. In: Fs Fecht, 1987, 98-109. + Drevnjaja Nubija. Rezul'taty rabot archeologiceskoi ekspedicii A. N. SSSR v Obedinennoi Arabskoi Respublike (1961-1962)Древняя Нубия: результаты работ археологической экспедиции АН СССР в Объединенной Арабской Республике 1961-1962 [Drevnyaya Nubiya: rezul'taty rabot arkheologicheskoy ekspeditsii AN SSSR v Ob'yedinennoy Arabskoy Respublike 1961-1962]. Hrsg. von Piotrovskij, Boris Borisovič. 1964. (new) Dreyer, Umm el-Qaab IDreyer, Günter, Umm el-Qaab I: Das prädynastische Königsgrab U-j und seine frühen Schriftzeugnisse. AV 86. 1998. - Dreyer/Engel/Hartung/Hikade/Köhler/Pumpenmeier, MDAIK 52, 1996Dreyer, Günter, Engel, Eva-Maria, Hartung, Ulrich, Hikade, Thomas, Köhler, Eva Christiana, Pumpenmeier, Frauke, Umm el-Qaab: Nachuntersuchungen im frühzeitlichen Königsfriedhof, 7./8. Vorbericht. In: MDAIK 52, 1996, 11-81. - Dreyer/Hartung/Pumpenmeier, MDAIK 49, 1993Dreyer, Günter, Hartung, Ulrich, Pumpenmeier, Frauke, Umm el-Qaab: Nachuntersuchungen im frühzeitlichen Königsfriedhof, 5./6. Vorbericht. In: MDAIK 49, 1993, 23-62. - Dreyer/Kaiser, MDAIK 36, 1980Dreyer, Günter, Kaiser, Werner, Zu den kleinen Stufenpyramiden Ober- und Mittelägyptens. In: MDAIK 36, 1980, 43-56. Dreyer/Polz, BegegnungBegegnung mit der Vergangenheit - 100 Jahre in Ägypten: Deutsches Archäologisches Institut Kairo 1907-2007. Hrsg. von Dreyer, Günter, Polz, Daniel. 2007. Drinking in Ancient SocietiesDrinking in Ancient Societies. History and Culture of Drinks in the Ancient Near East. Papers of a Symposium held in Rome, May 17-19, 1990. Hrsg. von Milano, Lucio. HANES 6. 1994. - Drioton, ASAE 39, 1939Drioton, Étienne, Une statue prophylactique de Ramsès III. In: ASAE 39, 1939, 57-89. - Drioton, ASAE 41, 1942Drioton, Étienne, La cryptographie du Papyrus Salt 825. In: ASAE 41, 1942, 99-134. - Drioton, ASAE 43, 1943 (1)Drioton, Étienne, Trois documents d'époque amarnienne. In: ASAE 43, 1943, 15-43. - Drioton, ASAE 43, 1943 (2)Drioton, Étienne, Description sommaire des chapelles funéraires de la VIe dynastie récemment découvertes derrière le mastaba de Mérérouka à Sakkarah. In: ASAE 43, 1943, 487-513. - Drioton, ASAE 45, 1947 (1)Drioton, Étienne, Notes diverses. In: ASAE 45, 1947, 53-92. - Drioton, ASAE 45, 1947 (2)Drioton, Étienne, Post scriptum à mes "Notes diverses (1-15)". In: ASAE 45, 1947, 99-106. - Drioton, BiOr 12, 1955Drioton, Étienne, Review: Massart, Adhémar 1954. The Leiden Magical Papyrus I 343 + I 345. In: Massart, Leiden Magical Papyrus, 1955, 163-166. - Drioton, BSFE 12, 1953Drioton, Étienne, Un document sur la vie chère à Thèbes au début de la XVIIIe dynastie. In: BSFE 12, 1953, 10-19. - Drioton, RdE 1, 1933Drioton, Étienne, Une figuration cryptographique sur une stèle du Moyen Empire. In: RdE 1, 1933, 203-229. - Drioton, RdE 12, 1960Drioton, Étienne, Une erreur antique de déchiffrement. In: RdE 12, 1960, 27-31. Drioton, Texte dramatiqueDrioton, Étienne, Le texte dramatique d’Edfou. CASAE 11. 1948. Drioton, Théâtre égyptienDrioton, Étienne, Le théâtre égyptien. 1942. - Drioton/Vandier, ÉgypteDrioton, Étienne, Vandier, Jacques, Les peuples de l'Orient Méditerranéen. II. L'Égypte. Clio 1. 1952, (3., erw. Aufl.), 1962 (4., verb. Aufl.). + Drioton/Vandier, ÉgypteDrioton, Étienne, Vandier, Jacques, Les peuples de l’Orient Méditerranéen. II. L'Égypte. Clio 1. 1952, (3., erw. Aufl.), 1962 (4., verb. Aufl.). DrogWbDeines, Hildegard von, Grapow, Hermann, Wörterbuch der ägyptischen Drogennamen. 1959. Droste zu Hülshoff, IgelDroste zu Hülshoff, Vera von, Der Igel im alten Ägypten. 1980. + Duell, MererukaDuell, Prentice, The Mastaba of Mereruka. OIP 31, 39. 1938. Duell, Mereruka IDuell, Prentice, The Mastaba of Mereruka. I. Chambers A 1-10, Plates 1-103. OIP 31. 1938. Duell, Mereruka IIDuell, Prentice, The Mastaba of Mereruka. II. Chambers A 11-13, Doorjambs and inscriptions of chambers A 1-21, Tomb Chamber, Exterior, Plates 104-219. OIP 39. 1938. - Duell, MererukaDuell, Prentice, The Mastaba of Mereruka. OIP 31, 39. 1938. Dümichen, GIDümichen, Johannes, Geographische Inschriften altägyptischer Denkmäler. Recueil de monuments Égyptiens. Partie 3-6. 1865-1885. Dümichen, Historische InschriftenDümichen, Johannes, Historische Inschriften altägyptischer Denkmäler: in den Jahren 1863-1865 an Ort und Stelle gesammelt und mit erläuterndem Text, 2 Bde. 1867-1869. Dümichen, KalenderinschriftenDümichen, Johannes, Altägyptische Kalenderinschriften: in den Jahren 1863-1865 an Ort und Stelle gesammelt und mit erläuterndem Text. 1866. Dümichen, ResultateDümichen, Johannes, Resultate der auf Befehl Sr. Majestät des Königs Wilhelm I. von Preußen im Sommer 1868 nach Aegypten entsendeten archäologisch-photographischen Expedition. 1869. + Dümichen, TempelinschriftenDümichen, Johannes, Altägyptische Tempelinschriften. 1867. Dümichen, Tempelinschriften IDümichen, Johannes, Altägyptische Tempelinschriften. I. Weihinschriften aus dem Horustempel von Edfu Appolinopolis magna. 1867. Dümichen, Tempelinschriften IIDümichen, Johannes, Altägyptische Tempelinschriften. II. Weihinschriften aus dem Hathortempel von Dendera (Tentyra). 1867. - Dümichen, TempelinschriftenDümichen, Johannes, Altägyptische Tempelinschriften. 1867. Dunham, Barkal TemplesDunham, Dows, The Barkal Temples. Excavated by George Andrew Reisner. 1970. Dunham, CemeteriesDunham, Dows, Zawiyet el-Aryan: the cemeteries adjacent to the Layer Pyramid. 1978. Dunham, Naga-ed-DêrDunham, Dows, Naga-ed-Dêr Stelae of the First Intermediate Period. 1937. Dunham, Second Cataract Forts IIDunham, Dows, Second Cataract Forts. II. Uronarti, Shalfak, Mirgissa. 1967. Dunham/Janssen, Semna-KummaDunham, Dows, Janssen, Jozef M. A., Second Cataract Forts. I. Semna, Kumma. 1960. - Dunham/Macadam, JEA 35, 1949Dunham, Dows, Macadam, M. F. Laming, Names and relationships of the royal family of Napata. In: JEA 35, 1949, 139-149. Dunham/Simpson, Giza Mastabas 1Dunham, Dows, Simpson, William Kelly, The Mastaba of Queen Mersyankh III. Giza Mastabas 1. 1974. Dürring, SchiffbauDürring, Norbert, Materialien zum Schiffbau im Alten Ägypten. ADAIK 11. 1995. Dyroff/Pörtner, GrabsteineDyroff, Karl, Pörtner, B., Aegyptische Grabsteine und Denksteine aus süddeutschen Sammlungen II. München. 1904. @@ -1243,154 +847,100 @@

      Abbreviat Ebbell, Alt-ägyptische ChirurgieEbbell, Bendix, Die alt-ägyptische Chirurgie. Die chirurgischen Abschnitte der Papyrus E. Smith und Papyrus Ebers. 1939. Ebbell, Alt-ägyptische KrankheitenEbbell, Bendix, Alt-ägyptische Bezeichnungen für Krankheiten und Symptome. 1938. Ebbell, Papyrus EbersEbbell, Bendix, The Papyrus Ebers. The Greatest Egyptian Medical Document. 1937. - Ebbell, ZÄS 65, 1930Ebbell, Bendix, Ein mißverstandenes ägyptisches Wort. In: ZÄS 65, 1930, 61-63. Ebers, Kapitel über die AugenkrankheitenEbers, Georg, Papyrus Ebers. Die Maasse und das Kapitel über die Augenkrankheiten. 1889. + Ebers, Papyros EbersEbers, Georg, Papyros Ebers: das hermetische Buch über die Arzeneimittel der alten Ägypter in hieratischer Schrift, Bd. 1-2. 1875. Ebers, Papyros Ebers 1Ebers, Georg, Papyros Ebers: das hermetische Buch über die Arzeneimittel der alten Ägypter in hieratischer Schrift, Bd. 1 Einleitung und Text. 1875. Ebers, Papyros Ebers 2Ebers, Georg, Papyros Ebers: das hermetische Buch über die Arzeneimittel der alten Ägypter in hieratischer Schrift, Bd. 2 Glossar und Text. 1875. - Ebers, Papyros EbersEbers, Georg, Papyros Ebers: das hermetische Buch über die Arzeneimittel der alten Ägypter in hieratischer Schrift, Bd. 1-2. 1875. Ebert, RLEbert, Max, Reallexikon der Vorgeschichte. 1924-1932. - Écritures de l'Égypte ancienneÉcritures de l'Égypte ancienne. MRAH Guides 7. 1992. + Écritures de l’Égypte ancienneÉcritures de l’Égypte ancienne. MRAH Guides 7. 1992. + EDETakács, Gábor, Etymological Dictionary of Egyptian. HdO 48. 1999-2008. EDE ITakács, Gábor, Etymological Dictionary of Egyptian Vol. 1: A Phonological Introduction. HdO 48. 1999. EDE IITakács, Gábor, Etymological Dictionary of Egyptian Vol. 2: b-, p-, f-. HdO 48. 2001. EDE IIITakács, Gábor, Etymological Dictionary of Egyptian. Vol. 3: m-. HdO 48. 2008. - EDETakács, Gábor, Etymological Dictionary of Egyptian. HdO 48. 1999-2008. Edel, AkazienhausEdel, Elmar, Das Akazienhaus und seine Rolle in den Begräbnisriten des alten Ägyptens. MÄS 24. 1970. Edel, BeiträgeEdel, Elmar, Beiträge zu den Inschriften des Mittleren Reiches in den Gräbern der Qubbet el Hawa. MÄS 25. 1971. - Edel, DE 16, 1990Edel, Elmar, Der Kanal der beiden Fische. In: DE 16, 1990, 31-33. - Edel, GM 78, 1984Edel, Elmar, Zur Stele Sesostris' I. aus dem Wadi el-Hudi (ASAE 39 1939 197 ff.). In: GM 78, 1984, 51-54. - Edel, GM 81, 1984Edel, Elmar, Zusatz zur Inschrift des Hor Z. 15. In: GM 81, 1984, 65-66. Edel, Hierogl. InschriftenEdel, Elmar, Hieroglyphische Inschriften des Alten Reiches. ARWAW 67. 1981. - Edel, in: Fs BrunnerEdel, Elmar, Kleinasiatische und semitische Namen und Wörter aus den Texten der Qadešschlacht in hieroglyphischer Umschrift. In: Fs Brunner, 1983, 90-105. - Edel, in: Fs GrapowEdel, Elmar, Inschriften des Alten Reiches, V: die Reiseberichte des Ḥrw-ḫwjf (Herchuf). In: Fs Grapow, 1955, 51-75. - Edel, in: Fs HelckEdel, Elmar, Ein bisher falsch gelesenes afrikanisches Produkt in der Inschrift des Ḥrw-ḫwjf (Herchuf). In: Fs Helck, 1984, 187-193. - Edel, Jahreszeitenreliefs IEdel, Elmar, Zu den Inschriften auf den Jahreszeitenreliefs der „Weltkammer“ aus dem Sonnenheiligtum des Niuserre. [Teil 1]. In: NAWG , 1961, 8, 209-255. - Edel, Jahreszeitenreliefs II,1Edel, Elmar, Zu den Inschriften auf den Jahreszeitenreliefs der „Weltkammer“ aus dem Sonnenheiligtum des Niuserre. Teil 2,[1]. In: NAWG , 1963, 4, 90-142. - Edel, Jahreszeitenreliefs II,2Edel, Elmar, Zu den Inschriften auf den Jahreszeitenreliefs der „Weltkammer“ aus dem Sonnenheiligtum des Niuserre. Teil 2,[2]. In: NAWG , 1963, 5, 144-217. Edel, JahreszeitenreliefsEdel, Elmar, Zu den Inschriften auf den Jahreszeitenreliefs der „Weltkammer“ aus dem Sonnenheiligtum des Niuserre. 1961-1963. - Edel, MDAIK 13, 1944Edel, Elmar, Untersuchungen zur Phraseologie der ägyptischen Inschriften des Alten Reiches. In: MDAIK 13, 1944, 1-90. - Edel, MDAIK 32, 1976Edel, Elmar, Der Tetrodon Fahaka als Bringer der Überschwemmung und sein Kult im Elephantengau. In: MDAIK 32, 1976, 35-43. - Edel, MDAIK 37, 1981Edel, Elmar, Felsinschriften aus dem Alten Reich auf der Insel Sehêl. In: MDAIK 37, 1981, 125-134, Taf. 18-19. - Edel, MIO 1, 1953Edel, Elmar, Inschriften des Alten Reichs. In: MIO 1, 1953, 210-226. - Edel, NAWG 6, 1983Edel, Elmar, Beiträge zu den ägyptischen Sinaiinschriften. In: NAWG 6, 1983, 158-185. - Edel, OLZ 69, 1974Edel, Elmar, Review: Faulkner, Raymond O. 1996. The Ancient Egyptian Pyramid Texts Translatet into English. Supplement of Hieroglyphic. In: Faulkner, PT II, 1974, 131-137. - Edel, Or 36, 1967Edel, Elmar, Zur Etymologie und hieroglyphischen Schreibung der Präpositionen ⲙ⳯ⲛ- und ⲛⲧⲉ-. In: Orientalia 36, 1967, 67-75. - Edel, Or 49, 1980Edel, Elmar, sṯpw "Springer" als Bezeichnung der Mugiliden: der älteste Beleg für die Anlage von Mugilidenteichen zur Vorratshaltung. In: Or 49, 1980, 204-207. Edel, OrtsnamenEdel, Elmar, Die Ortsnamenlisten aus dem Totentempel Amenophis III. BBB 25. 1966. + Edel, QH IEdel, Elmar, Die Felsengräber der Qubbet el Hawa bei Assuan, I. Abt., Bd. 1-3, Architektur, Darstellungen, Texte, archäologischer Befund und Funde der Gräber QH 24 - QH 209. Hrsg. von Seyfried, Karl-Joachim, Vieler, Gerd. 2008. Edel, QH I, 1.1Edel, Elmar, Die Felsengräber der Qubbet el Hawa bei Assuan, Abt. 1., Bd. 1. Architektur, Darstellungen, Texte, archäologischer Befund und Funde der Gräber QH 24 - QH 34p. Hrsg. von Seyfried, Karl-Joachim, Vieler, Gerd. 2008. Edel, QH I, 1.2 Edel, Elmar, Die Felsengräber der Qubbet el Hawa bei Assuan, Abt. 1., Bd. 2. Architektur, Darstellungen, Texte, archäologischer Befund und Funde der Gräber QH 35 - QH 101. Hrsg. von Seyfried, Karl-Joachim, Vieler, Gerd. 2008. Edel, QH I, 1.3 Edel, Elmar, Die Felsengräber der Qubbet el Hawa bei Assuan, Abt. 1., Bd. 3. Architektur, Darstellungen, Texte, archäologischer Befund und Funde der Gräber QH 102 - QH 209. Hrsg. von Seyfried, Karl-Joachim, Vieler, Gerd. 2008. - Edel, QH IEdel, Elmar, Die Felsengräber der Qubbet el Hawa bei Assuan, I. Abt., Bd. 1-3, Architektur, Darstellungen, Texte, archäologischer Befund und Funde der Gräber QH 24 - QH 209. Hrsg. von Seyfried, Karl-Joachim, Vieler, Gerd. 2008. + Edel, QH IIEdel, Elmar, Die Felsengräber der Qubbet el-Hawa bei Assuan, II. Abt. Die althieratischen Topfaufschriften. 1967-1971. Edel, QH II, 1.1Edel, Elmar, Die Felsengräber der Qubbet el Hawa bei Assuan. II. Abt.: Die althieratischen Topfaufschriften. 1. Bd.: Die Topfaufschriften aus den Grabungsjahren 1960, 1961, 1962, 1963 und 1965. 1. Teil: Zeichnungen und hieroglyphische Umschriften. 1967. Edel, QH II, 1.2Edel, Elmar, Die Felsengräber der Qubbet el Hawa bei Assuan. II. Abt.: Die althieratischen Topfaufschriften. 1. Bd.: Die Topfaufschriften aus den Grabungsjahren 1960, 1961, 1962, 1963 und 1965. 2. Teil: Text (Fortsetzung). 1970. Edel, QH II, 2.1Edel, Elmar, Die Felsengräber der Qubbet el Hawa bei Assuan, II. Abt.: Die althieratischen Topfaufschriften. 2. Bd.: Die Topfaufschriften aus den Grabungsjahren 1968, 1969 und 1970. 1. Teil: Zeichnungen und hieroglyphischen Umschriften. 1971. Edel, QH II. 1972 und 1973Edel, Elmar, Edel, Angelica, Die Felsgräbernekropole der Qubbet el-Hawa bei Assuan, II. Abt. Die althieratischen Topfaufschriften aus den Grabungsjahren 1972 und 1973. ARWAW 55. 1975. - Edel, QH IIEdel, Elmar, Die Felsengräber der Qubbet el-Hawa bei Assuan, II. Abt. Die althieratischen Topfaufschriften. 1967-1971. - Edel, SAK 13, 1986Edel, Elmar, mjnbyt, die ausführlichste Schreibung des Wortes für "Beil". In: SAK 13, 1986, 29-34. - Edel, SAK 14, 1987Edel, Elmar, Zur Deutung der Glosse ma-aḫ-da in dem Amarna-Brief 14 (Geschenkliste Amenophis' IV. für den Babylonierkönig Burraburiaš). In: SAK 14, 1987, 43-47. - Edel, SAK 3, 1975Edel, Elmar, Neue Identifikationen topographischer Namen in den konventionellen Namenszusammenstellungen des Neuen Reiches. In: SAK 3, 1975, 49-73. - Edel, SAK 4, 1976Edel, Elmar, Die afrikanischen Namen in der Völkerliste Ramses' II. auf der Westmauer des Tempels von Luxor (Simons, Liste XXI) und ihre Parallelen in anderen afrikanischen Völkerlisten. In: SAK 4, 1976, 75-101. - Edel, SAK 7, 1979Edel, Elmar, Bemerkungen zu den Schießsporttexten der Könige der 18. Dynastie. In: SAK 7, 1979, 23-39. - Edel, TUAT I.2, 1983Edel, Elmar, Der ägyptisch-hethitische Friedensvertrag zwischen Ramses II. und Ḫattusili III. In: TUAT I.2, 1983, 135-153. Edel, VertragEdel, Elmar, Der Vertrag zwischen Ramses II. von Ägypten und Ḫattušili III. von Ḫatti. WVDOG 95. 1997. - Edel, ZÄS 102, 1975Edel, Elmar, Beiträge zum ägyptischen Lexikon VI: die Stoffbezeichnungen in den Kleiderlisten des Alten Reiches. In: ZÄS 102, 1975, 13-30. - Edel, ZÄS 79, 1954Edel, Elmar, Beiträge zum ägyptischen Lexikon. In: ZÄS 79, 1954, 86-90. - Edel, ZÄS 81, 1956Edel, Elmar, Beitrage zum ägyptischen Lexikon II. In: ZÄS 81, 1956, 6-18. - Edel, ZÄS 84, 1959Edel, Elmar, Die Herkunft des neuägyptisch-koptischen Personalsuffixes der 3. Person Plural -w. In: ZÄS 84, 1959, 17-38. - Edel, ZÄS 85, 1960Edel, Elmar, Altägyptische Personennamen. In: ZÄS 85, 1960, 79-83. - Edel, ZÄS 87, 1962Edel, Elmar, Zur Lesung und Bedeutung einiger Stellen in der biographischen Inschrift sꜢ-rnpwt's I. (Urk. VII 1, 20; 2, 1; 2, 4). In: ZÄS 87, 1962, 96-107. - Edel, ZÄS 90, 1963Edel, Elmar, Zur Schwurgötterliste des Hethitervertrags. In: ZÄS 90, 1963, 31-35. - Edel, ZÄS 96, 1969Edel, Elmar, Beiträge zum ägyptischen Lexikon V. In: ZÄS 96, 1969, 4-14. - Edel, ZÄS 97, 1971Edel, Elmar, Zwei neue Felsinschriften aus Tumâs mit nubischen Ländernamen. In: ZÄS 97, 1971, 53-63. - Edel, ZDPV 69, 1953Edel, Elmar, Die Stelen Amenophis' II. aus Karnak und Memphis mit dem Bericht über die asiatischen Feldzüge des Königs. In: ZDPV 69, 1953, 97-176. Eder, BarkenkapelleEder, Christian, Die Barkenkapelle des Königs Sobekhotep III. in Elkab. Beiträge zur Bautätigkeit der 13. und 17. Dynastie an den Göttertempeln Ägyptens. Elkab 7. 2002. Eder, MotiveEder, Christian, Die ägyptischen Motive in der Glyptik des östlichen Mittelmeerraumes zu Anfang des 2. Jts. v. Chr. OLA 71. 1995. - Edfou IRochemonteix, Maxence (Marquis de), Chassinat, Émile, Le temple d'Édfou I. MMAF 10. 1897. - Edfou II u. IIIChassinat, Émile, Rochemonteix, Maxence (Marquis de), Le temple d'Edfou II u. III. MMAF 11, 20. 1918, 1928. - Edfou IIChassinat, Émile, Rochemonteix, Maxence (Marquis de), Le temple d'Edfou II. MMAF 11. 1918. - Edfou IIIChassinat, Émile, Rochemonteix, Maxence (Marquis de), Le temple d'Edfou III. MMAF 20. 1928. - Edfou IVChassinat, Émile, Le temple d'Edfou IV. MMAF 21. 1929. - Edfou IV-XIVChassinat, Émile, Le temple d'Edfou IV-XIV. MMAF 21-31. 1929-1934. - Edfou IXChassinat, Émile, Le temple d'Edfou IX. MMAF 26. 1929. - Edfou VChassinat, Émile, Le temple d'Edfou V. MMAF 22. 1930. - Edfou VIChassinat, Émile, Le temple d'Edfou VI. MMAF 23. 1931. - Edfou VIIChassinat, Émile, Le temple d'Edfou VII. MMAF 24. 1932. - Edfou VIIIChassinat, Émile, Le temple d'Edfou VIII. MMAF 25. 1933. - Edfou XChassinat, Émile, Le temple d'Edfou X. MMAF 27. Fasc. 1. 1928. Fasc. 2. 1960. - Edfou XIChassinat, Émile, Le temple d'Edfou XI. MMAF 28. 1933. - Edfou XIIChassinat, Émile, Le temple d'Edfou XII. MMAF 29. 1934. - Edfou XIIIChassinat, Émile, Le temple d'Edfou XIII. MMAF 30. 1934. - Edfou XIVChassinat, Émile, Le temple d'Edfou XIV. MMAF 31. 1934. + Edfou IRochemonteix, Maxence (Marquis de), Chassinat, Émile, Le temple d’Édfou I. MMAF 10. 1897. + Edfou IIChassinat, Émile, Rochemonteix, Maxence (Marquis de), Le temple d’Edfou II. MMAF 11. 1918. + Edfou II u. IIIChassinat, Émile, Rochemonteix, Maxence (Marquis de), Le temple d’Edfou II u. III. MMAF 11, 20. 1918, 1928. + Edfou IIIChassinat, Émile, Rochemonteix, Maxence (Marquis de), Le temple d’Edfou III. MMAF 20. 1928. + Edfou IVChassinat, Émile, Le temple d’Edfou IV. MMAF 21. 1929. + Edfou IV-XIVChassinat, Émile, Le temple d’Edfou IV-XIV. MMAF 21-31. 1929-1934. + Edfou IXChassinat, Émile, Le temple d’Edfou IX. MMAF 26. 1929. + Edfou VChassinat, Émile, Le temple d’Edfou V. MMAF 22. 1930. + Edfou VIChassinat, Émile, Le temple d’Edfou VI. MMAF 23. 1931. + Edfou VIIChassinat, Émile, Le temple d’Edfou VII. MMAF 24. 1932. + Edfou VIIIChassinat, Émile, Le temple d’Edfou VIII. MMAF 25. 1933. + Edfou XChassinat, Émile, Le temple d’Edfou X. MMAF 27. Fasc. 1. 1928. Fasc. 2. 1960. + Edfou XIChassinat, Émile, Le temple d’Edfou XI. MMAF 28. 1933. + Edfou XIIChassinat, Émile, Le temple d’Edfou XII. MMAF 29. 1934. + Edfou XIIIChassinat, Émile, Le temple d’Edfou XIII. MMAF 30. 1934. + Edfou XIVChassinat, Émile, Le temple d’Edfou XIV. MMAF 31. 1934. Edfu: Bericht über drei SurveysEdfu: Bericht über drei Surveys; Materialien und Studien. Hrsg. von Kurth, Dieter. 1999. Edfu: Studien zu VokabularEdfu: Studien zu Vokabular, Ikonographie und Grammatik. Hrsg. von Kurth, Dieter. 1994. EDGErichsen, Wolja, Demotisches Glossar. 1954. - Edgerton, JNES 6, 1947Edgerton, William F., The Nauri decree of Seti I: a translation and analysis of the legal portion. In: JNES 6, 1947, 219-230. Edgerton, Medinet HabuEdgerton, William F., Medinet Habu Graffiti, Facsimiles. OIP 36. 1937. Edgerton/Wilson, Historical RecordsEdgerton, William F., Wilson, John A., Historical Records of Ramses III. The Texts in Medinet Habu, Volumes I and II. SAOC 12. 1936. - Edwards, JEA 68, 1982Edwards, I. E. S., The Bankes Papyri I and II. In: JEA 68, 1982, 126-133. Egberts, QuestEgberts, Arno, In Quest of Meaning. A Study of the Ancient Egyptian Rites of Consecrating the Meret-Chests and Driving the Calves. EgUit 8. 1995. Egyptian CursesEgyptian curses 1: Proceedings of the Egyptological Day held at the National Research Council of Italy (CNR), Rome, 3rd December 2012, in the International Conference "Reading Catastrophes. Methodological Approaches and Historical Interpretation. Earthquakes, Floods, Famines, Epidemics between Egypt and Palestine, 3rd - 1st millennium BC. Rome, 3rd - 4th December 2012, CNR - Sapienza University of Rome". Hrsg. von Capriotti Vittozzi, Giuseppina. AHMES 1. 2014. + Egyptian Historical RecordsEgyptian Historical Records of the Later Eighteenth Dynasty. 1982-1995. Egyptian Historical Records ICumming, Barbara, Egyptian Historical Records of the Later Eighteenth Dynasty. Fascicle 1. Translated into English from the original hieroglyphic text as published in W. Helck, Urkunden der 18. Dynastie, Heft 17-19. 1982. Egyptian Historical Records IICumming, Barbara, Egyptian Historical Records of the Later Eighteenth Dynasty. Fascicle 2. Translated into English from the original hieroglyphic text as published in W. Helck, Urkunden der 18. Dynastie, Heft 17-19. 1984. Egyptian Historical Records IIICumming, Barbara, Egyptian Historical Records of the Later Eighteenth Dynasty. Fascicle 3. Translated into English from the original hieroglyphic text as published in W. Helck, Urkunden der 18. Dynastie, Heft 17-19. 1984. Egyptian Historical Records IVDavies, Benedict G., Egyptian Historical Records of the Later Eighteenth Dynasty. Fascicle IV. Translated from W. Helck, Urkunden der 18. Dynastie, Heft 20. 1992. Egyptian Historical Records VDavies, Benedict G., Egyptian Historical Records of the Later Eighteenth Dynasty. Fascicle V. Translated from W. Helck, Urkunden der 18. Dynastie, Heft 21. 1994. Egyptian Historical Records VIDavies, Benedict G., Egyptian Historical Records of the Later Eighteenth Dynasty. Fascicle VI. Translated from W. Helck, Urkunden der 18. Dynastie, Heft 22. 1995. - Egyptian Historical RecordsEgyptian Historical Records of the Later Eighteenth Dynasty. 1982-1995. Egyptological StudiesEgyptological Studies. Hrsg. von Groll, Sarah Israelit. SH 28. 1982. - Egypt's Golden AgeEgypt's Golden Age. The Art of Living in the New Kingdom 1558-1085 B.C. Catalogue of the Exhibition, Boston, Museum of Fine Arts. 1982. - Egypt's View"Never Had the Like Occurred". Egypt's View of its Past. Hrsg. von Tait, William John. 2003. + Egypt's Golden AgeEgypt’s Golden Age. The Art of Living in the New Kingdom 1558-1085 B.C. Catalogue of the Exhibition, Boston, Museum of Fine Arts. 1982. + Egypt's View"Never Had the Like Occurred". Egypt’s View of its Past. Hrsg. von Tait, William John. 2003. Eichler, ExpeditionswesenEichler, Eckhard, Untersuchungen zum Expeditionswesen des ägyptischen Alten Reiches. GOF 26. 1993. - Eichler, MDAIK, 54, 1998Eichler, Eckhard, Neue Expeditionsinschriften aus der Ostwüste Oberägyptens. Teil II: Die Inschriften. In: MDAIK 54, 1998, 250-266. - Eichler, SAK 18, 1991Eichler, Eckhard, Untersuchungen zu den Königsbriefen des Alten Reiches. In: SAK 18, 1991, 141-171. - Eissa, MDAIK 58, 2002Eissa, Ahmed, Zur Bildreihe der Stele Louvre C15. Parallelen und Bedeutung. In: MDAIK 58, 2002, 227-246. El Amrah and AbydosRandall-Maciver, David, Mace, Arthur Cruttenden, El Amrah and Abydos 1899-1901. EEF 23. 1902. El ArábahGarstang, John, El Arábah. A Cementery of the Middle Kingdom, Survey of the Old Kingdom Temenos, Graffiti from the Temple of Sety. 1901. + El BershehNewberry, Percy Edward, Griffith, Francis Llewellyn, El Bersheh. ASE 3, 4. 1895. El Bersheh INewberry, Percy Edward, El Bersheh. Part I. The Tomb of Tehuti-Hetep. ASE 3. 1895. El Bersheh IIGriffith, Francis Llewellyn, Newberry, Percy Edward, El Bersheh. Part II. ASE 4. 1895. - El BershehNewberry, Percy Edward, Griffith, Francis Llewellyn, El Bersheh. ASE 3, 4. 1895. El KabQuibell, James Edward, El Kab. ERA 3. 1897. El-Adly, Gründungs- und WeiheritualEl-Adly, Sanaa Abd el-Azim, Das Gründungs- und Weiheritual des Ägyptischen Tempels von der frühgeschichtlichen Zeit bis zum Ende des Neuen Reiches. 1981. - El-Adly, WdO 15, 1984El-Adly, Sanaa Abd el-Azim, Die Berliner Lederhandschrift (pBerlin 3029). In: WdO 15, 1984, 6-18. - El-Banna, GM 114, 1990El-Banna, Essam, Y aurait-il un temple d'Aménophis II dans le village d'Arab el-Ḥisn, au nord d'Heliopolis? (d'après une stèle inédite de ce roi). In: GM 114, 1990, 17-29. - El-Banna, RdE 33, 1981El-Banna, Essam, L'obélisque de Sésostris I à Héliopolis a-t-il été déplacé? In: RdE 33, 1981, 3-9. - El-Damaty, MDAIK 46, 1990Eldamaty, Mamdouh, Squatting statues in the Cairo Museum. In: MDAIK 46, 1990, 1-13. + El-Amir, Family ArchiveEl-Amir, Mustafa, A Family Archive from Thebes. Demotic Papyri in the Philadelphia and Cairo Museums from the Ptolemaic Period. 1959. (new) Eldamaty, PriesterdekretEldamaty, Mamdouh, Ein ptolemäisches Priesterdekret aus dem Jahr 186 v. Chr. AfP Beiheft 20. 2005. - El-Din, MDAIK 50, 1994El-Din, Mohi, Discovery of a Tomb of the Late Old Kingdom below the Rock Tombs of Qubbet el-Hawa, Aswân. In: MDAIK 50, 1994, 31-34. + El-Hawary, WortschöpfungEl-Hawary, Amr, Wortschöpfung. Die Memphitische Theologie und die Siegesstele des Pije - zwei Zeugen kultureller Repräsentation in der 25. Dynastie. OBO 243. 2010. (new) Elias, Coffin inscriptionElias, Jonathan Paul, Coffin inscription in Egypt after the New Kingdom: a study of text production and use in elite mortuary preparation. 1993. El-Kohli, BriefeEl-Kholi, Mohamed Salah, Briefe der Ranmessidenzeit. 1992. - El-Noubi, SAK 25, 1998El-Noubi, Mansour, A Harper's Song from the Tomb of Roma-Roy at Thebes (TT 283). In: SAK 25, 1998, 251-255. - El-Sayed, BIFAO 79, 1979El-Sayed, Ramadan, Quelques précisions sur l'histoire de la province d'Edfou à la 2e Période Intermédiaire (étude des stèles JE 38917 et 46988 du Musée du Caire). In: BIFAO 79, 1979, 167-207. - El-Sayed, BIFAO 82, 1982El-Sayed, Ramadan, Un document relatif au culte dans Kher-aha (statue Caire CG. 682). In: BIFAO 82, 1982, 187-204. + El-Masry/Altenmüller/Thissen, SynodaldekretEl-Masry, Yahia, Altenmüller, Hartwig, Thissen, Heinz-Josef, Das Synodaldekret von Alexandria aus dem Jahre 243 v. Chr. SAK Beihefte 11. 2012. (new) + El-Sayed, La déesse Neith de SaïsEl-Sayed, Ramadan, La déesse Neith de Saïs. BdE 86. 1982. El-Sayed, La déesse Neith de Saïs IEl-Sayed, Ramadan, El-Sayed, La déesse Neith de Saïs, Bd. 1, Importance et rayonnement de son culte. BdE 86. 1982. El-Sayed, La déesse Neith de Saïs IIEl-Sayed, Ramadan, La déesse Neith de Saïs, Bd. 2, Documentation. BdE 86. 1982. - El-Sayed, La déesse Neith de SaïsEl-Sayed, Ramadan, La déesse Neith de Saïs. BdE 86. 1982. El-Sayed, LehnwortschatzEl-Sayed, Rafed, Afrikanischstämmiger Lehnwortschatz im älteren Ägyptisch. OLA 211. 2011. - El-Sayed, Or 43, 1974El-Sayed, Ramadan, Les rôles attribués à la déesse Neith dans certains des Textes des Cercueils. In: Or 43, 1974, 275-294. El-Sayed, SaisEl-Sayed, Ramadan, Documents relatifs à Sais et ses divinités. 1975. El-Shahawy, Museumskatalog LuxorEl-Shahawy, Abeer, Das Museum von Luxor. Der Glanz des Alten Theben. 2006. - Emerit, BIFAO 102, 2002Emerit, Sibylle, À propos de l'origine des interdits musicaux dans l'Égypte ancienne. In: BIFAO 102, 2002, 189-120. Emery, Archaic EgyptEmery, Walter B., Archaic Egypt. 1961. Emery, Egypt in NubiaEmery, Walter B., Egypt in Nubia. 1965. Emery, HemakaEmery, Walter B., The Tomb of Hemaka. Excav. Saqq. 1938. Emery, Ḥor AḥaEmery, Walter B., Ḥor Aḥa. Excavations at Saqqara 1937-1938. 1939. - Emery, JEA 56, 1970Emery, Walter B., Preliminary report on the excavations at north Saqqâra, 1968-69. In: JEA 56, 1970, 5-11. + Emery, Tombs of the First DynastyEmery, Walter B., Great Tombs of the First Dynasty. EES 46, 47. 1949, 1954, 1958. Emery, Tombs of the First Dynasty IEmery, Walter B., Great Tombs of the First Dynasty. I. Excavations at Saqqara. 1949. Emery, Tombs of the First Dynasty IIEmery, Walter B., Great Tombs of the First Dynasty. II. EES 46. 1954. Emery, Tombs of the First Dynasty IIIEmery, Walter B., Great Tombs of the First Dynasty. III. EES 47. 1958. - Emery, Tombs of the First DynastyEmery, Walter B., Great Tombs of the First Dynasty. EES 46, 47. 1949, 1954, 1958. Endesfelder, Beobachtungen Endesfelder, Erika, Beobachtungen zur Entstehung des altägyptischen Staates. IBAES 14. 2011. ENGErman, Adolf, Neuaegyptische Grammatik. 1933. - Engel, in: Fs DreyerEngel, Eva-Maria, Das ḥw.t pı͗-ḥr.w-msn.w in der ägyptischen Frühzeit. In: Fs Dreyer, 2008, 107-126. - Engel, LingAeg 5, 1997Engel, Eva-Maria, Zu den Ritzmarken der 1. Dynastie. In: LingAeg 5, 1997, 13-27. + Engel, Private RollsiegelEngel, Eva-Maria, Private Rollsiegel der Frühzeit und des frühen Alten Reiches. Versuch einer Einordnung. Menes 8. 2021. (new) Engel, Umm el-Qaab VIEngel, Eva-Maria, Umm el-Qaab VI: Das Grab des Qa'a, Architektur und Inventar. AV 100. 2017. - Engelbach, ASAE 21, 1921Engelbach, Reginald, Report on the Inspectorate of Upper Egypt from April 1920 to March 1921. In: ASAE 21, 1921, 61-76. - Engelbach, ASAE 22, 1922Engelbach, Reginald, Steles and Tables of Offerings of the Late Middle Kingdom from Tell Edfû. In: ASAE 22, 1922, 113-138. - Engelbach, ASAE 23, 1923Engelbach, Reginald, Two Steles of the Late Middle Kingdom from Tell Edfû. In: ASAE 23, 1923, 183-186. - Engelbach, ASAE 33, 1933Engelbach, Reginald, The Quarries of the Western Nubian Desert. A Preliminary Report. In: ASAE 33, 1933, 65-74, 4 pl. - Engelbach, ASAE 38, 1938Engelbach, Reginald, The Quarries of the Western Nubian Desert and the Ancient Road to Tushka. Record of Previous Work. In: ASAE 38, 1938, 369-390. Englund, AkhEnglund, Gertie, Akh - une notion religieuse dans l’Égypte pharaonique. Boreas 11. 1978. Enmarch, Dialogue of IpuwerEnmarch, Roland, The dialogue of Ipuwer and the Lord of All. 2005. - Enmarch, in: Fs LloydEnmarch, Roland, What the Ancestors Foretold: Some References to Prediction in Middle Egyptian Texts. In: Fs Lloyd, 2007, 75-86. Enmarch, World UpturnedEnmarch, Roland, A World Upturned. Commentary on and Analysis of The Dialogue of Ipuwer and the Lord of All. 2008. EpigraphyEpigraphy through five millennia. Texts and images in context. Hrsg. von Dirksen, Svenja C., Krastel, Lena S. SDAIK 43. 2020. Épron, Tombeau de Ti IÉpron, Lucienne, Daumas, François, Goyon, Georges, Le tombeau de Ti. I. Les approches de la chapelle. MIFAO 65 [1]. 1939. @@ -1402,218 +952,98 @@

      Abbreviat Erman, Ancient EgyptiansErman, Adolf, The Ancient Egyptians. A Sourcebook of their Writings. 1966. Erman, BilderErman, Adolf, Die Welt am Nil. Bilder aus dem alten Ägypten. 1936. Erman, ChrestomathieErman, Adolf, Aegyptische Chrestomathie. Zum Gebrauch auf Universitäten und zum Selbstunterricht. PLO 19. 1904. - Erman, ÉgypteErman, Adolf, L'Égypte des pharaons. Traduction de Henri Wild. 1939. + Erman, ÉgypteErman, Adolf, L’Égypte des pharaons. Traduction de Henri Wild. 1939. Erman, GesprächErman, Adolf, Gespräch eines Lebensmüden mit seiner Seele. Aus dem Papyrus 3024 der königlichen Museen. APAW. 1896. Erman, Lit.Erman, Adolf, Die Literatur der Ägypter. 1923. Erman, LiteratureErman, Adolf, The Literature of the Ancient Egyptian. 1927. - Erman, OLZ 27, 1924Erman, Adolf, Das Weisheitsbuch des Amen-em-ope. In: OLZ 27, 1924, 241-252. Erman, RedenErman, Adolf, Reden, Rufe und Lieder auf Gräberbildern des Alten Reiches. 1919. - Erman, SPAW 11, 1904Erman, Adolf, Die Sphinxstele. In: SPAW 11, 1904, 428-444. Erman, WestcarErman, Adolf, Die Märchen des Papyrus Westcar. MOS 5-6. 1890. - Erman, ZÄS 17, 1879Erman, Adolf, Tagebuch eines Grenzbeamten. In: ZÄS 17, 1879, 29-32. - Erman, ZÄS 18, 1880Erman, Adolf, Hieratische Ostraka. In: ZÄS 18, 1880, 93-99. - Erman, ZÄS 20, 1882Erman, Adolf, Stelen aus Wâdi Gasûs bei Qosêr. In: ZÄS 20, 1882, 203-205. - Erman, ZÄS 27, 1889Erman, Adolf, Der syrische Feldzug Amenophis II. In: ZÄS 27, 1889, 39-41. - Erman, ZÄS 29, 1891Erman, Adolf, Rundschreiben Thutmosis' I. an die Behörden mit der Anzeige seines Regierungsantrittes. In: ZÄS 29, 1891, 116-119. - Erman, ZÄS 32, 1894Erman, Adolf, Eine ägyptische Schulübersetzung. In: ZÄS 32, 1894, 127-128. - Erman, ZÄS 34, 1896Erman, Adolf, Die Obelisken der Kaiserzeit. In: ZÄS 34, 1896, 149-158. - Erman, ZÄS 38, 1900 (1)Erman, Adolf, Eine Reise nach Phönizien im 11. Jahrhundert v. Chr. In: ZÄS 38, 1900, 1-14. - Erman, ZÄS 38, 1900 (2)Erman, Adolf, Geschichtliche Inschriften aus dem Berliner Museum. In: ZÄS 38, 1900, 112-126. - Erman, ZÄS 38, 1900 (3)Erman, Adolf, Gebete eines ungerecht Verfolgten und andere Ostraka aus den Königsgräbern. In: ZÄS 38, 1900, 19-41. - Erman, ZÄS 38, 1900 (4)Erman, Adolf, Zwei Rekrutenaushebungen in Abydos aus dem Mittleren Reich. In: ZÄS 38, 1900, 42-45. - Erman, ZÄS 39, 1901 (1)Erman, Adolf, Monatsnamen aus dem neuen Reich. In: ZÄS 39, 1901, 128-130. - Erman, ZÄS 39, 1901 (2)Erman, Adolf, Bruchstück eines Liebesliedes. In: ZÄS 39, 1901, 147. - Erman, ZÄS 42, 1905Erman, Adolf, Aus dem Volksleben des Neuen Reiches. In: ZÄS 42, 1905, 100-106. Erman/Krebs, Papyrus der Königlichen MuseenErman, Adolf, Krebs, Friedrich, Aus den Papyrus der Königlichen Museen. HKMB 8. 1899. Erman/Lange, pLansingErman, Adolf, Lange, Hans Ostenfeldt, Papyrus Lansing. Eine ägyptische Schulhandschrift der 20. Dynastie. HFM 10,3. 1925. Erman/Ranke, ÄgyptenErman, Adolf, Ranke, Hermann, Ägypten und ägyptisches Leben im Altertum. 1923. Erzählen in frühen Hochkulturen IDas Erzählen in frühen Hochkulturen I. Der Fall Ägypten. Hrsg. von Roeder, Hubert. ÄK 1. 2009. Eschweiler, BildzauberEschweiler, Peter, Bildzauber im alten Ägypten. Die Verwendung von Bildern und Gegenständen in magischen Handlungen nach den Texten des Mittleren und Neuen Reiches. OBO 137. 1994. - Esna ISauneron, Serge, Esna. I. Quatre campagnes à Esna. PIFAO. 1959. - Esna IISauneron, Serge, Esna. II. Le temple d'Esna. 1. Nos. 1 - 193. PIFAO. 1963. - Esna IIISauneron, Serge, Esna. III. Le temple d'Esna. [2]. [Textes hiéroglyphiques nos 194 - 398]. 1968. - Esna IVSauneron, Serge, Esna. IV. Le temple d'Esna. Textes nos 399 - 472. PIFAO. 1969. - Esna VSauneron, Serge, Esna. V. Les fêtes religieuses d'Esna aux derniers siècles du paganisme. 1962. + Escolano-Poveda, Egyptian Priests of the Graeco-Roman PeriodEscolano-Poveda, Marina, The Egyptian Priests of the Graeco-Roman Period. An Analysis on the Basis of the Egyptian and Graeco-Roman Literary and Paraliterary Sources. SSR 29. 2020. (new) EsnaSauneron, Serge, Esna. PIFAO. 1959-1969. + Esna ISauneron, Serge, Esna. I. Quatre campagnes à Esna. PIFAO. 1959. + Esna IISauneron, Serge, Esna. II. Le temple d’Esna. 1. Nos. 1 - 193. PIFAO. 1963. + Esna IIISauneron, Serge, Esna. III. Le temple d’Esna. [2]. [Textes hiéroglyphiques nos 194 - 398]. 1968. + Esna IVSauneron, Serge, Esna. IV. Le temple d’Esna. Textes nos 399 - 472. PIFAO. 1969. + Esna VSauneron, Serge, Esna. V. Les fêtes religieuses d’Esna aux derniers siècles du paganisme. 1962. Eternal EgyptEternal Egypt. Masterworks of Ancient Art from the British Museum. Hrsg. von Russmann, Edna R. 2001. - Étienne, in: Charron/Barbotin, Khâemouaset 2Étienne, Marc, Fragment de papyrus comportant un texte médical. In: Charron/Barbotin, Khâemouaset, 2016, 258-259. - Étienne, in: Charron/Barbotin, KhâemouasetÉtienne, Marc, Ostracon comportant un texte médical. In: Charron/Barbotin, Khâemouaset, 2016, 260. Evers, StaatEvers, Hans Gerhard, Staat aus dem Stein, 2 Bde. 1929. - Explorations at ThebesFive Years' Explorations at Thebes. A Record of Work Done 1907-1911. Hrsg. von Herbert, George E. (Carnarvon), Carter, Howard. 1912. - Eyre, in: Fs KitchenEyre, Christopher, Children and Literature in Pharaonic Egypt. In: Fs Kitchen, 2011, 177-187. - Eyre, in: Fs LichtheimEyre, Christopher, The Semna Stelae: Quotation, Genre, and Functions of Literature. In: Fs Lichtheim, 1990, 134-165. + Explorations at ThebesFive Years’ Explorations at Thebes. A Record of Work Done 1907-1911. Hrsg. von Herbert, George E. (Carnarvon), Carter, Howard. 1912. Eyre, Seventh International Congress of EgyptologistsProceedings of the Seventh International Congress of Egyptologists, Cambridge, 3-9 September 1995. Hrsg. von Eyre, Christopher. OLA 82. 1998. Eyre, The Cannibal HymnEyre, Christopher, The Cannibal Hymn: a cultural and literary study. 2002. Facsimile Papyrus of AniThe Book of the Dead : Facsimile of the Papyrus of Ani in the British Museum. 1890. - Fairman, JEA 47, 1961Fairman, Herbert Walter, Once again the So-Called Coffin of Akhenaten. In: JEA 47, 1961, 25-40. - Fairman, ZÄS 91, 1964Fairmann, Herbert Walter, Some unrecorded Ptolemaic words. In: ZÄS 91, 1964, 4-11. - Fairman/Grdseloff, JEA 33, 1947Fairman, Herbert Walter, Grdseloff, Bernhard, Texts of Hatshepsut and Sethos I inside Speos Artemidos. In: JEA 33, 1947, 12-33. Fakhry et al., Denkmäler der Oase DachlaFakhry, Ahmed, Denkmäler der Oase Dachla. AV 28. 1982. - Fakhry, ASAE 35, 1935Fakhry, Ahmed, Blocs décorés provenant du temple de Louxor. In: ASAE 35, 1935, 35-51. Fakhry, BahriaFakhry, Ahmed, Bahria Oasis. SAE. 1942-1950. Fakhry, SiwaFakhry, Ahmed, Siwa Oasis. Its history and antiquities. 1944. Fakhry, Wadi el HudiFakhry, Ahmed, The Inscriptions of the Amethyst Quarries at Wadi el Hudi. 1952. - Farag, RdE 32, 1980Farag, Sami, Une inscription memphite de la XIIe dynastie. In: RdE 32, 1980, 75-82. - Farina, Bessarione 2,10, 1906Farina, Giulio, L'obelisco lateranense e la riforma religiosa di Chuenaton. In: Bessarione 2,10, 1906, 63-72. Farina, Museumskatalog TurinFarina, Giulio, Il Regio Museo di Antichità di Torino: sezione egizia. 1931. - Farina, RSO 13, 1931-1932Farina, Giulio, Varianti del papiro Anastasi no. 1. In: RSO 13, 1931-1932, 313-322. - Farina, Sphinx 18, 1914-15Farina, Giulio, Minima. In: Sphinx 18, 1914-15, 65-70. - Farina, Sphinx 21, 1924Farina, Giulio, Minima. In: Sphinx 21, 1924, 24-31. - Farout, Egypte 37, 2005Farout, Dominique, Le monument abydénien du général en chef Amény engendré pour Qebou. In: Egypte 37, 2005, 25-32. Faulkner, Book of HoursFaulkner, Raymond O., An ancient Egyptian Book of Hours (Pap. Brit. Mus. 10569). 1958. - Faulkner, in: Fs JunkerFaulkner, Raymond O., The battle of Kadesh. In: Fs Junker, 1958, 98-111. - Faulkner, JEA 22, 1936Faulkner, Raymond O., The Bremner-Rhind Papyrus I. In: JEA 22, 1936, 121-140. - Faulkner, JEA 23/1, 1937Faulkner, Raymond O., The Bremner-Rhind Papyrus II. In: JEA 23/1, 1937, 10-16. - Faulkner, JEA 23/2, 1937Faulkner, Raymond O., The Bremner-Rhind Papyrus III. In: JEA 23/2, 1937, 166-185. - Faulkner, JEA 24/1, 1938Faulkner, Raymond O., The Bremner-Rhind Papyrus IV. In: JEA 24/1, 1938, 41-53. - Faulkner, JEA 37, 1951Faulkner, Raymond O., The Stela of Rudj'aḥau. In: JEA 37, 1951, 47-52. - Faulkner, JEA 38, 1952Faulkner, Raymond O., The Stela of the Master-Sculptor Shen. In: JEA 38, 1952, 3-5. - Faulkner, JEA 39, 1953Faulkner, Raymond O., Egyptian Military Organisation. In: JEA 39, 1953, 32-47. - Faulkner, JEA 42, 1956Faulkner, Raymond O., The Man who was Tired of Life. In: JEA 42, 1956, 21-40. - Faulkner, JEA 50, 1964Faulkner, Raymond O., Notes on "The Admonitions of an Egyptian Sage". In: JEA 50, 1964, 24-36. - Faulkner, JEA 51, 1965Faulkner, Raymond O., The Admonitions of an Egyptian Sage. In: JEA 51, 1965, 53-62. - Faulkner, JEA 58, 1972Faulkner, Raymond O., Ḥmt ‘woman’ as a feminine suffix. In: JEA 58, 1972, 300 . + Faulkner, PTFaulkner, Raymond O., The Ancient Egyptian Pyramid Texts, 2 Bde. 1969. Faulkner, PT IFaulkner, Raymond O., The Ancient Egyptian Pyramid Texts Translated into English. 1969. Faulkner, PT IIFaulkner, Raymond O., The Ancient Egyptian Pyramid Texts Translated into English. Supplement of Hieroglyphic Texts. 1969. - Faulkner, PTFaulkner, Raymond O., The Ancient Egyptian Pyramid Texts, 2 Bde. 1969. Faulkner/Goelet/Von Dassow, pAniFaulkner, Raymond O., Goelet, Ogden, The Egyptian Book of the Dead: The Book of Going Forth by Day, being the Papyrus of Ani. Hrsg. von Von Dassow, Eva. 1994. - Favry, BIFAO 103, 2003Favry, Nathalie, La double version de la biographie de Sarenpout Ier à Qoubbet al-Haoua. In: BIFAO 103, 2003, 219-234. Favry, NomarqueFavry, Nathalie, Le nomarque sous le règne de Sésostris Ier. IEA 1. 2004. - Fay, in: Grimal, Critères de datation stylistiquesFay, Biri, Royal women as represented in sculpture during the Old Kingdom. In: Grimal, Critères de datation stylistiques, 1998, 159-186. FCDFaulkner, Raymond O., A Concise Dictionary of Middle Egyptian. 1962 (Reprinted 1972, 1976). Fecht, FrömmigkeitFecht, Gerhard, Literarische Zeugnisse zur "Persönlichen Frömmigkeit" in Ägypten. Analyse der Beispiele aus den ramessidischen Schulpapyri. AHAW. 1965. Fecht, HabgierigeFecht, Gerhard, Der Habgierige und die Maat in der Lehre des Ptahhotep (5. und 19. Maxime). ADAIK 1. 1958. - Fecht, in: Fs BrunnerFecht, Gerhard, Die Israelstele, Gestalt und Aussage. In: Fs Brunner, 1983, 106-138. - Fecht, in: Fs SimpsonFecht, Gerhard, Der beredte Bauer: die zweite Klage. In: Fs Simpson, 1996, 227-266. - Fecht, MDAIK 24, 1969Fecht, Gerhard, Der Totenbrief von Nag' ed-Deir. In: MDAIK 24, 1969, 105-128. - Fecht, SAK 1, 1974Fecht, Gerhard, Die Königs-Insignien mit s-Suffix (1. Teil). In: SAK 1, 1974, 179-200. Fecht, VorwurfFecht, Gerhard, Der Vorwurf an Gott in den „Mahnworten des Ipu-wer“ (Pap. Leiden I 344 recto, 11,11-13,8; 15,13-17,3). AHAW. 1972. Fecht, WortakzentFecht, Gerhard, Wortakzent und Silbenstruktur. Untersuchungen zur Geschichte der ägyptischen Sprache. ÄF 21. 1960. - Fecht, ZÄS 85, 1960Fecht, Gerhard, Amarna-Probleme (1-2). In: ZÄS 85, 1960, 83-118 . - Fecht, ZÄS 94, 1967Fecht, Gerhard, Zur Frühform der Amarna-Theologie: Neubearbeitung der Stele der Architekten Suti und Hor. In: ZÄS 94, 1967, 25-50. FECTFaulkner, Raymond O., The Ancient Egyptian Coffin Texts, Vol. I-III. 1973-1978. - Feder, in: Fs Endesfelder, Priese, Reineke, WenigFeder, Frank, "Gruß Dir, Min-Amun, Herr der Sehnet-Kapelle!" Eine Hymne auf ihrem Weg durch die "Kultgeschichte". In: Fs Endesfelder, Priese, Reineke, Wenig, 2001, 111-122. - Feder, in: Fs GoyonFeder, Frank, Die verschiedenen Redaktionen des "Rituals des Herausbringens von Sokar aus dem Schetait-Sanktuar". In: Fs Goyon, 2008, 151-164. - Feder, ZÄS 130, 2003Feder, Frank, Tempus und hꜣ.w: Begriffe für Zeit und mißliche Umstände in Latein und Ägyptisch. In: ZÄS 130, 2003, 213-214. - Federn, JEA 36, 1950Federn, Walter, Notes on the Instruction to Kagemni and his Brethren. In: JEA 36, 1950, 48-50. - Federn, JNES 5, 1946Federn, Walter, The Opening Lines of the Antef Song. In: JNES 5, 1946, 259. Feinde und AufrührerFeinde und Aufrührer. Konzepte von Gegnerschaft in ägyptischen Texten besonders des Mittleren Reiches. Hrsg. von Felber, Heinz. 2005. Felber, AckerpachtverträgeFelber, Heinz, Demotische Ackerpachtverträge der Ptolemäerzeit. ÄA 58. 1997. - Felber, GM 123, 1991Felber, Heinz, Augustus Ζευϛ ἐλευϑέριοϛ [Zeus Eleutherios] im Demotischen und die Etymologie von ⲣⲙϩⲉ. In: GM 123, 1991, 27-36. Festgabe Neues MuseumForschung in der Papyrussammlung. Eine Festgabe für das Neue Museum. Hrsg. von Lepper, Verena. 2012. Feucht, KindFeucht, Erika, Das Kind im Alten Ägypten. 1995. Feucht, Kunstschätze ÄgyptensFeucht, Erika, Vom Nil zum Neckar. Kunstschätze Ägyptens aus pharaonischer und koptischer Zeit an der Universität Heidelberg. 1986. FGrHJacoby, F., Die Fragmente der griechischen Historiker. I-III. 1923 ff. Firchow, StilistikFirchow, Otto, Grundzüge der Stilistik in den altägyptischen Pyramidentexten. VIO 21. 1953. - Firchow, ZÄS 79, 1954Firchow, Otto, Zu den Wortverbindungen mit ś.t. In: ZÄS 79, 1954, 91-94. Firth-Gunn, Teti Pyramid CemeteriesFirth, Cecil M., Gunn, Battiscombe G., Teti Pyramid Cemeteries. I. Text, II. Plates. Excav. Saqq. 1926. Firth-Quibell, Step PyramidFirth, Cecil M., Quibell, James Edward, The Step Pyramid. I. Text, II. Plates. Excav. Saqq. [16]. 1935. - Fischer, ArtAs 22, 1959Fischer, Henry George, An Example of Memphite Influence in a Theban Stela of the Eleventh Dynasty. In: ArtAs 22, 1959, 240-252. - Fischer, ArtAs 24, 1961Fischer, Henry George, An Egyptian royal stela of the Second Dynasty. In: ArtAs 24, 1961, 45-56. - Fischer, BiOr 59, 2002Fischer, Henry George, Titles and epithets of the Egyptian Old Kingdom. In: BiOr 59, 2002, 18-36. Fischer, Coptic NomeFischer, Henry George, Inscriptions from the Coptite Nome. Dynasty VI-XI. AnOr 40. 1964. Fischer, DenderaFischer, Henry George, Dendera in the Third Millennium B.C. Down to the Theban Domination of Upper Egypt. 1968. - Fischer, GM 84, 1985Fischer, Henry George, More about the Smntjw. In: GM 84, 1985, 25-32. - Fischer, in: Fs DunhamFischer, Henry George, Three stelae from Naga ed-Deir. In: Fs Dunham, 1981, 58-67. - Fischer, in: Fs SimpsonFischer, Henry George, Notes on Some Texts of the Old Kingdom and Later. In: Fs Simpson, 1996, 267-274. - Fischer, in: Kunst des Alten ReichesFischer, Henry George, The Protodynastic period and Old Kingdom in the Metropolitan Museum of Art. In: Kunst des Alten Reiches, 1995, 81-90. - Fischer, JARCE 13, 1976Fischer, Henry George, Notes, Mostly Textual, on Davies' Deir el Gebrâwi. In: JARCE 13, 1976, 9-20. - Fischer, JEA 47, 1961Fischer, Henry George, A supplement to Janssen's list of dogs' names. In: JEA 47, 1961, 152-153. - Fischer, JEA 59, 1973Fischer, Henry George, Hands and Hearts (Berlin 1157). In: JEA 59, 1973, 224-226. - Fischer, JEA 64, 1978Fischer, Henry George, Another Example of the Verb nh 'shelter'. In: JEA 64, 1978, 131-132. - Fischer, JEA 65, 1979Fischer, Henry George, Rezension: Selim Hassan, Zaky Iskander, Excavations at Saqqara, 1937-1938. In: JEA 65, 1979, 176-182. - Fischer, JEA 75, 1989Fischer, Henry George, The transcription of the royal name Pepy. In: JEA 75, 1989, 214-215. - Fischer, JNES 16, 1957Fischer, Henry George, A God and a General of the Oasis on a Stela of the Late Middle Kingdom. In: JNES 16, 1957, 223-235. - Fischer, JNES 18, 1959Fischer, Henry George, A scribe of the army in a Saqqara mastaba of the early Fifth Dynasty. In: JNES 18, 1959, 233-272. - Fischer, JNES 19, 1960Fischer, Henry George, The Inscription of Ἰn ỉt.f, born of Ṯfỉ. In: JNES 19, 1960, 258-268. - Fischer, Kush 9, 1961Fischer, Henry George, The Nubian Mercenaries of Gebelein during the First Intermediate Period. In: Kush 9, 1961, 44-80. - Fischer, MIO 7, 1960Fischer, Henry George, Old Kingdom Inscriptions in the Yale Gallery. In: MIO 7, 1959-60, 299-315. - Fischer, Or 29, 1960Fischer, Henry George, The Butcher Pẖ-r-nfr. In: Or 29, 1960, 168-190. Fischer, OrientationFischer, Henry George, The Orientation of Hieroglyphs. MMAES 2. 1977. - Fischer, RdE 24, 1972Fischer, Henry George, śḫꜢ.śn (Florence 1774). In: RdE 24, 1972, 64-71. Fischer, TitlesFischer, Henry George, Egyptian Titles of the Middle Kingdom. A Supplement to Wm. Ward’s Index. 1985. - Fischer, Varia NovaFischer, Henry George, Varia Nova. MMAES 3. 1996. Fischer, VariaFischer, Henry George, Varia. MMAES 1. 1976. + Fischer, Varia NovaFischer, Henry George, Varia Nova. MMAES 3. 1996. Fischer, WGFischer-Weltgeschichte. Bd. 1-8. 1965-1967. - Fischer, ZÄS 86, 1961Fischer, Henry George, Three Old Kingdom Palimpsets in the Louvre. In: ZÄS 86, 1961, 21-31. - Fischer, ZÄS 93, 1966Fischer, Henry George, An Old Kingdom Monogram. In: ZÄS 93, 1966, 56-69. - Fischer-Elfert, Altägyptische Zaubersprüche 2Fischer-Elfert, Hans-Werner, Altägyptische Zaubersprüche. 2018 (2. akt. Aufl.). + Fischer-Elfert, Abseits von MaatFischer-Elfert, Hans-Werner, Abseits von Ma'at. Fallstudien zu Außenseitern im alten Ägypten. WSA 1. 2005. Fischer-Elfert, Altägyptische ZaubersprücheFischer-Elfert, Hans-Werner, Altägyptische Zaubersprüche. 2005. - Fischer-Elfert, AußenseiterFischer-Elfert, Hans-Werner, Abseits von Ma'at. Fallstudien zu Außenseitern im alten Ägypten. WSA 1. 2005. - Fischer-Elfert, BiOr 44, 1987Fischer-Elfert, Hans-Werner, Rezension: Posener, Le Papyrus Vandier. In: BiOr 44, 1987, 5-21. - Fischer-Elfert, CdE 88, 2013Fischer-Elfert, Hans-Werner, Anfang eines ỉry.w Traktats des wtỉ-Umwicklers inclusive einer post-mortalen Thanatologie (Pap. UCL 32781 verso). In: CdE 88, 2013, 15-34. - Fischer-Elfert, GM 112, 1989Fischer-Elfert, Hans-Werner, Der ehebrecherische Sohn (P. Deir el-Medineh 27, Stele UC 14.430 und P. Butler verso). In: GM 112, 1989, 23-26. - Fischer-Elfert, GM 143, 1994Fischer-Elfert, Hans-Werner, Vermischtes III. In: GM 143, 199, 41-49. - Fischer-Elfert, GM 63, 1983Fischer-Elfert, Hans-Werner, The Sufferings of an Army Officer. In: GM 63, 1983, 43-45. - Fischer-Elfert, in: Egypt's ViewFischer-Elfert, Hans-Werner, Representations of the Past in New Kingdom Literature. In: Egypt's View, 2003, 119-137. - Fischer-Elfert, in: Fs HelckFischer-Elfert, Hans-Werner, "Ich bin das Schiff - du bist das Ruder". Eine Danksagung an den Lehrer. In: Fs Helck, 1984, 335-345. - Fischer-Elfert, in: Fs KitchenFischer-Elfert, Hans-Werner, Sāmānu on the Nile: the transfer of a Near Eastern demon and magico-medical concept into New Kingdom Egypt. In: Fs Kitchen, 2011, 189-198. - Fischer-Elfert, in: Living and WritingFischer-Elfert, Hans-Werner, Literature as a Mirror of Private Affairs. The Case of MnnꜢ (i) and his Son Mrj-Sḫm.t (iii). In: Living and Writing, 2006, 87-92. - Fischer-Elfert, in: Papyrus Ebers und die antike HeilkundeFischer-Elfert, Hans-Werner, Pap. Ebers Nr. 1-3: Reflexion eines altägyptischen Heilers über seine Initiation? In: Papyrus Ebers und die antike Heilkunde, 2005, 133-147. - Fischer-Elfert, JEA 84, 1998Fischer-Elfert, Hans-Werner, Neue Fragmente zur Lehre eines Mannes für seinen Sohn (P. BM EA 10775 und P. BM EA 10778). In: JEA 84, 1998, 85-92. + Fischer-Elfert, Altägyptische Zaubersprüche 2Fischer-Elfert, Hans-Werner, Altägyptische Zaubersprüche. 2018 (2. akt. Aufl.). Fischer-Elfert, Lehre eines MannesFischer-Elfert, Hans-Werner, Die Lehre eines Mannes für seinen Sohn. ÄA 60. 1999. Fischer-Elfert, LesefundeFischer-Elfert, Hans-Werner, Lesefunde im literarischen Steinbruch von Deir el-Medineh. KÄT 12. 1997. Fischer-Elfert, Lit. OstrakaFischer-Elfert, Hans-Werner, Literarische Ostraka der Ramessidenzeit in Übersetzung. KÄT [9]. 1986. Fischer-Elfert, Magika HieratikaFischer-Elfert, Hans-Werner, Magika Hieratika in Berlin, Hannover, Heidelberg und München. 2015. - Fischer-Elfert, SAK 10, 1983 (1)Fischer-Elfert, Hans-Werner, Textkritische und lexikographische Notizen zu den Late Egyptian Miscellanies. In: SAK 10, 1983, 141-149. - Fischer-Elfert, SAK 10, 1983 (2)Fischer-Elfert, Hans-Werner, Eine literarische "Miszelle". À propos ODeM 1040, 1218 und UC 31 905. In: SAK 10, 1983, 151-156. - Fischer-Elfert, SAK 27, 1999Fischer-Elfert, Hans-Werner, Die Ankunft des Königs nach ramessidischen Hymnen et cetera. In: SAK 27, 1999, 65-85. - Fischer-Elfert, Streitschrift, KÄTFischer-Elfert, Hans-Werner, Die satirische Streitschrift des Papyrus Anastasi I., Textzusammenstellung. KÄT 7. 1983, 1992 (2. erw. Aufl.). Fischer-Elfert, StreitschriftFischer-Elfert, Hans-Werner, Die satirische Streitschrift des Papyrus Anastasi I. ÄA 44. 1986. - Fischer-Elfert, WdO 14, 1983Fischer-Elfert, Hans-Werner, "Dein Heißer" in pAnastasi V 7,5-8,1 und seine Beziehung zur Lehre des Amenemope, Kap. 2-4. In: WdO 14, 1983, 83-90. + Fischer-Elfert, Streitschrift, KÄTFischer-Elfert, Hans-Werner, Die satirische Streitschrift des Papyrus Anastasi I., Textzusammenstellung. KÄT 7. 1983, 1992 (2. erw. Aufl.). Fischer-Elfert/Hoffmann, Papyrus 1826Fischer-Elfert, Hans-Werner, Hoffmann, Friedhelm, Die magischen Texte von Papyrus Nr. 1826 der Nationalbibliothek Griechenlands. ÄA 77. 2020. Fisher, ArmageddonFisher, Clarence Stanley, The Excavation of Armageddon. OIC 4. 1929. Flessa, pWien Aeg 8426Flessa, Nicolas, "(Gott) schütze das Fleisch des Pharao". Untersuchungen zum magischen Handbuch pWien Aeg 8426. 2006. Fontes Historiae NubiorumFontes Historiae Nubiorum. Hrsg. von Eide, Tormod. 1994-2000. - Förster, Nikephoros 18, 2005Förster, Frank, Altägyptische Ausdrücke für "Ringen" und "Stockfechten". In: Nikephoros 18, 2005, 73-83. - Förster, SAK 34, 2006Förster, Frank, "Klar zum Gefecht!": Zur Beschreibung des Kampfschiffes im Horusmythos von Edfu (Edfou VI, 79, 11-80, 10). In: SAK 34, 2006, 141-158. Foster, EchoesFoster, John L., Echoes of Egyptian Voices. An Anthology of Ancient Egyptian Poetry. Oklahoma Ser. 12. 1992. Foster, HymnsFoster, John L., Hymns, Prayers, and Songs. An Anthology of Ancient Egyptian Lyric Poetry. WAW 8. 1995. - Foster, in: Gs BaerFoster, John L., Oriental Institute Ostracon 25346 (Ostracon Wilson 100). In: Gs Baer, 1994, 87-97. - Foster, JEA 67, 1981Foster, John L., The Conclusion to The Testament of Ammenemes, King of Egypt. In: JEA 67, 1981, 35-47. - Foster, JNES 34, 1975Foster, John L., Thought Couplets in Khety's "Hymn to the Inundation". In: JNES 34, 1975, 1-29. - Foster, JNES 45, 1986Foster, John L., Texts of the Egyptian Composition "The Instruction of a Man for his Son" in the Oriental Institute Museum. In: JNES 45, 1986, 197-211. Foster, LiteratureFoster, John L., Ancient Egyptian Literature. An Anthology. 2001. - Foster, SSEAJ 14, 1984Foster, John L., Oriental Institute Ostracon No. 12074: "Menna's Lament" or "Letter to a Wayward Son". In: SSEAJ 14, 1984, 88-99. + Fouilles en Nubie (1961-1963)Fouilles en Nubie (1961-1963): campagne Internationale de l’Unesco pour la Sauvegarde des Monuments de la Nubie. Campagne Internationale de l’Unesco pour la Sauvegarde des Monuments de al Nubie. 1967. (new) Fouilles Franco-Polonaises IBruyère, Bernard, Michalowski, Kazimierz, Tell Edfou. 1937. FFP 1. 1937. Fouilles Franco-Polonaises IIMichalowski, Kazimierz, Tell Edfou. 1938. FFP 2. 1938. Fouilles Franco-Polonaises IIIMichalowski, Kazimierz, Tell Edfou. 1939. FFP 3. 1950. Fouilles Franco-Polonaises I-III, EdfouFouilles franco-polonaise. Rapports I-III: Tell Edfou 1937-39. 1937-1950. - Fourtau, ASAE 6, 1905Fourtau, René, Notes sur la navigation dans la cataracte d'Assouan aux différentes époques de l'empire égyptien. In: ASAE 6, 1905, 1-8. - Fox, JAOS 100, 1980Fox, Michael V., The Cairo Love Songs. In: JAOS 100, 1980, 101-109. - Fox, Or 46, 1977Fox, Michael V., A Study of Antef. In: Or 46, 1977, 393-423. Fox, Song of SongsFox, Michael V., The Song of Songs and the Ancient Egyptian Love Songs. 1985. - Frandsen, in: Fs WenteFrandsen, Paul John, On fear of death and the three bwts connected with Hathor. In: Fs Wente, 1999, 131-148. - Frandsen, in: Social Aspects of Funerary CultureFrandsen, Paul John, Bwt in the body. In: Social Aspects of Funerary Culture, 2001, 141-174. - Frandsen, in: Texts from Deir el-MedinaFrandsen, Paul John, The Letter to Ikhtay's Coffin: o.Louvre Inv. No. 698. In: Texts from Deir el-Medina, 1992, 31-49 . - Frandsen, JARCE 15, 1978Frandsen, Paul John, A Fragmentary Letter of the Early Middle Kingdom. In: JARCE 15, 1978, 25-31. - Franke, GM 164, 1998Franke, Detlef, Qrḥ.t-Geschöpf des "Ersten Tages": eine Assoziationstechnik zur Statuserhöhung in der 10. und 11. Dynastie. In: GM 164, 1998, 63-70. - Franke, GM 167, 1998Franke, Detlef, Kleiner Mann (nḏs) - was bist Du? In: GM 167, 1998, 33-48. - Franke, GM 83, 1984Franke, Detlef, Probleme der Arbeit mit altägyptischen Titeln des Mittleren Reiches. In: GM 83, 1984, 103-124. Franke, HeqaibFranke, Detlef, Das Heiligtum des Heqaib auf Elephantine. Geschichte eines Provinzheiligtums im Mittleren Reich. SAGA 9. 1994. - Franke, in: Feinde und AufrührerFranke, Detlef, Schlagworte: über den Umgang mit Gegnern in Memorialtexten des Mittleren Reiches. In: Feinde und Aufrührer, 2005, 89-110. - Franke, in: Fs Assmann, Temple of the Whole WorldFranke, Detlef, Middle Kingdom hymns and other sundry religious texts: an inventory. In: Fs Assmann, Temple of the Whole World, 2003, 95-136. - Franke, in: Fs JoelFranke, Detlef, Zur Bedeutung der Stadt in altägyptischen Texten. In: Fs Joel, 1994, 29-51. - Franke, in: Middle Kingdom StudiesFranke, Detlef, The Career of Khnumhotep III of Beni Hasan and the so-called "Decline of the Nomarchs". In: Middle Kingdom Studies, 1991, 51-67. - Franke, JEA 71, 1985Franke, Detlef, An important family from Abydos of the Seventeenth Dynasty. In: JEA 71, 1985, 175-176. - Franke, JEA 93, 2007Franke, Detlef, The good Shepherd Antef (Stela BM EA 1628). In: JEA 93, 2007, 149-174. Franke, PersonendatenFranke, Detlef, Personendaten aus dem Mittleren Reich (20. - 16. Jahrhundert v. Chr.). Dossiers 1 - 976. ÄA 41. 1984. - Franke, SAK 34, 2006Franke, Detlef, Fürsorge und Patronat in der Ersten Zwischenzeit und im Mittleren Reich. In: SAK 34, 2006, 159-185. Franke, VerwandtschaftsbezeichnungenFranke, Detlef, Altägyptische Verwandtschaftsbezeichnungen im Mittleren Reich. HÄS 3. 1983. - Frankfort, JEA 14, 1928Frankfort, Henri, The Cemeteries of Abydos. Work of the Season 1925-26. In: JEA 14, 1928, 235-245. - Freed, in: Fs SimpsonFreed, Rita E., Stela Workshops of Early Dynasty 12. In: Fs Simpson, 1996, 297-336. - Friedman, JARCE 23, 1986Friedman, Florence Dunn, Ax in the Amarna Period. In: JARCE 23, 1986, 99-106. - Friedman, JARCE 32, 1995Friedman, Florence Dunn, The underground relief panels of King Djoser at the Step Pyramid complex. In: JARCE 32, 1995, 1-42. + Friedman/Fiske, Egypt at its Origins 3Egypt at its Origins 3. Proceedings of the Third international Conference “Origin of the State. Predynastic and Early Dynastic Egypt”, London, 27th July – 1st August 2008. Hrsg. von Friedman, Renée F., Fiske, Peter N. OLA 205. 2011. (new) Frood, Biographical texts Frood, Elizabeth, Biographical texts from Ramessid Egypt. Hrsg. von Baines, John. WAW 26. 2007. - Frood, JEA 92, 2006Frood, Elizabeth, A Ramessid statue from Abydos bearing a sacred emblem. In: JEA 92, 2006, 250-255. Fs AguizyMélanges offerts à Ola el-Aguizy. Hrsg. von Haikal, Fayza. BdE 164. 2015. Fs AllamScribe of Justice. Egyptological studies in honour of Shafik Allam. Hrsg. von Hawass, Zahi A. SASAE 42. 2011. Fs AltenmüllerEs werde niedergelegt als Schriftstück. Festschrift für Hartwig Altenmüller zum 65. Geburtstag. Hrsg. von Kloth, Nicole. 2003. + Fs Arangio-RuizStudi in onore di Vincenzo Arangio-Ruiz nel XLV anno del suo insegnamento. 1953. Fs Arangio-Ruiz IStudi in onore di Vincenzo Arangio-Ruiz nel 45 anno del suo insegnamento. I. Ein Beitrag zu den Grunddienstbarkeiten im neubabylonischen Recht. Hrsg. von San Nicolò, Mariano. 1953. Fs Arangio-Ruiz IIStudi in onore di Vincenzo Arangio-Ruiz nel 45 anno del suo insegnamento. II. Vom Begriff des "commercium". Hrsg. von Kaser, Max. 1953. Fs Arangio-Ruiz IIIStudi in onore di Vincenzo Arangio-Ruiz nel 45 anno del suo insegnamento. III. Eine Synchoresis aus der Zeit des Commodus Papyrus Rainer G. 25817. Hrsg. von Lewald, Hans. 1953. Fs Arangio-Ruiz IVStudi in onore di Vincenzo Arangio-Ruiz nel 45 anno del suo insegnamento. IV. Koptische Parallelurkunden. Hrsg. von Till, Walter C. 1953. - Fs Arangio-RuizStudi in onore di Vincenzo Arangio-Ruiz nel XLV anno del suo insegnamento. 1953. Fs AßfalgLingua Restituta Orientalis. Festgabe für Julius Aßfalg. Hrsg. von Schulz, Regine, Görg, Manfred. ÄUAT 20. 1990. Fs Assmann, MythosMythos & Ritual. Festschrift für Jan Assmann zum 70. Geburtstag. Hrsg. von Rothöhler, Benedikt, Manisali, Alexander. 2008. Fs Assmann, Temple of the Whole WorldEgypt - Temple of the Whole World. Studies in Honour of Jan Assmann. Hrsg. von Meyer, Sibylle. 2003. @@ -1629,11 +1059,11 @@

      Abbreviat Fs Brunner-TrautGegengabe. Festschrift für Emma Brunner-Traut. Hrsg. von Gamer-Wallert, Ingrid, Helck, Wolfgang. 1992. Fs BurkardTexte - Theben - Tonfragmente. Festschrift für Günter Burkard. Hrsg. von Kessler, Dieter. 2009. Fs CapartVolume offert à Jean Capart. 1935. - Fs Champollion II 1Textes et langages de l'Égypte pharaonique: cent cinquante années de recherches 1822 - 1972. Hommage à Jean-François Champollion, Bd. 1. Hrsg. von Sauneron, Serge. BdE 64/1. 1974. - Fs Champollion II 2Textes et langages de l'Égypte pharaonique: cent cinquante années de recherches 1822 - 1972. Hommage à Jean-François Champollion, Bd. 2. Hrsg. von Sauneron, Serge. BdE 64/2. 1974. - Fs Champollion II 3Textes et langages de l'Égypte pharaonique: cent cinquante années de recherches 1822 - 1972. Hommage à Jean-François Champollion, Bd. 3. Hrsg. von Sauneron, Serge. BdE 64/3. 1974. - Fs Champollion IITextes et langages de l'Égypte pharaonique: cent cinquante années de recherches 1822 - 1972. Hommage à Jean-François Champollion. Hrsg. von Sauneron, Serge. BdE 64. 1973-1974. - Fs ChampollionRecueil d'études égyptologiques dédiées à la mémoire de Jean-François Champollion à l'occasion du centenaire de la lettre à M. Dacier relative à l'alphabet des hiéroglyphes phonétiques. BEHE 234. 1922. + Fs ChampollionRecueil d’études égyptologiques dédiées à la mémoire de Jean-François Champollion à l’occasion du centenaire de la lettre à M. Dacier relative à l’alphabet des hiéroglyphes phonétiques. BEHE 234. 1922. + Fs Champollion IITextes et langages de l’Égypte pharaonique: cent cinquante années de recherches 1822 - 1972. Hommage à Jean-François Champollion. Hrsg. von Sauneron, Serge. BdE 64. 1973-1974. + Fs Champollion II 1Textes et langages de l’Égypte pharaonique: cent cinquante années de recherches 1822 - 1972. Hommage à Jean-François Champollion, Bd. 1. Hrsg. von Sauneron, Serge. BdE 64/1. 1974. + Fs Champollion II 2Textes et langages de l’Égypte pharaonique: cent cinquante années de recherches 1822 - 1972. Hommage à Jean-François Champollion, Bd. 2. Hrsg. von Sauneron, Serge. BdE 64/2. 1974. + Fs Champollion II 3Textes et langages de l’Égypte pharaonique: cent cinquante années de recherches 1822 - 1972. Hommage à Jean-François Champollion, Bd. 3. Hrsg. von Sauneron, Serge. BdE 64/3. 1974. Fs CouroyerÉtudes égyptologiques et bibliques à la mémoire du Père B. Couroyer. Hrsg. von Sigrist, Marcel. CRB 36. 1997. Fs CrumCoptic Studies in Honor of Walter Ewing Crum. 1950. Fs DAIKÄgypten. Dauer und Wandel. Symposium anlässlich des 75jährigen Bestehens des DAI Kairo am 10. und 11. Oktober 1982. SDAIK 18. 1985. @@ -1641,6 +1071,7 @@

      Abbreviat Fs DemaréeThe Workman’s Progress. Studies in the Village of Deir el-Medina and Other Documents from Western Thebes in Honour of Rob Demarée. Hrsg. von Haring, Bernardus Johannes Jozef, Kaper, Olaf Ernst, Walsem, René van. EgUit 28. 2014. Fs DerchainReligion und Philosophie im Alten Ägypten. Festgabe für Philippe Derchain zu seinem 65. Geburtstag am 24. Juli 1991. Hrsg. von Verhoeven, Ursula, Graefe, Erhart. OLA 39. 1991. Fs DreyerZeichen aus dem Sand. Streiflichter aus Ägyptens Geschichte zu Ehren von Günter Dreyer. Hrsg. von Engel, Eva-Maria. Menes 5. 2008. + Fs DunandLe myrte et la rose. Mélanges offerts à Françoise Dunand par ses élèves, collègues et amis. Hrsg. von Tallet, Gaëlle, Zivie-Coche, Christiane M. CENIM 9. 2014. (new) Fs DunhamStudies in Ancient Egypt, the Aegean, and the Sudan. Essays in Honor of Dows Dunham on the Occasion of his 90th Birthday, June 1, 1980. Hrsg. von Simpson, William Kelly. 1981. Fs EbersAegyptiaca. Festschrift für Georg Ebers zum 1. März 1897. 1897. Fs EdelFestschrift Elmar Edel, 12. März 1979. ÄUAT 1. 1979. @@ -1654,18 +1085,19 @@

      Abbreviat Fs GoedickeEssays in Egyptology in honor of Hans Goedicke. Hrsg. von Bryan, Betsy M., Lorton, David. 1994. Fs GordonOrient and Occident. Essays presented to Cyrus H. Gordon on the Occasion of his 65th Birthday. Hrsg. von Hoffner, Harry A. AOAT 22. 1973. Fs GoyonHommages à Jean-Claude Goyon: offerts pour son 70e anniversaire. Hrsg. von Gabolde, Luc. BdE 143. 2008. - Fs Graefe IIPérégrinations avec Erhart Graefe: Festschrift zu seinem 75. Geburtstag. Hrsg. von Blöbaum, Anke Ilona, Eaton-Krauss, Marianne, Wüthrich, Annik. ÄUAT 87. 2018. Fs GraefeÄgypten - Münster. Kulturwissenschaftliche Studien zu Ägypten, dem Vorderen Orient und verwandten Gebieten, donum natalicium viro doctissimo Erharto Graefe sexagenario ab amicis collegis discipulis ex aedibus Schlaunstraße 2/Rosenstraße 9 oblatum. Hrsg. von Blöbaum, Anke Ilona, Kahl, Jochem, Schweitzer, Simon D. 2003. + Fs Graefe IIPérégrinations avec Erhart Graefe: Festschrift zu seinem 75. Geburtstag. Hrsg. von Blöbaum, Anke Ilona, Eaton-Krauss, Marianne, Wüthrich, Annik. ÄUAT 87. 2018. Fs GrapowÄgyptologische Studien. [Hermann Grapow zum 70. Geburtstag gewidmet]. Hrsg. von Firchow, Otto. VIO 29. 1955. Fs GrenierEt in Aegypto et ad Aegyptum, Recueil d’études dédiées à Jean-Claude Grenier. Hrsg. von Gasse, Annie. CENIM 5. 2012. Fs GriffithStudies presented to F. Ll. Griffith. 1932. Fs GriffithsStudies in Pharaonic Religion and Society in Honour of J. Gwyn Griffiths. Hrsg. von Lloyd, Alan B. EES OP 8. 1992. Fs GrunertVon Theben nach Giza. Festmiszellen für Stefan Grunert zum 65. Geburtstag. Hrsg. von Feder, Frank. GM Beiheft 10. 2011. Fs Guglielmi"Von reichlich ägyptischem Verstande". Festschrift für Waltraud Guglielmi zum 65. Geburtstag. Hrsg. von Zibelius-Chen, Karola, Fischer-Elfert, Hans-Werner. 2006. - Fs Gundlach IIIn Pharaos Staat. Festschrift für Rolf Gundlach zum 75. Geburtstag. Hrsg. von Bröckelmann, Dirk, Klug, Andrea. 2006. Fs GundlachWege öffnen. Festschrift für Rolf Gundlach zum 65. Geburtstag. Hrsg. von Schade-Busch, Mechthild. ÄUAT 35. 1996. + Fs Gundlach IIIn Pharaos Staat. Festschrift für Rolf Gundlach zum 75. Geburtstag. Hrsg. von Bröckelmann, Dirk, Klug, Andrea. 2006. Fs GutbubMélanges Adolphe Gutbub. 1984. Fs HaikalHommages à Fayza Haikal. Hrsg. von Grimal, Nicolas-Christophe, Kamel, Amr, Sheikholeslami, Cynthia May. BdE 138. 2003. + Fs HawassGuardian of Ancient Egypt. Studies in Honor of Zahi Hawass. Hrsg. von Kamrin, Janice, Bárta, Miroslav, Ikram, Salima, Lehner, Mark, Megahed, Mohamed. 2020. (new) Fs HelckFestschrift Wolfgang Helck zu seinem 70. Geburtstag. Hrsg. von Altenmüller, Hartwig, Wildung, Dietrich. SAK 11. 1984. Fs HintzeÄgypten und Kusch. [Fritz Hintze zum 60. Geburtstag]. Hrsg. von Endesfelder, Erika, Priese, Karl-Heinz, Reineke, Walter Friedrich, Wenig, Steffen. SGKAO 13. 1977. Fs HombertMélanges Joseph Hombert. Phoibos 5. 1950-1951. @@ -1673,12 +1105,15 @@

      Abbreviat Fs IversenThe Heritage of Ancient Egypt. Studies in Honour of Erik Iversen. Hrsg. von Osing, Jürgen, Nielsen, Erland Kolding. CNI Publications 13. 1992. Fs JamesStudies in Egyptian Antiquities. A Tribute to T. G. H. James. Hrsg. von Davies, W. V. BMOP 123. 1999. Fs JanowskiIch will dir danken unter den Völkern. Studien zur israelitischen und altorientalischen Gebetsliteratur. Festschrift für Bernd Janowski zum 70. Geburtstag. Hrsg. von Grund, A. 2013. + Fs Jansen-WinkelnEin Kundiger, der in die Gottesworte eingedrungen ist. Festschrift für den Ägyptologen Karl Jansen-Winkeln zum 65. Geburtstag. Hrsg. von Hsu, Shih-Wei, Laisney, Aménémopé, Moje, Jan. ÄUAT 99. 2020. (new) Fs JanssenDeir el-Medina in the Third Millennium AD. A Tribute to Jac. J. Janssen. EgUit 14. 2000. + Fs JasnowOne Who Loves Knowledge. Studies in Honor of Richard Jasnow. Hrsg. von Bryan, Betsy M., Smith, Mark, Di Cerbo, Christina, Escolano-Poveda, Marina, Waller, Jill S. 2022. (new) Fs JoelStädtische Formen und Macht. 1. Symposium, 2. - 4. Juli 1993 Paderborn. Festschrift zur Vollendung des 65. Lebensjahres von Werner Joel. Hrsg. von Jansen, Michael, Hoock, Jochen, Jarnut, Jörg. VIAS 1. 1994. + Fs JohnsonEssays for the Library of Seshat. Studies Presented to Janet H. Johnson on the Occasion of her 70th Birthday. Hrsg. von Ritner, Robert K. SAOC 70. 2017. (new) Fs JosephsonOfferings to the discerning eye: an Egyptological medley in honor of Jack A. Josephson. Hrsg. von D'Auria, Sue. CHANE 38. 2010. Fs Jungejn.t ḏr.w. Festschrift für Friedrich Junge. Hrsg. von Moers, Gerald. 2006. - Fs Junker IIFestschrift Hermann Junker zum 80. Geburtstag gewidmet von seinen Freunden und Schülern. WZKM 54. 1957. Fs JunkerFestschrift zum 80. Geburtstag von Professor Dr. Hermann Junker. MDAIK 15, 16. 1957, 1958. + Fs Junker IIFestschrift Hermann Junker zum 80. Geburtstag gewidmet von seinen Freunden und Schülern. WZKM 54. 1957. Fs KaiserFestschrift für Werner Kaiser. MDAIK 47. 1991. Fs KákosyThe Intellectual Heritage of Egypt. Studies Presented to László Kákosy. Hrsg. von Luft, Ulrich. StudAeg 14. 1992. Fs KasserCoptology: Past, Present, and Future Studies in Honour of Rodolphe Kasser. Hrsg. von Giversen, Sören, Krause, Martin, Nagel, Peter. OLA 61. 1994. @@ -1688,11 +1123,12 @@

      Abbreviat Fs Kramer"... vor dem Papyrus sind alle gleich!" Papyrologische Beiträge zu Ehren von Bärbel Kramer. Hrsg. von Eberhard, Raimar. AfP Beiheft 27. 2009. Fs KrauseDivitiae Aegypti. Koptologische und verwandte Studien zu Ehren von Martin Krause. Hrsg. von Fluck, Cäcilia, Langener, Lucia, Richter, Siegfried, Schaten, Sofia, Wurst, Gregor. 1995. Fs LauerÉtudes sur l’Ancien Empire et la nécropole de Saqqâra, dédicées à Jean-Philippe Lauer. Hrsg. von Berger, Catherine, Mathieu, Bernard. OrMonsp 9. 1997. + Fs LeahyA True Scribe of Abydos. Essays on First Millennium Egypt in Honour of Anthony Leahy. Hrsg. von Jurman, Claus, Bader, Bettina, Aston, David A. OLA 265. 2017. (new) + Fs LeclantHommages à Jean Leclant, 4 Bde. Hrsg. von Berger, Catherine, Clerc, Gisèle, Grimal, Nicolas-Christophe. BdE 106/ 1-4. 1994. Fs Leclant IHommages à Jean Leclant, Bd. 1, Études pharaoniques. Hrsg. von Berger, Catherine, Clerc, Gisèle, Grimal, Nicolas-Christophe. BdE 106/1. 1994. Fs Leclant IIHommages à Jean Leclant, Bd. 2, Nubie, Soudan, Éthiopie. Hrsg. von Berger, Catherine, Clerc, Gisèle, Grimal, Nicolas-Christophe. BdE 106/2. 1994. Fs Leclant IIIHommages à Jean Leclant, Bd. 3, Études isiaques. Hrsg. von Berger, Catherine, Clerc, Gisèle, Grimal, Nicolas-Christophe. BdE 106/3. 1994. Fs Leclant IVHommages à Jean Leclant, Bd. 4, Varia. Hrsg. von Berger, Catherine, Clerc, Gisèle, Grimal, Nicolas-Christophe. BdE 106/4. 1994. - Fs LeclantHommages à Jean Leclant, 4 Bde. Hrsg. von Berger, Catherine, Clerc, Gisèle, Grimal, Nicolas-Christophe. BdE 106/ 1-4. 1994. Fs LexaDiatribae quas amici collegae discipuli Francisco Lexa quinque et septuaginta annos nato ddd. I-II. Hrsg. von Zába, Zbynek. ArOr 20. 1952. Fs LichtheimStudies in Egyptology Presented to Miriam Lichtheim. 2 Bde. Hrsg. von Groll, Sarah Israelit. 1990. Fs LloydEgyptian Stories. A British Egyptological Tribute to Alan B. Lloyd on the Occasion of His Retirement. Hrsg. von Schneider, Thomas, Szpakowska, Kasia. AOAT 347. 2007. @@ -1709,14 +1145,15 @@

      Abbreviat Fs Papyrussammlung WienPapyrus Erzherzog Rainer. Festschrift zum 100jährigen Bestehen der Papyrussammlung der österreichischen Nationalbibliothek. (P. Rainer Cent.). 1983. Fs ParkerEgyptological Studies in Honor of Richard A. Parker. Presented on the Occasion of his 78th Birthday, Dec. 10, 1983. Hrsg. von Lesko, Leonard H. 1986. Fs PedersenStudia orientalia Ioanni Pedersen septuagenario A. D. VII id. nov. anno MCMLIII a collegis, discipulis, amicis dicata. 1953. + Fs PernigottiAegyptiaca et Coptica. Studi in onore di Sergio Pernigotti. Hrsg. von Buzi, Paola, Picchi, Daniela, Zecchi, Marco. BAR-IS 2264. 2011. (new) Fs PestmanThe Two Faces of Graeco-Roman Egypt. Greek and Demotic and Greek-Demotic Texts and Studies Presented to P. W. Pestman. Hrsg. von Verhoogt, A. M. F. W., Vleeming, Sven P. 1998. Fs PolotskyStudies in Egyptology and Linguistics. In Honour of H. J. Polotsky. 1964. Fs PrieseDer andere Blick. Forscherlust und Wissensdrang. Museumsgabe zum 80. Geburtstag von Karl-Heinz Priese. Hrsg. von Finneiser, Klaus, Helmbold-Doyé, Jana. 2015. + Fs QuaegebeurEgyptian Religion the Last Thousand Years. Studies Dedicated to the Memory of Jan Quaegebeur. Hrsg. von Clarysse, Willy C., Schoors, Antoon, Willems, Harco. OLA 84-85. 1998. Fs Quaegebeur IEgyptian religion: the last thousand years. Studies dedicated to the memory of Jan Quaegebeur: part I. Hrsg. von Clarysse, Willy C., Schoors, Antoon, Willems, Harco. OLA 84. 1998. Fs Quaegebeur IIEgyptian religion: the last thousand years. Studies dedicated to the memory of Jan Quaegebeur: part II. Hrsg. von Clarysse, Willy C., Schoors, Antoon, Willems, Harco. OLA 85. 1998. - Fs QuaegebeurEgyptian Religion the Last Thousand Years. Studies Dedicated to the Memory of Jan Quaegebeur. Hrsg. von Clarysse, Willy C., Schoors, Antoon, Willems, Harco. OLA 84-85. 1998. Fs RickeAufsätze zum 70. Geburtstag von Herbert Ricke. BeiträgeBf 12. 1971. - Fs RobertMélanges bibliques. Rédigés en l'honneur de André Robert. 1957. + Fs RobertMélanges bibliques. Rédigés en l’honneur de André Robert. 1957. Fs Rosellini, ScrittiScritti dedicati alla memoria di Ippolito Rosellini nel primo centenario della morte (4 giugno 1943). 1945. Fs Rosellini, StudiStudi in memoria di Ippolito Rosellini nel primo centenario della morte (4 giugno 1843 - 4 giugno 1943). 1949-1955. Fs RozenСборник статей учеников профессора барона Виктора Романовича Розена ко дню двадцатипятилетия его первой лекции, 13 ноября 1872-1897 [Sammlung von Artikeln der Studenten von Professor Baron Viktor Romanovich Rosen zum 25. Jahrestag seiner ersten Vorlesung, 13. November 1872-1897]. 1897. @@ -1728,9 +1165,10 @@

      Abbreviat Fs SchottFestschrift für Siegfried Schott zu seinem 70. Geburtstag am 20. August 1967. Hrsg. von Helck, Wolfgang. 1968. Fs SchubartAus Antike und Orient. Festschrift Wilhelm Schubart zum 75. Geburtstag. Hrsg. von Morenz, Siegfried. 1950. Fs SchützeichelAlthochdeutsch. [Rudolf Schützeichel zum 20. Mai 1987]. Hrsg. von Bergmann, Rolf. 1987. + Fs ShoreThe Unbroken Reed. Studies in the Culture and Heritage of Ancient Egypt in Honour of A.F. Shore. Hrsg. von Eyre, Christopher, Leahy, Anthony, Montagno Leahy, Lisa. EES OP 11. 1994. (new) + Fs SimpsonStudies in Honor of William Kelly Simpson, I-II. Hrsg. von Manuelian, Peter Der. 1996. Fs Simpson IStudies in honor of William Kelly Simpson, Bd. 1. Hrsg. von Manuelian, Peter Der. 1996. Fs Simpson IIStudies in honor of William Kelly Simpson, Bd. 2. Hrsg. von Manuelian, Peter Der. 1996. - Fs SimpsonStudies in Honor of William Kelly Simpson, I-II. Hrsg. von Manuelian, Peter Der. 1996. Fs SpalingerRich and Great. Studies in Honour of Anthony J. Spalinger on the Occasion of his 70th Feast of Thoth. Hrsg. von Landgráfová, Renata, Mynářová, Jana. 2016. Fs SpulerStudien zur Geschichte und Kultur des Vorderen Orients. Festschrift für Bertold Spuler zum 70. Geburtstag. Hrsg. von Roemer, Hans R., Noth, Albrecht. 1981. Fs StadelmannStationen. Beiträge zur Kulturgeschichte Ägyptens, Rainer Stadelmann gewidmet. Hrsg. von Guksch, Heike, Polz, Daniel. 1998. @@ -1738,15 +1176,15 @@

      Abbreviat Fs Struve 1964Assiriologija i egiptologija. Sbornik statej. Hrsg. von Lipin, Lev A. 1964. Fs te VeldeEssays on Ancient Egypt in Honour of Herman te Velde. Hrsg. von Dijk, Jacobus van. Egyptological Memoirs 1. 1997. Fs ThausingZwischen den beiden Ewigkeiten. Festschrift Gertrud Thausing. Hrsg. von Bietak, Manfred, Holaubek, Johanna, Mukarovsky, Hans G., Satzinger, Helmut. 1994. - Fs ThéodoridèsIndividu, société et spiritualité dans l'Égypte pharaonique et copte. Mélanges égyptologiques offerts au Professeur Aristide Théodoridès. Hrsg. von Cannuyer, Christian, Kruchten, Jean-Marie. 1993. + Fs ThéodoridèsIndividu, société et spiritualité dans l’Égypte pharaonique et copte. Mélanges égyptologiques offerts au Professeur Aristide Théodoridès. Hrsg. von Cannuyer, Christian, Kruchten, Jean-Marie. 1993. Fs Thissen"Honi soit qui mal y pense". Studien zum pharaonischen, griechisch-römischen und spätantiken Ägypten zu Ehren von Heinz-Josef Thissen. Hrsg. von Knuf, Hermann. OLA 194. 2010. Fs van der LeeuwPro regno, pro sanctuario. een bundel studies en bijdragen van vrienden en vereerders bij de zestigste verjaardag van Prof. Dr G. van der Leeuw. 1950. Fs VergoteMiscellanea in honorem Josephi Vergote. Hrsg. von Naster, Paul, De Meulenaere, Herman, Quaegebeur, Jan. OLP 6-7. 1975-1976. - Fs VernusAere perennius. Mélanges égyptologiques en l'honneur de Pascal Vernus. Hrsg. von Collombert, Philippe, Lefèvre, Dominique, Polis, Stéphane, Winand, Jean. OLA 242. 2016. + Fs VernusAere perennius. Mélanges égyptologiques en l’honneur de Pascal Vernus. Hrsg. von Collombert, Philippe, Lefèvre, Dominique, Polis, Stéphane, Winand, Jean. OLA 242. 2016. Fs VittmannSapientia Felicitas. Festschrift für Günter Vittmann zum 29. Februar 2016. Hrsg. von Lippert, Sandra Luisa. CENIM 14. 2016. Fs VleemingHieratic, Demotic and Greek Studies and Text Editions. Of Making Many Books There Is No End: Festschrift in Honour of Sven P. Vleeming. Hrsg. von Donker van Heel, Koenraad, Martin, Cary J., Hoogendijk, Francisca A. J. 2018. Fs WenteGold of Praise. Studies on Ancient Egypt in Honor of Edward F. Wente. Hrsg. von Teeter, Emily, Larson, John A. SAOC 58. 1999. - Fs WessetzkyRecueil d'études dédiées à Vilmos Wessetzky à l'occasion de son 65e anniversaire. Hrsg. von Kákosy, László. StudAeg 1. 1974. + Fs WessetzkyRecueil d’études dédiées à Vilmos Wessetzky à l’occasion de son 65e anniversaire. Hrsg. von Kákosy, László. StudAeg 1. 1974. Fs Westendorf 1Studien zu Sprache und Religion Ägyptens: zu Ehren von Wolfhart Westendorf, überreicht von seinen Freunden and Schülern, Bd. 1 Sprache. 1984. Fs Westendorf 2Studien zu Sprache und Religion Ägyptens: zu Ehren von Wolfhart Westendorf, überreicht von seinen Freunden and Schülern, Bd. 2 Religion. 1984. Fs Westendorf IStudien zu Sprache und Religion Ägyptens. Zu Ehren von Wolfhart Westendorf überreicht von seinen Freunden und Schülern. 1984. @@ -1756,83 +1194,33 @@

      Abbreviat Fs WilsonStudies in Honor of John A. Wilson, September 12, 1969. Hrsg. von Hauser, Elizabeth Blaisdell. SAOC 35. 1969. Fs WinterAspekte spätägyptischer Kultur: Festschrift für Erich Winter zum 65. Geburtstag. Hrsg. von Minas-Nerpel, Martina, Zeidler, Jürgen. AegTrev 7. 1994. Fs ZandeeStudies in Egyptian Religion, dedicated to Professor Jan Zandee. Hrsg. von Heerma van Voss, Matthieu. Studies in the History of Religions 43. 1982. - Fs Zauzich IIGehilfe des Thot. Festschrift für Karl-Theodor Zauzich zu seinem 75. Geburtstag. Hrsg. von Lippert, Sandra Luisa, Stadler, Martin Andreas. 2014. Fs ZauzichRes severa verum gaudium. Festschrift für Karl-Theodor Zauzich zum 65. Geburtstag am 8. Juni 2004. Hrsg. von Hoffmann, Friedhelm, Thissen, Heinz-Josef. StudDem 6. 2004. + Fs Zauzich IIGehilfe des Thot. Festschrift für Karl-Theodor Zauzich zu seinem 75. Geburtstag. Hrsg. von Lippert, Sandra Luisa, Stadler, Martin Andreas. 2014. Fs ZuckerFestschrift für Friedrich Zucker zum 70. Geburtstage. Hrsg. von Müller, Wolfgang. 1954. - Furtwängler, GlyptothekFurtwängler, Adolf, Beschreibung der Glyptothek König Ludwig's I. zu München. 1900, 1910 (2. Aufl.). - Gaál, StudAeg 2, 1976Gaál, Ernö, Women of Alalaḫ and Arrapḫa in Egypt. In: StudAeg 2, 1976, 207-213. + Furtwängler, GlyptothekFurtwängler, Adolf, Beschreibung der Glyptothek König Ludwig’s I. zu München. 1900, 1910 (2. Aufl.). Gabler, Who’s who around Deir el-MedinaGabler, Kathrin, Who’s who around Deir el-Medina, Untersuchungen zur Organisation, Prosopographie und Entwicklung des Versorgungspersonals für die Arbeitersiedlung und das Tal der Könige. EgUit 31. 2018. - Gabolde, BIFAO 94, 1994Gabolde, Marc, La statue de Merymaât gouverneur de Djâroukha (Bologne K.S. 1813). In: BIFAO 94, 1994, 261-275. - Gabolde, in: CoptosGabolde, Marc, Le temple de Min et Isis. In: Coptos, 2000, 60-91. - Gabolde, in: SéhelGabolde, Luc, La stèle de Thoutmosis II à Assouan: témoin historique et archétype littéraire. In: Séhel, 2004, 129-148. - Gabolde, Kyphi 4, 2005Gabolde, Luc, Une troisième stèle de Kamosis? In: Kyphi 4, 2005, 35-42. - Gabra, MDAIK 32, 1976Gabra, Gawdat, Preliminary Report on the Stela of ḥtpỉ from El-Kab from the time of Wakhankh Inyôtef II. In: MDAIK 32, 1976, 45-56. Gagnebin, Fondation BodmerGagnebin, Bernard, Une source capitale pour la recherche à Genève. La Fondation Martin Bodmer. Genava 20. 1972. Galán, Four JourneysGalán, José M., Four Journeys in Ancient Egyptian Literature. LingAeg – StudMon 5. 2005. - Galán, SAK 21, 1994Galán, José M., The Stela of Hor in Context. In: SAK 21, 1994, 65-79. Galán, Victory and BorderGalán, José M., Victory and Border. Terminology related to Egyptian Imperialism in the 18th Dynasty. HÄB 40. 1995. Galling, IsraelGalling, Kurt, Textbuch zur Geschichte Israels. In Verbindung mit Elmar Edel und Eugen L. Rapp / Riekele Borger. 1950, 1968 (2. neub. Aufl.). Gallo, Narmouthis IIGallo, Paolo, Ostraca demotici e ieratici dell’archivio bilingue di Narmouthis, II (nn. 34-99). 1997. Gamer-Wallert, FischeGamer-Wallert, Ingrid, Fische und Fischkulte im alten Ägypten. ÄA 21. 1970. - Ganley, DE 58, 2004Ganley, Andrew H., A Fresh Look at the Karnak Legal Stela. In: DE 58, 2004, 57-67. Gardiner, AdmonitionsGardiner, Alan H., The admonitions of an Egyptian sage from a hieratic papyrus in Leiden [Pap. Leiden 344 recto]. 1909, Nachdruck 1969. - Gardiner, BIFAO 30, 1931Gardiner, Alan H., Two hieroglyphic signs and the Egyptian words for "alabaster" and "linen". In: BIFAO 30, 1931, 161-183. Gardiner, EgyptGardiner, Alan H., Egypt of the Pharaohs. An Introduction. 1961. Gardiner, GeschichteGardiner, Alan H., Geschichte des Alten Ägypten. Eine Einführung. 1965. - Gardiner, in: Fs GrapowGardiner, Alan H., Minuscula lexica. In: Fs Grapow, 1955, 1-3. - Gardiner, in: Fs GriffithGardiner, Alan H., The Astarte Papyrus. In: Fs Griffith, 1932, 74-85. - Gardiner, in: Fs Junker IIGardiner, Alan H., A New Moralizing Text. In: Fs Junker II, 1957, 43-45. - Gardiner, in: Mél. Masp. IGardiner, Alan H., The earliest manuscripts of the instruction of Amenemmes I. In: Mél. Masp. I, 1935-1938, 479-496. Gardiner, Inscr. of MesGardiner, Alan H., The Inscription of Mes. A Contribution to the Study of Egyptian Judical Procedure. UGAÄ 4. 1964 (Repr. Nachdr. d. Ausg. 1905). - Gardiner, JEA 1, 1914Gardiner, Alan H., New literary works from ancient Egypt. In: JEA 1, 1914, 20-36, 100-106. - Gardiner, JEA 10, 1924The Geography of the Exodus. An Answer to Professor Naville and Others. In: JEA 10, 1924, 87-96. - Gardiner, JEA 13, 1927Gardiner, Alan H., An administrative letter of protest. In: JEA 13, 1927, 75-78. - Gardiner, JEA 16, 1930 (1)Gardiner, Alan H., A new letter to the dead. In: JEA 16, 1930, 19-22. - Gardiner, JEA 16, 1930 (2)Gardiner, Alan H., The Origin of Certain Coptic Grammatical Elements. In: JEA 16, 1930, 220-234. - Gardiner, JEA 24, 1938Gardiner, Alan H., The House of Life. In: JEA 24, 1938, 157-179. - Gardiner, JEA 26, 1940Gardiner, Alan H., The word mꜥḏꜣ and its various uses. In: JEA 26, 1941, 157-158. - Gardiner, JEA 27, 1941Gardiner, Alan H., Ramesside texts relating to the taxation and transport of corn. In: JEA 27, 1941, 19-73. - Gardiner, JEA 3, 1916 (1)Gardiner, Alan H., The defeat of the Hyksos by Kamōse: the Carnarvon tablet, no. 1. In: JEA 3, 1916, 95-110. - Gardiner, JEA 3, 1916 (2)Gardiner, Alan H., An Ancient List of the Fortresses of Nubia. In: JEA 3, 1916, 184-192. - Gardiner, JEA 30, 1944Gardiner, Alan H., Horus the Beḥdetite. In: JEA 30, 1944, 23-60. - Gardiner, JEA 32, 1946 (1)Gardiner, Alan H., Davies's copy of the great Speos Artemidos inscription. In: JEA 32, 1946, 43-56. - Gardiner, JEA 32, 1946 (2)Gardiner, Alan H., The Instruction Addressed to Kagemni and his Brethren. In: JEA 32, 1946, 71-74. - Gardiner, JEA 34, 1948Gardiner, Alan H., The first two pages of the Wörterbuch. Review: Erman, Adolf/Hermann Grapow 1926-1931. Wörterbuch der ägyptischen Sprache. In: JEA 34, 1948, 12-18. - Gardiner, JEA 37, 1951Gardiner, Alan H., The hieroglyph 𓍘 with the value šps. In: JEA 37, 1951, 110. - Gardiner, JEA 38, 1952Gardiner, Alan H., Some reflections on the Nauri decree. In: JEA 38, 1952, 24-33. - Gardiner, JEA 39, 1953Gardiner, Alan H., The Coronation of King Haremhab. In: JEA 39, 1953, 13-31. - Gardiner, JEA 4, 1917Gardiner, Alan H., The tomb of a much-travelled Theban official. In: JEA 4, 1917, 28-38. - Gardiner, JEA 41, 1955Gardiner, Alan H., A unique Funerary Liturgy. In: JEA 41, 1955, 9-17. - Gardiner, JEA 42, 1956Gardiner, Alan H., A pharaonic encomium (II). In: JEA 42, 1956, 8-20. - Gardiner, JEA 5, 1918Gardiner, Alan H., The Delta Residence of the Ramessides. In: JEA 5, 1918, 127-138, 179-200. - Gardiner, JEA 6, 1920Gardiner, Alan H., The Ancient Military Road between Egypt and Palestine. In: JEA 6, 1920, 99-116. - Gardiner, JEA 9, 1923Gardiner, Alan H., The Eloquent Peasant. In: JEA 9, 1923, 5-25. - Gardiner, JNES 12, 1953Gardiner, Alan H., The Harem at Miwer. In: JNES 12, 1953, 145-149. Gardiner, Kadesh inscriptionsGardiner, Alan H., The Ḳadesh inscriptions of Ramesses II. 1960. - Gardiner, PSBA 34, 1912Gardiner, Alan H., Review: Weill, Raymond 1912. Les décrets royaux de l'Ancien Empire égyptien: étude sur les décrets royaux trouvés à Koptos au cours des travaux de la Société française des fouilles archéologiques (campagnes de 1910 et 1911) et sur les documents similaires d'autres provenances. In: Weill, Les décrets royaux de l'Ancien Empire égyptien, 1912, 257-265. - Gardiner, PSBA 35, 1913 (1)Gardiner, Alan H., In Praise of Death. A Song from a Theban Tomb. In: PSBA 35, 1913, 165-170. - Gardiner, PSBA 35, 1913 (2)Gardiner, Alan H., Notes on the Story of the Eloquent Peasant. In: PSBA 35, 1913, 264-276. Gardiner, RCTGardiner, Alan H., The Royal Canon of Turin. 1959. - Gardiner, RdE 6, 1951Gardiner, Alan H., A Protest against unjustified Tax-Demands. In: RdE 6, 1951, 115-133. - Gardiner, RecTrav 19, 1897Gardiner, Alan H., Notes on some Stelae. In: RecTrav 19, 1897, 83-86. Gardiner, SinuheGardiner, Alan H., Notes on the Story of Sinuhe. 1916. Gardiner, Theban ostraca (Toronto)Theban ostraca. UTS 1. 1913. - Gardiner, ZÄS 43, 1906Gardiner, Alan H., Four papyri of the 18th dynasty from Kahun. In: ZÄS 43, 1906, 27-47. - Gardiner, ZÄS 45, 1908Gardiner, Alan H., Inscriptions from the Tomb of Si-renpowet I., Prince of Elephantine. In: ZÄS 45, 1908, 123-140. - Gardiner, ZÄS 49, 1911Gardiner, Alan H., "To wait for" in Egyptian. In: ZÄS 49, 1911, 100-102. - Gardiner/Carter, JEA 4, 1917Gardiner, Alan H., Carter, Howard, The tomb of Ramesses IV and the Turin plan of a royal tomb. In: JEA 4, 1917, 130-158. Gardiner/Sethe, Letters to the DeadGardiner, Alan H., Sethe, Kurt, Egyptian Letters to the Dead. 1928. - Gasse, Domaine d'AmonGasse, Annie, Données nouvelles administratives et sacerdotales sur l’organisation du domaine d’Amon. BdE 104. 1988. + Gasse, Domaine d’AmonGasse, Annie, Données nouvelles administratives et sacerdotales sur l’organisation du domaine d’Amon. BdE 104. 1988. Gasse, Les papyrus du Museo Gregoriano EgizioGasse, Annie, Les papyrus hiératiques et hiéroglyphiques du Museo Gregoriano Egizio. 1993. Gasse/Rondot, SéhelGasse, Annie, Rondot, Vincent, Les inscriptions de Séhel. MIFAO 126. 2007. - Gasse/Rondot, Sudan & Nubia 7, 2003Gasse, Annie, Rondot, Vincent, The Egyptian Conquest and Administration of Nubia during the New Kingdom. The Testimony of the Sehel Rock-Inscriptions. In: Sudan & Nubia 7, 2003, 40-46. - Gauthier, ASAE 10, 1910Gauthier, Henri, Quelques fragments trouvés à Amada. In: ASAE 10, 1910, 122-124. - Gauthier, ASAE 24, 1924Gauthier, Henri, Quelques corrections à ma publication du temple d'Amada. In: ASAE 24, 1924, 6-9. - Gauthier, BIFAO 30, 1931Gauthier, Henri, À propos des hymnes adressés au dieu Min. In: BIFAO 30, 1931, 553-564. - Gauthier, BIFAO 5, 1906Gauthier, Henri, Quelques remarques sur la XIe dynastie. In: BIFAO 5, 1906, 23-40. - Gauthier, Inscription DédicatoireGauthier, Henri, La grande inscription dédicatoire d'Abydos. BdE 4. 1912. + Gauthier, Inscription DédicatoireGauthier, Henri, La grande inscription dédicatoire d’Abydos. BdE 4. 1912. Gayet, StèlesGayet, Albert, Musée du Louvre, Stèles de la XIIe dynastie. BEHE 68. 1886-1889 (3 Bde.). - Gayet, Temple de LouxorGayet, Albert, Le temple de Louxor. I. Constructions d'Amenophis III. MMAF 15,1. 1894. + Gayet, Temple de LouxorGayet, Albert, Le temple de Louxor. I. Constructions d’Amenophis III. MMAF 15,1. 1894. + GDGGauthier, Henri, Dictionnaire des noms géographiques contenus dans les textes hiéroglyphiques. I-VII. 1925-1931. GDG IGauthier, Henri, Dictionnaire des noms géographiques contenus dans les textes hiéroglyphiques, I. 1925. GDG IIGauthier, Henri, Dictionnaire des noms géographiques contenus dans les textes hiéroglyphiques, II. 1925. GDG IIIGauthier, Henri, Dictionnaire des noms géographiques contenus dans les textes hiéroglyphiques, III. 1926. @@ -1840,7 +1228,6 @@

      Abbreviat GDG VGauthier, Henri, Dictionnaire des noms géographiques contenus dans les textes hiéroglyphiques, V. 1928. GDG VIGauthier, Henri, Dictionnaire des noms géographiques contenus dans les textes hiéroglyphiques, VI. 1929. GDG VIIGauthier, Henri, Dictionnaire des noms géographiques contenus dans les textes hiéroglyphiques, VII. 1931. - GDGGauthier, Henri, Dictionnaire des noms géographiques contenus dans les textes hiéroglyphiques. I-VII. 1925-1931. Gebel es-Silsilah ICaminos, Ricardo Augusto, James, Thomas G. H., Gebel es-Silsilah. I. The Shrines. ASE Memoirs 31. 1963. Gee, Ritual PurityGee, John Laurence, The Requirements of Ritual Purity in Ancien Egypt. 1998. GEGGardiner, Alan H., Egyptian Grammar. 1957. @@ -1852,211 +1239,108 @@

      Abbreviat Germer, TextilfärbereiGermer, Renate, Die Textilfärberei und die Verwendung gefärbter Textilien im Alten Ägypten. ÄA 53. 1992. Gerster, NubienGerster, Georg, Nubien. Goldland am Nil. 1964. Gerzeh and MazghunehPetrie, William M. Flinders, Wainwright, Gerald Averay, Mackay, Ernest, The Labyrinth Gerzeh and Mazghuneh. BSAE 21. 1912. - Geschenk des NilsGeschenk des Nils. Aegyptische Kunstwerke aus Schweizer Besitz. Archäologische Sammlung der Universität Zürich, Historisches Museum Bern, Kunstmuseum Luzern, Musée d'Art et d'Histoire Genève. Eine Ausstellung des Ägyptologischen Seminars der Universität Basel in Zusamenarbeit mit dem Schweizerischen Bankverein. Hrsg. von Schlögl, Hermann Alexander. 1978. + Geschenk des NilsGeschenk des Nils. Aegyptische Kunstwerke aus Schweizer Besitz. Archäologische Sammlung der Universität Zürich, Historisches Museum Bern, Kunstmuseum Luzern, Musée d’Art et d’Histoire Genève. Eine Ausstellung des Ägyptologischen Seminars der Universität Basel in Zusamenarbeit mit dem Schweizerischen Bankverein. Hrsg. von Schlögl, Hermann Alexander. 1978. Gesellensetter, Sechet-IaruGesellensetter, Judith, Das Sechet-Iaru. Untersuchungen zur Vignette des Kapitels 110 im Ägyptischen Totenbuch. 1997. urn:nbn:de:bvb:20-opus-3757 Gestermann, KontinuitätGestermann, Louise, Kontinuität und Wandel in Politik und Verwaltung des frühen Mittleren Reiches in Ägypten. GOF 18. 1987. + Gestermann, ÜberlieferungGestermann, Louise, Die Überlieferung ausgewählter Texte altägyptischer Totenliteratur („Sargtexte“) in spätzeitlichen Grabanlagen, I-II. ÄA 68. 2005. Gestermann, Überlieferung IGestermann, Louise, Die Überlieferung ausgewählter Texte altägyptischer Totenliteratur ("Sargtexte") in spätzeitlichen Grabanlagen, Teil I: Text. ÄA 68. 2005. Gestermann, Überlieferung IIGestermann, Louise, Die Überlieferung ausgewählter Texte altägyptischer Totenliteratur („Sargtexte“) in spätzeitlichen Grabanlagen, Teil II: Textanhang. ÄA 68. 2005. - Gestermann, ÜberlieferungGestermann, Louise, Die Überlieferung ausgewählter Texte altägyptischer Totenliteratur („Sargtexte“) in spätzeitlichen Grabanlagen, I-II. ÄA 68. 2005. Getrennte WegeGetrennte Wege? Kommunikation, Raum und Wahrnehmung in der alten Welt. Hrsg. von Luther, Andreas, Wiesehöfer, Josef, Rollinger, Robert. 2007. GGMMüller, Karl, Geographi Graeci Minores. 1855-1861. - Ghalioungui, BIFAO 68, 1969Ghalioungui, Paul, The 'smr' animal of the Ebers papyrus. In: BIFAO 68, 1969, 39-40. Giddy, Egyptian OasesGiddy, Lisa L., Egyptian Oases. Bahariya, Dakhla, Farafra and Kharga During Pharaonic Times. 1987. Gilbert, PoésieGilbert, Pierre, La poésie égyptienne. 1943, 1949 (2. verb. Aufl.). - Gilula, JNES 36, 1977Gilula, Mordechai, Egyptian nḥt = Coptic naḥte "to believe". In: JNES 36, 1977, 295-296. + Gill, PaweremGill, Ann-Katrin, The Hieratic Ritual Books of Pawerem (P. BM EA 10252 and P. BM EA 10081) from the Late 4th Century BC. SSR 25. 2019. (new) GiornaleBotti, Giuseppe, Peet, Thomas Eric, Il Giornale della Necropoli di Tebe. 1928. - Gitton, BIFAO 76, 1976Gitton, M., La résiliation d'une fonction religieuse: nouvelle interprétation de la stèle de donation d'Ahmès Néfertary. In: BIFAO 76, 1976, 65-89. - Gitton, BIFAO 79, 1979Gitton, M., Nouvelles remarques sur la stèle de donation d'Ahmes Néfertary. In: BIFAO 79, 1979, 327-331. Gitton, Divines épousesGitton, M., Les divines épouses de la 18e dynastie. ALUB 306. 1984. - Gitton, L'Épouse du DieuGitton, M., L'Épouse du Dieu Ahmes Nèfertary. ALUB 15. 1981. - Gitton, OLP 8, 1977Gitton, M., Nefertary II. In: OLP 8, 1977, 125-127. - Giveon, BASOR 216, 1974Giveon, Raphael, A second relief of Sekhemkhet in Sinai. In: BASOR 216, 1974, 17-20. - Giveon, BASOR 226, 1977Giveon, Raphael, Inscriptions of Sahurē' and Sesostris I from Wadi Kharig (Sinai). In: BASOR 226, 1977, 61-63. + Gitton, L’Épouse du DieuGitton, M., L’Épouse du Dieu Ahmes Nèfertary. ALUB 15. 1981. Giveon, ShosouGiveon, Raphael, Les bédouins Shosou des documents Égyptiens. 1971. Giveon, Tel Aviv 10, 1983Giveon, Raphael, Two Officials of the Old Kingdom at Magharah (Southern Sinai). In: Tel Aviv 10, 1983, 49-51. Gizeh and RifehPetrie, William M. Flinders, Gizeh and Rifeh. BSAE 13. 1907. Glanville, ArchiveGlanville, Stephen Ranulph Kingdon, Catalogue of the Demotic Papyri in the British Museum, I: A Theban Archive of the Reign of Ptolemy I, Soter. 1939. - Glanville, in: Fs GriffithGlanville, Stephen Ranulph Kingdon, A Demotic Contract of the Third Century from the Fayyum (Demot. P. Brit. Mus. 10616). In: Fs Griffith, 1932, 152-160. - Glanville, JEA 12, 1926Glanville, Stephen Ranulph Kingdon, A New Duplicate of the Hood Papyrus. In: JEA 12, 1926, 171-75. - Glanville, JEA 14, 1928Glanville, Stephen Ranulph Kingdon, The letters of Aaḥmōse of Peniati. In: JEA 14, 1928, 294-312. - Glanville, ZÄS 66, 1932Glanville, Stephen Ranulph Kingdon, Records of a Royal Dockyard of the Ttime of Thuthmosis III: Papyrus British Museum 10056. In: ZÄS 68, 1932, 7-41. GleaningsGleanings from Deir el-Medîna. Hrsg. von Demarée, Robert Johannes, Janssen, Jacobus (Jac) Johannes. EgUit 1. 1982. - Gnirs, in: Fs JungeLoprieno-Gnirs, Andrea, Das Motiv des Bürgerkriegs in Merikare und Neferti. Zur Literatur der 18. Dynastie. In: Fs Junge, 2006, 207-265. - Godron, BIFAO 56, 1957Godron, Gérard, Les oiseaux ⲙⲉ et mꜣš. In: BIFAO 56, 1957, 19-20. - Goebs, in: Textes des Pyramides et Textes des Sarcophages.Goebs, Katja, The Cannibal Spell: continuity and change in the Pyramid Text and Coffin Text versions. In: Textes des Pyramides et Textes des Sarcophages, 2004, 143-173. - Goedicke, ÄL 7, 1998Goedicke, Hans, Khu-u-Sobek's Fight in "Asia". In: ÄL 7, 1998, 33-37. Goedicke, Amenemhet IGoedicke, Hans, Studies in "The Instructions of King Amenemhet I for his Son", 2 Vols. VA Suppl. 2. 1988. - Goedicke, BES 14, 2000Goedicke, Hans, *m-ḥb. An Untiring Percussionist? In: BES 14, 2000, 19-31. - Goedicke, BES 6, 1984Goedicke, Hans, Comments on the Satrap Stela. In: BES 6, 1984, 33-54. - Goedicke, CdE 43, 1968Goedicke, Hans, The Capture of Joppa. In: CdE 1968, 43, 219-233. - Goedicke, CdE 45, 1970Goedicke, Hans, The Story of the Herdsman. In: CdE 45, 1970, 244-266. Goedicke, DisputeGoedicke, Hans, The Report about the Dispute of a Man with his Ba. Papyrus Berlin 3024. 1970. - Goedicke, in: Fs Brunner-TrautGoedicke, Hans, The bright eye of Horus: Pyr. spell 204. In: Fs Brunner-Traut, 1992, 95-102. - Goedicke, in: Fs KákosyGoedicke, Hans, Imn nb nswt tꜢwy. In: Fs Kákosy, 1992, 197-203. - Goedicke, in: Fs Mus. BerlinGoedicke, Hans, The Berlin Leather Roll (P Berlin 3029). In: Fs Mus. Berlin, 1974, 87-104. - Goedicke, in: Gs OttoGoedicke, Hans, The Date of the "Antef-Song". In: Gs Otto, 1977, 185-196. - Goedicke, JARCE 25, 1988Goedicke, Hans, The High Price of Burial. In: JARCE 25, 1988, 195-199. - Goedicke, JARCE 3, 1964Goedicke, Hans, Some remarks on stone quarrying in the Egyptian Middle Kingdom. In: JARCE 3, 1964, 43-50. - Goedicke, JARCE 7, 1968Goedicke, Hans, Remarks on the Hymns to Sesostris III. In: JARCE 7, 1968, 23-26. - Goedicke, JEA 42, 1956Goedicke, Hans, King ḥwḏfꜢ? In: JEA 42, 1956, 50-53. - Goedicke, JEA 48, 1962Goedicke, Hans, A Neglected Wisdom Text. In: JEA 48, 1962, 25-35. - Goedicke, JNES 19, 1960Goedicke, Hans, The Inscription of Ḏmỉ. In: JNES 19, 1960, 288-291. - Goedicke, JNES 55, 1996Goedicke, Hans, The Thutmosis I Inscription near Tomâs. In: JNES 55, 1996, 161-176. Goedicke, KadeshPerspectives on the battle of Kadesh. Hrsg. von Goedicke, Hans. 1985. Goedicke, Kamose and AhmoseGoedicke, Hans, Studies about Kamose and Ahmose. 1995. Goedicke, Königl. DokumenteGoedicke, Hans, Königliche Dokumente aus dem Alten Reich. ÄA 14. 1967. - Goedicke, MDAIK 22, 1967Goedicke, Hans, Ein Brief aus dem Alten Reich (Pap. Boulaq 8). In: MDAIK 22, 1967, 1-8. Goedicke, PaleographyGoedicke, Hans, Old Hieratic Paleography. 1988. Goedicke, Pi(ankh)yGoedicke, Hans, Pi(ankh)y in Egypt. A Study of the Pi(ankh)y Stela. 1998. Goedicke, Protocol of NeferytGoedicke, Hans, The Protocol of Neferyt. (The Prophecy of Neferti). 1977. Goedicke, QuarrelGoedicke, Hans, The Quarrel of Apophis and Seqenenre'. 1986. - Goedicke, RdE 38, 1987Goedicke, Hans, Menna's lament. In: RdE 38, 1987, 63-80. - Goedicke, RdE 42, 1991Goedicke, Hans, Egyptian Military Actions in "Asia" in the Middle Kingdom. In: RdE 42, 1991, 89-94. Goedicke, RechtsinschriftenGoedicke, Hans, Die privaten Rechtsinschriften aus dem Alten Reich. WZKM Beihefte 5. 1970. - Goedicke, SAK 14, 1987Goedicke, Hans, Papyrus Anastasi VI 51-61. In: SAK 14, 1987, 83-98. - Goedicke, SAK 30, 2002Goedicke, Hans, The Perimeter of Geographical Awareness in the Fourth Dynasty and the Significance of ḥꜢw-nbwt in the Pyramid Texts. In: SAK 30, 2002, 121-136. Goedicke, Studies in the Hekanakhte PapersGoedicke, Hans, Studies in the Hekanakhte Papers. 1984. - Goedicke, VA 4, 1988 (1)Goedicke, Hans, Readings III-IV, Papyrus Ebers 25, 3-8; IV, Urk. VII 35,8-15. In: VA 4, 1988, 33-42. - Goedicke, VA 4, 1988 (2)Goedicke, Hans, Readings V: Sinuhe B 10. In: VA 4, 1988, 201-206. Goedicke, WenamunGoedicke, Hans, The Report of Wenamun. 1975. - Goedicke, ZÄS 115, 1988Goedicke, Hans, Papyrus Boulaq 8 Reconsidered. In: ZÄS 115, 1988, 136-146. - Gohary, ASAE 71, 1987Gohary, Said, The remarkable career of a police officer. In: ASAE 71, 1987, 97-100. - Goldwasser, in: Language and culture in the Near EastGoldwasser, Orly, On the conception of the poetic form - a love letter to a departed wife: ostracon Louvre 698. In: Language and culture in the Near East. IOS 15. 1995. 191-205. - Goldwasser, LingAeg 1, 1991Goldwasser, Orly, On Dynamic Canonicity in Late-Egyptian. The Literary Letter and the Personal Prayer. In: LingAeg 1, 1991, 129-141. Goldwasser, MetaphorGoldwasser, Orly, From Icon to Metaphor. Studies in the Semiotics of Hieroglyphs. OBO 142. 1995. Goldwasser, Prophets, Lovers and GiraffesGoldwasser, Orly, Prophets, Lovers and Giraffes. Wor(l)d Classification in Ancient Egypt. GOF 38.3. 2002. - Golénischeff, in: Fs RozenGolénischeff, Wladimir, Гiератическiй папирус из коллекцiи В. Голенищева, содержащiй отчет о путешествiи Уну-Амона в Финикiю [Hieratischer Papyrus aus der Sammlung von W. Golénischeff, der einen Bericht über die Reise von Wen-Amon nach Phönizien enthält]. In: Fs Rozen, 1897, 45-52. - Golénischeff, RecTrav 21, 1899Golénischeff, Wladimir, Papyrus hiératique de la collection W. Golénischeff contenant la description du voyage de l'Égyptien Ounou-Amon en Phénicie. In: RecTrav 21, 1899, 74-102, 227. Gomaà, BesiedlungGomaà, Farouk, Die Besiedlung Ägyptens während des Mittleren Reiches. TAVO 66/1-66/2. 1986-1987. Gomaà, Erste ZwZGomaà, Farouk, Ägypten während der Ersten Zwischenzeit. TAVO 27. 1980. - Gomaà, MDAIK 57, 2001Gomaà, Farouk, Särge und andere Funde aus der Nekropole der Falkenstadt. In: MDAIK 57, 2001, 35-57. Goneim, Horus Sekhem-khetGoneim, Mohammed Zakaria, Horus Sekhem-khet. The Unfinished Step Pyramid at Saqqara. Excav. Saqq. 1957. Görg, BeziehungenGörg, Manfred, Die Beziehungen zwischen dem Alten Israel und Ägypten. Von den Anfängen bis zum Exil. Erträge 290. 1997. - Görg, GM 43, 1981Görg, Manfred, Der Hahn in ägyptischer Literatur? In: GM 43, 1981, 27-28. Görg, Gott-König-RedenGörg, Manfred, Gott-König-Reden in Israel und Ägypten. BWANT 105. 1975. - Görg, ZÄS 106, 1979Görg, Manfred, Ein vermeintliches Fremdwort. In: ZÄS 106, 1979, 175-176. Gorre, Relations du clergéGorre, Gilles, Les relations du clergé égyptien et des Lagides d’après les sources privées. Stud. Hellen. 45. 2009. - Goyon, BIFAO 65, 1967Goyon, Jean-Claude, Le cérémonial de glorification d'Osiris du papyrus du Louvre I. 3079 (colonnes 110 à 112). In: BIFAO 65, 1967, 89-156. - Goyon, BIFAO 69, 1971Goyon, Georges, Les navires de transport de la chaussée monumentale d’Ounas. In: BIFAO 69, 1971, 11-41. - Goyon, BIFAO 70, 1970Goyon, Jean-Claude, L'origine et le sens du titre tardif 𓅩𓂋‌𓎛‌𓅱𓂝 et variantes. In: BIFAO 70, 1971, 75-81. - Goyon, BIFAO 74, 1974Goyon, Georges, Kerkasôre et l’ancien observatoire d’Eudoxe. In: BIFAO 74, 1974, 135-147. - Goyon, BIFAO 75, 1975Goyon, Jean-Claude, Textes mythologiques: II. "Les révélations du mystère des quatre boules". In: BIFAO 75, 1975, 349-399. - Goyon, Confirmation PlanchesGoyon, Jean-Claude, Confirmation du pouvoir royal au nouvel an [Brooklyn Museum 47.218.50]. Planches. WM 7. 1974. Goyon, ConfirmationGoyon, Jean-Claude, Confirmation du pouvoir royal au nouvel an [Brooklyn Museum Papyrus 47.218.50]. BdE 52. 1972. + Goyon, Confirmation PlanchesGoyon, Jean-Claude, Confirmation du pouvoir royal au nouvel an [Brooklyn Museum 47.218.50]. Planches. WM 7. 1974. Goyon, HammamatGoyon, Georges, Nouvelles inscriptions rupestres du Wadi Hammamat. 1957. - Goyon, in: Fs DaumasGoyon, Jean-Claude, Le feu nouveau du jour de l'an à Dendara et Karnak. In: Fs Daumas, 1986, 331-344. - Goyon, in: Fs Westendorf 1Goyon, Jean-Claude, Une identification possible de la plante hdn des anciens Égyptiens. In: Fs Westendorf 1, 1984, 241-250. - Goyon, in: Livre du CentenaireGoyon, Jean-Claude, Note pour servir à la connaissance des procédés tinctoriaux de l'ancienne Égypte. In: Livre du Centenaire, 1980, 25-35. - Goyon, Kemi 19, 1969Goyon, Jean-Claude, Textes mythologiques, I: "Le livre de protéger la barque du dieu". In: Kêmi 19, 1969, 23-64. Goyon, Les dieux-gardiensGoyon, Jean-Claude, Les dieux-gardiens et la genèse des temples (d’après les textes de l’époque gréco-romaine). Les soixante d’Edfou et les soixante-dix-sept dieux de Pharbaetos. BdE 93. 1985. - Goyon, Memnonia 1, 1990-1991Goyon, Jean-Claude, Penrê, conducteur des travaux au Ramesseum, et son étrange histoire. In: Memnonia 1, 1990-1991, 53-65. Goyon, Pap. ImouthèsGoyon, Jean-Claude, Le Papyrus d’Imouthès Fils de Psintaès au Metropolitan Museum of Art de New-York (Pap. MMA 35.9.21). 1999. Goyon, ProphylaxieGoyon, Jean-Claude, Le recueil de propylaxie contre les agressions des animaux venimeux de Musée de Brooklyn, Papyrus Wilbour 47.218.138. SSR 5. 2012. - Goyon, RdE 20, 1968Goyon, Jean-Claude, Le cérémonial pour faire sortir Sokaris: Papyrus Louvre I. 3079, col. 112-114. In: RdE 20, 1968, 63-96. - Goyon, Recueil de prophylaxieGoyon, Jean-Claude, Le recueil de prophylaxie contre les agressions des animaux venimeux du Musée de Brooklyn: papyrus Wilbour 47.218.138. SSR 5. 2012. - Goyon, Rituels funérairesGoyon, Jean-Claude, Rituels funéraires de l'ancienne Égypte. Le rituel de l'embaumement, le rituel de l'ouverture de la bouche, les livres des respirations. 1972. - Gozzoli, JEA 95, 2009Gozzoli, Roberto B., Kawa V and Taharqo's byꜣwt: some aspects of Nubian royal ideology. In: JEA 95, 2009, 235-248. + Goyon, Rituels funérairesGoyon, Jean-Claude, Rituels funéraires de l’ancienne Égypte. Le rituel de l’embaumement, le rituel de l’ouverture de la bouche, les livres des respirations. 1972. Graefe, Doppelgrabanlage MGraefe, Erhart, Die Doppelgrabanlage "M" aus dem Mittleren Reich unter TT 196 im Tal el-Asasif in Theben-West. AegMonast 5. 2007. - Graefe, GM 166, 1998Graefe, Erhart, Die Adoption ins Amt der ḥzwt njwt ẖnw nj jmnw und der šmswt dwꜣt-nṯr (zu Ritners Artikel in GM 164, 1998, 85ff). In: GM 166, 1998, 109-112. - Graefe, GM 18, 1975Graefe, Erhart, Der Drogenname šwt-Nmtj (zu Berlev's Aufsatz in der Festschrift Korostovtsev 1975). In: GM 18, 1975, 15-20. Graefe, GottesgemahlinGraefe, Erhart, Untersuchungen zur Verwaltung und Geschichte der Institution der Gottesgemahlin des Amun vom Beginn des neuen Reiches bis zur Spätzeit. ÄA 37. 1981. Graefe, IbiGraefe, Erhart, Das Grab des Ibi, Obervermögenverwalters der Gottesgemahlin des Amun (Thebanisches Grab Nr. 36). 1990. - Graefe, in: Aspekte der spätägyptischen ReligionGraefe, Erhart, König und Gott als Garanten der Zukunft (Notwendiger Ritualvollzug neben göttlicher Selbstbildung) nach Inschriften der griechisch-römischen Tempel: mit einem Anhang: eine Hypothese zur Erklärung der sogenannten Pektoralopferszenen und dem Verhältnis zwischen Ritualgeschehen und bildlicher Darstellung in den späten Tempeln. In: Aspekte der spätägyptischen Religion, 1979, 47-78. - Graefe, in: Fs Westendorf 2Graefe, Erhart, Das Ritualgerät šbt/wnšb/wtṯ. In: Fs Westendorf I, 1984, 895-905. - Graefe, in: Tombs of the South Asasif NecropolisGraefe, Erhart, Second Report on Work on the Fragments of the Stundenritual (Ritual of the Hours of the Day) in TT 223. In: Tombs of the South Asasif Necropolis, 2017, 91-95. - Graefe, MDAIK 27, 1971Graefe, Erhart, Die Versiegelung der Naostür (die bisherige falsche Erklärung des Schriftzeichens 𓍬). In: MDAIK 27, 1971, 147-155. Graefe, PadihorresnetGraefe, Erhart, Das Grab des Padihorresnet, Obervermögenverwalters der Gottesgemahlin des Amun (Thebanisches Grab Nr. 196). MonAeg 9. 2003. - Graefe, PAM 27/2, 2018Graefe, Erhart, The Ritual of the Hours of the Day on the inner vault of the qrsw-coffin of Nes(pa)qashuty from Deir el-Bahari. In: PAM Suppl. 27/2, 2018, 143-182. - Graefe, SAK 7, 1979Graefe, Erhart, wnḫ "lösen" (zu pHarris 500, 5.12 - 6.2 und pD'Orb. 5.1-2). In: SAK 7, 1979, 53-63. Graefe, UntersuchungenGraefe, Erhart, Untersuchungen zur Wortfamilie bj3-. 1971. - Graefe/Wassef, MDAIK 35, 1979Graefe, Erhart, Wassef, Mohga, Eine fromme Stiftung für den Gott Osiris-der-seinen-Anhänger-in-der-Unterwelt-rettet aus dem Jahre 21 des Taharqa (670 v. Chr.). In: MDAIK 35, 1979, 103-118. Graindorge-Héreil, SokarGraindorge, Catherine, Le dieu Sokar à Thèbes au Nouvel Empire. GOF 28. 1994. - Grajetzki, GM 156, 1997Grajetzki, Wolfram, Bemerkungen zu den Bürgermeistern (ḥꜣtj-ꜥ) von Qaw el-Kebir im Mittleren Reich. In: GM 156, 1997, 55-62. Grajetzki, Middle KingdomGrajetzki, Wolfram, The Middle Kingdom of Ancient Egypt. History, Archaeology and Society. 2006. Grajetzki, ZentralverwaltungGrajetzki, Wolfram, Die höchsten Beamten der ägyptischen Zentralverwaltung zur Zeit des Mittleren Reiches. Prosopographie, Titel und Titelreihen. Achet 2. 2000. Grallert, Bau- und RestaurierungsinschriftenGrallert, Silke, Bauen - Stiften - Weihen. Ägyptische Bau- und Restaurierungsinschriften von den Anfängen bis zur 30. Dynastie. ADAIK 18. 2001. - Grams, SAK 46, 2017Grams, Alina, Der Gefahrenkatalog in den Oracular Amuletic Decrees. In: SAK 46, 2017, 55-100. Grandet, Catalogue IXGrandet, Pierre, Catalogue des ostraca hiératiques non littéraires de Deîr el-Médînéh, Tome IX, Nos. 831-1000. DFIFAO 41. 2003. - Grandet, ContesGrandet, Pierre, Contes de l'Égypte ancienne. 1998. - Grandet, HymnesGrandet, Pierre, Hymnes de la religion d'Aton (Hymnes du XIVe siècle avant J.-C.). 1995. - Grandet, in: Fs VernusGrandet, Pierre, Un document relatif aux grèves de Deîr el-Médînéh en l'an 29 de Ramsès III et un fragment de l'Enseignement d'Amennakhté, §39-48: O. IFAO 1255 A-B (ONL 514 A-B). In: Fs Vernus, 2016, 327-359. + Grandet, ContesGrandet, Pierre, Contes de l’Égypte ancienne. 1998. + Grandet, HymnesGrandet, Pierre, Hymnes de la religion d’Aton (Hymnes du XIVe siècle avant J.-C.). 1995. Grandet, Pap. Harris IGrandet, Pierre, Le Papyrus Harris I (BM 9999). BdE 109/1-2. 1994. Grapow, Äg. TexteGrapow, Hermann, Sprachliche und schriftliche Formung ägyptischer Texte. LÄS 7. 1936. Grapow, Bildl. AusdrückeGrapow, Hermann, Die bildlichen Ausdrücke des Ägyptischen. Vom Denken und Dichten einer altorientalischen Sprache. 1924. - Grapow, MIO 1, 1953Grapow, Hermann, Der Liederkranz zu Ehren Königs Sesostris des Dritten aus Kahun. In: MIO 1, 1953, 189-209. - Grapow, ZÄS 52, 1914Grapow, Hermann, Zwei Fragmente einer Handschrift des Nilhymnus in Turin. In: ZÄS 52, 1914, 103-106. - Grapow, ZÄS 71, 1935Grapow, Hermann, Bemerkungen zum Papyrus Ebers als Handschrift. In: ZÄS 71, 1935, 160-164. - Grapow, ZÄS 79, 1954Grapow, Hermann, Beiträge zur Untersuchung des Stils ägyptischer Lieder. In: ZÄS 79, 1954, 17-27. Gräßler, Konzepte des AugesGräßler, Nadine, Konzepte des Auges im alten Ägypten. 2017. - Grdseloff, ASAE 45, 1947Grdseloff, Bernhard, Sur deux passages de la nouvelle stèle d'Aménophis II trouvée à Memphis. In: ASAE 45, 1947, 107-120. - Grdseloff, BernhardGrdseloff, Bernhard, Remarques concernant l'opposition à un rescit du vizir. In: ASAE 448, 1948, 505-512. - Grdseloff, JEA 35, 1949Grdseloff, Bernhard, A new Middle Kingdom letter from el-Lāhūn. In: JEA 35, 1949, 59-62. - Green, in: Fs FairmanGreen, M. A., bAw expressions in Late Egyptian. In: Fs Fairman, 1979, 107-115. - Green, PSBA 31, 1909Green, F. W., Notes on some inscriptions in the Etbai district. In: PSBA 31, 1909, 318-322. Grenier, Museo Gregoriano EgizioGrenier, Jean-Claude, Museo Gregoriano Egizio. Guide Cataloghi Musei Vaticani 2. 1993. - Greppin, CdE 68, 1993Greppin, John A. C., A note on the etymology of Old Egyptian trr. In: CdE 68, 1993, 9-11. Grieshaber, LexikographieGrieshaber, Frank, Lexikographie einer Landschaft, Beiträge zur historischen Topographie Oberägyptens zwischen Theben und Gabal as-Silsila anhand demotischer und griechischer Quellen. GOF 45. 2004. Grieshammer, JenseitsgerichtGrieshammer, Reinhard, Das Jenseitsgericht in den Sargtexten. ÄA 20. 1970. - Griffin, in: Tombs of the South Asasif NecropolisGriffin, Kenneth, Toward a Better Understanding of the Ritual of the Hours of the Night (Stundenritual). In: Tombs of the South Asasif Necropolis, 2017, 97-134. - Griffin, PAM 27/2, 2018Griffin, Kenneth, The Ritual of the Hours of the Night on the coffins of Heresenes and Nespaqashuty from Deir el-Bahari. In: PAM Suppl. 27/2, 2018, 183-224. Griffith, Adler PapyriGriffith, Francis Llewellyn, The Adler Papyri. 1939. + Griffith, Cat. of Demotic Pap.Griffith, Francis Llewellyn, Catalogue of the Demotic Papyri in the John Rylands Library, Manchester. 3 Vol. in 2. 1909. Griffith, Cat. of Demotic Pap. 1/2.Griffith, Francis Llewellyn, Catalogue of the Demotic Papyri in the John Rylands Library, Manchester. 1/2. Atlas of Facsimiles, Hand-Copies of the earlier documents (nos I - IX). 1909. Griffith, Cat. of Demotic Pap. 3.Griffith, Francis Llewellyn, Catalogue of the Demotic Papyri in the John Rylands Library, Manchester. 3. Key-List, Translations, Commentaries and Indices. 1909. - Griffith, Cat. of Demotic Pap.Griffith, Francis Llewellyn, Catalogue of the Demotic Papyri in the John Rylands Library, Manchester. 3 Vol. in 2. 1909. Griffith, DodecaschoenusGriffith, Francis Llewellyn, Catalogue of the Demotic Graffiti of the Dodecaschoenus. 1937. - Griffith, JEA 12, 1926 (1)Griffith, Francis Llewellyn, Stela in honour of Amenophis III and Taya, from Tell el-'Amarnah. In: JEA 12, 1926, 1-2. - Griffith, JEA 12, 1926 (2)Griffith, Francis Llewellyn, The Teaching of Amenophis the Son of Kanakht. Papyrus B.M. 10474. In: JEA 12, 1926, 191-231. - Griffith, JEA 13, 1927Griffith, Francis Llewellyn, The Abydos decree of Seti I at Nauri. In: JEA 13, 1927, 193-208. - Griffith, JEA 5, 1918Griffith, Francis Llewellyn, The jubilee of Akhenaton. In: JEA 5, 1918, 61-63. Griffith, pKahun and GurobGriffith, Francis Llewellyn, Hieratic Papyri from Kahun and Gurob (Principally of the Middle Kingdom). 1898. - Griffith, PSBA 11, 1889Griffith, Francis Llewellyn, Notes on a tour in Upper Egypt. In: PSBA 11, 1889, 228-234. - Griffith, PSBA 14, 1892Griffith, Francis Llewellyn, Fragments of Old Egyptian Stories. From the British Museum and Amherst Collections. In: PSBA 14, 1892, 451-472. - Griffith, PSBA 18, 1896Griffith, Francis Llewellyn, Stela of Mentuhetep Son of Hepy. In: PSBA 18, 1896, 195-204. Griffith, RylandsGriffith, Francis Llewellyn, Catalogue of the Demotic Papyri in the John Rylands Library Manchester. 1909. - Griffith, ZÄS 34, 1896Griffith, Francis Llewellyn, The Millingen Papyrus (Teaching of Amenemhat). With Note on the Compounds Formed with Substantivised n. In: ZÄS 34, 1896, 35-51. Griffiths, Conflict of Horus and SethGriffiths, John Gwyn, The Conflict of Horus and Seth from Egyptian and Classical Sources. A Study in Ancient Mythology. 1960. - Grimal, BIFAO 99, 1999Grimal, Nicolas-Christophe, Travaux de l'Institut français d'archéologie orientale en 1998-1999. In: BIFAO 99, 1999, 447-566. - Grimal, Critères de datation stylistiquesLes critères de datation stylistiques à l'ancien empire. Hrsg. von Grimal, Nicolas-Christophe. BdE 120. 1998. + Grimal, Critères de datation stylistiquesLes critères de datation stylistiques à l’ancien empire. Hrsg. von Grimal, Nicolas-Christophe. BdE 120. 1998. Grimal, Quatre stèlesGrimal, Nicolas-Christophe, Quatre stèles napatéennes au musée du Caire, JE 48863-48866, Textes et Indices. 1981. Grimal, Stèle triomphaleGrimal, Nicolas-Christophe, La stèle triomphale de Pi(’ankh)y au Musée du Caire, JE 48862 et 47086-47089. MIFAO 105. 1981. - Grimal/Larché, KARNAK 12, 2007Grimal, Nicolas-Christophe, Larché, François, Karnak, 1998-2004. In: KARNAK 12, 2007, 7-60. Grimm, FestkalenderGrimm, Alfred, Die altägyptischen Festkalender in den Tempeln der griechisch-römischen Epoche. ÄUAT 15. 1994. - Grimm, in: Gs BartaGrimm, Alfred, kmjt-Texte. Zwei Ostraca littéraires d'un type particulier der Staatlichen Sammlung Ägyptischer Kunst München. In: Gs Barta, 1995, 165-177. - Grimm, in: Wissenswelten (Ausstellungskat.)Grimm, Alfred, Den Hieroglyphen auf der Spur. Särge, Stelen und Gelehrte - und Ludwig van Beethoven. In: Wissenswelten (Ausstellungskat.), 2009, 232-244. - Grimm, JEA 75, 1989Grimm, Alfred, Calembour, Trommelwettstreit oder Kampf auf Leben und Tod in der autobiographischen Steleninschrift des Emhab? In: JEA 75, 1989, 220-224. Grimm/Schoske, Beginn der ZeitGrimm, Alfred, Schoske, Sylvia, Am Beginn der Zeit: Ägypten in der Vor- und Frühzeit. SÄS 9. 2000. Grimm/Schoske, Stimmen (Ausstellungskat.)Grimm, Alfred, Schoske, Sylvia, Stimmen vom Nil. Altägypten im Spiegel seiner Texte. Ausstellung 12.12.2002-18.05.2003 im Staatl. Museum Ägyptischer Kunst, München. 2002. Grimm/Schoske, Zeichen (Ausstellungskat.)Grimm, Alfred, Schoske, Sylvia, Im Zeichen des Mondes. Ägypten zu Beginn des Neuen Reiches. Sonderausstellung Staatliche Sammlung Ägyptischer Kunst München, 20.2.-16.5.1999. 1999. - Grmek, Lijec. Vjesn. 117, 1995Grmek, Mirko Dražen, Zagrebački etruščanski obrednik i staroegipatski medicinski papirus (The Zagreb Etruscan Ceremonial Fragment and an Ancient Egyptian Medical Papyrus). In: Lijec. Vjesn. 117, 1995, 194-196. - Groll, IOS 4, 1974Groll, Sarah Israelit, A literary Late Egyptian stp.f formation indicating the present simple tense. In: IOS 4, 1974, 12-13. Groll, PatternsGroll, Sarah Israelit, Non-Verbal Sentence Patterns in Late Egyptian. 1967. + Groll/Stein/Bogot, Papers for DiscussionPapers for discussion, presented by the Department of Egyptology, Hebrew University, Jerusalem. Hrsg. von Groll, Sarah Israelit, Stein, Emily H., Bogot, Frances. 1982-1985. Groll/Stein/Bogot, Papers for Discussion 1Papers for discussion, presented by the Department of Egyptology, Hebrew University, Jerusalem. Volume I: 1981-1982. Hrsg. von Groll, Sarah Israelit, Stein, Emily H. 1982. Groll/Stein/Bogot, Papers for Discussion 2Papers for discussion, presented by the Department of Egyptology, Hebrew University, Jerusalem. Volume II: 1983-1985. Hrsg. von Groll, Sarah Israelit, Bogot, Frances. 1985. - Groll/Stein/Bogot, Papers for DiscussionPapers for discussion, presented by the Department of Egyptology, Hebrew University, Jerusalem. Hrsg. von Groll, Sarah Israelit, Stein, Emily H., Bogot, Frances. 1982-1985. Grumach, AmenopeGrumach, Irene, Untersuchungen zur Lebenslehre des Amenope. MÄS 23. 1972. + Grundriß der MedizinDeines, Hildegard von, Grapow, Hermann, Westendorf, Wolfhart, Grundriß der Medizin der alten Ägypter. 1954 ff. Grundriß der Medizin 1Grapow, Hermann, Anatomie und Physiologie. 1954. Grundriß der Medizin 2Grapow, Hermann, Von den medizinischen Texten. 1955. Grundriß der Medizin 3Grapow, Hermann, Kranker, Krankheit und Arzt. 1956. + Grundriß der Medizin 4Deines, Hildegard von, Grapow, Hermann, Westendorf, Wolfhart, Übersetzung der medizinischen Texte, Bd. 1-2. 1958. Grundriß der Medizin 4, 1Deines, Hildegard von, Grapow, Hermann, Westendorf, Wolfhart, Übersetzung der medizinischen Texte. Vol. 1 Übersetzung. 1958. Grundriß der Medizin 4, 2Deines, Hildegard von, Grapow, Hermann, Westendorf, Wolfhart, Übersetzung der medizinischen Texte. Vol. 2 Erläuterungen. 1958. - Grundriß der Medizin 4Deines, Hildegard von, Grapow, Hermann, Westendorf, Wolfhart, Übersetzung der medizinischen Texte, Bd. 1-2. 1958. Grundriß der Medizin 5Grapow, Hermann, Die medizinischen Texte in hieroglyphischer Umschreibung autographiert. 1958. Grundriß der Medizin 7, 2Deines, Hildegard von, Westendorf, Wolfhart, Wörterbuch der medizinischen Texte. Zweite Hälfte. 1962. Grundriß der Medizin 8Westendorf, Wolfhart, Grammatik der medizinischen Texte. 1962. Grundriß der Medizin 9Deines, Hildegard von, Grapow, Hermann, Westendorf, Wolfhart, Ergänzungen. 1973. - Grundriß der MedizinDeines, Hildegard von, Grapow, Hermann, Westendorf, Wolfhart, Grundriß der Medizin der alten Ägypter. 1954 ff. - Grunert, GM 176, 2000Grunert, Stefan, Ein Beispiel von "Berufe Raten" seit dem Alten Reich. In: GM 176, 2000, 59-62. - Grunert, GM 199, 2004Grunert, Stefan, Zum Titel des Irenre im Grab des Hetepniptah: ein Kurzbeitrag zur Bedeutung von Abklatschen. In: GM 199, 2004, 5-6. - Grunert, GM 223, 2009Grunert, Stefan, Vertrackt, aber nicht "bekackt". In: GM 223, 2009, 63-68. - Grunert, in: Fs Endesfelder, Priese, Reineke, WenigGrunert, Stefan, Zum Sargschlittenzug auf der Nordwand im Grab des Idu (G 7102). In: Fs Endesfelder, Priese, Reineke, Wenig, 2001, 171-186. - Grunert, in: Textcorpus und WörterbuchGrunert, Stefan, Die Berliner Textdatenbank. Aktueller Stand und Perspektiven. In: Textcorpus und Wörterbuch, 1999, 51-71. Grunert, Kodex HermopolisGrunert, Stefan, Der Kodex Hermopolis und ausgewählte private Rechtsurkunden aus dem ptolemäischen Ägypten. 1982. - Grunert, SAK 30, 2002Grunert, Stefan, Nicht nur sauber, sondern rein: rituelle Reinigungsanweisungen aus dem Grab des Anchmahor in Saqqara. In: SAK 30, 2002, 137-151. - Grunert, SAK 37, 2008Grunert, Stefan, Nur für Erwachsene - political correctness auf Altägyptisch? Neue Lesungen und Interpretationen der biographischen Inschrift des Gaufürsten Henqu. In: SAK 37, 2008, 131-146. Gs AldredChief of Seers. Egyptian Studies in Memory of Cyril Aldred. Hrsg. von Goring, Elizabeth, Reeves, Carl Nicholas, Ruffle, John. 1997. Gs BaerFor his Ka. Essays Offered in Memory of Klaus Baer. Hrsg. von Silverman, David P. SAOC 55. 1994. Gs BartaGedenkschrift für Winfried Barta. Hrsg. von Kessler, Dieter, Schulz, Regine. MÄU 4. 1995. Gs BehrensÄgypten im afro-orientalischen Kontext, Aufsätze zur Archäologie, Geschichte und Sprache eines unbegrenzten Raumes, Gedenkschrift Peter Behrens. Hrsg. von Mendel, Daniela, Claudi, Ulrike. 1991. + Gs BellAncient Egypt, the Aegean, and the Near East. Studies in Honour of Martha Rhoads Bell. Hrsg. von Phillips, Jacke, Bell, Lanny David, Williams, Bruce B., Hoch, James E., Leprohon, Ronald J. 1997. (new) Gs BerlevDiscovering Egypt from the Neva. The Egyptological legacy of Oleg D. Berlev. Hrsg. von Quirke, Stephen. 2003. Gs EndesfelderÄgypten begreifen. Erika Endesfelder in memoriam. Hrsg. von Feder, Frank, Sperveslage, Gunnar, Steinborn, Florian. IBAES 19. 2017. Gs GolénischeffDrevnij Egipet. Sbornik statej; à la mémoire de Wladimir Sémionovitch Golénischeff. Hrsg. von Struve, Vasilij V. 1960. @@ -2068,101 +1352,40 @@

      Abbreviat Gs VycichlSemito-Hamitic (Afro-Asiatic) Studies in Memoriam W. Vycichl. Hrsg. von Takács, Gábor. 2004. Gs WildGedenkschrift für Henri Wild. BSEG 9-10. 1984-85. Gs Yoyotte"Parcourir l’éternité". Hommages à Jean Yoyotte. Hrsg. von Zivie-Coche, Christiane M., Guermeur, Ivan. 2012. - Guasch-Jané/Andrés-Lacueva/Jáuregui/ Lamuela-Raventós, Journal of Archaeological Science 33, 2006Guasch-Jané, Maria Rosa, Andrés-Lacueva, Cristina, Jáuregui, Olga, Lamuela-Raventós, Rosa M., The origin of the ancient Egyptian drink shedeh revealed using LC/MS/MS. In: JAS 33, 2006, 98-101. - Guentch-Ogloueff, BIFAO 38, 1939Guentch-Ogloueff, Marianne, Le mot 𓅓𓂝‌𓂚‌𓄿‌𓏲‌𓏜‌𓀜‌𓀀𓏥 au Papyrus Lansing. In: BIFAO 38, 1939, 261-266. - Guermeuer, CdE 82, 2007Guermeur, Ivan, Une nouvelle nécropole à Athribis. In: CdE 82, 2007, 147-156. - Guermeur, BIFAO 106, 2006Guermeur, Ivan, Glanures (§ 3-4). In: BIFAO 106, 2006, 105-126. Guermeur, BSFE 193-194, 2015-2016Guermeur, Ivan, Le papyrus hiératique iatromagique n° 47.218.2 du musée de Brooklyn. BSFE 193-194. 2015-2016. - Guermeur, Egypte 71, 2013Guermeur, Ivan, Entre magie et médecine: l'exemple du Papyrus Brooklyn 47.218.2. In: Egypte 71, 2013, 11-22. - Guermeur, in: Fs VittmannGuermeur, Ivan, Encore une histoire de sorcière (š-Ꜥ-l.ṱ). Une formule de protection de la chambre dans le mammisi (pBrooklyn 47.218.2, x+V2-6). In: Fs Vittmann, 2016, 171-189. - Guermeur, in: Gs YoyotteGuermeur, Ivan, À propos d'un passage du papyrus médico-magique de Brooklyn 47.218.2 (x+III,9 – x+IV,2). In: Gs Yoyotte, 2012, 541-555. - Guermeur, in: Massiera/Mathieu/Rouffet, Apprivoiser Guermeur, Ivan, Un faucon et une chatte dans une recette iatromagique du papyrus de Brooklyn 47.218.2 (col. + IV, 2-7). In: Massiera/Mathieu/Rouffet, Apprivoiser, 2015, 165-181. - Guglielmi, in: Fs ThausingGuglielmi, Waltraud, Berufsatiren in der Tradition des Cheti. In: Fs Thausing, 1994, 44-72. Guglielmi, Mr.tGuglielmi, Waltraud, Die Göttin Mr.t. Entstehung und Verehrung einer Personifikation. PÄ 7. 1991. Guglielmi, Reden, Rufe, LiederGuglielmi, Waltraud, Reden, Rufe und Lieder auf altägyptischen Darstellungen der Landwirtschaft, Viehzucht, des Fisch- und Vogelfangs vom Mittleren Reich bis zur Spätzeit. TÄB 1. 1973. - Guglielmi, SAK 11, 1984Guglielmi, Waltraud, Zur Adaption und Funktion von Zitaten. In: SAK 11, 1984, 347-364. - Guglielmi, WdO 14, 1983Guglielmi, Waltraud, Eine "Lehre" für einen reiselustigen Sohn (Ostrakon Oriental Institute 12074). In: WdO 14, 1983, 147-166. - Guglielmi, ZÄS 103, 1976Guglielmi, Waltraud, Zur Symbolik des „Darbringens des Strausses der Sḫ.t“. In: ZÄS 103, 1976, 101-112. - Guglielmi/Buroh, in: Fs te VeldeGuglielmi, Waltraud, Buroh, Knut, Die Eingangssprüche des Täglichen Tempelrituals nach Papyrus Berlin 3055 (I,1 - VI,3). In: Fs te Velde, 1997, 101-166. Guidotti/Rosati, XI International Congress of EgyptologistsProceedings of the XI International Congress of Egyptologists, Florence Egyptian Museum, Florence, 23-30 August 2015. Hrsg. von Guidotti, Maria Cristina, Rosati, Gloria. 2017. - Guilhou, BIFAO 98, 1998Guilhou, Nadine, Un nouveau fragment du Livre de la Vache Céleste. In: BIFAO 98, 1998, 197-213. Guilhou, VieillesseGuilhou, Nadine, La vieillesse des dieux. 1989. - Guiter, BIFAO 101, 2001Guiter, Jacques, Contraception en Égypte ancienne. In: BIFAO 101, 2001, 221-236. - Guksch, MDAIK 50, 1994Guksch, Heike, "Sehnsucht nach der Heimatstadt". Ein ramessidisches Thema? In: MDAIK 50, 1994, 101-106. - Gundlach, in: Ägyptens Aufstieg (Ausstellungskat.)Gundlach, Rolf, Der Staat des frühen Neuen Reiches. Königtum, Verwaltung und Beamtenschaft. In: Ägyptens Aufstieg (Ausstellungskat.), 1987, 29-41. - Gundlach, in: Ägyptische Tempel (1)Gundlach, Rolf, Der Felstempel Thutmosis' III. bei Ellesija. Analyse des Dekorationsprogramms. In: Ägyptische Tempel, 1994, 69-87. - Gundlach, in: Ägyptische Tempel (2)Gundlach, Rolf, Zum Tempelbauprogramm Amenophis' III. In: Ägyptische Tempel, 1994, 89-100. - Gundlach, in: Fs FechtGundlach, Rolf, Die Felsstelen Amenophs' III. am 1. Katarakt (zur Aussagenstruktur königlicher Historischer Texte). In: Fs Fecht, 1987, 180-217. - Gundlach, in: Gs OttoGundlach, Rolf, Der Denkstein des Königs Ahmose. Zur Inhaltsstruktur der Königsnovelle. In: Gs Otto, 1977, 217-239. - Gundlach, KönigsideologieGundlach, Rolf, Die Königsideologie Sesostris' I. anhand seiner Titulatur. KSG 7. 2008. - Gundlach, ZÄS 86, 1961Gundlach, Rolf, Zur Rolle Sarenputs I., Gaufürsten von Elephantine, als königlichen Beauftragten für nubische Erzeugnisse. In: ZÄS 86, 1961, 32-38. + Gundlach, KönigsideologieGundlach, Rolf, Die Königsideologie Sesostris’ I. anhand seiner Titulatur. KSG 7. 2008. Gundlach/Klug, Ägyptische KönigtumDas ägyptische Königtum im Spannungsfeld zwischen Innen- und Aussenpolitik im 2. Jahrtausend v. Chr. Hrsg. von Gundlach, Rolf, Klug, Andrea. 2004. Gundlach/Rößler-Köhler, RamessidenzeitDas Königtum der Ramessidenzeit: Voraussetzungen - Verwirklichung - Vermächtnis. Akten des 3. Symposions zur ägyptischen Königsideologie in Bonn 7. - 9.6.2001. Hrsg. von Gundlach, Rolf, Rößler-Köhler, Ursula. ÄUAT 36,3. 2003. - Gunn, ASAE 25, 1925Gunn, Battiscombe G., A Sixth Dynasty letter from Saqqara. In: ASAE 25, 1925, 242-255. - Gunn, ASAE 26, 1926Gunn, Battiscombe G., Inscriptions from the Step Pyramid site. In: ASAE 26, 1926, 177-202. - Gunn, ASAE 28, 1928Gunn, Battiscombe G., Inscriptions from the Step Pyramid site. In: ASAE 28, 1928, 153-174. - Gunn, ASAE 29, 1929 (1)Gunn, Battiscombe G., A Middle Kingdom Stela from Edfu. In: ASAE 29, 1929, 5-14. - Gunn, ASAE 29, 1929 (2)Gunn, Battiscombe G., Additions to the Collections of the Egyptian Museum during 1928. In: ASAE 29, 1929, 89-96. - Gunn, ASEA 35, 1935Gunn, Battiscombe G., Inscriptions from the Step Pyramid site. In: ASAE 35, 1935, 62-65. Gunn, InstructionGunn, Battiscombe G., The Instruction of Ptah-hotep and the Instruction of Ke'gemni. The Oldest Books in the World. 1906, 1912 (2. Aufl.). - Gunn, JEA 35, 1949Gunn, Battiscombe G., A special use of the śḏm.f and śḏm.n.f forms. In: JEA 35, 1949, 21-24. - Gunn, JEA 36, 1950Gunn, Battiscombe G., An Egyptian expression for 'home'. In: JEA 36, 1950, 111-112. - Gunn, JEA 41, 1955Gunn, Battiscombe G., The decree of Amonrasonthēr for Neskhons. In: JEA 41, 1955, 83-105. Gunn, StudiesGunn, Battiscombe G., Studies in Egyptian Syntax. 1924. - Gunn, ZÄS 62, 1927Gunn, Battiscombe G., The Word 𓂋𓏲‌𓇋‌𓄿‌𓏏𓏭‌𓂣𓂻. In: ZÄS 62, 1927, 83-85. - Gunn/Gardiner, JEA 4, 1917Gunn, Battiscombe G., Gardiner, Alan H., New renderings of Egyptian texts. In: JEA 4, 1917, 241-252. - Gunn/Gardiner, JEA 5, 1918Gunn, Battiscombe G., Gardiner, Alan H., New Renderings of Egyptian Texts. In: JEA 5, 1918, 36-56. GurobBrunton, Guy, Engelbach, Reginald, Gurob. BSAE 41. 1927. - Gutbub, BIFAO 52, 1953Gutbub, Adolphe, Jeux de signes dans quelques inscriptions des grands temples de Dendérah et d'Edfou. In: BIFAO 52, 1953, 57-101. Gutbub, Textes fondamentauxGutbub, Adolphe, Textes fondamentaux de la théologie de Kom Ombo. BdE 47. 1973. Guzzon, Titoli sacerdotaliGuzzon, Edoardo Alessandro, Titoli sacerdotali locali e specifici del Basso Egitto nel Terzo Periodo Intermedio ed Epoca Tarda (1090-330 a.C.). 2008. https://etd.adm.unipi.it/theses/available/etd-11072008-001510/ - Habachi, ASAE 50, 1950Habachi, Labib, Was Anukis Considered as the Wife of Khnum or as his Daughter? In: ASAE 50, 1950, 501-507. - Habachi, ASAE 53, 1955Habachi, Labib, Preliminary Report on Kamose Stela and Other Inscribed Blocks Found Reused in the Foundations of Two Statues at Karnak. In: ASAE 53, 1955, 195-202. - Habachi, BIFAO 81 Suppl., 1981Habachi, Labib, New Light on the Vizier Iymeru, Son of the Controller of the Hall, Iymeru. In: BIFAO 81.1, 1981, 29-39. Habachi, HeqaibHabachi, Labib, The Sanctuary of Heqaib. AV 33. 1985. - Habachi, in: Fs RickeHabachi, Labib, Akhenaten in Heliopolis. In: Fs Ricke, 1971, 35-45. Habachi, KamoseHabachi, Labib, The Second Stela of Kamose and his Struggle against the Hyksos Ruler and his Capital. ADAIK 8. 1972. - Habachi, Kêmi 20, 1970Habachi, Labib, Le mur d'enceinte du grand temple d'Amenrē' à Karnak. In: Kêmi 20, 1970, 229-235. - Habachi, MDAIK 19, 1963Habachi, Labib, King Nebhepetre Menthuhotp. His Monuments, Place in History, Deification and Unusual Representation in the Form of Gods. In: MDAIK 19, 1963, 16-52. - Habachi, MDAIK 20, 1965Habachi, Labib, Varia from the Reign of King Akhenaten. In: MDAIK 20, 1965, 70-92. - Habachi, MDAIK 24, 1969Habachi, Labib, Divinities adored in the area of Kalabsha, with a special reference to the goddess of Miket. In: MDAIK 24, 1969, 169-183. - Habachi, RC 33, 1955Habachi, Labib, La Libération de l'Egypte de l'occupation Hyksos. A propos de la découverte de la stèle de Kamosé à Karnak. In: RC 33, 1955, 52-58. - Habachi, SAK 1, 1974Habachi, Labib, A High Inundation in the Temple of Amenre at Karnak in the Thirteenth Dynasty. In: SAK 1, 1974, 207-214. - Habachi, Serapis 6, 1980Habachi, Labib, A Score of Important Officials Serving the Neferhotep Family as Revealed from three Objects in the Heqaib Sanctuary. In: Serapis 6, 1980, 47-56. - Habachi, ZDMG 111, 1961Habachi, Labib, Neue Entdeckungen in Ägypten. In: ZDMG 111, 1961, 436-439. - Habachi/Haeny, in: Totentempel Amenophis IIIHabachi, Labib, Haeny, Gerhard, Zur Ausstattung des Tempels. Statuen - Reliefreste - Inschriften. In: Totentempel Amenophis III, 1981, 39-122. Haeny, Basilikale AnlagenHaeny, Gerhard, Basilikale Anlagen in der ägyptischen Baukunst des Neuen Reiches. BeiträgeBf 9. 1970. - Hagen, JEA 91, 2005Hagen, Fredrik, The Prohibitions. A New Kingdom Didactic Text. In: JEA 91, 2005, 125-164. Hagen, New Kingdom ostracaHagen, Fredrik, New Kingdom ostraca from the Fitzwilliam Museum, Cambridge. CHANE 46. 2011. Hagen, PtahhotepHagen, Fredrik, An Ancient Egyptian Literary Text in Context. The Instruction of Ptahhotep. OLA 218. 2012. - Haider, in: Das Ägyptische und die Sprachen Vorderasiens, Nordafrikas un der ÄgäisHaider, Peter W., Minoische Sprachdenkmäler in einem ägyptischen Papyrus medizinische Inhalts. In: Das Ägyptische und die Sprachen Vorderasiens, Nordafrikas und der Ägäis, 2004, 411-422. - Haikal, BIFAO 83, 1983Haikal, Fayza, Papyrus Boulaq XIII. In: BIFAO 83, 1983, 213-248. + Haikal, NesminHaikal, Fayza, Two Hieratic Funerary Papyri of Nesmin. Part 1: Introduction, Transcriptions and Plates. Part 2: Translation and Commentary. BAe 14 und 15. 1970 und 1972. Haikal, Nesmin 1Haikal, Fayza, Two hieratic funerary papyri of Nesmin, Bd. 1: Introduction, transcriptions and plates. BAe 14. 1970. Haikal, Nesmin 2Haikal, Fayza, Two hieratic funerary papyri of Nesmin, Bd. 2: Translation and commentary. BAe 15. 1972. - Haikal, NesminHaikal, Fayza, Two Hieratic Funerary Papyri of Nesmin. Part 1: Introduction, Transcriptions and Plates. Part 2: Translation and Commentary. BAe 14 und 15. 1970 und 1972. - Hall, BMQ 5, 1930Hall, Harry R., The Chester-Beatty Egyptian papyri. In: BMQ 5, 1930, 46-47. Hall, PharaohHall, Emma Swan, The Pharaoh Smites his Enemies. A Comparative Study. MÄS 44. 1986. - Hamada, ASAE 38, 1938Hamada, A., A stela from Manshîyet eṣ-Ṣadr. In: ASAE 38, 1938, 217-230. - Hammad, CdE 30, 1955Hammad, Mohammed, Découverte d'une stèle du roi Kamose. In: CdE 30, 1955, 198-208. HANHandbook of Ancient Nubia (2 Bde.). Hrsg. von Raue, Dietrich. 2019. HandlistMurray, Helen, Nuttall, Mary, A Handlist to Howard Carter´s Catalouge of Objects in Tut´ankhamun`s Tomb. TTSO 1. 1963. - Hanke, SAK 2, 1975Hanke, Rainer, Änderungen von Bildern und Inschriften während der Amarnazeit. In: SAK 2, 1975, 79-93. - Hannig, HWb (Marburger Edition)Hannig, Rainer, Großes Handwörterbuch Ägyptisch - Deutsch (2800-950 v. Chr.). Die Sprache der Pharaonen (Marburger Edition). 2006. Hannig, HWbHannig, Rainer, Großes Handwörterbuch Ägyptisch-Deutsch. 1995. - Hannig, in: Gs VycichlHannig, Rainer, Beiträge zur Lexikographie 1: Mögliche Phantomwörter im HL1. In: Gs Vycichl, 2004, 69-97. + Hannig, HWb (Marburger Edition)Hannig, Rainer, Großes Handwörterbuch Ägyptisch - Deutsch (2800-950 v. Chr.). Die Sprache der Pharaonen (Marburger Edition). 2006. Hannig, SärgeHannig, Rainer, Zur Paläographie der Särge aus Assiut. HÄB 47. 2006. Hannig/Vomberg/Witthuhn, Treffen zur altägyptischen MedizinHannig, Rainer, Vomberg, Petra, Witthuhn, Orell, Marburger Treffen zur altägyptischen Medizin. Vorträge und Ergebnisse des 1.-5. Treffens 2002-2007. GM Beiheft 2. 2007. HaragehEngelbach, Reginald, Gunn, Battiscombe G., Harageh. BSAE 28. 1923. - Haran, in: Jerusalem StudiesHaran, Adina, Nationalism and the Sin of Conquest in the Texts of Kamose (KꜢ-ms): Carnarvon Tablet No. 1, Stela No. I and Stela No. II. In: Jerusalem Studies, 1998, 265-269. - Harari, ASAE 56, 1959Harari, Ibrahim, Nature de la stèle de donation de fonction du roi Ahmôsis à la reine Ahmès-Nefertari. In: ASAE 56, 1959, 139-201. Hari, Neferhotep (TT 50)Hari, Robert, La tombe thébaine du père divin Neferhotep (TT 50). 1985. Haring, Divine HouseholdsHaring, Bernardus Johannes Jozef, Divine Households: Administrative and Economic Aspects of the New Kingdom Royal Memorial Temples in Western Thebes. EgUit 12. 1997. - Harris, CdE 49, 1974Harris, John R., Kiya. In: CdE 49, 1974, 25-30. Harris, MineralsHarris, John R., Lexicographical Studies in Ancient Egyptian Minerals. VIO 54. 1961. - Harris, SAK 2, 1975Harris, John R., Contributions to the history of the Eighteenth Dynasty. In: SAK 2, 1975, 95-101. Hasel, Domination and ResistanceHasel, Michael G., Domination and Resistance. Egyptian Military Activity in the Southern Levant, ca. 1300-1185 B.C. PÄ 11. 1998. - Hassan, ASAE 37, 1937Hassan, Selim, The great limestone stela of Amenhotep II. In: ASAE 37, 1937, 129-134. - Hassan, ASAE 38, 1938Hassan, Selim, A representation of the solar disk with human hands and arms and the form of Horus of Beḥdet, as seen on the stela of Amenhetep IInd in the mud-brick temple at Giza. In: ASAE 38, 1938, 53-61. + Hassan, GizaHassan, Selim, Excavations at Giza. Excav. Giza 1-10. 1929- 1960. Hassan, Giza IHassan, Selim, Excavations at Gîza: 1929-1930. Excav. Giza 1. 1932. Hassan, Giza IIHassan, Selim, Excavations at Gîza: 1930-1931. Excav. Giza 2. 1936. Hassan, Giza IIIHassan, Selim, Excavations at Gîza: 1931-1932. Excav. Giza 3. 1941. @@ -2173,7 +1396,6 @@

      Abbreviat Hassan, Giza VI.3Hassan, Selim, Excavations at Gîza: 1934-1935. The Mastabas of the Sixth Season and their Description. Excav. Giza 6.3. 1950. Hassan, Giza VIIHassan, Selim, Excavations at Gîza: 1935-1936. The Mastabas of the Seventh Season and their Description. Excav. Giza 7. 1953. Hassan, Giza VIIIHassan, Selim, The Great Sphinx and Its Secrets. Historical Studies in the Light of Recent Excavations [Excavations at Gîza, 1936-1937]. Excav. Giza 8. 1953. - Hassan, GizaHassan, Selim, Excavations at Giza. Excav. Giza 1-10. 1929- 1960. Hassan, HymnesHassan, Selim, Hymnes religieux du Moyen Empire. 1928. Hassan, Mastaba of Neb-Kaw-HerHassan, Selim, The Mastaba of Neb-Kaw-Her. Excav. Saqq. 1. 1975. Hassan, Mastabas of Hemet-RaHassan, Selim, Mastabas of Princess Hemet-Ra and Others. Excav. Saqq. 35. 1975. @@ -2183,27 +1405,15 @@

      Abbreviat HatnubAnthes, Rudolf, Die Felseninschriften von Hatnub. UGAÄ 9. 1928, Nachdr. 1964. Hatschepsut (Ausstellungskat.)Hatshepsut. From Queen to Pharaoh. The Metropolitan Museum of Art, New York, March 28-July 9, 2006. Hrsg. von Roehrig, Catharine H., Dreyfus, Renée, Keller, Cathleen A. 2005. Hawass, Hidden treasuresHawass, Zahi A., Hidden treasures of the Egyptian Museum: one hundred masterpieces from the centennial exhibition. 2002. - Hawass, JEA 80, 1994Hawass, Zahi A., A fragmentary monument of Djoser from Saqqara. In: JEA 80, 1994, 45-56. - Hawass, LingAeg 10, 2002Hawass, Zahi A., An Inscribed Lintel in the Tomb of the Vizier Mehu at Saqqara. In: LingAeg 10, 2002, 219-224. Hawass/Bács/Schreiber, ProceedingsProceedings of the colloquium on Theban archaeology at the Supreme Council of Antiquities, November 5, 2009. Hrsg. von Hawass, Zahi A., Bács, Tamás A., Schreiber, Gábor. 2011. Hawkins/Birch, PapyriPapyri in hieroglyphic and hieratic characters from the collection of the Earl of Belmore, now deposited in the British Museum. Hrsg. von Hawkins, E., Birch, Samuel. 1843. - Hayes, in: CAHHayes, William C., The Middle Kingdom in Egypt. Internal History from the Rise of the Heracleopolitans to the Death of Ammenemes III. In: CAH, 1961, 1-86. - Hayes, in: Fs JunkerHayes, William C., Varia from the Time of Hatshepsut. In: Fs Junker, 1957, 78-90. - Hayes, JEA 33, 1947Hayes, William C., Ḥoremkha‛uef of Nekhen and his trip to Iṯ-towe. In: JEA 33, 1947, 3-11. - Hayes, JEA 46, 1960Hayes, William C., A selection of Tuthmoside ostraca from Dēr el-Baḥri. In: JEA 46, 1960, 29-52. - Hayes, JNES 12, 1953Hayes, William C., Notes on the Government of Egypt in the late Middle Kingdom. In: JNES 12, 1953, 31-39. - Hayes, JNES 7, 1948Hayes, William C., A Much-Copied Letter of the Early Middle Kingdom. In: JNES 7, 1948, 4-6. Hayes, OstrakaHayes, William C., Ostraka and Name Stones from the Tomb of Sen-Mut (no. 71) at Thebes. PMMA 15. 1942. Hayes, Pap. Late MKHayes, William C., A Papyrus of the Late Middle Kingdom in the Brooklyn Museum [Papyrus Brooklyn 35.1446]. WM 5. 1972. + Hayes, ScepterHayes, William C., The Scepter of Egypt. 1953, 1959. Hayes, Scepter IHayes, William C., The Scepter of Egypt. A Background for the Study of the Egyptian Antiquities in The Metropolitan Museum of Art. Part I: From the Earliest Times to the End of the Middle Kingdom. 1953. Hayes, Scepter IIHayes, William C., The Scepter of Egypt. A Background for the Study of the Egyptian Antiquities in the Metropolitan Museum of Art. Part II: The Hyksos period and the New Kingdom (1675-1080 BC). 1959 . - Hayes, ScepterHayes, William C., The Scepter of Egypt. 1953, 1959. HdO I 1,2Handbuch der Orientalistik. Ägyptologie. Literatur. Hrsg. von Spuler, Bertold. HdO 1. Abt., 1. Bd, 2. Abs. 1952, 1970 (2. verb. erw. Aufl.). - Heckel, ZÄS 82, 1957Kaplony-Heckel, Ursula, Studien zum Eigenschaftsverbum und zum prädikativen Adjektivum im Altägyptischen (Fortsetzung). In: ZÄS 82, 1957, 19-47. - Heerma van Voss, Illustrations pour l'éternitéHeerma van Voss, Matthieu, Illustrations pour l'éternité: peintures et dessins égyptiens provenant des collections nationales de Belgique et des Pays-Bas, Musées Royaux d'Art et d'Histoire, Bruxelles, 28 octobre - 18 décembre 1966. 1966. - Heerma van Voss, in: Fs LeclantHeerma van Voss, Matthieu, Pyramidentexte Spruch 659 = P/F/E 34-38. In: Fs Leclant I, 1994, 217-220. - Hegazy, DHA 101, 1986Hegazy, El-Sayed, Découverte d'une stèle de Thoutmosis IV sur le parvis du temple de Louqsor. In: DHA 101, 1986, 20. - Hegazy/Bryan, VA 2, 1986Hegazy, El-Sayed, Bryan, Betsy M., A New Stela of Thutmose IV from the Luxor Temple. In: VA 2, 1986, 93-100. + Heerma van Voss, Illustrations pour l’éternitéHeerma van Voss, Matthieu, Illustrations pour l’éternité: peintures et dessins égyptiens provenant des collections nationales de Belgique et des Pays-Bas, Musées Royaux d’Art et d’Histoire, Bruxelles, 28 octobre - 18 décembre 1966. 1966. Hein, BautätigkeitHein, Irmgard, Die ramessidische Bautätigkeit in Nubien. GOF 22. 1991. Heinz, FeldzugsdarstellungenHeinz, Susanna Constanze, Die Feldzugsdarstellungen des Neuen Reichess. Eine Bildanalyse. UZK 17. 2001. Ḥeḳanakhte PapersJames, Thomas G. H., The Ḥeḳanakhte-Papers and other Early-Middle-Kingdom Documents. PMMA 19. 1962. @@ -2211,23 +1421,14 @@

      Abbreviat Helck, AktenkundeHelck, Wolfgang, Altägyptische Aktenkunde. MÄS 31. 1974. Helck, BeamtentitelHelck, Wolfgang, Untersuchungen zu den Beamtentiteln des ägyptischen Alten Reiches. ÄF 18. 1954. Helck, BeziehungenHelck, Wolfgang, Die Beziehungen Ägyptens zu Vorderasien im 3. und 2. Jahrtausend v. Chr. ÄA 5. 1962, 1971 (2. Auflage). - Helck, BiOr 32, 1975Helck, Wolfgang, Review: Kitchen, Kenneth. A. 1975, Ramesside inscriptions, historical and biographical, I. In: KRI I, 1975, 17-18. - Helck, CdE 56, 1981Helck, Wolfgang, Wo errichtete Thutmosis III. seine Siegesstele am Euphrat? In: CdE 56, 1981, 241-244. Helck, GaueHelck, Wolfgang, Die altägyptischen Gaue. TAVO 5. 1974. Helck, GeschichteHelck, Wolfgang, Geschichte des Alten Ägypten. HdO 1. Abt, 1. Bd, 3. Abschnitt. 1968, 1981 (2. Auflage). - Helck, GM 109, 1989Helck, Wolfgang, Ein Ausgreifen des Mittleren Reiches in den zypriotischen Raum? In: GM 109, 1989, 27-30. - Helck, in: Fs BrunnerHelck, Wolfgang, Zur Herkunft der Erzählung des sog. "Astartepapyrus". In: Fs Brunner, 1983, 215-223. - Helck, in: Fs DAIKHelck, Wolfgang, Politische Spannungen zu Beginn des Mittleren Reiches. In: Fs DAIK, 1985, 45-52. - Helck, in: Fs LexaHelck, Wolfgang, Die Herkunft des abydenischen Osirisrituals. In: Fs Lexa, 1952, 72-85. - Helck, in: Gs OttoHelck, Wolfgang, Das Verfassen einer Königsinschrift. In: Gs Otto, 1977, 241-256. - Helck, JARCE 6, 1967Helck, Wolfgang, Eine Briefsammlung aus der Verwaltung des Amuntempels. In: JARCE 6, 1967, 135-151. - Helck, JEA 59, 1973Helck, Wolfgang, Zur Opferliste Amenophis' IV. (JEA 57, 70 ff.). In: JEA 59, 1973, 95-99. - Helck, JNES 14, 1955Helck, Wolfgang, Eine Stele des Vizekönigs Wśr-Śt.t. In: JNES 14, 1955, 22-31. Helck, Lehre Amenemhets I.Helck, Wolfgang, Der Text der „Lehre Amenemhets I. für seinen Sohn“. KÄT 1. 1969. - Helck, Lehre des DjedefhorHelck, Wolfgang, Die Lehre des Djedefhor und die Lehre eines Vaters an seinen Sohn. KÄT [8]. 1984. Helck, Lehre des Dwꜣ-ḪtjjHelck, Wolfgang, Die Lehre des Dwꜣ-Ḫtjj. KÄT 3. 1970. + Helck, Lehre des DjedefhorHelck, Wolfgang, Die Lehre des Djedefhor und die Lehre eines Vaters an seinen Sohn. KÄT [8]. 1984. Helck, Lehre für König MerikareHelck, Wolfgang, Die Lehre für König Merikare. KÄT [5]. 1977. Helck, ManethoHelck, Wolfgang, Untersuchungen zu Manetho und den ägyptischen Königslisten. UGAÄ 18. 1956. + Helck, MaterialienHelck, Wolfgang, Materialien zur Wirtschaftsgeschichte des Neuen Reiches. AAWLM. 1961-1970. Helck, Materialien 1Helck, Wolfgang, Materialien zur Wirtschaftsgeschichte des Neuen Reiches (Teil I): I. Die Eigentümer, a) Die großen Tempel. AAWLM 1960 (10). 1961. Helck, Materialien 2Helck, Wolfgang, Materialien zur Wirtschaftsgeschichte des Neuen Reiches (Teil II): I. Die Eigentümer, b) die Provinztempel und säkulare Institutionen. II. Eigentum und Besitz von Grund und Boden. AAWLM 1960 (11). 1961. Helck, Materialien 3Helck, Wolfgang, Materialien zur Wirtschaftsgeschichte des Neuen Reiches (Teil III): III. Eigentum und Besitz an verschiedenen Dingen des täglichen Lebens. Kapitel A-O. AAWLM 1963 (2). 1963. @@ -2235,60 +1436,40 @@

      Abbreviat Helck, Materialien 5Helck, Wolfgang, Materialien zur Wirtschaftsgeschichte des Neuen Reiches (Teil V): III. Eigentum und Besitz an verschiedenen Dingen des täglichen Lebens. Kapitel AI-AL. AAWLM 1964 (4). 1965. Helck, Materialien 6Helck, Wolfgang, Materialien zur Wirtschaftsgeschichte des Neuen Reiches (Teil VI). AAWLM 1969 (4). 1969. Helck, Materialien IndexbandHofmann, Inge, Indices zu W. Helck, Materialien zur Wirtschaftsgeschichte des Neuen Reiches. 1970. - Helck, MaterialienHelck, Wolfgang, Materialien zur Wirtschaftsgeschichte des Neuen Reiches. AAWLM. 1961-1970. - Helck, MDAIK 24, 1969Helck, Wolfgang, Eine Stele Sebekhoteps IV. aus Karnak. In: MDAIK 24, 1969, 194-200. Helck, MilitärführerHelck, Wolfgang, Der Einfluß der Militärführung in der 18. ägyptischen Dynastie. UGAÄ 14. 1939, Nachdr. 1964. Helck, Nfr.tjHelck, Wolfgang, Die Prophezeiung des Nfr.tj. KÄT [2]. 1970, 1992 (2. verb. Aufl.). Helck, NilhymnusHelck, Wolfgang, Der Text des Nilhymnus. KÄT 4. 1972. - Helck, OLZ 54, 1959Helck, Wolfgang, Review: Goyon, Georges 1957. Nouvelles Inscriptions rupestres du Wadt Hammat. In: Goyon, Hammamat, 1959, 17-21. Helck, OstrakaHelck, Wolfgang, Schlott, Adelheid, Die datierten und datierbaren Ostraka, Papyri und Graffiti von Deir el-Medineh. ÄA 63. 2002. + Helck, RitualszenenHelck, Wolfgang, Die Ritualszenen auf der Umfassungsmauer Ramses` II. in Karnak. 2 Bde. ÄA 18. 1968. Helck, Ritualszenen IHelck, Wolfgang, Die Ritualszenen auf der Umfassungsmauer Ramses´ II. in Karnak. 1. Abb. ÄA 18. 1968. Helck, Ritualszenen IIHelck, Wolfgang, Die Ritualszenen auf der Umfassungsmauer Ramses´ II. in Karnak. 2. Text. ÄA 18. 1968. - Helck, RitualszenenHelck, Wolfgang, Die Ritualszenen auf der Umfassungsmauer Ramses` II. in Karnak. 2 Bde. ÄA 18. 1968. - Helck, SAK 8, 1980Helck, Wolfgang, Ein "Feldzug" unter Amenophis IV. gegen Nubien. In: SAK 8, 1980, 117-126. - Helck, SAK 9, 1981Helck, Wolfgang, Papyrus Ramesseum E. In: SAK 9, 1981, 151-166. - Helck, Texte der 2. Zwischenzeit. NachträgeHelck, Wolfgang, Historisch-biographische Texte der 2. Zwischenzeit und neue Texte der 18. Dynastie. Nachträge. KÄT 6 (2). 1995. Helck, Texte der 2. ZwischenzeitHelck, Wolfgang, Historisch-biographische Texte der 2. Zwischenzeit und neue Texte der 18. Dynastie. KÄT 6. 1975, 1983 (2. überarb. Aufl.). + Helck, Texte der 2. Zwischenzeit. NachträgeHelck, Wolfgang, Historisch-biographische Texte der 2. Zwischenzeit und neue Texte der 18. Dynastie. Nachträge. KÄT 6 (2). 1995. Helck, ThinitenzeitHelck, Wolfgang, Untersuchungen zur Thinitenzeit. ÄA 45. 1987. Helck, VerwaltungHelck, Wolfgang, Zur Verwaltung des Mittleren und Neuen Reiches. PÄ 3. 1958. - Helck, VT 15, 1965Helck, Wolfgang, Ṯkw und die Ramses-Stadt. In: VT 15, 1965, 35-48. Helck, WirtschaftsgeschichteHelck, Wolfgang, Wirtschaftsgeschichte des Alten Ägypten im 3. und 2. Jahrtausend vor Chr. HdO I, 1.5. 1975. - Helck, WZKM 54, 1957Helck, Wolfgang, Das Kleidertäfelchen aus der Pyramide des Sḫm-ẖ.t. In: WZKM 54, 1957, 72-76. - Helck, ZÄS 110, 1983Helck, Wolfgang, Asija. In: ZÄS 110, 1983, 29-36. - Helck, ZÄS 120, 1993Helck, Wolfgang, Die nördliche Stele Amenophis' III. hinter den Memnonskolossen. In: ZÄS 120, 1993, 36-42. Helck/Otto, Kleines WbHelck, Wolfgang, Otto, Eberhard, Kleines Wörterbuch der Ägyptologie. 1956, 1970 (2. Auflage). Heliopolis, Kafr Ammar and ShurafaPetrie, William M. Flinders, Mackay, Ernest, Heliopolis, Kafr Ammar and Shurafa. BSAE 24. 1915. - Herbin, BIFAO 111, 2011Herbin, François-René, Un nouveau document gynécologique (P. Ifao H 48 ro). In: BIFAO 111, 2011, 191-203. - Herbin, BIFAO 82, 1982Herbin, François-René, Un hymne à la lune croissante. In: BIFAO 82, 1982, 237-282. - Herbin, BIFAO 86, 1986Herbin, François-René, Une version inachevée de l'onomasticon d'Aménémopé (P. BM 10474 v°). In: BIFAO 86, 1986, 187-198. - Herbin, BIFAO 88, 1988Herbin, François-René, Les premières pages du Papyrus Salt 825. In: BIFAO 88, 1988, 95-112. Herbin, Books of BreathingHerbin, François-René, Books of Breathing and Related Texts. 2008. - Herbin, GM 229, 2011Herbin, François-René, Un ostracon médico-magique. In: GM 229, 2011, 29-36. Herbin, ParcourirHerbin, François-René, Le livre de parcourir l’étenité. OLA 58. 1994. - Herbin, RdE 54, 2003Herbin, François-René, La renaissance d'Osiris au temple d'Opet (P. Vatican inv. 38608). In: RdE 54, 2003, 67-129. - Herbin, SAK 32, 2004Herbin, François-René, Un texte de glorification. In: SAK 32, 2004, 171-204. Hermann, KönigsnovelleHermann, Alfred, Die ägyptische Königsnovelle. LÄS 10. 1938. Hermann, LiebesdichtungHermann, Alfred, Altägyptische Liebesdichtung. 1959. Hermann, StelenHermann, Alfred, Die Stelen der Thebanischen Felsgräber der 18. Dynastie. ÄF 11. 1940. - Hermann, ZÄS 79, 1954Hermann, Alfred, Das Buch 'Kmj.t' und die Chemie, mit einem Anhang: Ein weiteres Kmj.t-Ostrakon. In: ZÄS 79, 1954, 99-105. Herodot Herodoti Historiae recognovir Carolus Hude. 1927. Herrmann, ÜberlieferungsgestaltHerrmann, Siegfried, Untersuchungen zur Überlieferungsgestalt mittelägyptischer Literaturwerke. VIO 33. 1957. + HierakonpolisQuibell, James Edward, Green, F. W., Hierakonpolis. BSAE 4-5. 1900-02. Hierakonpolis IQuibell, James Edward, Hierakonpolis I. BSAE 4. 1900. Hierakonpolis IIQuibell, James Edward, Green, F. W., Hierakonpolis II. BSAE 5. 1902. - HierakonpolisQuibell, James Edward, Green, F. W., Hierakonpolis. BSAE 4-5. 1900-02. Hikade, ExpeditionswesenHikade, Thomas, Das Expeditionswesen im ägyptischen Neuen Reich. Ein Beitrag zur Rohstoffversorgung und Außenhandel. SAGA 21. 2001. Hintze, Studien zur meroitischen ChronologieHintze, Fritz, Studien zur meroitischen Chronologie und zu den Opfertafeln aus den Pyramiden von Meroe. ADAW 2. 1959. - Hintze, ZÄS 79, 1954Hintze, Fritz, Ein Bruchstück einer unbekannten Weisheitslehre. In: ZÄS 79, 1954, 33-36. Hintze/Hintze, KulturenHintze, Fritz, Hintze, Ursula, Alte Kulturen im Sudan. 1966. Hintze/Reineke, FelsinschriftenHintze, Fritz, Reineke, Walter Friedrich, Felsinschriften aus dem sudanesischen Nubien, 2 Bde. 1989. - Hirsch, LegitimationHirsch, Eileen, Die sakrale Legitimation Sesostris' I. Kontaktphänomene in königsideologischen Texten. KSG 6. 2008. + Hirsch, LegitimationHirsch, Eileen, Die sakrale Legitimation Sesostris’ I. Kontaktphänomene in königsideologischen Texten. KSG 6. 2008. Historische documentenZij schreven geschiedenis. Historische documenten uit het Oude Nabije Oosten (2500-100 v. Chr.). Hrsg. von Demarée, Robert Johannes, Veenhof, Klaas R. MVEOL 33. 2003. Hoch, Sem. WordsHoch, James E., Semitic Words in Egyptian Texts of the New Kingdom and Third Intermediate Period. 1994. Hodjash/Berlev, Pushkin MuseumHodjash, Svetlana, Berlev, Oleg Dmitrievic, The Egyptian Reliefs and Stelae in the Pushkin Museum of Fine Arts. 1982. Hoffmann, ÄgyptenHoffmann, Friedhelm, Ägypten, Kultur und Lebenswelt in griechisch-römischer Zeit. Eine Darstellung nach den demotischen Quellen. 2000. Hoffmann, AmazonenHoffmann, Friedhelm, Ägypter und Amazonen. Neubearbeitung zweier demotischer Papyri. P. Vindob. D 6165 und P. Vindob. D 6165A. MPER N.S. 24. 1995. - Hoffmann, GM 132, 1993Hoffmann, Friedhelm, Das Wort ḏfḏ. In: GM 132, 1993, 37-38. - Hoffmann, in: Under One SkyHoffmann, Friedhelm, Measuring Egyptian statues. In: Under One Sky, 2002, 109-119. Hoffmann, Inaros, bzw. Hoffmann, P. KrallHoffmann, Friedhelm, Der Kampf um den Panzer des Inaros. Studien zum P. Krall und seiner Stellung innerhalb des Inaros-Petubastis-Zyklus. MPER N.S. 26. 1996. Hoffmann/Minas-Nerpel/Pfeiffer, GallusHoffmann, Friedhelm, Minas-Nerpel, Martina, Pfeiffer, Stefan, Die dreisprachige Stele des C. Cornelius Gallus. 2009. Hoffmann/Quack, AnthologieHoffmann, Friedhelm, Quack, Joachim Friedrich, Anthologie der demotischen Literatur. EQÄ 4. 2007, 2018 (2. neub., erw. Aufl.). @@ -2296,29 +1477,27 @@

      Abbreviat Hofmann, bꜣk und ḥmHofmann, Tobias, Zur sozialen Bedeutung zweier Begriffe für «Diener». bꜣk und ḥm. Untersucht an Quellen vom Alten Reich bis zur Ramessidenzeit. AH 18. 2005. Hofmann, FuhrwesenHofmann, Ulrich, Fuhrwesen und Pferdehaltung im Alten Ägypten (Dissertation). 1989. Hofmann, KönigsnovelleHofmann, Beate, Die Königsnovelle. "Strukturanalyse am Einzelwerk". ÄUAT 62. 2004. - Hofmann, LingAeg 10, 2002Hofmann, Tobias, Die Autobiographie des Uni (𓃺𓈖‌𓇋‌𓀙) von Abydos. In: LingAeg 10, 2002, 225-237. Hofmann, NeferrenpetHofmann, Eva, Das Grab des Neferrenpet gen. Kenro (TT 178). Theben 9. 1995. - Hohentübingen TreasuresTreasures of Hohentübingen Castle. Selected Pieces from the Collection of the Museum of the University of Tübingen. Hrsg. von Seidl, Erwin. MUT 7. 2014. HohentübingenDas Alte Ägypten. Museum Schloß Hohentübingen. Hrsg. von Zibelius-Chen, Karola. 2002. - Hölbl, GM 127, 1992Hölbl, Günther, Zum Titel ḥqꜣ ḥqꜣw des römischen Kaisers. In: GM 127, 1992, 49-52. + Hohentübingen TreasuresTreasures of Hohentübingen Castle. Selected Pieces from the Collection of the Museum of the University of Tübingen. Hrsg. von Seidl, Erwin. MUT 7. 2014. Hollis, Two BrothersHollis, Susan Tower, The Ancient Egyptian "Tale of Two Brothers". The Oldest Fairy Tale in the World. Oklahoma Ser. 7. 1990. - Holm-Rasmussen, GM 148, 1995Holm-Rasmussen, Torben, The Original Meaning of ḥr mw. In: GM 148, 1995, 53-62. Hölscher, ChephrenHölscher, Uvo, Das Grabdenkmal des Königs Chephren. Nebst Beiträgen von L. Borchardt und G. Steindorff. Sieglin Exp. 1. 1912. + Hölscher, Medinet HabuHölscher, Uvo, The Excavation of Medinet Habu. OIP 21, 41, 54, 55, 66. 1934-54. Hölscher, Medinet Habu IHölscher, Uvo, The Excavation of Medinet Habu, Volume I: General Plans and Views. OIP 21. 1934. Hölscher, Medinet Habu IIHölscher, Uvo, The Excavation of Medinet Habu, Volume II: The Temples of the Eighteenth Dynasty. OIP 41. 1939. Hölscher, Medinet Habu IIIHölscher, Uvo, The Excavation of Medinet Habu, Volume III: The Mortuary Temple of Ramses III, part I. OIP 54. 1941. Hölscher, Medinet Habu IVHölscher, Uvo, The Excavation of Medinet Habu, Volume IV: The Mortuary Temple of Ramses III, part II. OIP 55. 1951. Hölscher, Medinet Habu VHölscher, Uvo, The Excavation of Medinet Habu, Volume V: Post-Ramessid Remains. OIP 66. 1954. - Hölscher, Medinet HabuHölscher, Uvo, The Excavation of Medinet Habu. OIP 21, 41, 54, 55, 66. 1934-54. - Hölzl, in: Fs SatzingerHölzl, Regina, Eine Stele des frühen Mittleren Reiches mit einer ungewöhnlichen Opfertischdarstellung. In: Fs Satzinger, 2003, 87-96. Hölzl, OpfertafelnHölzl, Regina, Ägyptische Opfertafeln und Kultbecken. Eine Form- und Funktionsanalyse für das Alte, Mittlere und Neuere Reich. HÄB 45. 2002. + Hopfner, FontesHopfner, Theodor, Fontes historiae religionis aegyptiacae. 1922-1925. Hopfner, Fontes IHopfner, Theodor, Fontes historiae religionis aegyptiacae. Auctores ab Homero usque ad Diodorum continens. 1922. Hopfner, Fontes IIHopfner, Theodor, Fontes historiae religionis aegyptiacae. Auctores ab Horatio usque ad Plutarchum continens. 1923. Hopfner, Fontes IIIHopfner, Theodor, Fontes historiae religionis Aegyptiacae. Auctores ab Clemente Romano usque ad Porphyrium continens. 1923. Hopfner, Fontes IVHopfner, Theodor, Fontes historiae religionis aegyptiacae. Auctores ab Eusebio usque ad Procopium Caesareensem continens. 1924. Hopfner, Fontes VHopfner, Theodor, Fontes historiae religionis aegyptiacae. Auctores aetatis Byzantinae mediae, addenda et corrigenda, conspectum auctorum omnium, indices nominum et rerum continens. 1925. - Hopfner, FontesHopfner, Theodor, Fontes historiae religionis aegyptiacae. 1922-1925. Hopfner, TierkultHopfner, Theodor, Der Tierkult der alten Ägypter. DAWW 57.2. 1913. + Horak/Harrauer, Mumie-schau’nMumie-schau’n. Totenkult im hellenistisch-römerzeitlichen Ägypten. Katalog zur Ausstellung der Österreichischen Nationalbibliothek im NORDICO – Museum der Stadt Linz und in Zusammenarbeit mit dem Landesmuseum für Kärnten. Hrsg. von Horak, Ulrike, Harrauer, Hermann. LAF 29. 1999. (new) + Hornemann, TypesHornemann, Bodil, Types of Ancient Egyptian Statuary. 1951-1969. Hornemann, Types IHornemann, Bodil, Types of Ancient Egyptian Statuary I. 1951. Hornemann, Types IIHornemann, Bodil, Types of Ancient Egyptian Statuary II. 1957. Hornemann, Types IIIHornemann, Bodil, Types of Ancient Egyptian Statuary III. 1957. @@ -2326,10 +1505,9 @@

      Abbreviat Hornemann, Types VHornemann, Bodil, Types of Ancient Egyptian Statuary V. 1966. Hornemann, Types VIHornemann, Bodil, Types of Ancient Egyptian Statuary VI. 1969. Hornemann, Types VIIHornemann, Bodil, Types of Ancient Egyptian Statuary VII. 1969. - Hornemann, TypesHornemann, Bodil, Types of Ancient Egyptian Statuary. 1951-1969. + Hornung, AmduatHornung, Erik, Texte zum Amduat, Teil I-III. AH [1]3-15. 1987-1994. Hornung, Amduat, ÄA 7Hornung, Erik, Das Amduat. Die Schrift des verborgenen Raumes. ÄA 7. 1963. Hornung, Amduat, KurzfassungHornung, Erik, Das Amduat. Die Schrift des verborgenen Raumes, Teil III: Die Kurzfassung. Nachträge. ÄA 13. 1967. - Hornung, AmduatHornung, Erik, Texte zum Amduat, Teil I-III. AH [1]3-15. 1987-1994. Hornung, AnbetungHornung, Erik, Das Buch der Anbetung des Re im Westen (Sonnen­litanei), Teil I-II. AH 2-3. 1975-1976. Hornung, ChronologieHornung, Erik, Untersuchungen zur Chronologie und Geschichte des Neuen Reiches. ÄA 11. 1964. Hornung, Der EineHornung, Erik, Der Eine und die Vielen. Ägyptische Gottesvorstellungen. 1971. @@ -2339,15 +1517,10 @@

      Abbreviat Hornung, HaremhabHornung, Erik, Das Grab des Haremhab im Tal der Könige. 1971. Hornung, HimmelskuhHornung, Erik, Der ägyptische Mythos von der Himmelskuh. Eine Ätiologie des Unvollkommenen. OBO 46. 1982. Hornung, HöllenvorstellungenHornung, Erik, Altägyptische Höllenvorstellungen. ASAW 59 (3). 1968. - Hornung, in: Fs BrunnerDie Israelstele des Merenptah. In: Fs Brunner, 1983, 224-233. Hornung, PfortenbuchHornung, Erik, Das Buch von den Pforten des Jenseits. Nach den Versionen des Neuen Reiches, Teil I: Text, Teil II: Übersetzung und Kommentar. AH 7 und 8. 1979 und 1984. - Hornung, Sethos I./Seti I.Hornung, Erik, Das Grab Sethos' I. The tomb of Pharaoh Seti I. 1991. + Hornung, Sethos I./Seti I.Hornung, Erik, Das Grab Sethos’ I. The tomb of Pharaoh Seti I. 1991. Hornung, TotenbuchHornung, Erik, Das Totenbuch der Ägypter. 1979. - Hornung, ZÄS 87, 1962Hornung, Erik, Lexikalische Studien II. In: ZÄS 87, 1962, 115-119. Hornung/Krauss/Warburton, ChronologyAncient Egyptian chronology. Hrsg. von Hornung, Erik, Krauss, Rolf, Warburton, David Alan. HdO 83. 2006. - Horrack, in: Mél. égyptologiques III,2Horrack, Philippe-Jacques de, Sur deux stèles de l'Ancien Empire mentionnant la réparation d'un temple à Abydos. In: Mél. égyptologiques, 1873, 203-217. - Horrack, ZÄS 6, 1868Horrack, Philippe-Jacques de, Sur un ostracon du Musée du Louvre: lettre à M. le docteur Lepsius. In: ZÄS 6, 1868, 1-6. - Hovestreydt, LingAeg 5, 1997Hovestreydt, Willem, A letter to the king relating to the foundation of a statue (P.Turin 1879 vso.). In: LingAeg 5, 1997, 107-121. HTBM IBudge, Ernest Alfred Th. Wallis, Hieroglyphic Texts from Egyptian Stelae, &c., in the British Museum, Part I. 1911. HTBM IIBudge, Ernest Alfred Th. Wallis, Hieroglyphic Texts from Egyptian Stelae, &c., in the British Museum Part II. 1912. HTBM IIIBudge, Ernest Alfred Th. Wallis, Hieroglyphic Texts from Egyptian Stelae, &c., in the British Museum, Part III. 1912. @@ -2355,130 +1528,77 @@

      Abbreviat HTBM VBudge, Ernest Alfred Th. Wallis, Hieroglyphic Texts from Egyptian Stelae, &c., in the British Museum, Part V. 1914. HTBM XBierbrier, Morris Leonard, Hieroglyphic texts from Egyptian stelae, etc., in the British Museum, Part 10. 1982. Hughes, Catalog BrooklynHughes, George Robert, Catalog of Demotic Texts in the Brooklyn Museum. OIC 29. 2005. - Hughes, in: Fs WilsonHughes, George Robert, A Demotic Papyrus in the Library of G. Michaelides. In: Fs Wilson, 1969, 43-54. - Hughes, JNES 32, 1973Hughes, George Robert, Rezension zu: Demotische und koptische Texte. Hrsg. von Erich Lüddeckens, Angelicus Kropp, O. P. Alfred Hermann, Manfred Weber, 1968. In: JNES 32, 1973, 242-247. Hughes, Land LeasesHughes, George Robert, Saite Demotic Land Leases. SAOC 28. 1952. Hughes/Jasnow, Hawara PapyriHughes, George Robert, Jasnow, Richard, Oriental Institute Hawara Papyri. Demotic and Greek Texts from an Egyptian Family Archive in the Fayum (Fourth to Third Century B.C.). OIP 113. 1997. Hugonot, Le jardinHugonot, Jean Claude, Le jardin dans l’Égypte ancienne. 1989. - Hussein, DE 53, 2002Hussein, Mahmoud I., Notes on: ancient Egyptian medical terminology 2: medical re-interpretation of rꜣ-ib ( 𓂋𓏤‌𓄣𓏤). In: DE 53, 2002, 39-45. HyksosThe Hyksos. New Historical and Archaeological Perspectives. Hrsg. von Oren, Eliezer D. UMM 96. 1997. HymnenHymnen der Alten Welt im Kulturvergleich. Hrsg. von Burkert, Walter, Stolz, Fritz. OBO 131. 1992. I. Archaeological ReportReisner, George Andrew, The Archaeological Survey of Nubia 1907/08. Vol. 1. Archaeological Report. 1910. I. ReportFirth, Cecil M., The Archaeological Survey of Nubia. Report for 1908-1909. Vol. 1. Report on the Work of Season. 2. Catalogue of Graves and their Contents. 1912. II. Plates and PlanesFirth, Cecil M., The Archaeological Survey of Nubia. Report for 1908-1909. Vol. 2: Plates and Plans Accompanying Volume 1. 1912. II. Report on the Human RemainsSmith, Grafton Elliot, Jones, Frederic Wood, The Archaeological Survey of Nubia 1907/08. Vol. 2. Report on the Human Remains. 1910. - Ikram, in: Fs JosephsonIkram, Salima, A pasha's pleasures: R. G. Gayer-Anderson and his pharaonic collection in Cairo. In: Fs Josephson, 2010, 177-185. - Ikram/Rossi, JEA 90, 2004Ikram, Salima, Rossi, Corinna, An Early Dynastic serekh from the Kharga Oasis. In: JEA 90, 2004, 211-214. Illahun, Kahun, GurobPetrie, William M. Flinders, Illahun, Kahun and Gurob: 1889-90. 1891. Imhausen, AlgorithmenImhausen, Annette, Ägyptische Algorithmen. Eine Untersuchung zu den mittelägyptischen mathematischen Aufgabentexten. ÄA 65. 2003. Imhausen/Pommerening, Translating Writings of Early ScholarsTranslating Writings of Early Scholars in the Ancient Near East, Egypt, Greece and Rome. Methodological Aspects with Examples. Hrsg. von Imhausen, Annette, Pommerening, Tanja. Beiträge zur Altertumskunde 344. 2016. Inschriften des Tempels von Edfu, Begleitheft 6Die Inschriften des Tempels von Edfu, Begleitheft 6: Materialien und Studien. Hrsg. von Kurth, Dieter, Waitkus, Wolfgang. 2010. Inscr. Hier. Char.Birch, Samuel, Inscriptions in the Hieratic and Demotic Character from the Collections of the British Museum. 1868. + Inscr. SinaiGardiner, Alan H., Peet, Thomas Eric, Černý, Jaroslav, The Inscriptions of Sinai. EES 45. 1952-1955. Inscr. Sinai 1Gardiner, Alan H., Peet, Thomas Eric, Černý, Jaroslav, The Inscriptions of Sinai. Part I. Introduction and Plates. EES 45. 1952. Inscr. Sinai 2Černý, Jaroslav, The Inscriptions of Sinai from manuscripts of Alan H. Gardiner and T. Eric Peet. Part II. Translations and Commentary. EES 45. 1955. - Inscr. SinaiGardiner, Alan H., Peet, Thomas Eric, Černý, Jaroslav, The Inscriptions of Sinai. EES 45. 1952-1955. ITE I/1Kurth, Dieter, Edfou VIII, Die Inschriften des Tempels von Edfu, Abteilung I, Übersetzungen, Band 1. 1998. ITE I/2Kurth, Dieter, Edfou VII, Die Inschriften des Tempels von Edfu, Abteilung I, Übersetzungen, Band 2. 2004. - Iversen, in: CrossroadIversen, Erik, Anastasi IV, 2.4-2.9 = Koller, 2.2-2.3 = Anastasi V, 5.1. In: Crossroad, 1986, 181-187. - Iversen, JEA 65, 1979Iversen, Erik, The Chester Beatty Papyrus, No. I, recto XVI, 9-XVII, 13. In: JEA 65, 1979, 78-88. Iversen, Paints and PigmentsIversen, Erik, Some Ancient Egyptian Paints and Pigments. A Lexicographical Study. 1955. Iversen, Papyrus Carlsberg no. 8Iversen, Erik, Papyrus Carlsberg no. VIII: with some remarks on the Egyptian origin of some popular birth prognoses. HFM 26/5. 1939. - Jacobsohn, in: Zeitlose DokumenteJacobsohn, Helmuth, Das Gespräch eines Lebensmüden mit seinem Ba. In: Zeitlose Dokumente, 1952, 1-48. - Jacquet-Gordon, DomainesJacquet-Gordon, Helen, Les noms des domaines funéraires sous l'ancien empire égyptien. BdE 34. 1962. + Jacquet-Gordon, DomainesJacquet-Gordon, Helen, Les noms des domaines funéraires sous l’ancien empire égyptien. BdE 34. 1962. Jäger, BerufstypologienJäger, Stephan, Altägyptische Berufstypologien. LingAeg – StudMon 4. 2004. James, Corpus of Hieroglyphic InscriptionsJames, Thomas G. H., Corpus of hieroglyphic inscriptions in The Brooklyn Museum, I: from Dynasty I to the end of Dynasty XVIII. 1974. James, HekanakhteJames, Thomas G. H., The Hekanakhte Papers and Other Early Middle Kingdom Documents. PMMA 19. 1962. - James, Pharao's PeopleJames, Thomas G. H., Pharaoh's People. Scenes from Life in Imperial Egypt. 1984. + James, Pharao's PeopleJames, Thomas G. H., Pharaoh’s People. Scenes from Life in Imperial Egypt. 1984. James/Davies, SculptureJames, Thomas G. H., Davies, W. V., Egyptian Sculpture. 1983. Janák, StaroegyptskáJanák, Jiří, Staroegyptská Kniha mrtvých: Kapitola 105. Pontes Pragenses 28. 2003. Jankuhn, Schutz des HausesJankuhn, Dieter, Das Buch "Schutz des Hauses". 1972. Jansen-Winkeln, BiographienJansen-Winkeln, Karl, Ägyptische Biographien der 22. und 23. Dynastie, Teil 1-3. ÄUAT 8/1-2. 1985. - Jansen-Winkeln, Biographische Inschriften der SpätzeitJansen-Winkeln, Karl, Biographische und religiöse Inschriften der Spätzeit, Teil 1-2. ÄUAT 45. 2001. - Jansen-Winkeln, BN 71, 1994Jansen-Winkeln, Karl, Der Beginn der libyschen Herrschaft in Ägypten. In: Biblische Notizen 71, 1994, 78-97. - Jansen-Winkeln, CdE 67, 1992Jansen-Winkeln, Karl, Zu einigen religiösen und historischen Inschriften. In: CdE 67, 1992, 240-259. - Jansen-Winkeln, GM 123, 1991Jansen-Winkeln, Karl, Der Ausdruck wꜥ zꜣ wꜥ. In: GM 123, 1991, 53-56. - Jansen-Winkeln, GM 180, 2001Jansen-Winkeln, Karl, Der Schlußsatz der Biographie des Chnumhotep in Beni Hassan. In: GM 180, 2001, 77-80. - Jansen-Winkeln, GM 259, 2019Jansen-Winkeln, Karl, Zwei Kanopensätze aus der Nebneteru-Familie mit ungewöhnlichen Texten. In: GM 259, 2019, 113-131. - Jansen-Winkeln, in: Fs FechtJansen-Winkeln, Karl, Drei Gebete aus der 22. Dynastie. In: Fs Fecht, 1987, 238-253. - Jansen-Winkeln, in: La XXVIe dynastieJansen-Winkeln, Karl, Der Charakter als Erbschaft: Die Inschriften der Kniefigur des Gemnefhorbak. In: La XXVIe dynastie, 2011, 175-184. - Jansen-Winkeln, JEA 83, 1997Jansen-Winkeln, Karl, Eine Grabübernahme in der 30. Dynastie. In: JEA 83, 1997, 169-178. - Jansen-Winkeln, JNES 52, 1993Jansen-Winkeln, Karl, The Career of the Egyptian High Priest Bakenkhons. In: JNES 52, 1993, 221-225. - Jansen-Winkeln, MDAIK 60, 2004Jansen-Winkeln, Karl, Zwei Statuen der Spätzeit aus der Cachette von Karnak. In: MDAIK 60, 2004, 93-105. - Jansen-Winkeln, Or 72, 2003Jansen-Winkeln, Karl, Alara und Taharka: zur Geschichte des nubischen Königshauses. In: Or 72, 2003, 141-158. - Jansen-Winkeln, SAK 22, 1995Jansen-Winkeln, Karl, Neue biographische Texte der 22./23. Dynastie. In: SAK 22, 1995, 169-194. - Jansen-Winkeln, SAK 23, 1996Jansen-Winkeln, Karl, "Horizont" und "Verklärtheit": Zur Bedeutung der Wurzel ꜣḫ. In: SAK 23, 1996, 201-215. - Jansen-Winkeln, SAK 24, 1997Jansen-Winkeln, Karl, Eine Schreiberstatue der frühen 26. Dynastie. In: SAK 24, 1997, 103-114. - Jansen-Winkeln, SAK 28, 2000Jansen-Winkeln, Karl, Zum Verständnis der "Saitischen Formel". In: SAK 28, 2000, 83-124. - Jansen-Winkeln, SAK 32, 2004Jansen-Winkeln, Karl, Sprachliche Bemerkungen zu den "Unterweltsbüchern". In: SAK 32, 2004, 205-232. - Jansen-Winkeln, SAK 33, 2005Jansen-Winkeln, Karl, Vier Denkmäler einer thebanischen Offiziersfamilie der 22. Dynastie. In: SAK 33, 2005, 125-146. - Jansen-Winkeln, SAK 34, 2006Jansen-Winkeln, Karl, Thebanische Statuen der 25. und 26. Dynastie. In: SAK 34, 2006, 217-240. - Jansen-Winkeln, SAK 36, 2007Jansen-Winkeln, Karl, Drei Statueninschriften einer Familie aus frühptolemäischer Zeit. In: SAK 36, 2007, 49-79. + Jansen-Winkeln, BRISJansen-Winkeln, Karl, Biographische und religiöse Inschriften der Spätzeit, Teil 1-2. ÄUAT 45. 2001. Jansen-Winkeln, SentenzenJansen-Winkeln, Karl, Sentenzen und Maximen in den Privatinschriften der ägyptischen Spätzeit. 1999. - Jansen-Winkeln, VA 1, 1985Jansen-Winkeln, Karl, Die Haut der Menschen (zu UC 14333, Z. 13). In: VA 1, 1985, 107. - Jansen-Winkeln, ZÄS 122, 1995Jansen-Winkeln, Karl, Die Plünderung der Königsgräber des Neuen Reiches. In: ZÄS 122, 1995, 62-78. + Janssen, AutobiografieJanssen, Jozef M. A., De traditioneele egyptische Autobiografie voor het Nieuwe Rijk. 1946. Janssen, Autobiografie 1Janssen, Jozef M. A., De traditioneele egyptische Autobiografie voor het Nieuwe Rijk, 1. de teksten. 1946. Janssen, Autobiografie 2Janssen, Jozef M. A., De traditioneele egyptische Autobiografie voor het Nieuwe Rijk, 2. vertaling en commentaar. 1946. - Janssen, AutobiografieJanssen, Jozef M. A., De traditioneele egyptische Autobiografie voor het Nieuwe Rijk. 1946. - Janssen, BES 13, 1997Janssen, Jacobus (Jac) Johannes, The Daily Bread. A Contribution to the Study of the Ancient Egyptian Diet. In: BES 13, 1997, 15-38. Janssen, Daily DressJanssen, Jacobus (Jac) Johannes, Daily Dress at Deir el-Medîna. Words for Clothing. GHP Egyptology 8. 2008. - Janssen, EESOP 7, 1988Janssen, Jacobus (Jac) Johannes, Marriage Problems and Public Reactions. In: EES OP 7, 1988, 134-137. Janssen, FurnitureJanssen, Jacobus (Jac) Johannes, Furniture at Deir el-Medîna including Wooden Containers of the New Kingdom and Ostracon Varille 19. GHP Egyptology 9. 2009. - Janssen, in: Fs DemaréeJanssen, Jacobus (Jac) Johannes, Donkeys at Deir el-Medina. In: Fs Demarée, 2005, XI, 127. - Janssen, in: Fs JunkerJanssen, Jozef M. A., Über Hundenamen im pharaonischen Ägypten. In: Fs Junker, 1958, 176-182. - Janssen, in: Fs LexaJanssen, Jozef M. A., La stèle de Montouemhat trouvée à Semna. In: Fs Lexa, 1952, 442-445. - Janssen, JEA 50, 1964Janssen, Jacobus (Jac) Johannes, Once more the Egyptian word for 'comb'. In: JEA 50, 1964, 178-179. - Janssen, JEA 77, 1991Janssen, Jacobus (Jac) Johannes, Requisitions from Upper Egyptian Temples (P. BM 10401). In: JEA 77, 1991, 79-94. - Janssen, JNES 12, 1953Janssen, Jozef M. A., The Stela (Khartoum No. 3) from Uronarti. In: JNES 12, 1953, 51-55. Janssen, Late Ramesside Letters and CommunicationsJanssen, Jacobus (Jac) Johannes, Late Ramesside Letters and Communications. HPBM 6. 1991. - Janssen, OMRO 41, 1960Janssen, Jacobus (Jac) Johannes, Nine Letters from the Time of Ramses II. In: OMRO 41, 1960, 31-47. Janssen, PricesJanssen, Jacobus (Jac) Johannes, Commodity Prices from the Ramessid Period: an economic study of the village of necropolis workmen at Thebes. 1975. Janssen, Ship's LogsJanssen, Jacobus (Jac) Johannes, Two Ancient Egyptian Ship’s Logs, Papyrus Leiden I 350 Verso and Papyrus Turin 2008+2016. OMRO 42 Suppl. 1961. Janssen, Village VariaJanssen, Jacobus (Jac) Johannes, Village Varia: Ten Studies on the History and Administration of Deir el-Medina. EgUit 11. 1997. - Janssen/Janssen, LingAeg 7, 2000Janssen, Jacobus (Jac) Johannes, Janssen, Rosalind M., mk. An Obscure Designation of Cloth. In: LingAeg 7, 2000, 177-182. - Janssen/Pestman, JESHO 11, 1968Janssen, Jacobus (Jac) Johannes, Pestman, Pieter W., Burial and Inheritance in the Community of the Necropolis Workmen at Thebes (Pap. Bulaq X and O. Petrie 16). In: JESHO 11, 1968, 137-170. - Jaritz, DHA 136, 1989Jaritz, Horst, Le temple d'Amenophis III. In: DHA 136, 1989, 46-49. - Jaritz, MDAIK 48, 1992Jaritz, Horst, Der Totentempel des Merenptah in Qurna: 1. Grabungsbericht (1.-6. Kampagne). In: MDAIK 48, 1992, 65-91. Jasnow, Late Hieratic Wisdom TextJasnow, Richard, A Late Period Hieratic Wisdom Text (P. Brooklyn 47.218.135). SAOC 52. 1992. Jasnow/Zauzich, Book of ThothJasnow, Richard, Zauzich, Karl-Theodor, The Ancient Egyptian Book of Thoth. A Demotic Discourse on Knowledge and Pendant to the Classical Hermetica. 2005. - Jean/Loyrette, in: Univers vegétal IIJean, R.-A., Loyrette, A.-M., À propos des textes médicaux des papyrus du Ramesseum nos III et IV. I: la contraception. In: Univers végétal II, 2001, 537-592. - Jean/Loyrette, in: Univers végétal IIIJean, R.-A., Loyrette, A.-M., À propos des textes médicaux des papyrus du Ramesseum nos III et IV. II: la gynécologie. In: Univers végétal III, 2005, 351-489. - Jean/Loyrette, La mère, l'enfant et le laitJean, R.-A., Loyrette, A.-M., La mère, l’enfant et le lait en Égypte Ancienne. Traditions médico-religieuses. Une étude de sénologie égyptienne, Textes médicaux des Papyrus Ramesseum nos III et IV. 2010. - Jelgersma, JEOL 23, 1975Jelgersma, H. C., The Ancient Egyptians and the Bushmen. In: JEOL 23, 1975, 365-367. - Jéquier, BIFAO 19, 1922Jéquier, Gustave, Matériaux pour servir à l'établissement d'un dictionnaire d'archéologie égyptienne. In: BIFAO 19, 1922, 1-271. + Jasnow/Zauzich, Book of Thoth IIJasnow, Richard, Zauzich, Karl-Theodor, The ancient Egyptian Book of Thoth II. Revised transliteration and translation, new fragments, and material for future study. 2021. (new) + Jean/Loyrette, La mère, l’enfant et le laitJean, R.-A., Loyrette, A.-M., La mère, l’enfant et le lait en Égypte Ancienne. Traditions médico-religieuses. Une étude de sénologie égyptienne, Textes médicaux des Papyrus Ramesseum nos III et IV. 2010. Jéquier, Deux PyramidesJéquier, Gustave, Deux pyramides du moyen empire. Fouilles Saqq. 12. 1933. - Jéquier, Frises d'ObjetsJéquier, Gustave, Les frises d'objets des sarcophages du moyen empire. MIFAO 47. 1921. - Jéquier, L'architecture Jéquier, Gustave, L'architecture et la décoration dans l'ancienne Égypte, Bd. 1-3. 1920-1924. - Jéquier, L'architecture IJéquier, Gustave, L'architecture et la décoration dans l'ancienne Égypte, Bd. 1, Les temples memphites et thébains des origines à la XVIIIe dynastie. 1920. - Jéquier, L'architecture IIJéquier, Gustave, L'architecture et la décoration dans l'ancienne Égypte, Bd. 2, Les temples ramessides et saïtes de la XIXe à la XXXe dynastie. 1922. - Jéquier, L'architecture IIIJéquier, Gustave, L'architecture et la décoration dans l'ancienne Égypte, Bd. 3, Les temples ptolémaïques et romains. 1924. - Jéquier, ManuelJéquier, Gustave, Manuel d'archéologie égyptienne. Les éléments de l'architecture. 1924. + Jéquier, Frises d’ObjetsJéquier, Gustave, Les frises d’objets des sarcophages du moyen empire. MIFAO 47. 1921. + Jéquier, L’architecture Jéquier, Gustave, L’architecture et la décoration dans l’ancienne Égypte, Bd. 1-3. 1920-1924. + Jéquier, L'architecture IJéquier, Gustave, L’architecture et la décoration dans l’ancienne Égypte, Bd. 1, Les temples memphites et thébains des origines à la XVIIIe dynastie. 1920. + Jéquier, L'architecture IIJéquier, Gustave, L’architecture et la décoration dans l’ancienne Égypte, Bd. 2, Les temples ramessides et saïtes de la XIXe à la XXXe dynastie. 1922. + Jéquier, L'architecture IIIJéquier, Gustave, L’architecture et la décoration dans l’ancienne Égypte, Bd. 3, Les temples ptolémaïques et romains. 1924. + Jéquier, ManuelJéquier, Gustave, Manuel d’archéologie égyptienne. Les éléments de l’architecture. 1924. Jéquier, Mastabat FaraounJéquier, Gustave, Le Mastabat Faraoun. Fouilles Saqq. 6-7. 1928. + Jéquier, Pepi IIJéquier, Gustave, Le monument funéraire de Pepi II. Fouilles Saqq. 1936-40. Jéquier, Pepi II. Tome 1Jéquier, Gustave, Le monument funéraire de Pepi II. Tome 1: Le tombeau royal. Fouilles Saqq. 8. 1936. Jéquier, Pepi II. Tome 2Jéquier, Gustave, Le monument funéraire de Pepi II. Tome 2: Le temple. Fouilles Saqq. 9. 1938. Jéquier, Pepi II. Tome 3Jéquier, Gustave, Le monument funéraire de Pepi II. Tome 3: Les approches du temple. Fouilles Saqq. 10. 1940. - Jéquier, Pepi IIJéquier, Gustave, Le monument funéraire de Pepi II. Fouilles Saqq. 1936-40. - Jéquier, Pyramide d'AbaJéquier, Gustave, La Pyramide d'Aba. Fouilles Saqq. 14. 1935. - Jéquier, Pyramide d'OudjebtenJéquier, Gustave, La pyramide d'Oudjebten. 1928. + Jéquier, Pyramide d’AbaJéquier, Gustave, La Pyramide d’Aba. Fouilles Saqq. 14. 1935. + Jéquier, Pyramide d’OudjebtenJéquier, Gustave, La pyramide d’Oudjebten. 1928. Jéquier, Pyramides des reines Neit et ApouitJéquier, Gustave, Les pyramides des reines Neit et Apouit. Fouilles Saqq. 13. 1933. Jéquier, TombeauxJéquier, Gustave, Tombeaux de particuliers contemporains de Pepi II. Fouilles Saqq. 11. 1929. Jerusalem StudiesJerusalem Studies in Egyptology. Hrsg. von Grumach, Irene. ÄUAT 40. 1998. - Jirásková, in: Bárta/Coppens/Krejčí, Abusir and Saqqara 2010Jirásková, Lucie, Stone vessels of AS54 at Abusir South: Preliminary report. In: Bárta/Coppens/Krejčí, Abusir and Saqqara 2010, 2011, 447-464. - Johnson, in: Art Amenhotep IIIJohnson, William Raymond, Images of Amenhotep III in Thebes: Styles and Intentions. In: Art Amenhotep III, 1990, 26-46. Johnson, Verbal SystemJohnson, Janet H., The Demotic Verbal System. SAOC 38. 1976. - Jonckheere, CdE 29 (57), 1954 Jonckheere, Frans, Prescriptions médicales sur ostraca hiératiques. In: CdE 29 (57), 1954, 46-61. Jonckheere, Papyrus Médical Chester BeattyJonckheere, Frans, Le papyrus médical Chester Beatty. 1947. - Jonckheere, SAGM 37 (3/4), 1953Jonckheere, Frans, L'ostracon médical du Louvre. In: SAGM 37 (3/4), 1953, 278-282. Jones, Naut. TitlesJones, Dilwyn, A Glossary of Ancient Egyptian Nautical Titles and Terms. 1988. Jones, Titles OKJones, Dilwyn, An Index of Ancient Egyptian Titles, Epithets and Phrases of the Old Kingdom. BAR-IS 866/I-II. 2000. Jørgensen, Cat. Egypt IJørgensen, Mogens, Catalogue Egypt I (3000-1550 BC) Ny Carlsberg Glyptotek. 1996. - Jucha, in: Midant-Reynes/Tristant, Egypt at its origins 2Jucha, Mariusz A., The corpus of "potmarks" from the graves at Tell el-Farkha. In: Midant-Reynes/Tristant, Egypt at its origins 2, 2008, 133-149. Junge, Elephantine XIJunge, Friedrich, Elephantine XI. Funde und Bauteile. 1.- 7. Kampagne, 1969-1976. AV 49. 1987. - Junge, in: Fs EdelJunge, Friedrich, Der Gebrauch von jw im mittelägyptischen Satz. In: Fs Edel, 1979, 263-271. - Junge, in: TUAT 3,5Junge, Friedrich, Die Erzählung vom Streit der Götter Horus und Seth um die Herrschaft. In: TUAT 3,5, 1995, 930-950. - Junge, in: TUAT Erg.Junge, Friedrich, Die Eroberung von Joppe. In: TUAT Erg., 2001, 143-146. Junge, Näg. Gr.Junge, Friedrich, Einführung in die Grammatik des Neuägyptischen. 1996, 1999 (2. verb. Aufl.), 2008 (3. verb. Aufl.). Junge, PtahhotepJunge, Friedrich, Die Lehre Ptahhoteps und die Tugenden der ägyptischen Welt. OBO 193. 2003. - Junker, ASAE 49, 1949Junker, Hermann, Zu den Titeln des 𓅩‌𓂜𓏍. In: ASAE 49, 1949, 207-215. + Junker, GîzaJunker, Hermann, Bericht über die von der Akademie der Wissenschaften in Wien auf gemeinsame Kosten mit Dr. Wilhelm Pelizaeus unternommenen Grabungen auf dem Friedhof des Alten Reiches bei den Pyramiden von Gîza. DAWW 69-75. 1929-55. Junker, Gîza IJunker, Hermann, Bericht über die von der Akademie der Wissenschaften in Wien auf gemeinsame Kosten mit Dr. Wilhelm Pelizaeus unternommenen Grabungen auf dem Friedhof des Alten Reiches bei den Pyramiden von Gîza. Die Mastabas der IV. Dynastie auf dem Westfriedhof. Gîza I. DAWW 69. 1929. Junker, Gîza IIJunker, Hermann, Bericht über die von der Akademie der Wissenschaften in Wien auf gemeinsame Kosten mit Dr. Wilhelm Pelizaeus unternommenen Grabungen auf dem Friedhof des Alten Reiches bei den Pyramiden von Gîza. Die Mastabas der beginnenden V. Dynastie auf dem Westfriedhof. Gîza II. DAWW 70. 1934. Junker, Gîza IIIJunker, Hermann, Bericht über die von der Akademie der Wissenschaften in Wien auf gemeinsame Kosten mit Dr. Wilhelm Pelizaeus unternommenen Grabungen auf dem Friedhof des Alten Reiches bei den Pyramiden von Gîza. Die Mastabas der vorgeschrittenen V. Dynastie auf dem Westfriedhof. Gîza III. DAWW 70,5. 1938. @@ -2491,59 +1611,34 @@

      Abbreviat Junker, Gîza XJunker, Hermann, Gîza X: Bericht über die von der Akademie der Wissenschaften in Wien auf gemeinsame Kosten mit Dr. Wilhelm Pelizaeus unternommenen Grabungen auf dem Friedhof des Alten Reiches bei den Pyramiden von Gîza. Der Friedhof südlich der Cheopspyramide, Westteil. 1951. Junker, Gîza XIJunker, Hermann, Gîza XI: Bericht über die von der Akademie der Wissenschaften in Wien auf gemeinsame Kosten mit Dr. Wilhelm Pelizaeus unternommenen Grabungen auf dem Friedhof des Alten Reiches bei den Pyramiden von Gîza. Der Friedhof südlich der Cheopspyramide, Ostteil. 1953. Junker, Gîza XIIJunker, Hermann, Gîza XII: Bericht über die von der Akademie der Wissenschaften in Wien auf gemeinsame Kosten mit Dr. Wilhelm Pelizaeus unternommenen Grabungen auf dem Friedhof des Alten Reiches bei den Pyramiden von Gîza. Schlussband mit Zusammenfassungen und Gesamt-Verzeichnissen von Band I-XII. 1955. - Junker, GîzaJunker, Hermann, Bericht über die von der Akademie der Wissenschaften in Wien auf gemeinsame Kosten mit Dr. Wilhelm Pelizaeus unternommenen Grabungen auf dem Friedhof des Alten Reiches bei den Pyramiden von Gîza. DAWW 69-75. 1929-55. Junker, GrammatikJunker, Hermann, Grammatik der Denderatexte. 1906. Junker, OnurislegendeJunker, Hermann, Die Onurislegende. DAWW 59, 1-2. 1917. Junker, Philae IJunker, Hermann, Der große Pylon des Tempels der Isis in Philä. DÖAW Sonderbd. 1958. - Junker, ZÄS 43, 1906Junker, Hermann, Poesie aus der Spätzeit. In: ZÄS 43, 1906, 101-127. - Junker, ZÄS 63, 1928Junker, Hermann, Die Stele des Hofarztes Irj. In: ZÄS 63, 1928, 53-70. - Junker, ZÄS 77, 1941Junker, Hermann, rꜣ "Handlung" als Präfix in Zusammensetzungen. In: ZÄS 77, 1941, 3-7. - Junker/Eilmann/Schott/Stier, MDAIK 1, 1930Junker, Hermann, Eilmann, Richard, Schott, Siegfried, Stier, Hans Erich, Bericht über die vom Deutschen Institut für Ägyptische Altertumskunde nach dem Ostdelta-Rand unternommene Erkundungsfahrt. In: MDAIK 1, 1930, 1-37. Junker/Winter, Philae IIJunker, Hermann, Winter, Erich, Das Geburtshaus des Tempels der Isis in Philä. DÖAW Sonderbd. 1965. + JWISJansen-Winkeln, Karl, Inschriften der Späzeit. 2007 ff. JWIS IJansen-Winkeln, Karl, Inschriften der Spätzeit. Teil I: Die 21. Dynastie. 2007. JWIS IIJansen-Winkeln, Karl, Inschriften der Spätzeit, Teil II: Die 22.-24. Dynastie. 2007. JWIS IIIJansen-Winkeln, Karl, Inschriften der Spätzeit III: Die 25. Dynastie. 2009. JWIS IVJansen-Winkeln, Karl, Inschriften der Spätzeit, Teil IV: die 26. Dynastie. 2014. - JWISJansen-Winkeln, Karl, Inschriften der Späzeit. 2007 ff. JWSpGJansen-Winkeln, Karl, Spätmittelägyptische Grammatik der Texte der 3. Zwischenzeit. 1996. - Kaczmarczyk, JEA 77, 1991Kaczmarczyk, Alexander, The Identity of wšbt Alum. In: JEA 77, 1991, 195. - Kadish, JEA 59, 1973Kadish, Gerald E., British Museum Writing Board 5645: The Complaints of Kha-Kheper-Re'-Senebu. In: JEA 59, 1973, 77-90. - KagemniJéquier, Gustave, Die Lehre für Kagemni. In: pPrisse, 1911, Tf. 1. Kahl, Frühägypt. WBKahl, Jochem, Frühägyptisches Wörterbuch. 2002 ff. - Kahl, in: Fs KrauseKahl, Jochem, Zur Problematik der sogenannten Steuervermerke im Ägypten der 0.-1. Dynastie. In: Fs Krause, 1995, 168-176. - Kahl, in: Fs SchenkelKahl, Jochem, Der Gebrauch morphologischer und phonologischer Stilmittel im großen Aton-Hymnus. In: Fs Schenkel, 1995, 51-89. Kahl, RaKahl, Jochem, "Ra is my Lord": searching for the rise of the sun god at the dawn of Egyptian history. Menes 1. 2007. - Kahl, SAK 22, 1995Kahl, Jochem, Das überlieferungsgeschichtliche Verhältnis von Unas und Sesostrisanch am Beispiel von PT 302-312. In: SAK 22, 1995, 195-209. Kahl, Siut-ThebenKahl, Jochem, Siut-Theben. Zur Wertschätzung von Traditionen im alten Ägypten. PÄ 13. 1999. Kahl, SystemKahl, Jochem, Das System der ägyptischen Hieroglyphenschrift in der 0.-3. Dynastie. GOF 29. 1994. Kahl/Kloth/Zimmermann, InschriftenKahl, Jochem, Kloth, Nicole, Zimmermann, Ursula, Die Inschriften der 3. Dynastie. Eine Bestandsaufnahme. ÄA 56. 1995. Kahun, Gurob, HawaraPetrie, William M. Flinders, Kahun, Gurob and Hawara. 1890. - Kaiser et al., MDAIK 43, 1987Kaiser, Werner, Dreyer, Günter, Jaritz, Horst, Stadt und Tempel von Elephantine. 13./14. Grabungsbericht. In: MDAIK 43, 1987, 75-114. - Kaiser, et al., MDAIK 51, 1995Kaiser, Werner, Becker, Peter Jörg, Bommas, Martin, Hoffmann, Friedhelm, Jaritz, Horst, Müntel, Sven, Pätznick, Jean-Pierre, Ziermann, Martin, Stadt und Tempel von Elephantine: 21./22. Grabungsbericht. In: MDAIK 51, 1995, 99-187. - Kaiser, in: Fs SimpsonKaiser, Werner, Zwei weitere ḥb-ḥḏ.t-Belege. In: Fs Simpson, 1996, 451-459. - Kaiser, MDAIK 39, 1983Kaiser, Werner, Zu den msw-nswt der älteren Bilddarstellungen und der Bedeutung von rpwt. In: MDAIK 39, 1983, 261-296. - Kaiser/Dreyer, MDAIK 38, 1982Kaiser, Werner, Dreyer, Günter, Umm el-Qaab. Nachuntersuchungen im frühzeitlichen Königsfriedhof: 2. Vorbericht. In: MDAIK 38, 1982, 211-269. Kákosy/Bács/Bartos/Fábián/Gaál, DjehutymesKákosy, László, Bács, Tamás A., Bartos, Zoltán, Fábián, Zoltán Imre, Gaál, Ernö, The Mortuary Monument of Djehutymes (TT 32). StudAeg SMa 1. 2004. - Kákosy/Fábián, SAK 22, 1995Kákosy, László, Fábián, Zoltán Imre, Harper's Song in the Tomb of Djehutimes (TT 32). In: SAK 22, 1995, 211-225. + KalabchahGauthier, Henri, Le temple de Kalabchah. Temples Immergés. 1911-1914. Kalabchah 1Gauthier, Henri, Le temple de Kalabchah, Bd. 1. Temples Immergés. 1911. Kalabchah 2Gauthier, Henri, Le Temple de Kalabchah, Bd. 2. Temples Immergés. 1914. - KalabchahGauthier, Henri, Le temple de Kalabchah. Temples Immergés. 1911-1914. - Kamal, ASAE 38, 1938Kamal, Moharram, The Stela of [sḥtp-ib-Rꜥ] in the Egyptian Museum. In: ASAE 38, 1938, 265-283. - Kamal, ASAE 40, 1940Kamal, Moharram, The Stela of [sḥtp-ib-Rꜥ] in the Egyptian Museum (verso). In: ASAE 40, 1940, 209-229. Kamal, Steles PtolemaiquesKamal, Ahmed Bey, Stèles ptolémaïques et romaines (CG 22001-22208). 1904-1905. - Kammerzell, in: TUAT 3,5 (1)Kammerzell, Frank, Vom Streit zwischen Leib und Kopf. In: TUAT 3,5, 1995, 951-954. - Kammerzell, in: TUAT 3,5 (2)Kammerzell, Frank, Ein ägyptischer Gott reist nach Bachatna, um die von einem Dämonen besessene Prinzessin Bintrischji zu heilen (Bentresch-Stele). In: Junge, in: TUAT 3,5, 1995, 955-964. - Kammerzell, in: TUAT 3,5 (3)Kammerzell, Frank, Von der Affäre um König Nafirku'ri'a und seinem General. In: TUAT 3,5, 1995, 965-969. - Kammerzell, in: TUAT 3,5 (4)Kammerzell, Frank, Die Tötung des Falkendämonen. In: TUAT 3,5, 1995, 970-972. - Kammerzell, in: TUAT 3,5 (5)Kammerzell, Frank, Mi'jare' in der Unterwelt (Papyrus Vandier). In: TUAT 3,5, 1995, 973-990. - Kammerzell, LingAeg 7, 2000Kammerzell, Frank, Das Verspeisen der Götter. Religiöse Vorstellung oder poetische Fiktion? In: LingAeg 7, 2000, 183-218. - Kammerzell/Sternberg, in: TUAT 2,1Kammerzell, Frank, Sternberg-El-Hotabi, Heike, Ägyptische Prophetien und Orakel. In: TUAT 2,1, 1986, 102-137. Kampp, Die thebanische NekropoleKampp-Seyfried, Friederike, Die thebanische Nekropole: zum Wandel des Grabgedankens von der 18. bis zur 20. Dynastie. Theben XIII. 1996. Kanawati et al., DeshashaKanawati, Naguib, McFarlane, Ann, Charoubim, Nabil, Salama, Atef Helmi, Victor, Naguib, Deshasha. The Tombs of Inti, Shedu and Others. ACER 5. 1993. Kanawati, AkhmimKanawati, Naguib, Akhmim in the Old Kingdom. Part I: Chronology and Administration. ACE-Stud. 2. 1992. + Kanawati, Deir el-GebrawiKanawati, Naguib, Deir el-Gebrawi. 2005-2007. Kanawati, Deir el-Gebrawi IKanawati, Naguib, Deir el-Gebrawi Vol. 1. The Northern Cliff. ACER 23. 2005. Kanawati, Deir el-Gebrawi IIKanawati, Naguib, Deir el-Gebrawi Vol. II. The Southern Cliff. The Tombs of Ibi and Others. ACER 25. 2007. - Kanawati, Deir el-GebrawiKanawati, Naguib, Deir el-Gebrawi. 2005-2007. + Kanawati, El-HawawishKanawati, Naguib, The Rock Tombs of el-Hawawish. 1980-1992. Kanawati, El-Hawawish IKanawati, Naguib, The rock tombs of el-Hawawish: the cemetery of Akhmim, I. 1980. Kanawati, El-Hawawish IIKanawati, Naguib, The rock tombs of el-Hawawish: the cemetery of Akhmim, II. 1981. Kanawati, El-Hawawish IIIKanawati, Naguib, The rock tombs of el-Hawawish: the cemetery of Akhmim, III. 1982. @@ -2554,11 +1649,8 @@

      Abbreviat Kanawati, El-Hawawish VIIKanawati, Naguib, The rock tombs of el-Hawawish: the cemetery of Akhmim, VII. 1987. Kanawati, El-Hawawish VIIIKanawati, Naguib, The rock tombs of el-Hawawish: the cemetery of Akhmim, VIII. 1988. Kanawati, El-Hawawish XKanawati, Naguib, The rock tombs of el-Hawawish: the cemetery of Akhmim, X. 1992. - Kanawati, El-HawawishKanawati, Naguib, The Rock Tombs of el-Hawawish. 1980-1992. Kanawati, Giza IKanawati, Naguib, Tombs at Giza, Vol. I. Kaiemankh (G4561) and Seshemnefer I (G4940). ACER 16. 2001. Kanawati, Giza IIKanawati, Naguib, McFarlane, Ann, Tombs at Giza, Vol. II. Seshathetep/Heti (G5150), Nesutnefer (G4970) and Seshemnefer II (G5080). ACER 18. 2002. - Kanawati, GM 201, 2004Kanawati, Naguib, Niankhpepy/Sebekhetep/Hepi: Unusual Tomb and Unusual Career. In: GM 201, 2004, 49-62. - Kanawati, GM 89, 1986Kanawati, Naguib, New biographical inscriptions from the First Intermediate Period. In: GM 89, 1986, 43-54. Kanawati, Meir IKanawati, Naguib, Alexakis, E., Mourad, Anna-Latifa, The Cemetery of Meir, Volume I. The Tomb of Pepyankh the Middle. ACER 31. 2012. Kanawati, Teti Cemetery VIIIKanawati, Naguib, The Teti Cemetery at Saqqara Vol. VIII. The Tomb of Inumin. ACER 24. 2006. Kanawati/Abder-Raziq, Mereruka IKanawati, Naguib, Abder-Raziq, Mahmud, Mereruka and his familiy, Part I, The Tomb of Meryteti. ACER 21. 2004. @@ -2573,137 +1665,90 @@

      Abbreviat Känel, Prêtres-ouâbKänel, Frédérique von, Les prêtres-ouâb de Sekhmet et les conjurateurs de Serket. BEHE 87. 1984. Kaplony, Beitr. InschriftenKaplony, Peter, Kleine Beiträge zu den Inschriften der ägyptischen Frühzeit. ÄA 15. 1966. Kaplony, IÄFKaplony, Peter, Die Inschriften der ägyptischen Frühzeit. ÄA 8. 1963. - Kaplony, in: Akten XIIIKaplony, Peter, Das Büchlein Kemit. In: Akten XIII, 1974, 179-197. - Kaplony, Inschriften 1Kaplony, Peter, Die Inschriften der ägyptischen Frühzeit, Bd. I. ÄA 8. 1963. - Kaplony, Inschriften 2Kaplony, Peter, Die Inschriften der Ägyptischen Frühzeit, Bd. II. ÄA 8. 1963. - Kaplony, Inschriften 3Kaplony, Peter, Die Inschriften der Ägyptischen Frühzeit, Bd. III. ÄA 8. 1963. - Kaplony, Inschriften 4Kaplony, Peter, Die Inschriften der Ägyptischen Frühzeit, Bd. 4 Supplement. ÄA 9. 1964. - Kaplony, InschriftenKaplony, Peter, Die Inschriften der ägyptischen Frühzeit I-II. ÄA 8 u. 9. 1963-64. - Kaplony, MDAIK 20, 1965Kaplony, Peter, Bemerkungen zu einigen Steingefäßen mit archaischen Königsnamen. In: MDAIK 20, 1965, 1-46. - Kaplony, MIO 11, 1966Kaplony, Peter, Der Titel wnr(w) nach Spruch 820 der Sargtexte. In: MIO 11, 1966, 137-163. - Kaplony, Or 35, 1966Kaplony, Peter, Das Vorbild des Königs unter Sesostris III. In: Or 35, 1966, 403-412. - Kaplony, Or 41, 1972Kaplony, Peter, Das Papyrusarchiv von Abusir. In: Or 41, 1972, 11-244. Kaplony, RollsiegelKaplony, Peter, Die Rollsiegel des Alten Reichs, I. Allgemeiner Teil mit Studien zum Königtum des Alten Reichs, II. Katalog der Rollsiegel, A. Text, B. Tafeln. MonAeg 2 und 3A-B. 1977 und 1981. Kaplony, SteingefäßeKaplony, Peter, Steingefäße mit Inschriften der Frühzeit und des Alten Reichs. MonAeg 1. 1968. - Kaplony, ZÄS 88, 1962Kaplony, Peter, Gottespalast und Götterfestungen in der ägyptischen Frühzeit. In: ZÄS 88, 1962, 5-16. Kaplony-Heckel, Ägyptische Handschriften Teil 3Kaplony-Heckel, Ursula, Ägyptische Handschriften, Teil 3. VOHD 19/3. 1986. - Kaplony-Heckel, Enchoria 3, 1973Kaplony-Heckel, Ursula, Ein neuer demotischer Papyrus aus der Zeit des Königs Hakoris (Sammlung Michaelides). In: Enchoria 3, 1973, 5-20. - Kaplony-Heckel, in: TUAT 1,6Kaplony-Heckel, Ursula, Ägyptische historische Texte. In: TUAT 1,6, 1985, 525-619. Kaplony-Heckel, Land und LeuteKaplony-Heckel, Ursula, Land und Leute am Nil nach demotischen Inschriften, Papyri und Ostraka, Gesammelte Schriften. ÄA 71. 2009. Kaplony-Heckel, TempeleideKaplony-Heckel, Ursula, Die demotischen Tempeleide. ÄA 6. 1963. Karenberg/Leitz, Heilkunde und Hochkultur IHeilkunde und Hochkultur I. Geburt, Seuche und Traumdeutung in den antiken Zivilisationen des Mittelmeerraumes. Hrsg. von Karenberg, Axel, Leitz, Christian. 2000. Karlshausen, Barque processionnelle divineKarlshausen, Christina, L’iconographie de la barque processionnelle divine en Égypte au Nouvel Empire. OLA 182. 2009. Karnak IVarille, Alexandre, Karnak I. FIFAO 19. 1943. + Karnak-NordFouilles conduites par Clément Robichon, Jean Leclant, Paul Barguet, Karnak-Nord III (1945-49), IV (1949-51). FIFAO 23 u. 25. 1951 u. 1954. Karnak-Nord 1Fouilles conduites par Clément Robichon, Jean Leclant, Paul Barguet, Karnak-Nord III (1945-49). FIFAO 23. 1951. Karnak-Nord 2Barguet, Paul, Leclant, Jean, Fouilles conduites par Clément Robichon, Jean Leclant, Paul Barguet, Karnak-Nord IV (1949-51). FIFAO 25. 1954. - Karnak-NordFouilles conduites par Clément Robichon, Jean Leclant, Paul Barguet, Karnak-Nord III (1945-49), IV (1949-51). FIFAO 23 u. 25. 1951 u. 1954. Karnevaleske PhänomeneKarnevaleske Phänomene in antiken und nachantiken Kulturen und Literaturen. Hrsg. von Döpp, Siegmar. BAC 13. 1993. Kasr el-AgoûzMallet, Dominique, Le Kasr el-Agoûz. MIFAO 11. 1909. + KawaMacadam, M. F. Laming, The Temples of Kawa. 1949-55. Kawa 1Macadam, M. F. Laming, The Temples of Kawa I. The Inscriptions. Text. Plates. 1949. Kawa 2Macadam, M. F. Laming, The Temples of Kawa. II. History and Archaeology of the Site. 1955. - KawaMacadam, M. F. Laming, The Temples of Kawa. 1949-55. Kayser, HildesheimKayser, Hans, Die ägyptischen Altertümer im Roemer-Pelizaeus-Museum in Hildesheim. Mit Schlussbemerkung und Literaturhinweisen. 1973. Kayser, TempelstatuenKayser, Hans, Die Tempelstatuen ägyptischer Privatleute im Mittleren und im Neuen Reich. 1936. + Keep outKeep out! Early Dynastic and Old Kingdom Cylinder Seals and Sealings in Context. Hrsg. von Engel, Eva-Maria, Blöbaum, Anke Ilona, Kammerzell, Frank. Menes 7. 2021. (new) Kees, ÄgyptenKees, Hermann, Ägypten. Religionsgeschichtliches Lesebuch 10. 1928. Kees, GötterglaubeKees, Hermann, Der Götterglaube im Alten Ägypten. MVAeG 45. 1941, 1956 (2. Auflage). - Kees, Göttinger TotenbuchstudienKees, Hermann, Göttinger Totenbuchstudien: die älteste Fassung der Einleitung des Totenbuchkapitels 99. In: Misc. Academica Berolinensia II/2, 1950, 77-96. Kees, HohenpriesterKees, Hermann, Die Hohenpriester des Amun von Karnak von Herihor bis zum Ende der Äthiopenzeit. 1964. Kees, KulturgeschichteKees, Hermann, Kulturgeschichte des Alten Orients, I. Ägypten. HAW III, I, 3, I. 1933. - Kees, NGWG N.F. 2, 1936-1938Kees, Hermann, Die Königin Aḥmes-Nefretere als Amonspriester. In: NGWG N.F. 2, 1936-1938, 107-120. Kees, OpfertanzKees, Hermann, Der Opfertanz des ägyptischen Königs. 1912. - Kees, Or 23, 1954Kees, Hermann, Das Gottesweib Ahmes-Nofretere als Amonspriester. In: Or 23, 1954, 57-63. Kees, PriestertumKees, Hermann, Das Priestertum im ägyptischen Staat vom Neuen Reich bis zur Spätzeit. PÄ 1. 1953. Kees, TotenglaubenKees, Hermann, Totenglauben und Jenseitsvorstellungen der alten Ägypter, Grundlagen und Entwicklung bis zum Ende des Mittleren Reiches. 1926, 1956 (2. Auflage). - Kees, ZÄS 70, 1934Kees, Hermann, Zu einigen Fachausdrücken der altägyptischen Provinzialverwaltung. In: ZÄS 70, 1934, 83-91. - Kees, ZÄS 84, 1959Kees, Hermann, Zur Familie des 3. Amonspropheten Amenophis. In: ZÄS 84, 1959, 54-67. - Kees, ZÄS 85, 1960Kees, Hermann, Der berichtende Gottesdiener. In: ZÄS 85, 1960, 138-143. - Keimer, AcOr 6, 1928Keimer, Ludwig, Sprachliches und Sachliches zu ελκω Frucht der Sykomore. Eine etymologisch-archäologisch-botanische Untersuchung. In: AcOr 6, 1928, 288-304. - Keimer, ASAE 48, 1948Keimer, Ludwig, La signification de l'hiéroglyphe rd𓇝𓇟, etc. In: ASAE 48, 1948, 89-108. - Keimer, BIE 29, 1948Keimer, Ludwig, Interprétation d'un passage du papyrus Sallier Ier: Une prière au dieu Thot. In: BIE 29, 1948, 275-291, 447-448. - Keimer, BIFAO 31, 1931Keimer, Ludwig, L'arbre ṮR.T est-il réellement le saule égyptien (Salix safsaf Forsk.)? In: BIFAO 31, 1931, 177-237. Keimer, GartenpflanzenKeimer, Ludwig, Die Gartenpflanzen im alten Ägypten. SDAIK 13. 1984. - Keller, in: Colour and PaintingKeller, Cathleen A., A Family Affair. The Decoration of Theban Tomb 359. In: Colour and Painting, 2001, 73-93. Kemp/Merrillees, Minoan PotteryKemp, Barry J., Merrillees, Robert S., Minoan Pottery in Second Millenium Egypt. SDAIK 7. 1980. Kessler, Historische TopographieKessler, Dieter, Historische Topographie der Region zwischen Mallawi und Salamut. 1981. KheruefThe Tomb of Kheruef. Theban Tomb 192. OIP 102. 1980. Kholi, PapyriEl-Kholi, Mohamed Salah, Papyri und Ostraka aus der Ramessidenzeit. 2006. - Khouzam, Manuscrit Copte 44 de Paris, Vol. IIaKhouzam, A. Fouad, La langue Égyptienne au moyen âge. Le manuscrit Copte 44 de Paris de la Bibliothèque Nationale de France. Vol. IIa. Folios 47v-86v. 2006. Khouzam, Manuscrit Copte 44 de ParisKhouzam, A. Fouad, La langue Égyptienne au moyen âge. Le manuscrit Copte 44 de Paris de la Bibliothèque Nationale de France. 2002-2006. + Khouzam, Manuscrit Copte 44 de Paris, Vol. IIaKhouzam, A. Fouad, La langue Égyptienne au moyen âge. Le manuscrit Copte 44 de Paris de la Bibliothèque Nationale de France. Vol. IIa. Folios 47v-86v. 2006. Kienitz, GeschichteKienitz, Friedrich Karl, Die politische Geschichte Ägyptens vom 7. bis zum 4. Jh. vor der Zeitwende. 1953. Kischkewitz/Forman, Egyptian ArtKischkewitz, Hannelore, Forman, Werner, Egyptian Art. Drawings & Paintings. 1989. Kitchen, Cat. Rio de JaneiroKitchen, Kenneth A., Catálogo da Coleçao do Egito Antigo existente no Museu National, Rio de Janeiro / Catalogue of the Egyptian Collection in the National Museum, Rio de Janeiro, 2 Vols. 1990. - Kitchen, in: Early Edom and MoabKitchen, Kenneth A., Egyptian Evidence on Early Jordan. In: Early Edom and Moab, 1992, [Chapter 3]. - Kitchen, in: Fs HintzeKitchen, Kenneth A., Historical observations on Ramesside Nubia. In: Fs Hintze, 1977, 213-225. - Kitchen, in: Fs LloydKitchen, Kenneth A., Festivity in Ramesside Thebes and Devotion to Amun and his City. In: Fs Lloyd, 2007, 149-153. - Kitchen, OrAnt 8, 1969Kitchen, Kenneth A., Studies in Egyptian Wisdom Literature I. The Instruction by a Man for his Son. In: OrAnt 8, 1969, 189-208. - Kitchen, OrAnt 9, 1970Kitchen, Kenneth A., Studies in Egyptian Wisdom Literature II. Counsels of Discretion (O. Michaelides 16). In: OrAnt 9, 1970, 203-210. Kitchen, PoetryKitchen, Kenneth A., Poetry of Ancient Egypt. Documenta Mundi. Aegyptiaca 1. 1999. Kitchen, Third Interm. PeriodKitchen, Kenneth A., The Third Intermediate Period in Egypt (1100-650 B.C.). 1973. - Kitchen/ Gaballa, ZÄS 96, 1969Kitchen, Kenneth A., Gaballa, G. A., Ramesside Varia II. In: ZÄS 96, 1969, 14-28. - Klasens, OMRO 33, 1952Klasens, Adolf, A Magical Statue Base (Socle Béhague) in the Museum of Antiquities at Leiden. In: OMRO 33, 1952, XIII+112. Klebs, Reliefs IKlebs, Luise, Die Reliefs des alten Reiches (2980-2475 v. Chr.), Material zur ägyptischen Kulturgeschichte. AHAW 3. 1915. Klebs, Reliefs IIKlebs, Luise, Die Reliefs und Malereien des Mittleren Reiches (VII.-XVII. Dyn., ca. 2475-1580). AHAW 6. 1922. Klebs, Reliefs IIIKlebs, Luise, Die Reliefs und Malerein des neuen Reiches (XVIII.-XX. Dyn., ca. 1580-1100 v. Chr.), Material zur ägyptischen Kulturgeschichte, Teil I: Scenen aus dem Leben des Volkes. AHAW 9. 1934. Klemm/Klemm, SteineKlemm, Rosemarie, Klemm, Dietrich D., Steine und Steinbrüche im Alten Ägypten. 1993. Kloth, (Auto-)biographische InschriftenKloth, Nicole, Die (auto-)biographischen Inschriften des ägyptischen Alten Reiches: Untersuchungen zu Phraseologie und Entwicklung. SAK Beihefte 8. 2002. Klotz, AdorationKlotz, David, Adoration of the Ram. Five Hymns to Amun-Re from Hibis Temple. YES 6. 2006. - Klotz, in: Rickert/Ventker, Altägyptische EnzyklopädienKlotz, David, Regionally Specific Sacerdotal Titles in Late Period Egypt: Soubassements vs. Private Monuments. In: Rickert/Ventker, Altägyptische Enzyklopädien, 2014, 717-792. - Klotz, SAK 39, 2010Klotz, David, Emhab versus the tmrhtn. Monomachy and the Expulsion of the Hyksos. In: SAK 39, 2010, 211-241. - Klug, in: Fs GundlachKlug, Andrea, Ein neues Fragment der Thronbesteigungsanzeige Thutmosis'. In: Fs Gundlach, 1996, 124-128. Klug, Königliche StelenKlug, Andrea, Königliche Stelen in der Zeit von Ahmose bis Amenophis III. MonAeg 8. 2002. Kminek-Szedlo, CatalogoKminek-Szedlo, Giovanni, Catalogo di antichità egizie. 1895. Knigge, LobKnigge, Carsten, Das Lob der Schöpfung. Die Entwicklung ägyptischer Sonnen- und Schöpfungshymnen nach dem Neuen Reiche. OBO 219. 2006. Koch, SinuheKoch, Roland, Die Erzählung des Sinuhe. BAe 17. 1990. - Kockelmann, in: Von Meroe bis IndienKockelmann, Holger, Die Fremdvölkerlisten in den Soubassements der ptolemäisch-römischen Heiligtümer. Feindnamen und Feindvernichtungsrituale im Tempel zwischen Tradition und Wandel. In: Von Meroe bis Indien, 2015, 3-141. + Kockelmann, MumienbindenKockelmann, Holger, Untersuchungen zu den späten Totenbuch-Handschriften auf Mumienbinden. SAT 12. 2008. Kockelmann, Mumienbinden, I.1Kockelmann, Holger, Untersuchungen zu den späten Totenbuch-Handschriften auf Mumienbinden, Band I.1, Die Mumienbinden und Leinenamulette des memphitischen Priesters Hor, Text und Photo-Tafeln. SAT 12. 2008. Kockelmann, Mumienbinden, I.2Kockelmann, Holger, Untersuchungen zu den späten Totenbuch-Handschriften auf Mumienbinden, Band I.2, Die Mumienbinden und Leinenamulette des memphitischen Priesters Hor, Übersichtsskizzen und Umschrift-Tafeln. SAT 12. 2008. Kockelmann, Mumienbinden, IIKockelmann, Holger, Untersuchungen zu den späten Totenbuch-Handschriften auf Mumienbinden, Band II, Handbuch zu den Mumienbinden und Leinenamuletten. SAT 12. 2008. - Kockelmann, MumienbindenKockelmann, Holger, Untersuchungen zu den späten Totenbuch-Handschriften auf Mumienbinden. SAT 12. 2008. Kockelmann, Praising the GoddessKockelmann, Holger, Praising the Goddess. A Comparative and Annotated Re-Edition of Six Demotic Hymns and Praises Addressed to Isis. AfP Beiheft 15. 2008. Koefoed-Petersen, Cat. des bas-reliefsKoefoed-Petersen, Otto, Catalogue des bas-reliefs et peintures égyptiens. P. Ny Carlsberg 6. 1956. Koefoed-Petersen, Cat. des cercueilsKoefoed-Petersen, Otto, Catalogue des sarcophages et cercueils égyptiens. P. Ny Carlsberg 4. 1951. Koefoed-Petersen, Inscr. Ny CarlsbergKoefoed-Petersen, Otto, Recueil des inscriptions hiéroglyphiques de la Glyptothèque Ny Carlsberg. BAe 6. 1936. Koefoed-Petersen, Stèles Koefoed-Petersen, Otto, Les stèles égyptiennes. P. Ny Carlsberg 1. 1948. - Koemoth, GM 130, 1992Koemoth, Pierre P., snb, le papyrus ou le cordon en papyrus de Pé. In: GM 130, 1992, 33-43. - Koemoth, SAK 24, 1997Koemoth, Pierre P., La plante s(ꜣ)r(.t) et la crue du Nil. In: SAK 24, 1997, 147-159. - Koenig, BIFAO 104, 2004Koenig, Yvan, Le papyrus de Moutemheb. In: BIFAO 104, 2004, 291-326. - Koenig, BIFAO 81, 1981Koenig, Yvan, Notes sur la découverte des papyrus Chester Beatty. In: BIFAO 81, 1981, 41-43. - Koenig, BIFAO 82, 1982Koenig, Yvan, Deux amulettes de Deir el-Médineh. In: BIFAO 82, 1982, 283-293. - Koenig, CRIPEL 7, 1985Koenig, Yvan, Notes sur un papyrus littéraire fragmentaire, P. Deir el-Médineh no. 43. In: CRIPEL 7, 1985, 71-74. - Koenig, La magie en ÉgypteLa magie en Égypte: à la recherche d'une définition; actes du colloque organisé par le Musée du Louvre les 29 et 30 septembre 2000. Hrsg. von Koenig, Yvan. 2002. + Koenig, La magie en ÉgypteLa magie en Égypte: à la recherche d’une définition; actes du colloque organisé par le Musée du Louvre les 29 et 30 septembre 2000. Hrsg. von Koenig, Yvan. 2002. Koenig, Magie et magiciensKoenig, Yvan, Magie et magiciens dans l’Égypte ancienne. 1994. Koenig, Ostraca hiératique de BNU StrasbourgKoenig, Yvan, Les ostraca hiératiques inédits de la Bibliothèque Nationale et Universitaire de Strasbourg. DFIFAO 33. 1997. - Koenig, RdE 33, 1981Koenig, Yvan, Notes sur quelques mots 'néo-égyptiens'. In: RdE 33, 1981, 137-138. - Köhler, Archéo-Nil 13, 2003Köhler, Eva Christiana, The new excavations in the Early Dynastic necropolis at Helwan. In: Archéo-Nil 13, 2003, 17-28. + Koenig, Papyrus Boulaq 6Koenig, Yvan, Le Papyrus Boulaq 6. Transcription, Traduction et Commentaire. BdE 87. 1981. (new) + Köhler, Das ImiutRößler-Köhler, Ursula, Das Imiut, Untersuchungen zur Darstellung und Bedeutung eines mit Anubis verbundenen religiösen Symbols. GOF IV. 4. 1975. Köhler, Das Imiut ARößler-Köhler, Ursula, Das Imiut, Untersuchungen zur Darstellung und Bedeutung eines mit Anubis verbundenen religiösen Symbols, Teil A. GOF 4. 1975. Köhler, Das Imiut BRößler-Köhler, Ursula, Das Imiut, Untersuchungen zur Darstellung und Bedeutung eines mit Anubis verbundenen religiösen Symbols, Teil B. GOF 4. 1975. - Köhler, Das ImiutRößler-Köhler, Ursula, Das Imiut, Untersuchungen zur Darstellung und Bedeutung eines mit Anubis verbundenen religiösen Symbols. GOF IV. 4. 1975. - Köhler, EgA 17, 2000Köhler, Eva Christiana, Excavations at Helwan. In: EgA 17, 2000, 38-40. Köhler, Vor- und FrühzeitKöhler, Eva Christiana, Vor den Pyramiden: die ägyptische Vor- und Frühzeit. 2018. Köhler/Jones, Helwan IIKöhler, Eva Christiana, Jones, Jana, Helwan II: The Early Dynastic and Old Kingdom funerary relief slabs. SAGA 25. 2009. - Kolta/Tessenow, ZÄS 127, 2000Kolta, Kamal Sabri, Tessenow, Hermann, "Schmerzen", "Schmerzstoffe" oder "Fäulnisprinzip"? Zur Bedeutung von wḫdw, einem zentralen Terminus der altägyptischen Medizin. In: ZÄS 127, 2000, 38-52. + Kölner Ägyptische Papyri IKölner ägyptische Papyri (P. Köln Ägypt.). Band 1. Hrsg. von Kurth, Dieter, Thissen, Heinz-Josef, Weber, Manfred. 1980. (new) Konrad, Architektur und TheologieKonrad, Kirsten, Architektur und Theologie. Pharaonische Tempelterminologie unter Berücksichtigung königsideologischer Aspekte. 2006. Kon-TexteKon-Texte. Akten des Symposions "Spurensuche - Altägypten im Spiegel seiner Texte". Hrsg. von Burkard, Günter, Schoske, Sylvia, Verbovsek, Alexandra. ÄUAT 60. 2004. KoptHWbWestendorf, Wolfhart, Koptisches Handwörterbuch, Bearbeitet auf Grund des Koptischen Handwörterbuchs von Wilhelm Spiegelberg. 1965-1977. - Korostovtsev, in: Gs GolénischeffKorostovtsev, Mikhail A., Египетский иератический папирус n° 167 государственного музея изобразительных искусств им. А.С. Пушкина в Москве [Egyptian hieratic papyrus n° 167 in the State Museum of Fine Arts, A. S. Pushkin in Moscow]. In: Gs Golénischeff, 1960, 119-133. - Korostovtsev, pMoskau 120Korostovtsev, Mikhail A., Путешествие Ун-Амуна в Библ. Египетский иератический папирус № 120 Государственного музея изобразительных искусств им. А.С. Пушкина в Москве [Le voyage d'Oun-Amon à Byblos. Le papyrus égyptien hiératique no 120 du Musée d'État des Beaux-Arts A. S. Pouchkine, à Moscou]. 1960. + Korostovtsev, pMoskau 120Korostovtsev, Mikhail A., Путешествие Ун-Амуна в Библ. Египетский иератический папирус № 120 Государственного музея изобразительных искусств им. А.С. Пушкина в Москве [Le voyage d’Oun-Amon à Byblos. Le papyrus égyptien hiératique no 120 du Musée d’État des Beaux-Arts A. S. Pouchkine, à Moscou]. 1960. Korostovtsev, pMoskau 127Korostovtsev, Mikhail A., Иератический папирус 127 из собрания ГМИИ им. А. С. Пушкина [Hieratic papyrus 127 from the collection of the Pushkin Museum of Fine Arts]. 1961. - Kosack, Armant 3, 1969Kosack, Wolfgang, Ein altaegyptisches Hausbuch der Tiermedizin. In: Armant 3, 1969, 172-187. Kosack, Papyrus Edwin SmithKosack, Wolfgang, Der medizinische Papyrus Edwin Smith: the New York Academy of Medicine, Inv. 217. Neu in Hieroglyphen übertragen, übersetzt und bearbeitet. 2011. Koura, ÖleKoura, Basma, Die "7-Heiligen Öle" und andere Öl- und Fettnamen. AegMonast 2. 1999. + Kousoulis/Lazaridis, Tenth International Congress of EgyptologistsProceedings of the Tenth International Congress of Egyptologists: University of the Aegean, Rhodes. 22-29 May 2008, Bd. I-II. Hrsg. von Kousoulis, Panagiotis, Lazaridis, Nikolaos. OLA 241. 2015. Kousoulis/Lazaridis, Tenth International Congress of Egyptologists IProceedings of the Tenth International Congress of Egyptologists: University of the Aegean, Rhodes. 22-29 May 2008, Bd. 1. Hrsg. von Kousoulis, Panagiotis, Lazaridis, Nikolaos. OLA 241. 2015. Kousoulis/Lazaridis, Tenth International Congress of Egyptologists IIProceedings of the Tenth International Congress of Egyptologists: University of the Aegean, Rhodes. 22-29 May 2008, Bd. 2. Hrsg. von Kousoulis, Panagiotis, Lazaridis, Nikolaos. OLA 241. 2015. - Kousoulis/Lazaridis, Tenth International Congress of EgyptologistsProceedings of the Tenth International Congress of Egyptologists: University of the Aegean, Rhodes. 22-29 May 2008, Bd. I-II. Hrsg. von Kousoulis, Panagiotis, Lazaridis, Nikolaos. OLA 241. 2015. - Kozloff, Amenhotep IIIKozloff, Arielle P., Amenhotep III: Egypt's Radiant Pharaoh. 2012. - Kozloff, in: Gs AldredKozloff, Arielle P., The Malqata/El-Amarna Blues: Favourite Colours of Kings and Gods. In: Gs Aldred, 1997, 178-192. - Kozloff/Bryan/Berman/Delange, Amenhotep IIIKozloff, Arielle P., Bryan, Betsy M., Berman, Lawrence M., Delange, Elisabeth, Egypt's Dazzling Sun. Amenhotep III and his World (Ausstellungskat.). 1992. + Kozloff, Amenhotep IIIKozloff, Arielle P., Amenhotep III: Egypt’s Radiant Pharaoh. 2012. + Kozloff/Bryan/Berman/Delange, Amenhotep IIIKozloff, Arielle P., Bryan, Betsy M., Berman, Lawrence M., Delange, Elisabeth, Egypt’s Dazzling Sun. Amenhotep III and his World (Ausstellungskat.). 1992. Kozloff/Bryan/Berman/Delange, Aménophis IIIKozloff, Arielle P., Bryan, Betsy M., Berman, Lawrence M., Delange, Elisabeth, Aménophis III, le Pharaon-Soleil (Austellungskat.). 1993. Krauspe, Ägyptisches Museum KMUKrauspe, Renate, Ägyptisches Museum der Karl-Marx-Universität Leipzig. Führer durch die Ausstellung. 1976. - Krauss, BSEG 15, 1991Krauss, Rolf, Zur Pelikanszene und damit zusammenhängenden Darstellungen in den Reliefs der sog. "Jahreszeitenkammer". In: BSEG 15, 1991, 69-80. - Krauss, in: Hornung/Krauss/Warburton, ChronologyKrauss, Rolf, Egyptian Sirius/Sothic dates and the question of the Sothis-based lunar calendar. In: Hornung/Krauss/Warburton, Chronology, 2006, 439-457. Krauss, Sothis- und MonddatenKrauss, Rolf, Sothis- und Monddaten: Studien zur astronomischen und technischen Chronologie Altägyptens. HÄB 20. 1985. - Krauss/Loeben, in: Fs AltenmüllerKrauss, Rolf, Loeben, Christian E., Epigrafiker-Kopien eines Amarna-Reliefs im Vergleich mit einem Gipsabguss. In: Fs Altenmüller, 2003, 231-246. Krebs, InscriptioneKrebs, Friedrich, De inscriptione Aegyptiaca Chnemothis (Ḫnmḥtp) nomarchi. 1889. + KRIKitchen, Kenneth A., Ramesside Inscriptions. Historical and Biographical, I-VIII. 1975-1990. KRI IKitchen, Kenneth A., Ramesside inscriptions, historical and biographical, I. 1975. KRI IIKitchen, Kenneth A., Ramesside inscriptions, historical and biographical, II. 1979. KRI IIIKitchen, Kenneth A., Ramesside inscriptions, historical and biographical, III. 1980. @@ -2712,41 +1757,28 @@

      Abbreviat KRI VIKitchen, Kenneth A., Ramesside inscriptions, historical and biographical, VI. 1983. KRI VIIKitchen, Kenneth A., Ramesside inscriptions, historical and biographical, VII. 1989. KRI VIIIKitchen, Kenneth A., Ramesside inscriptions, historical and biographical, VIII. 1990. - KRIKitchen, Kenneth A., Ramesside Inscriptions. Historical and Biographical, I-VIII. 1975-1990. Krieg und FriedenPharao siegt immer. Krieg und Frieden im Alten Ägypen. Gustav-Lübcke-Museum Hamm, 21. März - 31. Oktober 2004. Hrsg. von Petschel, Susanne, Falck, Martin von. 2004. Kroeber, NeuägyptizismenKroeber, Burkhart, Die Neuägyptizismen vor der Amarnazeit. 1970. + Kruchten, ꜥḥꜥ, ḥmsı͗ et sḏrKruchten, Jean-Marie, Études de syntaxe néo-égyptienne, Les verbes ꜥḥꜥ, ḥmsı͗ et sḏr en néo-égyptien, Emploi et significations. 1982. Kruchten, Annales des prêtresKruchten, Jean-Marie, Les annales des prêtres de Karnak (XXI-XXIIImes dynasties) et autres textes contemporains relatifs à l’initiation des prêtres d’Amon. OLA 32. 1989. Kruchten, HoremhebKruchten, Jean-Marie, Le Décret d’Horemheb. Traduction, commentaire épigraphique, philologique et institutionnel. 1981. - Kruchten, ꜥḥꜥ, ḥmsı͗ et sḏrKruchten, Jean-Marie, Études de syntaxe néo-égyptienne, Les verbes ꜥḥꜥ, ḥmsı͗ et sḏr en néo-égyptien, Emploi et significations. 1982. Kubisch, LebensbilderKubisch, Sabine, Lebensbilder der 2. Zwischenzeit. Biographische Inschriften der 13.-17. Dynastie. SDAIK 34. 2008. - Kubisch, MDAIK 56, 2000Kubisch, Sabine, Die Stelen der 1. Zwischenzeit aus Gebelein. In: MDAIK 56, 2000, 239-265. - Kubisch, MDAIK 59, 2003Kubisch, Sabine, Wer wurde eingeweiht in die "Geheimnisse des Heiligen Platzes"? In: MDAIK 59, 2003, 269-282. Kubisch/Rummel, The Ramesside Period in EgyptKubisch, Sabine, Rummel, Ute, The Ramesside Period in Egypt. Studies into Cultural and Historical Processes of the 19th and 20th Dynasties. SDAIK 41. 2018. - Kuentz, ASAE 25, 1925Kuentz, Charles, La 'stèle du marriage' de Ramsès II. In: ASAE 25, 1925, 181-238. Kuentz, Bataille de QadechKuentz, Charles, La bataille de Qadech, Les textes et les bas-reliefs. MIFAO 55. 1928. - Kuentz, BIFAO 14, 1918Kuentz, Charles, Deux points de syntaxe égyptienne. In: BIFAO 14, 1918, 231-254. - Kuentz, BIFAO 21, 1923Kuentz, Charles, Deux stèles d'Edfou. In: BIFAO 21, 1923, 107-111. - Kuentz, Deux StèlesKuentz, Charles, Deux stèles d'Aménophis II (stèles d'Amada et d'Eléphantine). BdE 10. 1925. - Kuentz, in: Fs GriffithKuentz, Charles, Deux versions d'un panégyrique royal. In: Fs Griffith, 1932, 97-110. - Kuentz, in: Twenty-Second Congress of OrientalistsKuentz, Charles, Un nouvel Hymne au Nil (Summary). In: Twenty-Second Congress of Orientalists, 1957, 612-613. - Kuény, Musée de GrenobleKuény, Gabrielle, L'Égypte ancienne au Musée de Grenoble. 1973. + Kuentz, Deux StèlesKuentz, Charles, Deux stèles d’Aménophis II (stèles d’Amada et d’Eléphantine). BdE 10. 1925. + Kuény, Musée de GrenobleKuény, Gabrielle, L’Égypte ancienne au Musée de Grenoble. 1973. Kuény/Yoyotte, Musée des Beaux-ArtsKuény, Gabrielle, Yoyotte, Jean, Grenoble. Musée des Beaux-Arts: collection égyptienne. 1979. Kuhlmann, AchmimKuhlmann, Klaus P., Materialien zur Archäologie und Geschichte des Raumes von Achmim. SDAIK 11. 1983. - Kuhlmann, MDAIK 35, 1979Der Tempel Ramses II. in Abydos: Vorbericht über eine Neuaufnahme. In: MDAIK 35, 1979, 189-193. - Kuhlmann, MDAIK 38, 1982Kuhlmann, Klaus P., Der Tempel Ramses II. in Abydos: Zweiter Bericht über die Neuaufnahme. In: MDAIK 38, 1982, 355-362. Kuhlmann, ThronKuhlmann, Klaus P., Der Thron im Alten Ägypten. Untersuchungen zu Semantik, Ikonographie und Symbolik eines Herrschaftszeichens. ADAIK 10. 1977. Kuhlmann/Schenkel, IbiKuhlmann, Klaus P., Schenkel, Wolfgang, Das Grab des Ibi, Obergutsverwalters der Gottesgemahlin des Amun (Thebanisches Grab Nr. 36), Bd. I. Beschreibung der unterirdischen Kult- und Bestattungsanlage, Text und Tafeln. AV 15. 1983. Kunst des Alten ReichesKunst des Alten Reiches: Symposium im Deutschen Archäologischen Institut Kairo am 29. und 30. Oktober 1991. SDAIK 28. 1995. Kunst und AltertumKunst und Altertum. Aus den Sammlungen der Universität. 500 Jahre Eberhard-Karls-Universität Tübingen 1477-1977. Hrsg. von Brinkhus, Gerd. 1977. Kurth, DekorationKurth, Dieter, Die Dekoration der Säulen im Pronaos des Tempels von Edfu. GOF 11. 1983. Kurth, EinführungKurth, Dieter, Einführung ins Ptolemäische. 2007-2008. - Kurth, GM 19, 1976Kurth, Dieter, Ast (Isis), eine Bezeichnung des Himmels in Texten griech.-röm. Zeit. In: GM 19, 1976, 35-37. - Kurth, in: Fs KákosyKurth, Dieter, Über Horus, Isis und Osiris. In: Fs Kákosy, 1992, 373-383. - Kurth, in: Fs Westendorf 1Kurth, Dieter, "Same des Stieres" und "Same", zwei Bezeichnungen der Maat. In: Fs Westendorf 1, 1984, 273-281. Kurth, PtahhotepKurth, Dieter, Altägyptische Maximen für Manager. Die Lehre des Ptahhotep. 1999. - Kurth, SAK 8, 1980Kurth, Dieter, Historischer Hintergrund in Ritualszenen am Beispiel Edfou III, 241,11 - 242,2. In: SAK 8, 1980, 153-168. Kurth, Treffpunkt der GötterKurth, Dieter, Treffpunkt der Götter. Inschriften aus dem Tempel des Horus von Edfu. 1994. Kutscher/Werning, On Ancient Grammars of SpaceOn Ancient Grammars of Space. Linguistic Research on the Expression of Spatial Relations and Motion in Ancient Languages. Hrsg. von Kutscher, Silvia, Werning, Daniel. 2014. https://www.degruyter.com/viewbooktoc/product/204671?rskey=iTNv67%26onlyResultQuery=9783110311358%26onlyResultQuery=9783110311358%26rskey=iTNv67 + LÄLexikon der Ägyptologie. Hrsg. von Helck, Wolfgang, Otto, Eberhard, Westendorf, Wolfhart. 1975-1992. LÄ ILexikon der Ägyptologie, I. Hrsg. von Otto, Eberhard, Helck, Wolfgang. 1975. LÄ IILexikon der Ägyptologie, II. Hrsg. von Helck, Wolfgang, Westendorf, Wolfhart. 1977. LÄ IIILexikon der Ägyptologie, III. Hrsg. von Helck, Wolfgang, Westendorf, Wolfhart. 1980. @@ -2754,69 +1786,57 @@

      Abbreviat LÄ VLexikon der Ägyptologie, V. Hrsg. von Helck, Wolfgang, Westendorf, Wolfhart. 1984. LÄ VILexikon der Ägyptologie, VI. Hrsg. von Helck, Wolfgang, Westendorf, Wolfhart. 1986. LÄ VIILexikon der Ägyptologie VII: Nachträge, Korrekturen und Indices. Hrsg. von Helck, Wolfgang, Westendorf, Wolfhart. 1989-1992. - La XXVIe dynastieLa XXVIe dynastie, continuités et ruptures. Promenade saïte avec Jean Yoyotte. Actes du Colloque international organisé les 26 et 27 novembre 2004 à l'Université Charles-de-Gaulle - Lille 3. Hrsg. von Devauchelle, Didier. 2011. - LÄLexikon der Ägyptologie. Hrsg. von Helck, Wolfgang, Otto, Eberhard, Westendorf, Wolfhart. 1975-1992. - Labachi, in: Fs Junker IIHabachi, Labib, A Group of Unpublished Old and Middle Kingdom Graffiti on Elephantine. In: Fs Junker II, 1957, 55-71. + La XXVIe dynastieLa XXVIe dynastie, continuités et ruptures. Promenade saïte avec Jean Yoyotte. Actes du Colloque international organisé les 26 et 27 novembre 2004 à l’Université Charles-de-Gaulle - Lille 3. Hrsg. von Devauchelle, Didier. 2011. Labor in Ancient Near EastLabor in the Ancient Near East. Hrsg. von Powell, Marvin A. AOS 68. 1987. - Laboury, Statuaire Thoutmosis IIILaboury, Dimitri, La statuaire de Thoutmosis III. Essai d'interprétation d'un portrait royal dans son contexte historique. AegLeod 5. 1998. - Labrique, in: 4. TempeltagungLabrique, Françoise, L'escorte de la lune sur la porte d'Evergète à Karnak. In: 4. Tempeltagung, 1998, 91-121. - Labrousse, Architecture des Pyramides à Textes I 2Labrousse, Audran, Mission archéologique de Saqqara III: l'architecture des pyramides à textes I. Saqqara Nord, Bd. 2 Tafelband. BdE 114/2. 1996. - Labrousse, DA Suppl. 6, 1996Labrousse, Audran, Récentes recherches à Sedeinga. In: DA Suppl. 6, 1996, 66-67. - Labrousse, Mission archéologique de Saqqara III 1Labrousse, Audran, Mission archéologique de Saqqara III: l'architecture des pyramides à textes I. Saqqara Nord, Bd. 1 Text. BdE 114/1. 1996. - Labrousse, Mission archéologique de Saqqara IIILabrousse, Audran, Mission archéologique de Saqqara III: l'architecture des pyramides à textes I. Saqqara Nord, 2 Bde. BdE 114. 1996. - Lacau, ASAE 39, 1939Lacau, Pierre, Une stèle du roi "Kamosis". In: ASAE 39, 1939, 245-271. + Laboury, Statuaire Thoutmosis IIILaboury, Dimitri, La statuaire de Thoutmosis III. Essai d’interprétation d’un portrait royal dans son contexte historique. AegLeod 5. 1998. + Labrousse, Architecture des Pyramides à Textes I 2Labrousse, Audran, Mission archéologique de Saqqara III: l’architecture des pyramides à textes I. Saqqara Nord, Bd. 2 Tafelband. BdE 114/2. 1996. + Labrousse, Mission archéologique de Saqqara IIILabrousse, Audran, Mission archéologique de Saqqara III: l’architecture des pyramides à textes I. Saqqara Nord, 2 Bde. BdE 114. 1996. + Labrousse, Mission archéologique de Saqqara III 1Labrousse, Audran, Mission archéologique de Saqqara III: l’architecture des pyramides à textes I. Saqqara Nord, Bd. 1 Text. BdE 114/1. 1996. Lacau, Études d’égyptologie IILacau, Pierre, Études d’égyptologie II, Morphologie. BdE 60. 1972. Lacau, NomsLacau, Pierre, Les noms des parties du corps. MAIBL 44. 1970. - Lacau, RecTrav 26, 1904Lacau, Pierre, Textes religieux. In: RecTrav 26, 1904, 59-81. Lacau, Stèle juridiqueLacau, Pierre, Une stèle juridique de Karnak. SASAE 13. 1949. - Lacau/ Chevrier, Hatshepsout 1Lacau, Pierre, Chevrier, Henri, Une chapelle d'Hatshepsout à Karnak, Bd. 1. 1977. - Lacau/ Chevrier, Hatshepsout 2Lacau, Pierre, Chevrier, Henri, Une chapelle d'Hatshepsout à Karnak, Bd. 2. 1979. - Lacau/ Chevrier, HatshepsoutLacau, Pierre, Chevrier, Henri, Une chapelle d'Hatshepsout à Karnak. 1977-79. + Lacau/ Chevrier, HatshepsoutLacau, Pierre, Chevrier, Henri, Une chapelle d’Hatshepsout à Karnak. 1977-79. + Lacau/ Chevrier, Hatshepsout 1Lacau, Pierre, Chevrier, Henri, Une chapelle d’Hatshepsout à Karnak, Bd. 1. 1977. + Lacau/ Chevrier, Hatshepsout 2Lacau, Pierre, Chevrier, Henri, Une chapelle d’Hatshepsout à Karnak, Bd. 2. 1979. + Lacau/ Chevrier, Sésostris IerLacau, Pierre, Chevrier, Henri, Une chapelle de Sésostris Ier à Karnak. SAE. 1956-69. Lacau/ Chevrier, Sésostris Ier 1Lacau, Pierre, Chevrier, Henri, Une chapelle de Sésostris Ier à Karnak, Bd. 1. SAE. 1956. Lacau/ Chevrier, Sésostris Ier 2Lacau, Pierre, Chevrier, Henri, Une chapelle de Sésostris Ier à Karnak, Bd. 2. SAE. 1969. - Lacau/ Chevrier, Sésostris IerLacau, Pierre, Chevrier, Henri, Une chapelle de Sésostris Ier à Karnak. SAE. 1956-69. Lahun IBrunton, Guy, Lahun I, The Treasure. BSAE 27. 1920. Lahun IIPetrie, William M. Flinders, Brunton, Guy, Murray, Margaret A., Lahun II, The Pyramid. BSAE 33. 1920. Laisney, AménémopéLaisney, Vincent Pierre-Michel, L’Enseignement d’Aménémopé. StudPohl 19. 2007. Lalanne/Métra, Texte médical du Papyrus EbersLalanne, Bernard, Métra, Gérard, Le texte médical du Papyrus Ebers. Transcription hiéroglyphique, translittération, traduction, glossaire et index. LCA 28. 2017. - Lalouette, Des PharaonsLalouette, Claire, Textes sacrés et textes profanes de l'ancienne Égypte. Des Pharaons et des hommes. 1984. - Lalouette, EmpireLalouette, Claire, L'empire des Ramsès. 1985. - Lalouette, MythesLalouette, Claire, Textes sacrés et textes profanes de l'ancienne Égypte. Mythes, contes et poésie. 1987. - Lalouette, ThèbesLalouette, Claire, Thèbes ou la naissance d'un empire. 1986. - Lanciers, RdE 42, 1991Lanciers, Eddy, Die ägyptischen Priester des ptolemäischen Königskultes. In: RdE 42, 1991, 117-145. + Lalouette, Des PharaonsLalouette, Claire, Textes sacrés et textes profanes de l’ancienne Égypte. Des Pharaons et des hommes. 1984. + Lalouette, EmpireLalouette, Claire, L’empire des Ramsès. 1985. + Lalouette, MythesLalouette, Claire, Textes sacrés et textes profanes de l’ancienne Égypte. Mythes, contes et poésie. 1987. + Lalouette, ThèbesLalouette, Claire, Thèbes ou la naissance d’un empire. 1986. Landgráfová, Biographical TextsLandgráfová, Renata, It is My Good Name that You Should Remember. Egyptian Biographical Texts on Middle Kingdom Stelae. 2011. Landgráfová/Navrátilová, Love SongsLandgráfová, Renata, Navrátilová, Hana, Sex and the Golden Goddess I. Ancient Egyptian Love Songs in Context. 2009. Lange, EchnatonLange, Kurt, König Echnaton und die Amarna-Zeit. Die Geschichte eines Gottkünders. 1951. - Lange, in: Fs ChampollionLange, Hans Ostenfeldt, Petites notes de critique et d'exégèse textuelles. In: Fs Champollion, 1922, 733-739. Lange, SesostrisLange, Kurt, Sesostris. Ein ägyptischer König in Mythos, Geschichte und Kunst. 1954. - Lange, SPAW 28, 1927Lange, Hans Ostenfeldt, Ein liturgisches Lied an Min. In: SPAW 28, 1927, 331-338. - Lange, SPAW 38, 1914Lange, Hans Ostenfeldt, Eine neue Inschrift aus Hermonthis. In: SPAW 38, 1914, 991-1004. - Lange, ZÄS 34, 1896Lange, Hans Ostenfeldt, Zwei Inschriften der Fürsten von Hermonthis. In: ZÄS 34, 1896, 25-35. Lange/Hirmer, ÄgyptenLange, Kurt, Hirmer, Max, Aegypten. Architektur Plastik Malerei in drei Jahrtausenden. 1955, 1957 (2. Aufl.), 1961 (3. Aufl.), 1967 (4. Aufl.), 1975 (5. Aufl.); 1978, 1980, 1985 (Sonderausg.). + Language and culture in the Near EastLanguage and culture in the Near East. Hrsg. von Izre'el, Shlomo, Drory, Rina. IOS 15. 1995. (new) + Lanzone, DizionarioLanzone, Rodolfo Vittorio, Dizionario di mitologia egizia, I-III u. Tafelband. 1881-86. Lanzone, Dizionario 1Lanzone, Rodolfo Vittorio, Dizionario di mitologia egizia I. 1881. Lanzone, Dizionario 2Lanzone, Rodolfo Vittorio, Dizionario di mitologia egizia II. 1884. Lanzone, Dizionario 3Lanzone, Rodolfo Vittorio, Dizionario di mitologia egizia III. 1885-1886. - Lanzone, DizionarioLanzone, Rodolfo Vittorio, Dizionario di mitologia egizia, I-III u. Tafelband. 1881-86. - Lapp, MDAIK 50, 1994Lapp, Günther, Die Stelenkapelle des kmz aus der 13. Dynastie. In: MDAIK 50, 1994, 231-252. Lapp, OpferformelLapp, Günther, Die Opferformel des Alten Reiches. SDAIK 21. 1986. Lapp, Pap. NuLapp, Günther, The Papyrus of Nu (BM EA 10477). 1997. - Lapp, SAK 13, 1986Lapp, Günther, Der Sarg des Jmnj mit einem Spruchgut am Übergang von Sargtexten zum Totenbuch. In: SAK 13, 1986, 135-147. Lapp, SärgeLapp, Günther, Särge des Mittleren Reiches aus der ehemaligen Sammlung Khashaba. ÄA 43. 1985. Lapp, Totenbuch Spruch 17Lapp, Günther, Totenbuch Spruch 17. Totenbuchtexte 1. TbT 1. 2006. Lapp, Totenbuch Sprüche 18, 20Lapp, Günther, Totenbuch Sprüche 18, 20. TbT 5. 2009. Lapp, TypologieLapp, Günther, Typologie der Särge und Sargkammern von der 6. bis 13. Dynastie. SAGA 7. 1993. Laskowska-Kusztal, Deir el-Bahari IIILaskowska-Kusztal, Ewa, Deir el-Bahari III, Le sanctuaire ptolémaïque de Deir el-Bahari. 1984. - Lauer, MonPiot 49, 1957Lauer, Jean-Philippe, Remarques sur les stèles fausses-portes de l'Horus Neteri-khet (Zoser) à Saqqarah. In: MonPiot 49, 1957, 1-15. Lauer, Pyramide à Degrés Lauer, Jean-Philippe, Lacau, Pierre, La pyramide à degrés. Fouilles Saqq. 1936-65. - Lauer, Pyramide à Degrés 1Lauer, Jean-Philippe, La pyramide à degrés, Bd. 1, L'architecture. Fouilles Saqq. 1936. - Lauer, Pyramide à Degrés 2Lauer, Jean-Philippe, La pyramide à degrés, Bd. 2, L'architecture. Fouilles Saqq. 1936. + Lauer, Pyramide à Degrés 1Lauer, Jean-Philippe, La pyramide à degrés, Bd. 1, L’architecture. Fouilles Saqq. 1936. + Lauer, Pyramide à Degrés 2Lauer, Jean-Philippe, La pyramide à degrés, Bd. 2, L’architecture. Fouilles Saqq. 1936. Lauer, Pyramide à Degrés 3Lauer, Jean-Philippe, La pyramide à degrés, Bd. 3, Compléments. Fouilles Saqq. 1939. + Lauer, Pyramide à Degrés 4Lauer, Jean-Philippe, Lacau, Pierre, La pyramide à degrés, Inscriptions gravées sur les vases. Fouilles Saqq. 1959-1961. Lauer, Pyramide à Degrés 4.1Lauer, Jean-Philippe, Lacau, Pierre, La pyramide à degrés, Bd. 4.1, Inscriptions gravées sur les vases. Fouilles Saqq. 1959. Lauer, Pyramide à Degrés 4.2Lauer, Jean-Philippe, Lacau, Pierre, La pyramide à degrés, Bd. 4.2, Inscriptions gravées sur les vases. Fouilles Saqq. 1961. - Lauer, Pyramide à Degrés 4Lauer, Jean-Philippe, Lacau, Pierre, La pyramide à degrés, Inscriptions gravées sur les vases. Fouilles Saqq. 1959-1961. - Lauer, Pyramide à Degrés 5Lauer, Jean-Philippe, Lacau, Pierre, La pyramide à degrés, Bd. 5, Inscriptions à l'encre sur les vases. Fouilles Saqq. 1965. + Lauer, Pyramide à Degrés 5Lauer, Jean-Philippe, Lacau, Pierre, La pyramide à degrés, Bd. 5, Inscriptions à l’encre sur les vases. Fouilles Saqq. 1965. Lauth, Erkl. Verz.Lauth, Franz Joseph, Erklärendes Verzeichniss (Catalogue raisonné) der in München befindlichen Denkmäler des ägyptischen Alterthums. 1865. LCGLayton, Bentley, A Coptic Grammar. 2011. + LDLepsius, Karl Richard, Denkmäler aus Ägypten und Äthiopien, 12 Bde. u. Erg.bd. 1849-58. LD 1Lepsius, Karl Richard, Denkmäler aus Ägypten und Äthiopien, Abteilung 1 Topographie und Architektur, Band 1. 1849. LD 10Lepsius, Karl Richard, Denkmäler aus Ägypten und Äthiopien, Abteilung 5 Aethiopien, Band 10. 1855. LD 11Lepsius, Karl Richard, Denkmäler aus Ägypten und Äthiopien, Abteilung 6 Inschriften, Band 11. 1856. @@ -2830,120 +1850,69 @@

      Abbreviat LD 8Lepsius, Karl Richard, Denkmäler aus Ägypten und Äthiopien, Abteilung 3 Neues Reich, Band 8. 1853. LD 9Denkmäler aus Ägypten und Äthiopien, Abteilung 4 Denkmäler aus der Zeit der Griechischen und Römischen Herrschaft, Band 9. 1854. LD Erg.Bd.Lepsius, Karl Richard, Denkmäler aus Ägypten und Äthiopien. Ergänzungsband. Hrsg. von Naville, Édouard, Borchardt, Ludwig. 1913. + LD, TextLepsius, Karl Richard, Denkmäler aus Ägypten und Äthiopien, Text, 5. Bde. Hrsg. von Naville, Édouard. 1897-1913. LD, Text 1Lepsius, Karl Richard, Denkmäler aus Ägypten und Äthiopien, Bd. 1 Unterägypten und Memphis. Hrsg. von Naville, Édouard. 1897. LD, Text 2Lepsius, Karl Richard, Denkmäler aus Ägypten und Äthiopien, Bd. 2 Mittelägypten mit dem Faijum. 1904. LD, Text 3Lepsius, Karl Richard, Denkmäler aus Ägypten und Äthiopien, Bd. 3 Theben. Hrsg. von Naville, Édouard. 1900. LD, Text 4Lepsius, Karl Richard, Denkmäler aus Ägypten und Äthiopien, Bd. 4 Oberaegypten. Hrsg. von Naville, Édouard. 1901. LD, Text 5Lepsius, Karl Richard, Denkmäler aus Ägypten und Äthiopien, Bd. 5 Nubien, Hammamat, Sinai, Syrien und europäische Museen. Hrsg. von Naville, Édouard. 1913. - LD, TextLepsius, Karl Richard, Denkmäler aus Ägypten und Äthiopien, Text, 5. Bde. Hrsg. von Naville, Édouard. 1897-1913. - LDLepsius, Karl Richard, Denkmäler aus Ägypten und Äthiopien, 12 Bde. u. Erg.bd. 1849-58. - LdR IIGauthier, Henri, Le livre des rois d'Égypte, T. 2. De la XIIIe à la fin de la XVIIIe dynastie. MIFAO 18. 1912. - LdRGauthier, Henri, Le livre des rois d'Égypte : recueil de titres et protocoles royaux, noms propres de rois, reines, princes et princesses, noms de pyramides et de temples solaires, suivi d'un index alphabétique. MIFAO 17-21. 1907-1917. - Le Musée Égyptien ILe Musée Égyptien. Recueil de monuments et de notices sur les fouilles d'Égypte I. Hrsg. von Grébaut, Eugène. 1890-1900. - Le Musée Égyptien IIILe Musée Égyptien. Recueil de monuments et de notices sur les fouilles d'Égypte III. Hrsg. von Maspero, Gaston. 1915. - Le Musée ÉgyptienLe Musée Égyptien. Recueil de monuments et de notices sur les fouilles d'Égypte. Hrsg. von Grébaut, Eugène, Maspero, Gaston. 1890-1915. - Leach, JEA 92, 2006Leach, Bridget, A conservation history of the Ramesseum papyri. In: JEA 92, 2006, 225-240. - Leahy, GM 108, 1989Leahy, Anthony, Taniy: A Seventh Century Lady (Cairo CG 20564 and Vienna 192). In: GM 108, 1989, 45-56. - Leahy, GM 44, 1981Leahy, Anthony, A Stela of the Second Intermediate Period. In: GM 44, 1981, 23-30. + LdRGauthier, Henri, Le livre des rois d’Égypte : recueil de titres et protocoles royaux, noms propres de rois, reines, princes et princesses, noms de pyramides et de temples solaires, suivi d’un index alphabétique. MIFAO 17-21. 1907-1917. + LdR IIGauthier, Henri, Le livre des rois d’Égypte, T. 2. De la XIIIe à la fin de la XVIIIe dynastie. MIFAO 18. 1912. + Le Musée ÉgyptienLe Musée Égyptien. Recueil de monuments et de notices sur les fouilles d’Égypte. Hrsg. von Grébaut, Eugène, Maspero, Gaston. 1890-1915. + Le Musée Égyptien ILe Musée Égyptien. Recueil de monuments et de notices sur les fouilles d’Égypte I. Hrsg. von Grébaut, Eugène. 1890-1900. + Le Musée Égyptien IIILe Musée Égyptien. Recueil de monuments et de notices sur les fouilles d’Égypte III. Hrsg. von Maspero, Gaston. 1915. Leahy, Libya and EgyptLibya and Egypt, c 1300 - 750 BC. Hrsg. von Leahy, Anthony. 1990. - Leahy, SAK 7, 1979Leahy, Anthony, The name of Osiris written ( 𓁹𓊨𓊹 ). In: SAK 7, 1979, 141-153. - Leclant, Fouilles en Nubie (1961-1963)Leclant, Jean, Rapport Préliminaire sur la Seconde Campagne de la Mission Française à Tomâs, In: Fouilles en Nubie (1961-1963): campagne Internationale de l'Unesco pour la Sauvegarde des Monuments de la Nubie. Campagne Internationale de l’Unesco pour la Sauvegarde des Monuments de al Nubie. Hrsg. von Anonymous, 1967, 119-122 . - Leclant, in: Fs Champollion II 2Leclant, Jean, Les textes des pyramides. In: Fs Champollion II 2, 1973, 37-52. - Leclant, in: Fs MokhtarLeclant, Jean, T.P. Pépi Ier, VI: à propos des §§ 1726 a-c, 1915 et *2223 a-c des Textes des Pyramides. In: Fs Mokhtar, 1985, 83-92. - Leclant, in: SudanLeclant, Jean, Ägypten in Nubien. Das Alte und Mittlere Reich. In: Sudan, 1996, 72-86. + Leclant, Mon. ThébainsLeclant, Jean, Recherches sur les monuments thébains de la XXVe dynastie dite éthiopienne. BdE 36. 1965. Leclant, Mon. Thébains 1Leclant, Jean, Recherches sur les monuments thébains de la XXVe dynastie dite éthiopienne, Bd. 1, Texte. BdE 36. 1965. Leclant, Mon. Thébains 2Leclant, Jean, Recherches sur les monuments thébains de la XXVe dynastie dite éthiopienne, Bd. 2, Planches. BdE 36. 1965. - Leclant, Mon. ThébainsLeclant, Jean, Recherches sur les monuments thébains de la XXVe dynastie dite éthiopienne. BdE 36. 1965. - Leclant, MontouemhatLeclant, Jean, Montouemhat, quatrième prophète d'Amon, prince de la ville. BdE 35. 1961. - Leclant, Or 21, 1952Leclant, Jean, Fouilles et travaux en Égypte, 1950-1951. 2. In: Or 21, 1952, 233-249. - Leclant, Or 22, 1953Leclant, Jean, Fouilles et travaux en Égypte, 1951-1952. In: Or 22, 1953, 82-105. - Leclant, Or 24, 1955Leclant, Jean, Fouilles et travaux en Égypte, 1953-1954. In: Or 24, 1955, 296-317. - Leclant, Or 25, 1956Leclant, Jean, Fouilles et travaux en Égypte, 1954-1955. In: Or 25, 1956, 251-268. - Leclant, Or 30, 1961Leclant, Jean, Fouilles et travaux en Égypte, 1957-1960. In: Or 30, 1961, 91-110, 176-199. - Leclant, Or 31, 1962Leclant, Jean, Fouilles et travaux en Égypte et au Soudan, 1960-1961. I. Fouilles en Égypte. In: Or 31, 1962, 197-222. - Leclant, Or 32, 1963Leclant, Jean, Fouilles et travaux en Égypte et au Soudan, 1961-1962. I. fouilles en Égypte; II. fouilles au Soudan et découvertes hors d'Égypt. In: Or 32, 1963, 82-101, 184-218. - Leclant, Or 52, 1983Leclant, Jean, Fouilles et travaux en Égypte et au Soudan, 1981-1982. In: Or 52, 1983, 461-542. + Leclant, MontouemhatLeclant, Jean, Montouemhat, quatrième prophète d’Amon, prince de la ville. BdE 35. 1961. Leclant, PepyBerger, Catherine, Leclant, Jean, Mathieu, Bernard, Pierre-Croisiau, Isabelle, Les textes de la pyramide de Pepy 1er. MIFAO 118. 2001. - Leclant, SacerdocesLeclant, Jean, Enquêtes sur les sacerdoces et les sanctuaires égyptiens à l'époque dite "éthiopienne" (XXVe dynastie). BdE 17. 1954. - Leclant/Clerc, Or 58, 1989Leclant, Jean, Clerc, Gisèle, Fouilles et travaux en Égypte et au Soudan, 1987-1988. In: Or 58, 1989, 335-427. - Leclant/Clerc, Or 66, 1997Leclant, Jean, Clerc, Gisèle, Fouilles et travaux en Égypte et au Soudan, 1995-1996. In: Or 66, 1997, 222-363. - Leclant/Minault-Gout, Or 68, 1999Leclant, Jean, Minault-Gout, Anne, Fouilles et travaux en Égypte et au Soudan, 1997-1998. Première partie. In: Or 68, 1999, 313-424. + Leclant, SacerdocesLeclant, Jean, Enquêtes sur les sacerdoces et les sanctuaires égyptiens à l’époque dite "éthiopienne" (XXVe dynastie). BdE 17. 1954. Ledrain, Monuments égyptiensLedrain, Eugène, Les monuments égyptiens de la Bibliothèque Nationale (Cabinet des Médailles et Antiques) I-III. BEHE 38, 47. 1879-1881. - Leemans, DescriptionLeemans, Conrad, Description raisonnée des monumens égyptiens du Musée d'Antiquités des Pays-Bas, à Leide. 1840. - Leemans, Mon. Eg. 1Leemans, Conrad, Monumens égyptiens du Musée d'Antiquités des Pays-Bas à Leide, Bd. 1, Monumens de la religion et du culte public et privé. 1842-1845. - Leemans, Mon. Eg.Leemans, Conrad, Monumens égyptiens du Musée d'Antiquités des Pays-Bas à Leide. 1842-67. - Leemans, Papyrus égyptien funéraire Leemans, Conrad, Papyrus égyptien funéraire hiéroglyphique (T. 2) du Musée d'Antiquités des Pays-Bas à Leide / publ. d'après les ordres du gouvernement par C. Leemans. 1882. - Leemans, Papyrus égyptiens hiératiquesLeemans, Conrad, Papyrus égyptiens hiératiques I. 343-371 du Musée d'Antiquités des Pays-Bas à Leide / avec des notices sommaires par F. Chabas. Publ. d'après les ordres du gouvernement par Conrad Leemans. 1853-1862. - Lefebvre, ASAE 12, 1912Lefebvre, Gustave, À travers la Moyenne-Égypte: documents et notes. In: ASAE 12, 1912, 81-94. - Lefebvre, ASAE 24, 1924Lefebvre, Gustave, Monuments relatifs à Amon de Karnak. In: ASAE 24, 1924, 133-145. - Lefebvre, ASAE 25, 1925Lefebvre, Gustave, Une version abrégée de la "stèle du mariage". In: ASAE 25, 1925, 34-45. - Lefebvre, ASAE 51, 1951Lefebvre, Gustave, Inscription dédicatoire de la chapelle funéraire de Ramsès I à Abydos. In: ASAE 51, 1951, 167-200. - Lefebvre, BIFAO 57, 1958Lefebvre, Gustave, Observations sur le Papyrus Ramesseum V. In: BIFAO 57, 1958, 173-182. + Leemans, DescriptionLeemans, Conrad, Description raisonnée des monumens égyptiens du Musée d’Antiquités des Pays-Bas, à Leide. 1840. + Leemans, Mon. Eg.Leemans, Conrad, Monumens égyptiens du Musée d’Antiquités des Pays-Bas à Leide. 1842-67. + Leemans, Mon. Eg. 1Leemans, Conrad, Monumens égyptiens du Musée d’Antiquités des Pays-Bas à Leide, Bd. 1, Monumens de la religion et du culte public et privé. 1842-1845. + Leemans, Papyrus égyptien funéraire Leemans, Conrad, Papyrus égyptien funéraire hiéroglyphique (T. 2) du Musée d’Antiquités des Pays-Bas à Leide / publ. d’après les ordres du gouvernement par C. Leemans. 1882. + Leemans, Papyrus égyptiens hiératiquesLeemans, Conrad, Papyrus égyptiens hiératiques I. 343-371 du Musée d’Antiquités des Pays-Bas à Leide / avec des notices sommaires par F. Chabas. Publ. d’après les ordres du gouvernement par Conrad Leemans. 1853-1862. Lefebvre, Essai sur la médecine égyptienneLefebvre, Gustave, Essai sur la médecine égyptienne de l’époque pharaonique. 1956. - Lefebvre, Grands PrêtresLefebvre, Gustave, Histoire des grands prêtres d'Amon de Karnak jusqu'à la XXIe dynastie. 1929. - Lefebvre, RomansLefebvre, Gustave, Romans et contes égyptiens de l'époque pharaonique. Traduction avec introduction, notices et commentaire. 1949. + Lefebvre, Grands PrêtresLefebvre, Gustave, Histoire des grands prêtres d’Amon de Karnak jusqu’à la XXIe dynastie. 1929. + Lefebvre, RomansLefebvre, Gustave, Romans et contes égyptiens de l’époque pharaonique. Traduction avec introduction, notices et commentaire. 1949. Lefebvre/Rinsveld, L'ÉgypteLefebvre, Françoise, Rinsveld, Bernard van, L'Égypte. Des pharaons aux Coptes. 1990. - Legowski/Müller-Roth, GM 241, 2014Legowski, Aris, Müller-Roth, Marcus, Papyrus Turin 1791 - revisited. In: GM 241, 2014, 77-101. - Legrain, ASAE 10, 1910Legrain, Georges, Notes d'inspection. In: ASAE 10, 1910, 101-113, 258-259. - Legrain, ASAE 3, 1902 (1)Legrain, Georges, Le temple de Ptah Rîs-anbou-f dans Thèbes. In: ASAE 3, 1902, 38-66, 97-114. - Legrain, ASAE 3, 1902 (2)Legrain, Georges, Notes d'inspection. In: ASAE 3, 1902, 259-268. - Legrain, ASAE 4, 1903 (1)Legrain, Georges, La grande stèle d'Amenôthès II à Karnak. In: ASAE 4, 1903, 126-132. - Legrain, ASAE 4, 1903 (2)Legrain, Georges, Notes d'inspection. In: ASAE 4, 1903, 193-226. - Legrain, ASAE 4, 1903 (3)Legrain, Georges, Second rapport sur les travaux exécutés à Karnak du 31 octobre 1901 au 15 mai 1902. In: ASAE 4, 1903, 1-40. - Legrain, ASAE 5, 1904Legrain, Georges, Rapport sur les travaux exécutés à Karnak du 31 octobre 1902 au 15 mai 1903. In: ASAE 5, 1904, 1-43. - Legrain, ASAE 7, 1906Legrain, Georges, Sur quelques monuments d'Aménôthès IV provenant de la cachette de Karnak. In: ASAE 7, 1906, 228-231. - Legrain, ASAE 8, 1907Legrain, Georges, Notes d'inspection. In: ASAE 8, 1907, 51-59, 122-129, 248-275. - Legrain, in: ARp 1907-1908Legrain, Georges, [kein Titel]. In: ARp 1907-1908, 1908, 80-82. - Legrain, RecTrav 23, 1901 (1)Legrain, Georges, Notes prises à Karnak. In: RecTrav 23, 1901, 61-65. - Legrain, RecTrav 23, 1901 (2)Legrain, Georges, Le temple et les chapelles d'Osiris à Karnak. In: RecTrav 23, 1901, 65-75, 163-172. - Legrain, RecTrav 26, 1904Legrain, Georges, Notes prises à Karnak. In: RecTrav 26, 1904, 218-224. - Legrain, RecTrav 29, 1907Legrain, Georges, La grande stèle de Toutankhamanou à Karnak. In: RecTrav 29, 1907, 162-173. - Legrain, RecTrav 31, 1909Legrain, Georges, Recherches généalogiques. In: RecTrav 31, 1909, 1-10, 201-220. Legrain, RépertoireLegrain, Georges, Répertoire généalogique et onomastique du Musée du Caire: monuments de la XVIIe et de la XVIIIe dynastie. 1908. LeGuilloux, Khnoumhotep IILeGuilloux, Patrice, La biographie de Khnoumhotep II, prince de Béni Hassan. Texte hiéroglyphique, translittération et traduction commentée. Cahiers Isis 3. 2005. Lehner, Complete PyramidsLehner, Mark, The Complete Pyramids. 1997. - Lehner, in: Schätze der Pyramiden Lehner, Mark, Der Sphinx. In: Schätze der Pyramiden, 2004, ???. Lehner, SphinxLehner, Mark, Archaeology of an Image: The Great Sphinx of Giza (Dissertation). 1991. Lehner/Hawass, PyramidenLehner, Mark, Hawass, Zahi A., Die Pyramiden von Gizeh. 2017. - Leibovitch, JNES 12, 1953Leibovitch, Josef, Gods of Agriculture and Welfare in Ancient Egypt. In: JNES 12, 1953, 73-113. Leitz, AstronomieLeitz, Christian, Studien zur ägyptischen Astronomie. ÄA 49. 1989. Leitz, GaumonographienLeitz, Christian, Die Gaumonographien in Edfu und ihre Papyrusvarianten. SSR 9. 2014. - Leitz, in: Karenberg/Leitz, Heilkunde und Hochkultur ILeitz, Christian, Zwischen Zauber und Vernunft: der Beginn des Lebens im Alten Ägypten. In: Karenberg/Leitz, Heilkunde und Hochkultur I, 2000, 133-150. - Leitz, in: Rickert/Ventker, Altägyptische Enzyklopädien ILeitz, Christian, Aromatische Substanzen. In: Rickert/Ventker, Altägyptische Enzyklopädien, 2014, 483-516. - Leitz, LingAeg 10, 2002Leitz, Christian, Rezension: Martin Bommas, Die Mythisierung der Zeit. In: LingAeg 10, 2002, 413-424. Leitz, Magical and Medical PapyriLeitz, Christian, Magical and Medical Papyri of the New Kingdom. HPBM 7. 1999. - Leitz, Or 65, 1996Leitz, Christian, Die Schlangensprüche in den Pyramidentexten. In: Or 65, 1996, 381-427. Leitz, PanehemisisLeitz, Christian, Der Sarg des Panehemisis in Wien. SSR 3. 2011. Leitz, SchlangennamenLeitz, Christian, Die Schlangennamen in den ägyptischen und griechischen Giftbüchern. 1997. Leitz, SternuhrenLeitz, Christian, Altägyptische Sternuhren. OLA 62. 1995. Leitz, TagewählereiLeitz, Christian, Tagewählerei. Das Buch ḥꜣt nḥḥ pḥ.wy ḏt und verwandte Texte. ÄA 55. 1994. - Leitz, ZÄS 116, 1989Leitz, Christian, Die obere und die untere Dat. In: ZÄS 116, 1989, 41-57. - Leitz, ZÄS 120, 1993Leitz, Christian, Die Nacht des Kindes in seinem Nest in Dendara. In: ZÄS 120, 1993, 136-165. LEMGardiner, Alan H., Late-Egyptain Miscellanies. BAe 7. 1937. Lembke, Iseum CampenseLembke, Katja, Das Iseum Campense in Rom. Studie über den Isiskult unter Domitian. 1994. - Lenormant, Collection d'antiquités égyptiennesLenormant, François, Catalogue d'une collection d'antiquités égyptiennes : cette collection, rassemblée par M. d'Anastasi. 1857. + Lenormant, Collection d’antiquités égyptiennesLenormant, François, Catalogue d’une collection d’antiquités égyptiennes : cette collection, rassemblée par M. d’Anastasi. 1857. Lepper, Untersuchungen zu pWestcarLepper, Verena, Untersuchungen zu pWestcar. Eine philologische und literaturwissenschaftliche (Neu-)Analyse. ÄA 70. 2008. - Leprohon, in: Archaism and InnovationLeprohon, Ronald J., The Stela of Sehetepibre (CG 20538). Borrowings and Innovation. In: Archaism and Innovation, 2009, 277-292. - Leprohon, JARCE 15, 1978Leprohon, Ronald J., The Personnel of the Middle Kingdom Funerary Stelae. In: JARCE 15, 1978, 33-38. Lepsius, AuswahlLepsius, Karl Richard, Auswahl der wichtigsten Urkunden des aegyptischen Altertums. 1842. Lepsius, TodtenbuchLepsius, Karl Richard, Das große Todtenbuch der alten Ägypter. 1842. - Les portes du cielLes portes du ciel. Visions du monde dans l'Égypte ancienne. Hrsg. von Étienne, Marc. 2009. - Les temples de millions d'annéesLes temples de millions d'années et le pouvoir royal à Thèbes au Nouvel Empire. Sciences et nouvelles technologies appliquées à l'archéologie. Hrsg. von Leblanc, Christian, Zaki, Gihane. Mem. CS 2. 2010. + Les portes du cielLes portes du ciel. Visions du monde dans l’Égypte ancienne. Hrsg. von Étienne, Marc. 2009. + Les temples de millions d’annéesLes temples de millions d’années et le pouvoir royal à Thèbes au Nouvel Empire. Sciences et nouvelles technologies appliquées à l’archéologie. Hrsg. von Leblanc, Christian, Zaki, Gihane. Mem. CS 2. 2010. + Lesko, DictionaryA Dictionary of Late Egyptian. Hrsg. von Lesko, Leonard H., Lesko, Barbara Switalski. 1982-1990. Lesko, Dictionary IA dictionary of Late Egyptian: volume I. Hrsg. von Lesko, Leonard H., Lesko, Barbara Switalski. 1982. Lesko, Dictionary IIA dictionary of Late Egyptian: volume II. Hrsg. von Lesko, Leonard H., Lesko, Barbara Switalski. 1984. Lesko, Dictionary IIIA dictionary of Late Egyptian: volume III. Hrsg. von Lesko, Leonard H., Lesko, Barbara Switalski. 1987. Lesko, Dictionary IVA dictionary of Late Egyptian: volume IV. Hrsg. von Lesko, Leonard H., Lesko, Barbara Switalski. 1989. Lesko, Dictionary VA dictionary of Late Egyptian: volume V. Hrsg. von Lesko, Leonard H., Lesko, Barbara Switalski. 1990. - Lesko, DictionaryA Dictionary of Late Egyptian. Hrsg. von Lesko, Leonard H., Lesko, Barbara Switalski. 1982-1990. - Leslau, JNES 21, 1962Leslau, Wolf, Semitic and Egyptian Comparisons. In: JNES 21, 1962, 44-49. LEStGardiner, Alan H., Late-Egyptain Stories. BAe 1. 1932. - Lettres Champollion IILettres de Champollion le Jeune, Vol. 2. Lettres et journaux écrits pendant le voyage d'Égypte (1828-1830). Hrsg. von Hartleben, H. BE 31. 1909. Lettres ChampollionLettres de Champollion le Jeune. Hrsg. von Hartleben, H. BE 30-31. 1909. + Lettres Champollion IILettres de Champollion le Jeune, Vol. 2. Lettres et journaux écrits pendant le voyage d’Égypte (1828-1830). Hrsg. von Hartleben, H. BE 31. 1909. Lexa, Gramm. dém.Lexa, František, Grammair démotique. 1948-1949. - Lexa, Magie 1Lexa, František, La magie dans l'Égypte antique de l'Ancien Empire jusqu'à l'époque copte, Bd. 1, Exposé. 1925. - Lexa, Magie 2Lexa, František, La magie dans l'Égypte antique de l'Ancien Empire jusqu'à l'époque copte, Bd. 2, Les textes magiques. 1925. - Lexa, Magie 3Lexa, František, La magie dans l'Égypte antique de l'Ancien Empire jusqu'à l'époque copte, Bd. 3, Atlas. 1925. - Lexa, MagieLexa, František, La magie dans l'Égypte antique de l'Ancien Empire jusqu'à l'époque copte. 1925. + Lexa, MagieLexa, František, La magie dans l’Égypte antique de l’Ancien Empire jusqu’à l’époque copte. 1925. + Lexa, Magie 1Lexa, František, La magie dans l’Égypte antique de l’Ancien Empire jusqu’à l’époque copte, Bd. 1, Exposé. 1925. + Lexa, Magie 2Lexa, František, La magie dans l’Égypte antique de l’Ancien Empire jusqu’à l’époque copte, Bd. 2, Les textes magiques. 1925. + Lexa, Magie 3Lexa, František, La magie dans l’Égypte antique de l’Ancien Empire jusqu’à l’époque copte, Bd. 3, Atlas. 1925. + LGGLexikon der ägyptischen Götter und Götterbezeichnungen. Hrsg. von Leitz, Christian. OLA 110-116. 2002. LGG ILexikon der ägyptischen Götter und Götterbezeichnungen, I. Hrsg. von Leitz, Christian. OLA 110. 2002. LGG IILexikon der ägyptischen Götter und Götterbezeichnungen, II. Hrsg. von Leitz, Christian. OLA 111. 2002. LGG IIILexikon der ägyptischen Götter und Götterbezeichnungen, III. Hrsg. von Leitz, Christian. OLA 112. 2002. @@ -2951,216 +1920,144 @@

      Abbreviat LGG VLexikon der ägyptischen Götter und Götterbezeichnungen, V. Hrsg. von Leitz, Christian. OLA 114. 2002. LGG VILexikon der ägyptischen Götter und Götterbezeichnungen, VI. Hrsg. von Leitz, Christian. OLA 115. 2002. LGG VIILexikon der ägyptischen Götter und Götterbezeichnungen, VII. Hrsg. von Leitz, Christian. OLA 116. 2002. - LGGLexikon der ägyptischen Götter und Götterbezeichnungen. Hrsg. von Leitz, Christian. OLA 110-116. 2002. LichtGautier, Joseph Etienne, Jéquier, Gustave, Mémoire sur les fouilles de Licht. MIFAO 6. 1902. Lichtenberger et al., Das Mittelmeer und der TodDas Mittelmeer und der Tod. Mediterrane Mobilität und Sepulkralkultur. Hrsg. von Lichtenberger, Achim, Berner, Alexander, Morstadt, Bärbel. 2016. Lichtheim, AutobiographiesLichtheim, Miriam, Ancient Egyptian Autobiographies Chiefly of the Middle Kingdom. A Study and an Anthology. OBO 84. 1988. - Lichtheim, GM 87, 1985Lichtheim, Miriam, Zum demotischen Wort Arl. In: GM 87, 1985, 53-54. - Lichtheim, in: Fs BrownLichtheim, Miriam, The Praise of Cities in the Literature of the Egyptian New Kingdom. In: Fs Brown, 1980, 15-23. - Lichtheim, JARCE 9, 1971-1972Lichtheim, Miriam, Have the Principles of Ancient Egyptian Metrics Been Discovered? In: JARCE 9, 1971-1972, 103-110. - Lichtheim, JNES 4, 1945Lichtheim, Miriam, The Songs of the Harpers. In: JNES 4, 1945, 178-212. + Lichtheim, LiteratureAncient Egyptian Literature. A Book of Readings. 1973-1980. Lichtheim, Literature ILichtheim, Miriam, Ancient Egyptian Literature. A Book of Readings I: The Old and Middle Kingdoms. 1973. Lichtheim, Literature IILichtheim, Miriam, Ancient Egyptian Literature. A Book of Readings, Vol. II: The New Kingdom. 1976. Lichtheim, Literature IIILichtheim, Miriam, Ancient Egyptian Literature. A Book of Readings III: The Late Period. 1980. - Lichtheim, LiteratureAncient Egyptian Literature. A Book of Readings. 1973-1980. Lichtheim, MaatLichtheim, Miriam, Maat in Egyptian Autobiographies and Related Studies. OBO 120. 1992. Lichtheim, Moral ValuesLichtheim, Miriam, Moral Values in Ancient Egypt. OBO 155. 1997. Lichtheim, O. Medinet HabuLichtheim, Miriam, Demotic Ostraca from Medinet Habu. OIP 80. 1957. - Lichtheim, SAK 16, 1989Lichtheim, Miriam, The Stela of Taniy, CG 20564. Its Date and its Character. In: SAK 16, 1989, 203-216. Lichtheim, Wisdom LiteratureLichtheim, Miriam, Late Egyptian Wisdom Literature in the International Context. A Study of Demotic Instructions. OBO 52. 1983. - Lieblein, DictionnaireLieblein, Jens, Dictionnaire de noms hiéroglyphiques en ordre généalogique et alphabétique: publié d'après les monuments égyptiens, 4 vols. 1871-1892. - Lieven, in: Fs GuglielmiLieven, Alexandra von, Fragmente einer Liturgie für Sokar-Osiris (P. Vindob. Aeg 12 001). In: Fs Guglielmi, 2006, 79-89. - Lieven, in: Hieratic Texts from the CollectionLieven, Alexandra von, Eine punktierte Osirisliturgie (P. Carlsberg 589 + PSI Inv. I 104 + P. Berlin 29022). In: Carlsberg Papyri 7, 2006, 9-38. - Lieven/Quack, in: Fs VleemingLieven, Alexandra von, Quack, Joachim Friedrich, Ist Liebe eine Frauenkrankheit? Papyrus Berlin P 13602, ein gynäkomagisches Handbuch. In: Fs Vleeming, 2018, 257-274. + Lieblein, DictionnaireLieblein, Jens, Dictionnaire de noms hiéroglyphiques en ordre généalogique et alphabétique: publié d’après les monuments égyptiens, 4 vols. 1871-1892. Limme, Stèles égyptiennesLimme, Luc, Stèles égyptiennes. MRAH Guides 4. 1979. Lippert, LehrbuchLippert, Sandra Luisa, Ein demotisches juristisches Lehrbuch. Untersuchungen zu Papyrus Berlin P 23757 rto. ÄA 66. 2004. Lippert/Schentuleit, DDD ILippert, Sandra Luisa, Schentuleit, Maren, Demotische Dokumente aus Dime I: Ostraka. 2006. Lippert/Schentuleit, DDD IILippert, Sandra Luisa, Schentuleit, Maren, Demotische Dokumente aus Dime, II. Quittungen. 2006. Lippert/Schentuleit, DDD IIILippert, Sandra Luisa, Schentuleit, Maren, Demotische Dokumente aus Dime III: Urkunden. 2010. - Lippert/Schentuleit, SAK 32, 2004Lippert, Sandra Luisa, Schentuleit, Maren, Ein Webstuhl mit Zubehör: Die spätdemotische Urkunde P. Berlin P 23779+30009. In: SAK 32, 2004, 287-299. Literature of Ancient EgyptThe Literature of Ancient Egypt. An Anthology of Stories, Instructions, Stelae, Autobiographies, and Poetry. With Translations by R. O. Faulkner, Robert K. Ritner, Vincent A. Tobin, and Edward F. Wente, Jr. Hrsg. von Simpson, William Kelly. 1972, 1973 (2nd ed.), 2003 (3rd ed.). + LiteraturgeschichteEinführung in die altägyptische Literaturgeschichte I-III. EQÄ 1, 3, 6. 2003-2008. Literaturgeschichte IBurkard, Günter, Thissen, Heinz-Josef, Einführung in die altägyptische Literaturgeschichte I. Altes und Mittleres Reich. EQÄ 1. 2003. Literaturgeschichte IIBurkard, Günter, Thissen, Heinz-Josef, Einführung in die altägyptische Literaturgeschichte II: Neues Reich. EQÄ 6. 2008. Literaturgeschichte IIIQuack, Joachim Friedrich, Einführung in die altägyptische Literaturgeschichte III. Die demotische und gräko-ägyptische Literatur. EQÄ 3. 2005, 2009 (2. überarb. Aufl.), 2016 (3. überarb. Aufl.). - LiteraturgeschichteEinführung in die altägyptische Literaturgeschichte I-III. EQÄ 1, 3, 6. 2003-2008. Living and WritingLiving and Writing in Deir el-Medine. Socio-Historical Embodiment of Deir el-Medine Texts. Hrsg. von Dorn, Andreas, Hofmann, Tobias. AH 19. 2006. Livre du CentenaireLivre du Centenaire, 1880-1980. Hrsg. von Vercoutter, Jean. MIFAO 104. 1980. Lloyd (et al.), Saqqara Tombs IIILloyd, Alan B., Spencer, A. Jeffrey, El-Khouli, A., The Mastaba of Neferseshemptah. Saqqâra Tombs 3. ASE Memoirs 41. 2008. - Lloyd, in: Fs GriffithsLloyd, Alan B., The Great Inscription of Khnumḥotpe II at Beni Hasan. In: Fs Griffiths, 1992, 21-36. Lloyd, Saqqara Tombs IILloyd, Alan B., Spencer, A. Jeffrey, El-Khouli, A., The Mastabas of Meru, Semdenti, Khui and Others. Saqqâra Tombs 2. ASE Memoirs 40. 1990. Locher, TopographieLocher, Josef, Topographie und Geschichte der Region am ersten Nilkatarakt in griechisch-römischer Zeit. AfP Beiheft 5. 1999. - Loeben, in: Fs Endesfelder, Priese, Reineke, WenigLoeben, Christian E., Bemerkungen zur sogenannten "Kleinen Semna-Stele" (Berlin 14753). In: Fs Endesfelder, Priese, Reineke, Wenig, 2001, 273-284. - Loeben, MDAIK 42, 1986Loeben, Christian E., Eine Bestattung der großen königlichen Gemahlin Nofretete in Amarna? Die Totenfigur der Nofretete. In: MDAIK 42, 1986, 99-107. - Lohmann, SAK 25, 1998Lohmann, Katherina, Das Gespräch eines Mannes mit seinem Ba. In: SAK 25, 1998, 207-236. - Löhr, SAK 2, 1975Gessler-Löhr, Beatrix, Aḫanjāti in Memphis. In: SAK 2, 1975, 139-187. Lohwasser, FrauenLohwasser, Angelika, Die königlichen Frauen im antiken Reich von Kusch. 25. Dynastie bis zur Zeit des Nastasen. Meroitica 19. 2001. López, Inscriptions rupestresLópez, Jesús, Las inscripciones rupestres faraónicas entre Korosko y Kasr Ibrim (Orilla oriental del Nilo). 1966. López, Ostraca ieratici N. 57001-57092López, Jesús, Ostraca ieratici N. 57001-57092. Turin CG 2,3,1. 1978. López, Ostraca ieratici N. 57093-57319López, Jesús, Ostraca ieratici N. 57093-57319. Turin CG 2,3,2. 1980. López, Ostraca ieratici N. 57320-57449López, Jesús, Ostraca ieratici N. 57320-57449. Turin CG 2,3,3. 1982. López, Ostraca ieratici N. 57450-57568López, Jesús, Ostraca ieratici N. 57450-57568. Tabelle lignee N. 58001-58007. Turin CG 2,3,4. 1984. - López, RdE 15, 1963López, Jesús, Le papyrus Millingen. In: RdE 15, 1963, 29-33, pl. 4-8. - López, RdE 19, 1967López, Jesús, Inscriptions de l'Ancien Empire à Khor el-Aquiba. In: RdE 19, 1967, 51-66. - López, RdE 43, 1992López, Jesús, Le verger d'amour (P. Turin 1966, recto). In: RdE 43, 1992, 133-143. Loprieno, ToposLoprieno, Antonio, Topos und Mimesis. Zum Ausländer in der ägyptischen Literatur. ÄA 48. 1988. Loret, FloreLoret, Victor, La flore pharaonique. 1892. - Loret, in: Mél. Masp.Loret, Victor, Pour transformer un vieillard en jeune homme (Pap. Smith, XXI,9-XXII,10). In: Mél. Masp. I, 1935-1938, 853-877. - Lorton, in: Fs LichtheimLorton, David, The Aswan/Philae Inscription of Thutmosis II. In: Fs Lichtheim, 1990, 668-679. - Lorton, JARCE 7, 1968Lorton, David, The Expression šms-ỉb. In: JARCE 7, 1968, 41-54. Lorton, Juridical TerminologyLorton, David, The Juridical Terminology of International Relations in Egyptian Texts through Dyn. XVIII. 1974. - Loukianoff, AEphem 100/3, 1956Loukianoff, Grégoire, Une statue-caryatide d'Unnefer, premier prêtre d'Osiris à l'époque du pharaon Ramsès II de la XIXème dynastie (1250 ans avant J.C.) au Musée National d'Athènes (N° 106) et l'importance de ses inscriptions pour la généalogie d'Unnefer. AEphem 100 (1937). 1956. - LR 1Gauthier, Henri, Le livre des rois d'Égypte, Bd. 1, Des origines à la fin de la XIIe dynastie. MIFAO 17. 1907. - LR 2Gauthier, Henri, Le livre des rois d'Égypte, Bd. 2, De la XIIIe à la fin de la XVIIIe dynastie. MIFAO 18. 1912. - LR 3Gauthier, Henri, Le livre des rois d'Égypte, Bd. 3, De la XIXe à la XXIVe dynastie. MIFAO 19. 1914. - LR 4Gauthier, Henri, Le livre des rois d'Égypte, Bd. 4, De la XXVe dynastie à la fin des Ptolémées. MIFAO 20. 1916. - LR 5Gauthier, Henri, Le livre des rois d'Égypte, Bd. 5, Les empereurs romains. MIFAO 21. 1917. + Loukianoff, AEphem 100/3, 1956Loukianoff, Grégoire, Une statue-caryatide d’Unnefer, premier prêtre d’Osiris à l’époque du pharaon Ramsès II de la XIXème dynastie (1250 ans avant J.C.) au Musée National d’Athènes (N° 106) et l’importance de ses inscriptions pour la généalogie d’Unnefer. AEphem 100 (1937). 1956. LRGauthier, Henri, Le Livre des rois d´Egypte. MIFAO 17-21. 1907-17. + LR 1Gauthier, Henri, Le livre des rois d’Égypte, Bd. 1, Des origines à la fin de la XIIe dynastie. MIFAO 17. 1907. + LR 2Gauthier, Henri, Le livre des rois d’Égypte, Bd. 2, De la XIIIe à la fin de la XVIIIe dynastie. MIFAO 18. 1912. + LR 3Gauthier, Henri, Le livre des rois d’Égypte, Bd. 3, De la XIXe à la XXIVe dynastie. MIFAO 19. 1914. + LR 4Gauthier, Henri, Le livre des rois d’Égypte, Bd. 4, De la XXVe dynastie à la fin des Ptolémées. MIFAO 20. 1916. + LR 5Gauthier, Henri, Le livre des rois d’Égypte, Bd. 5, Les empereurs romains. MIFAO 21. 1917. LRLČerný, Jaroslav, Late-Ramesside Letters. BAe 9. 1939. Lucas, MaterialsLucas, Alfred, Ancient Egyptian Materials and Industries. 1926, 1934 (2. Aufl.), 1948 (3. Aufl.), 1962 (4. Aufl.). - Lüchtrath, GM 101, 1988Lüchtrath, Agnes, tj-šps, der Kampferbaum Ostafrikas. In: GM 101, 1988, 43-49. - Lüchtrath, in: Edfu: Bericht über drei SurveysLüchtrath, Agnes, Das Kyphirezept. In: Edfu: Bericht über drei Surveys, 1999, 97-145. - Luckenbach, Kunst und Geschichte ILuckenbach, Hermann, Kunst und Geschichte, I Altertum. 1910. Luckenbach, Kunst und GeschichteLuckenbach, Hermann, Kunst und Geschichte. 1910-1918. + Luckenbach, Kunst und Geschichte ILuckenbach, Hermann, Kunst und Geschichte, I Altertum. 1910. Luckner, ArtLuckner, Kurt T., The Art of Egypt. TMAMN N. S. 14. 1971 (2. Bd.). Lüddeckens, EheverträgeLüddeckens, Erich, Ägyptische Eheverträge. ÄA 1. 1960. Lüddeckens, HawaraLüddeckens, Erich, Demotische Urkunden aus Hawara. VOHD Supplementband 28. 1998. Luft, Illahun 1Luft, Ulrich, Das Archiv von Illahun. Briefe 1. 1992. Luft, Illahun 2Urkunden zur Chronologie der späten 12. Dynastie. Briefe aus Illahun. 2006. - Luft, Oikumene 3, 1982Luft, Ulrich, Illahunstudien, I: Zu der Chronologie und den Beamten in den Briefen aus Illahun. In: Oikumene 3, 1982, 101-156. - Luft, Oikumene 5, 1986Luft, Ulrich, Illahunstudies, III. Zur sozialen Stellung des Totenpriesters im Mittleren Reich. In: Oikumene 5, 1986, 117-153. Luiselli, FrömmigkeitLuiselli, Maria Michela, Die Suche nach Gottesnähe. Untersuchungen zur persönlichen Frömmigkeit in Ägypten von der Ersten Zwischenzeit bis zum Ende des Neuen Reiches. ÄUAT 73. 2011. Luiselli, P. Boulaq 17Luiselli, Maria Michela, Der Amun-Re Hymnus des P. Boulaq 17 (P. Kairo CG 58038). KÄT 14. 2004. Lundh, Military ActivityLundh, Patrik, Actor and Event. Military Activity in Ancient Egyptian Narrative Texts from Tuthmosis II to Merenptah. USE 2. 2002. - Lupo, GM 198, 2004Lupo, Silvia, The Inscription of Amenemhet II in the Temple of Ptah in Memphis: Was there a real Control of the Egyptian State over Kush during the Middle Kingdom? In: GM 198, 2004, 43-54. Lüscher, Tb 149/150Lüscher, Barbara, Totenbuch Spruch 149/150. TbT 6. 2010. Lustman, Papyrus Bremner-RhindLustman, Jacqueline, Étude grammaticale du Papyrus Bremner-Rhind. 1999. Lutz, StelaeLutz, Henry F., Egyptian tomb steles and offering stones of the Museum of Anthropology and Ethnology of the University of California. UCPEA 4. 1927. Luxor MuseumThe Luxor Museum of Ancient Egyptian Art. Catalogue. Hrsg. von Romano, James F. 1979. - Macadam, JEA 32, 1946Macadam, M. F. Laming, Gleanings from the Bankes MSS. In: JEA 32, 1946, 57-64. Macramallah, Cimetière ArchaiqueMacramallah, Rizkallah, Un cimetière archaique de la classe moyenne du peuple à Saqqarah. Fouilles Saqq. 1940. - Macramallah, Mastaba d´IdoutMacramallah, Rizkallah, Le mastaba d'Idout. Fouilles Saqq. 1935. - Maderna-Sieben, GM 196, 2003Maderna-Sieben, Claudia, Die große Bauinschrift von Abydos. In: GM 196, 2003, 31-48. - Maderna-Sieben, in: Fs Assmann Temple of the Whole WorldMaderna-Sieben, Claudia, Die große Bauinschrift von Abydos. In: Fs Assmann, Temple of the Whole World, 2003, 237-282. + Macramallah, Mastaba d´IdoutMacramallah, Rizkallah, Le mastaba d’Idout. Fouilles Saqq. 1935. Maderna-Sieben, KönigseulogienMaderna-Sieben, Claudia, Königseulogien der frühen Ramessidenzeit: Politische Propaganda im Dienst der Legitimierung einer neuen Dynastie. 2018. - Magee, SSEAJ 13, 1983Magee, Diana, An Early Middle Kingdom Coffin from Akhmîm in the Ashmolean Museum (No. 1911.477). In: SSEAJ 13, 1983, 241-248. Mahâsna and Bêt KhallâfGarstang, John, Mahâsna and Bêt Khallâf. ERA 7. 1903. Malaise, Antiquités égyptiennesMalaise, Michel, Antiquités égyptiennes et verres du Proche-Orient ancien des Musées Curtius et du Verre à Liège. 1971. - Malaise, SAK 9, 1981Malaise, Michel, Inventaire des stèles égyptiennes du Moyen Empire porteuses de représentations divines. In: SAK 9, 1981, 259-283. Malaise/Winand, Grammaire raisonnéeMalaise, Michel, Winand, Jean, Grammaire raisonnée de l’égyptien classique. AegLeod 6. 1999. - Málek, EgA 2, 1992Málek, Jaromír, The Annals of Amenemhet II. In: EgA 2, 1992, 18. - Málek, GM 13, 1974Málek, Jaromír, Names of the Estates of Senedjemib Inti (Gîza Tomb G 2370). In: GM 13, 1974, 21-24. - Málek/Quirke, JEA 78, 1992Málek, Jaromír, Quirke, Stephen, Memphis, 1991: Epigraphy. In: JEA 78, 1992, 13-18. Malinine, Choix I und IIMalinine, M., Choix de textes juridiques en hiératique anormal et en démotique (XXVe-XXVIIe dynasties). Paris 1953; deuxième partie: Kairo 1983. - Mallet, RP N.S. 2, 1889Mallet, Dominique, The stele of Thothmes IV (of the eighteenth dynasty). In: RP N.S. 2, 1889, 45-56. Mallon, HébreuxMallon, Alexis, Les Hébreux en Égypte. Or 3. 1921. - Manassa, in: Chasing ChariotsManassa, Colleen, The Chariot that Plunders Foreign Lands. "The Hymn to the King in his Chariot". In: Chasing Chariots, 2013, 143-156. + Manassa, Late Egyptian UnderworldManassa, Colleen, The Late Egyptian Underworld: Sarcophagi and Related Texts from the Nectanebid Period. ÄUAT 72. 2007. (new) Manassa, MerneptahManassa, Colleen, The Great Karnak Inscription of Merneptah. Grand Strategy in the 13th Century BC. YES 5. 2003. Manassa, PastManassa, Colleen, Imagining the Past. Historical Fiction in New Kingdom Egypt. 2013. - Manisali, SAK 32, 2004Manisali, Alexander, 'Imitate but innovate' oder: Eine Götterbedrohung mit hymnischer Struktur im Papyrus Genf MAH 15274. In: SAK 32, 2004, 301-309. Manniche, Egyptian ArtManniche, Lise, Egyptian Art in Denmark. 2004. Manniche, HerbalManniche, Lise, An Ancient Egyptian Herbal. 1989. Manning, Hauswaldt PapyriManning, J., The Hauswaldt Papyri. A Third Century B.C. Family Dossier from Edfu. Dem.Stud. 12. 1997. Manuelian, Amenophis IIManuelian, Peter Der, Studies in the Reign of Amenophis II. HÄB 26. 1987. Manuelian, Slab StelaeManuelian, Peter Der, Slab Stelae of the Giza Necropolis. PPYE 7. 2003. - Maravelia, GM 189, 2002Maravelia, Amanda-Alice, Faience Objects of the Ancient Egyptian Collection at the National Archaeological Museum in Athens. In: GM 189, 2002, 61-80. + Mariette, AbydosMariette, Auguste, Abydos. 1869-80. Mariette, Abydos 1Mariette, Auguste, Abydos, Bd. 1, Ville antique, Temple de Séti. 1869. Mariette, Abydos 2Mariette, Auguste, Abydos, Bd. 2, Temple de Séti, Supplément, Temple de Ramsès, Temple d´Osiris, petit temple de l´ouest, Nécropole. 1880. - Mariette, AbydosMariette, Auguste, Abydos. 1869-80. - Mariette, CG AbydosMariette, Auguste, Catalogue général des monuments d'Abydos découverts pendant les fouilles de cette ville. 1880. - Mariette, CRAIBL 3, 1859Mariette, Auguste, Notice sur l'état actuel et les résultats, jusqu'à ce jour, des travaux entrepris pour la conservation des antiquités égyptiennes en Égypte. In: CRAIBL 3, 1859, 153-167. + Mariette, CG AbydosMariette, Auguste, Catalogue général des monuments d’Abydos découverts pendant les fouilles de cette ville. 1880. + Mariette, Dend.Mariette, Auguste, Dendérah, Description générale du grand temple de cette ville. 1870-80. Mariette, Dend. 1Mariette, Auguste, Dendérah: description générale du grand temple de cette ville, Bd. 1. 1870. Mariette, Dend. 2Mariette, Auguste, Dendérah: description générale du grand temple de cette ville, Bd. 2. 1870. Mariette, Dend. 3Mariette, Auguste, Dendérah: description générale du grand temple de cette ville, Bd. 3. 1871. Mariette, Dend. 4Mariette, Auguste, Dendérah: description générale du grand temple de cette ville, Bd. 4. 1873. Mariette, Dend. 5Mariette, Auguste, Dendérah: description générale du grand temple de cette ville, Bd. 5. 1874. Mariette, Dend. 6Mariette, Auguste, Dendérah: Description générale du grand temple de cette ville, Bd. 6. 1880. - Mariette, Dend.Mariette, Auguste, Dendérah, Description générale du grand temple de cette ville. 1870-80. + Mariette, KarnakMariette, Auguste, Karnak, Etude topographique et archéologique. 1875. Mariette, Karnak 1Mariette, Auguste, Karnak, Etude topographique et archéologique, Bd. 1, Text. 1875. Mariette, Karnak 2Mariette, Auguste, Karnak, Etude topographique et archéologique, Bd. 2, Platten. 1875. - Mariette, KarnakMariette, Auguste, Karnak, Etude topographique et archéologique. 1875. - Mariette, MastabasMariette, Auguste, Les mastabas de l'ancien empire. Fragment du dernier ouvrage de A. Mariette, publié d'après le ms. de l'auteur par G. Maspero . 1889. + Mariette, MastabasMariette, Auguste, Les mastabas de l’ancien empire. Fragment du dernier ouvrage de A. Mariette, publié d’après le ms. de l’auteur par G. Maspero . 1889. + Mariette, Mon. Div.Mariette, Auguste, Monuments divers recueillis en Égypte et en Nubie. 1872. Mariette, Mon. Div. 1Mariette, Auguste, Monuments divers recueillis en Égypte et en Nubie, Bd. 1, Texte. 1872. Mariette, Mon. Div. 2Mariette, Auguste, Monuments divers recueillis en Égypte et en Nubie, Bd. 2, Tables. 1872. - Mariette, Mon. Div.Mariette, Auguste, Monuments divers recueillis en Égypte et en Nubie. 1872. Mariette, Musée de BoulaqMariette, Auguste, Album du Musée de Boulaq. 1872. - Mariette, Notice 4Mariette, Auguste, Notice des principaux monuments exposés dans les galeries provisoires du Musée d'Antiquités Égyptiennes de S. A. le Khédive à Boulaq. 4e éd. 1872. - Mariette, NoticeMariette, Auguste, Notice des principaux monuments exposés dans les galeries provisoires du Musée d'Antiquités Égyptiennes de S. A. le Vice-roi à Boulaq. 1864-1876. + Mariette, NoticeMariette, Auguste, Notice des principaux monuments exposés dans les galeries provisoires du Musée d’Antiquités Égyptiennes de S. A. le Vice-roi à Boulaq. 1864-1876. + Mariette, Notice 4Mariette, Auguste, Notice des principaux monuments exposés dans les galeries provisoires du Musée d’Antiquités Égyptiennes de S. A. le Khédive à Boulaq. 4e éd. 1872. Martin, AmarnaMartin, Geoffrey Thorndike, The rock tombs of el-'Amarna. ASE 35, 39. 1974, 1989. Martin, GarantsymbolMartin, Karl, Ein Garantsymbol des Lebens. HÄB 3. 1977. Martin, HetepkaMartin, Geoffrey Thorndike, The Tomb of Hetepka and Other Reliefs and Inscriptions from the Sacred Animal Necropolis North Saqqara 1964-1973. 1979. Martin, Hidden TombsMartin, Geoffrey Thorndike, The Hidden Tombs of Memphis. New Discoveries from the Time of Tutankhamun and Ramesses the Great. 1991. - Martin, in: Vleeming, OrthographyMartin, Cary J., Memphite Palaeography: Some Observations on Texts from the Ptolemaic Period. In: Vleeming, Orthography, 2013, 41-62. - Martin, JEA 72, 1986Martin, Cary J., A Demotic land Lease from Philadelphia: P. BM 10560. In: JEA 72, 1986, 159-173. Martin, Memphite NecropolisMartin, Cary J., Demotic Papyri from the Memphite Necropolis (P.dem. Memphis) in the Collections of the National Museum of Antiquities in Leiden, the British Museum and the Hermitage Museum. 2009. Martin, Paser and Ra’iaMartin, Geoffrey Thorndike, The Tomb-Chapels of Paser and Ra’ia at Saqqara. EM 52. 1985. Martin, StelaeMartin, Geoffrey Thorndike, Stelae from Egypt and Nubia in the Fitzwilliam Museum, Cambridge, c. 3000 BC - AD 1150. 2005. Martin, The Memphite Tomb of HoremhebMartin, Geoffrey Thorndike, The Memphite Tomb of Horemheb, Commander-in-chief of Tutankhamun. 1989. Martin, Umm el-Qaab VIIMartin, Geoffrey Thorndike, Umm el-Qaab VII, Private Stelae of the Early Dynastic Period from the Royal Cemetery at Abydos. AV 123. 2011. - Martin/Smith/Davies, in: Fs AllamMartin, Cary J., Smith, Harry S., Davies, Sue, Two Demotic letters from the sacred animal necropolis, north Saqqara. In: Fs Allam, 2011, 273-291. - Martinez, Memnonia 20, 2009Martinez, Philippe, Une commande royale pour le Ramesseum: une stèle inédite de Ramsès II au Gebel es-Silsileh. In: Memnonia 20, 2009, 133-172. Marucchi, Museo Egizio VaticanoMarucchi, Orazio, Il Museo Egizio Vaticano / descritto ed illustrato da Orazio Marucchi. 1899. - Maspero, BIE 2,7, 1886Maspero, Gaston, Rapport à l'Institut Égyptien sur les fouilles et travaux exécutés en Égypte pendant l'hiver de 1885-1886. In: BIE 2,7, 1886, 196-271. - Maspero, BIE 4,1, 1900Maspero, Gaston, Sur une découverte récente de M. Legrain au temple de Phtah. In: BIE 4,1, 1900, 77-83. Maspero, Contes populairesMaspero, Gaston, Les contes populaires de l’Égypte ancienne. 1906. - Maspero, CRAIBL 44, 1900Maspero, Gaston, La consécration du nouveau temple de Phtah thébain par Thoutmosis III. In: CRAIBL 44, 1900, 112-123. - Maspero, Enseignements d'AmenemhaîtMaspero, Gaston, Les enseignements d'Amenemhaît Ier à son fils Sanouasrît Ier. BdE 6. 1914. + Maspero, Enseignements d’AmenemhaîtMaspero, Gaston, Les enseignements d’Amenemhaît Ier à son fils Sanouasrît Ier. BdE 6. 1914. Maspero, Ét. égypt.Maspero, Gaston, Études égyptiennes, 2 vols. 1886-1890. Maspero, Et. Myth. Maspero, Gaston, Etudes de mythologie et d´archéologie égyptiennes. BE 1, 2, 7, 8, 27-29, 40. 1893-1916. - Maspero, Et. Myth. 1Maspero, Gaston, Études de mythologie et d'archéologie égyptiennes, Bd. 1. BE 1. 1893. - Maspero, Et. Myth. 2Maspero, Gaston, Études de mythologie et d'archéologie égyptiennes, Bd. 2. BE 2. 1893. - Maspero, Et. Myth. 3Maspero, Gaston, Études de mythologie et d'archéologie égyptiennes, Bd. 3. BE 7. 1898. - Maspero, Et. Myth. 4Maspero, Gaston, Études de mythologie et d'archéologie égyptiennes, Bd. 4. BE 8. 1900. - Maspero, Et. Myth. 5Maspero, Gaston, Études de mythologie et d'archéologie égyptiennes, Bd. 5. BE 27. 1911. - Maspero, Et. Myth. 6Maspero, Gaston, Études de mythologie et d'archéologie égyptiennes, Bd. 6. BE 28. 1912. - Maspero, Et. Myth. 7Maspero, Gaston, Études de mythologie et d'archéologie égyptiennes, Bd. 7. BE 29. 1913. - Maspero, Et. Myth. 8Maspero, Gaston, Études de mythologie et d'archéologie égyptiennes, Bd. 8. BE 40. 1916. - Maspero, Genre épistolaireMaspero, Gaston, Du genre épistolaire chez les Égyptiens de l'époque pharaonique. BEHE 12. 1872. + Maspero, Et. Myth. 1Maspero, Gaston, Études de mythologie et d’archéologie égyptiennes, Bd. 1. BE 1. 1893. + Maspero, Et. Myth. 2Maspero, Gaston, Études de mythologie et d’archéologie égyptiennes, Bd. 2. BE 2. 1893. + Maspero, Et. Myth. 3Maspero, Gaston, Études de mythologie et d’archéologie égyptiennes, Bd. 3. BE 7. 1898. + Maspero, Et. Myth. 4Maspero, Gaston, Études de mythologie et d’archéologie égyptiennes, Bd. 4. BE 8. 1900. + Maspero, Et. Myth. 5Maspero, Gaston, Études de mythologie et d’archéologie égyptiennes, Bd. 5. BE 27. 1911. + Maspero, Et. Myth. 6Maspero, Gaston, Études de mythologie et d’archéologie égyptiennes, Bd. 6. BE 28. 1912. + Maspero, Et. Myth. 7Maspero, Gaston, Études de mythologie et d’archéologie égyptiennes, Bd. 7. BE 29. 1913. + Maspero, Et. Myth. 8Maspero, Gaston, Études de mythologie et d’archéologie égyptiennes, Bd. 8. BE 40. 1916. + Maspero, Genre épistolaireMaspero, Gaston, Du genre épistolaire chez les Égyptiens de l’époque pharaonique. BEHE 12. 1872. Maspero, Guide Cairo Museum (4th ed.)Maspero, Gaston, Guide to the Cairo Museum (fourth edition). Translated by James Edward Quibell and Annie Abernethie Quibell. 1908. - Maspero, Histoire ancienneMaspero, Gaston, Histoire ancienne des peuples de l'Orient classique. 1895-1899 (3 Bde.). + Maspero, Histoire ancienneMaspero, Gaston, Histoire ancienne des peuples de l’Orient classique. 1895-1899 (3 Bde.). Maspero, HymneMaspero, Gaston, Hymne au Nil. BdE 5. 1912. - Maspero, in: Carter/Newberry, Thoutmôsis IVMaspero, Gaston, The Life and Monuments of Thoutmôsis IV. In: Carter/Newberry, Thoutmôsis IV, 1904, XIII-XXVII. - Maspero, in: Congr. intern. des orient. IIMaspero, Gaston, Un gouverneur de Thèbes au début de la douzième dynastie (Stèle C 1 du Louvre). In: Congr. intern. des orient. II, 1876, 48-61. - Maspero, JA, 1888Maspero, Gaston, Un manuel de hiérarchie égyptienne. In: JA, 1888, 250ff. Maspero, MémoiresMaspero, Gaston, Les mémoires de Sinouhit. BdE 1. 1908. Maspero, Momies RoyalesMaspero, Gaston, Les momies royales de Déir el-Baharî. MMAF 1.4. 1889. Maspero, Museumsführer KairoMaspero, Gaston, Führer durch das Ägyptische Museum zu Kairo. Deutsche Bearbeitung von Günther Roeder. 1912. - Maspero, RecTrav 1, 1870 (1)Maspero, Gaston, Le papyrus Mallet. In: RecTrav 1, 1870, 47-59. - Maspero, RecTrav 1, 1870 (2)Maspero, Gaston, La grande inscription de Béni-Hassan. In: RecTrav 1, 1870, 160-181. - Maspero, RecTrav 2, 1880Maspero, Gaston, Notes sur quelques points de grammaire et d'histoire. In: RecTrav 2, 1880, 32, 105-120. - Maspero, RecTrav 3, 1882Maspero, Gaston, Rapport à M. Jules Ferry, Ministre de l'Instruction Publique, sur une mission en Italie. In: RecTrav 3, 1882, 103-128. - Maspero, ZÄS 17, 1879Maspero, Gaston, Notes sur quelques points de grammaire et d'histoire. In: ZÄS 17, 1879, 49-63. - Maspero, ZÄS 18, 1881Maspero, Gaston, Notes sur quelques points de grammaire et d'histoire. In: ZÄS 18, 1881, 41-49. - Maspero/ Wiet, Matériaux à la Géographie Maspero, Jean, Wiet, Gaston, Matériaux pour servir à la géographie de l'Égypte. MIFAO 36. 1919. - Massart, in: Fs JunkerMassart, Adhémar, The Egyptian Geneva Papyrus MAH 15274. In: Fs Junker, 1957, 172-185. + Maspero/ Wiet, Matériaux à la Géographie Maspero, Jean, Wiet, Gaston, Matériaux pour servir à la géographie de l’Égypte. MIFAO 36. 1919. Massart, Leiden Magical PapyrusMassart, Adhémar, The Leiden Magical Papyrus I 343 + I 345. OMRO 34 Suppl. 1954. Massiera/Mathieu/Rouffet, Apprivoiser Apprivoiser le sauvage / Taming the wild. Hrsg. von Massiera, Magali, Mathieu, Bernard, Rouffet, Frédéric. CENIM 14. 2015. - Mathieu, BIFAO 104, 2004Mathieu, Bernard, Une formation de noms d'animaux (ABCC) en égyptien ancien. In: BIFAO 104, 2004, 377-388. - Mathieu, BIFAO 105, 2005Mathieu, Bernard, Recherches sur les textes de la pyramide de la reine Ânkhesenpépy II: I. Le registre supérieure de la paroi est de la chambre funéraire (AII/F/E sup). In: BIFAO 105, 2005, 129-138. - Mathieu, BIFAO 108, 2008Mathieu, Bernard, Recherches sur les textes de la pyramide de la reine Ânkhesenpépy II. 2: le registre inférieur de la paroi est de la chambre funéraire (AII/F/E inf). In: BIFAO 108, 2008, 281-291. - Mathieu, BIFAO 93, 1993Mathieu, Bernard, Sur quelques ostraca hiératiques littéraires récemment publiés. In: BIFAO 93, 1993, 335-347. - Mathieu, Egypte 19, 2000Mathieu, Bernard, Le dialogue d'un homme avec son âme. Un débat d'idées dans l'Égypte ancienne. In: Egypte 19, 2000, 17-36. - Mathieu, Egypte 2, 1996Mathieu, Bernard, La complainte de Khâkhéperrê-Séneb. In: Egypte 2, 1996, 13-18. - Mathieu, GM 218, 2008Mathieu, Bernard, Cuisine sans sel. Une interprétation de l'ostracon magique O. DeM 1640. In: GM 218, 2008, 63-70. - Mathieu, in: La magie en ÉgypteMathieu, Bernard, Les formules conjuratoires dans les pyramides à textes: quelques reflextions. In: Koenig, La magie en Égypte, 2002, 185-206. - Mathieu, in: Univers vegétal IMathieu, Bernard, L'univers végétal dans les chants d'amour égyptiens. In: Univers végétal I, 1999, 99-106. - Mathieu, in: Visions d'ÉgypteMathieu, Bernard, L'Enseignement de Ptahhotep. In: Visions d'Égypte, 2011, 62-85. - Mathieu, OLZ 95, 2000Mathieu, Bernard, Hieratische Ostraca. In: OLZ 95, 2000, 245-256. Mathieu, PoésieMathieu, Bernard, La poésie amoureuse de l’Égypte ancienne. Recherches sur un genre littéraire au Nouvel Empire. BdE 115. 1996. - Mathieu, RdE 41, 1990Études de métrique égyptienne II. Contraintes métriques et production textuelle dans l'Hymne à la crue du Nil. In: RdE 41, 1990, 127-141. - Mathieu, RdE 45, 1994Mathieu, Bernard, Études de métrique égyptienne, III. Une innovation métrique dans une "litanie" thébaine du Nouvel Empire. In: RdE 45, 1994, 139-154. Mathieu, Stèle de KoubanMathieu, Bernard, Stèle royale de Ramsès II dite "Stèle de Kouban" Musée Grenoble inv. MG 1937, 1969, 3565. 2015. Mattha, OstracaMattha, Girgis, Demotic ostraka from the collections at Oxford, Paris, Berlin, Vienna and Cairo. 1945. - Matthieu, PSEL 5, 1930Matthieu, M. E., The Ostracon No. 1125 in the Hermitage Museum. In: PSEL 5, 1930, 25-27. - Maystre, BIFAO 40, 1941Maystre, Charles, Le Livre de la Vache du Ciel dans les tombeaux de la Vallée des Rois. In: BIFAO 40, 1941, 53-115. - Maystre, Genava 16, 1938Maystre, Charles, Un exercice d'écolier égyptienne sur un ostracon du Musée d'Art et d'Histoire. In: Genava 16, 1938, 66-71. Maystre, Les grands prêtresMaystre, Charles, Les grands prêtres de Ptah de Memphis. OBO 113. 1992. McDowell, Hier. OstracaMcDowell, Andrea Griet, Hieratic Ostraca in the Hunterian Museum Glasgow (The Colin Campbell Ostraca). 1993. - McDowell, in: Fs JanssenMcDowell, Andrea Griet, Teachers and Students at Deir el-Medina. In: Fs Janssen, 2000, 217-233. McDowell, JurisdictionMcDowell, Andrea Griet, Jurisdiction in the Workmen’s Community of Deir el-Medîna. EgUit 5. 1990. McDowell, Village LifeMcDowell, Andrea Griet, Village Life in Ancient Egypt. Laundry Lists and Love Songs. 1999. - McFarlane, GM 100, 1987McFarlane, Ann, The First Nomarch at Akhmim: The Identification of a Sixth Dynastie Biographical Inscription. In: GM 100, 1987, 63-72. McFarlane, Mastabas at SaqqaraMcFarlane, Ann, Mastabas at Saqqara: Kaiemheset, Kaipunesut, Kaiemsenu, Sehetepu and Others. ACER 20. 2003. McFarlane, Unis Cemetery IMcFarlane, Ann, The Unis Cemetery at Saqqara, Vol. I. The Tomb of Irukaptah. ACER 15. 2000. + MédamoudBisson de La Roque, Fernand, Rapport sur les fouilles de Médamoud 1925-31. FIFAO 3-9. 1926-33. Médamoud 1Bisson de La Roque, Fernand, Rapport sur les fouilles de Médamoud 1925. FIFAO 3. 1926. Médamoud 2Bisson de La Roque, Fernand, Rapport sur le fouilles de Médamoud 1926. FIFAO 4,1. 1927. Médamoud 3Bisson de La Roque, Fernand, Rapport sur les fouilles de Médamoud 1927. FIFAO 5,1. 1928. @@ -3168,7 +2065,6 @@

      Abbreviat Médamoud 5Bisson de La Roque, Fernand, Rapport sur les fouilles de Médamoud 1929. FIFAO 7,1. 1930. Médamoud 6Bisson de La Roque, Fernand, Rapport sur les fouilles de Médamoud 1930. FIFAO 8,1. 1931. Médamoud 7Bisson de La Roque, Fernand, Rapport sur les fouilles de Médamoud 1931-1932. FIFAO 9,3. 1933. - MédamoudBisson de La Roque, Fernand, Rapport sur les fouilles de Médamoud 1925-31. FIFAO 3-9. 1926-33. Medient HabuMedinet Habu, Bd. 1-8. OIP 8, 9, 23, 51, 83, 84, 93, 94. 1930-70. Medinet Habu 1Medinet Habu, Bd. 1, Earlier historical records of Ramses III. OIP 8. 1930. Medinet Habu 2Medinet Habu, Bd. 2, Later Historical Records of Ramses III. OIP 9. 1932. @@ -3180,214 +2076,132 @@

      Abbreviat Medinet Habu 8Medinet Habu, Bd. 8, The Eastern High Gate. OIP 94. 1970. MedWbDeines, Hildegard von, Westendorf, Wolfhart, Wörterbuch der medizinischen Texte. 1961-1962. Meeks, ALMeeks, Dimitri, Année lexicographique, tome 1-3 (1977-1979). 1980-1982. + Meeks, Année lexicographiqueMeeks, Dimitri, Année lexicographique. 1980-1982. Meeks, Année lexicographique 1Meeks, Dimitri, Année lexicographique, Tome I 1977. 1980. Meeks, Année lexicographique 2Meeks, Dimitri, Année lexicographique, Tome II 1978. 1981. Meeks, Année lexicographique 3Meeks, Dimitri, Année lexicographique, Tome III 1979. 1982. - Meeks, Année lexicographiqueMeeks, Dimitri, Année lexicographique. 1980-1982. - Meeks, BIFAO 77, 1977Meeks, Dimitri, Notes de lexicographie (§ 5-8). In: BIFAO 77, 1977, 79-88. - Meeks, BiOr 32, 1975Meeks, Dimitri, Rezension: Wolfgang Helck, Der Text des "Nilhymnus". In: BiOr 32, 1975, 18-25. - Meeks, BiOr 54, 1997Meeks, Dimitri, Les emprunts égyptiens aux langues sémitiques durant le Nouvel Empire et la Troisième Période Intermédiaire. Les aléas du comparatisme. In: BiOr 54, 1997, 32-61. - Meeks, BiOr 56, 1999Meeks, Dimitri, Dictionnaires et lexicographie de l'égyptien ancien. Méthodes et résultats. In: BiOr 56, 1999, 569-594. Meeks, DonationsMeeks, Dimitri, Le Grand Texte des Donations au Temple d’Edfou. BdE 59. 1972. - Meeks, in: Fs AltenmüllerMeeks, Dimitri, À propos du prêt de céréales en période de disette. In: Fs Altenmüller, 2003, 275-280. - Meeks, in: Fs BrovarskiMeeks, Dimitri, De quelques 'insectes' égyptiens: entre lexique et paléographie. In: Fs Brovarski, 2010, 273-304. - Meeks, in: Fs JanssenMeeks, Dimitri, Mots sans suite ou notations rituelles? (O. DeM 1696 et O. Petrie 36). In: Fs Janssen, 2000, 235-249. - Meeks, in: Fs KasserMeeks, Dimitri, Étymologies coptes. Notes et remarques. In: Fs Kasser, 1994, 197-212. - Meeks, in: Fs QuaegebeurMeeks, Dimitri, L'Horus de ṯb(y). In: Fs Quaegebeur, 1998, 1181-1190. - Meeks, in: Gs SauneronMeeks, Dimitri, Une fondation memphite de Taharqa (Stèle du Caire JE 36861). In: Gs Sauneron, 1979, 221-260. - Meeks, MythesMeeks, Dimitri, Mythes et Légendes du Delta d'après le papyrus Brooklyn 47.218.84. MIFAO 125. 2006. - Meeks, RdE 25, 1973Meeks, Dimitri, Le nom du dauphin et le poisson de Mendès. In: RdE 25, 1973, 209-216. + Meeks, MythesMeeks, Dimitri, Mythes et Légendes du Delta d’après le papyrus Brooklyn 47.218.84. MIFAO 125. 2006. Megally, Le papyrus E. 3226 du Louvre, IIIMegally, Mounir, Études sur le papyrus E. 3226 du Louvre. Vol. III. Considérations sur les variations et la transformation des formes des signes hiératiques dans le papyrus E. 3226 du Louvre. 1969. - Meir 1Blackman, Aylward Manley, The Rock Tombs of Meir, Vol. I: The tomb-chapel of Ukh-ḥotp's son Senbi. ASE 22. 1914. - Meir 2Blackman, Aylward Manley, The Rock Tombs of Meir, Part II: The tomb-chapel of Senbi's son Ukh-ḥotp (B, No. 2): with two appendixes on hieroglyphs and other details in B, Nos. 1, 2, 4. ASE 23. 1915. + MeirBlackman, Aylward Manley, The Rock Tombs of Meir I-VI. ASE 22-25, 28-29. 1914-53. + Meir 1Blackman, Aylward Manley, The Rock Tombs of Meir, Vol. I: The tomb-chapel of Ukh-ḥotp’s son Senbi. ASE 22. 1914. + Meir 2Blackman, Aylward Manley, The Rock Tombs of Meir, Part II: The tomb-chapel of Senbi’s son Ukh-ḥotp (B, No. 2): with two appendixes on hieroglyphs and other details in B, Nos. 1, 2, 4. ASE 23. 1915. Meir 3Blackman, Aylward Manley, The Rock Tombs of Meir, Part III: The tomb-chapel of Ukh-ḥotp son of Ukh-ḥotp and Mersi (B, No. 4). ASE 24. 1915. Meir 4Blackman, Aylward Manley, The Rock Tombs of Meir, Part IV: The tomb-chapel of Pepi'onkh the middle son of Sebekḥotpe and Pekhernefert (D, No. 2). ASE 25. 1924. Meir 5Blackman, Aylward Manley, The Rock Tombs of Meir, Part V: The tomb-chapels A, No. 1 (that of Ni-'Ankh-Pepi the Black), A, No. 2 (that of Pepi'onkh with the "good name" of Ḥeny the Black), A, No. 4 (that of Ḥepi the Black), D, No. 1 (that of Pepi), and E, Nos. 1-4 (those of Meniu, Nenki, Pepi'onkh and Tjetu). ASE 28. 1953. Meir 6Blackman, Aylward Manley, The Rock Tombs of Meir, Part VI: The tomb-chapels of Ukhḥotpe son of Iam (A, No. 3), Senbi son of Ukhḥotpe son of Senbi (B, No. 3), and Ukhḥotpe son of Ukhḥotpe and Ḥeny-Ḥery-Ib (C, No. 1). ASE 29. 1953. - MeirBlackman, Aylward Manley, The Rock Tombs of Meir I-VI. ASE 22-25, 28-29. 1914-53. - Mekkawy, in: Colloquium Egyptian DeltaMekkawy, Fawzy, Recent Excavations at Tell-El Fara'in: Tanta University. In: Colloquium Egyptian Delta, 1989, 193-215. Mél. DussaudMélanges syriens offerts a Monsieur René Dussaud par ses amis et élèves. BAH. 1939. Mél. égyptologiquesChabas, François-Joseph, Mélanges égyptologiques, 4 Vols. 1862-1873. Mél. Mar.Mélanges Mariette. Hrsg. von Sainte Fare Garnot, Jean. BdE 32. 1961. + Mél. Masp.Mélanges Maspero. MIFAO 66-67. 1935-1938, 1950. Mél. Masp. IMélanges Maspero I. Orient ancien. MIFAO 66. 1934-1961 (4 Bde.). Mél. Masp. IIMélanges Maspero II. Orient grec, romain et byzantin. MIFAO 67. 1934-1937 (2 Bde.). - Mél. Masp.Mélanges Maspero. MIFAO 66-67. 1935-1938, 1950. Memphis IPetrie, William M. Flinders, Memphis I. BSAE 15. 1909. Memphis IIPetrie, William M. Flinders, The Palace of Apries (Memphis II). BSAE 17. 1909. Memphis IVPetrie, William M. Flinders, Roman Portraits and Memphis IV. BSAE 20. 1911. Mendel, MonatsgöttinnenMendel, Daniela, Die Monatsgöttinnen in Tempeln und im privaten Kult. RitesEg 11. 2005. Menschenbilder und KörperkonzepteMenschenbilder und Körperkonzepte im Alten Israel, in Ägypten und im Alten Orient. Hrsg. von Berlejung, Angelika, Dietrich, Jan, Quack, Joachim Friedrich. 2012. - Menu, BIFAO 77, 1977Menu, Bernadette, La "stèle" d'Ahmès Nefertary dans son contexte historique et juridique. In: BIFAO 77, 1977, 89-100. - Menu, RdE 23, 1971Menu, Bernadette, Quelques remarques à propos de l'étude comparée de la stèle juridique de Karnak et de la "stèle" d'Ahmès-Néfertari. In: RdE 23, 1971, 155-163. + Mercer, Pyr.Mercer, Samuel A. B., The Pyramid Texts in Translation and Commentary. 1952. Mercer, Pyr. 1Mercer, Samuel A. B., The Pyramid Texts in Translation and Commentary, Bd. 1. 1952. Mercer, Pyr. 2Mercer, Samuel A. B., The Pyramid Texts in Translation and Commentary, Commentary on utterance 1, line 1a, to utterance 486, line 1045a-c. 1952. Mercer, Pyr. 3Mercer, Samuel A. B., The Pyramid Texts in Translation and Commentary, Commentary on utterance 487, line 1046a to utterance 714, line 2217a-b. 1952. Mercer, Pyr. 4Mercer, Samuel A. B., The Pyramid Texts in Translation and Commentary, Excursuses. 1952. - Mercer, Pyr.Mercer, Samuel A. B., The Pyramid Texts in Translation and Commentary. 1952. - Meulenaere, CdE 33/66, 1958De Meulenaere, Herman, Trois vizirs. In: CdE 33/66, 1958, 194-201. Meurer, Die Feinde des Königs Meurer, Georg, Die Feinde des Königs in den Pyramidentexten. OBO 189. 2002. - Meurer, in: Fs Endesfelder, Priese, Reineke, WenigMeurer, Georg, Das Motiv der "Verwüstung ausländischen Territoriums" in Texten des Alten, Mittleren und Neuen Reiches. In: Fs Endesfelder, Priese, Reineke, Wenig, 2001, 325-348. Meurer, NubierMeurer, Georg, Nubier in Ägypten bis zum Ende des Neuen Reiches. Zur Bedeutung der Stele Berlin 14753. ADAIK 13. 1996. Meydum and Memphis IIIPetrie, William M. Flinders, Meydum and Memphis III. BSAE 18. 1909. - Meyer, GM 64, 1983Meyer, Marvin W., Archaeological Survey of the Wadi Sheikh Ali. In: GM 64, 1983, 77-82. Meyer, PapyrusfundMeyer, Eduard, Der Papyrusfund von Elephantine. 1912. - Meyer, SAK 17, 1990Meyer, Gudrun, Das Hirtenlied in den Privatgräbern des Alten Reiches. In: SAK 17, 1990, 235-284. - Meyer, SPAW 38, 1913Meyer, Eduard, Photos, numeriert nach Eduard Meyer, Bericht über eine Expedition nach Ägypten zur Erforschung der Darstellung der Fremdvölker. In: SPAW 38, 1913, 769-801. Meyer-Dietrich, NechetMeyer-Dietrich, Erika, Nechet und Nil. Ein ägyptischer Frauensarg des Mittleren Reiches aus religionsökologischer Sicht. AUU 18. 2001. - Meyerhof, DZfCh 231, 1931Meyerhof, Max, Über den "Papyrus Edwin Smith", das älteste Chirurgiebuch der Welt. In: DZfCh 231, 1931, 645-690. Meyrat, Papyrus magiques du RamesseumMeyrat, Pierre, Les Papyrus Magiques du Ramesseum. Recherches sur une bibliotheque privée de la fin du Moyen Empire. BdE 172. 2019. - Miatello, GM 256, 2018Miatello, Luca, Inferring the construction process of two geometric algorithms. In: GM 256, 2018, 125-141. Michalowski, PyramidenMichalowski, Kazimierz, Pyramiden und Mastabas. 1973. Midant-Reynes/Tristant, Egypt at its origins 2Egypt at its origins 2: proceedings of the international conference "Origin of the State. Predynastic and Early Dynastic Egypt", Toulouse (France), 5th-8th September 2005. Hrsg. von Midant-Reynes, Béatrix, Tristant, Yann. OLA 172. 2008. Middle Kingdom StudiesQuirke, Stephen, Middle Kingdom Studies. 1991. Migahid, Briefe an GötterMigahid, Abd-el-Gawad, Demotische Briefe an Götter von der Spät- bis zur Römerzeit. 1987. Miosi, Reading BookMiosi, Frank T., A Reading Book of Second Intermediate Period Texts. SSEA Publications 9. 1981. - Mirgissa IMirgissa I. Hrsg. von Vercoutter, Jean. 1970. MirgissaMirgissa. Hrsg. von Vercoutter, Jean. 1970-1976. + Mirgissa IMirgissa I. Hrsg. von Vercoutter, Jean. 1970. + Misc. Academica BerolinensiaMiscellanea Academica Berolinensia: gesammelte Abhandlungen zur Feier des 250jährigen Bestehens der Deutschen Akademie der Wissenschaften zu Berlin. 1950. Misc. Academica Berolinensia I. Miscellanea Academica Berolinensia: gesammelte Abhandlungen zur Feier des 250jährigen Bestehens der Deutschen Akademie der Wissenschaften zu Berlin. Teil I. 1950. Misc. Academica Berolinensia II/1Miscellanea Academica Berolinensia: gesammelte Abhandlungen zur Feier des 250jährigen Bestehens der Deutschen Akademie der Wissenschaften zu Berlin, Teil: II/1. 1950. Misc. Academica Berolinensia II/2Miscellanea Academica Berolinensia: gesammelte Abhandlungen zur Feier des 250jährigen Bestehens der Deutschen Akademie der Wissenschaften zu Berlin. Teil II/2. 1950. - Misc. Academica BerolinensiaMiscellanea Academica Berolinensia: gesammelte Abhandlungen zur Feier des 250jährigen Bestehens der Deutschen Akademie der Wissenschaften zu Berlin. 1950. Misc. GregorianaMiscellanea Gregoriana: raccolta di scritti pubblicati nel I centenario dalla fondazione del Pont. Museo Egizio (1839-1939). MVAA 6. 1941. Moers, Fingierte WeltenMoers, Gerald, Fingierte Welten in der ägyptischen Literatur des 2. Jahrtausends v. Chr. Grenzüberschreitung, Reisemotiv und Fiktionalität. PÄ 19. 2001. - Moers, in: Fs Westendorf IIMoers, Gerald, Zur Relevanz der Namensliste des pChester Beatty IV für Versuche einer funktionalen Binnendifferenzierung des gemeinhin als "literarisch" bezeichneten Gattungssystems des Mittleren Reiches. In: Fs Westendorf II, 2008, 45-52. - Moers, in: TUAT 3,5 (1)Moers, Gerald, Die Reiseerzählung des Wenamun. In: TUAT 3,5, 1995, 912-921. - Moers, in: TUAT 3,5 (2)Moers, Gerald, Der Brief des Wermai, der Moskauer Literarische Brief. In: TUAT 3,5, 1995, 922-929. - Moers, in: TUAT Erg.Moers, Gerald, Der Papyrus Lansing: Das Lob des Schreiberberufes in einer ägyptischen "Schülerhandschrift" aus dem ausgehenden Neuen Reich. In: TUAT Erg., 2001, 109-142. - Moers, LingAeg 10, 2002Moers, Gerald, The Interplay of Reenactment and Memory in the Complaints of Khakheperreseneb. In: LingAeg 10, 2002, 293-308. - Moers, LingAeg 3, 1993Moers, Gerald, Freie Varianten oder funktional gebundene Morpheme? Zu den Graphien der altägyptischen Negation n. In: LingAeg 3, 1993, 33-58. Mogensen, GlyptothèqueMogensen, Maria, La Glyptothèque Ny Carlsberg. La collection égyptienne, 2 Bde. 1930. Moje, DandaraMoje, Jan, Demotische Epigraphik aus Dandara. Die demotischen Grabstelen. IBAES 9. 2008. Mokhtar, Ihnâsya el-MedinaMokhtar, Gamal Eddin, Ihnâsya el-Medina (Herakleopolis Magna). Its Importance and Its Role in Pharaonic History. BdE 40. 1983. Möller, EheverträgeMöller, Georg, Zwei ägyptische Eheverträge aus vorsaïtischer Zeit. 1918. + Möller, Hier. LesestückeMöller, Georg, Hieratische Lesestücke für den akademischen Gebrauch. 1909-10. Möller, Hier. Lesestücke 1Möller, Georg, Hieratische Lesestücke für den akademischen Gebrauch, Heft 1, Alt- und mittelhieratische Texte. 1909. Möller, Hier. Lesestücke 2Möller, Georg, Hieratische Lesestücke für den akademischen Gebrauch, Heft 2, Literarische Texte des Neuen Reiches. 1910. Möller, Hier. Lesestücke 3Möller, Georg, Hieratische Lesestücke für den akademischen Gebrauch, Heft 3, Musterbriefe und geschäftliche Texte des Neuen Reiches. Anhänge: Späthieratisches; Steininschrift. 1910. - Möller, Hier. LesestückeMöller, Georg, Hieratische Lesestücke für den akademischen Gebrauch. 1909-10. - Möller, in: Explorations at ThebesMöller, Georg, Hieratic Texts from Tomb No. 37. In: Explorations at Thebes, 1912, 89-93. + Möller, PaläographieMöller, Georg, Hieratische Paläographie. Die ägyptische Buchschrift in ihrer Entwicklung von der fünften Dynastie bis zur römischen Kaiserzeit. 1909-1912. Möller, Paläographie 1Möller, Georg, Hieratische Paläographie. Bd. 1. Bis zum Beginn der achtzehnten Dynastie. 1909. + Möller, Paläographie 2Möller, Georg, Hieratische Paläographie. Die ägyptische Buchschrift in ihrer Entwicklung von der 5. Dynastie bis zur römischen Kaiserzeit. Von der Zeit Thutmosis’ III. bis zum Ende der einundzwanzigsten Dynastie. 1927. Möller, Paläographie 2. Aufl.Möller, Georg, Hieratische Paläographie. Die ägyptische Buchschrift in ihrer Entwicklung von der 5. Dynastie bis zur römischen Kaiserzeit. 1927-36 (2. verb. Auflage). - Möller, Paläographie 2Möller, Georg, Hieratische Paläographie. Die ägyptische Buchschrift in ihrer Entwicklung von der 5. Dynastie bis zur römischen Kaiserzeit. Von der Zeit Thutmosis' III. bis zum Ende der einundzwanzigsten Dynastie. 1927. Möller, Paläographie 3Möller, Georg, Hieratische Paläographie. Bd. 3. Von der zweiundzwanzigsten Dynastie bis zum dritten Jahrhundert nach Chr. 1912. - Möller, PaläographieMöller, Georg, Hieratische Paläographie. Die ägyptische Buchschrift in ihrer Entwicklung von der fünften Dynastie bis zur römischen Kaiserzeit. 1909-1912. + Möller, Totenp. RhindMöller, Georg, Die beiden Totenpapyrus Rhind des Museums zu Edinburg. Dem.Stud. 6. 1913. Möller, Totenp. Rhind 1Möller, Georg, Die beiden Totenpapyrus Rhind des Museums zu Edinburg. [Bd. 1. Text]. Dem.Stud. 6. 1913. Möller, Totenp. Rhind 2Möller, Georg, Die beiden Totenpapyrus Rhind des Museums zu Edinburg. [Bd. 2.] Tafeln. Dem.Stud. 6. 1913. - Möller, Totenp. RhindMöller, Georg, Die beiden Totenpapyrus Rhind des Museums zu Edinburg. Dem.Stud. 6. 1913. - Möller, ZÄS 56, 1920Möller, Georg, Zur Datierung literarischer Handschriften aus der ersten Hälfte des Neuen Reichs. In: ZÄS 56, 1920, 34-43. Mond/Myers, TemplesMond, Robert Ludwig, Myers, Oliver Humphreys, Temples of Armant. A Preliminary Survey. MEES 43. 1940 (2 Bde.). Monnet, Antiquités égyptiennes de ZagrebMonnet Saleh, Janine, Les antiquités égyptiennes de Zagreb: catalogue raisonné des antiquités égyptiennes conservées au Musée Archéologique de Zagreb en Yougoslavie. 1970. Monnier, VocabulaireMonnier, Franck, Vocabulaire d’architecture égyptienne. 2013. - Monson, JEA 92, 2006Monson, Andrew, Priests of Soknebtunis and Sokonopis: P.BM EA 10647. In: JEA 92, 2006, 205-216. - Montet, Byblos et l'Égypte 1Montet, Pierre, Byblos et l'Égypte, quatre campagnes de fouilles à Gebeil 1921, 1922, 1923, 1924, Bd. 1, Texte. 1928. - Montet, Byblos et l'Égypte 2Montet, Pierre, Byblos et l'Égypte, quatre campagnes de fouilles à Gebeil 1921, 1922, 1923, 1924, Bd. 2, Atlas. 1929. - Montet, Byblos et l'ÉgypteMontet, Pierre, Byblos et l'Égypte, quatre campagnes de fouilles à Gebeil 1921, 1922, 1923, 1924. 1928-29. - Montet, CRAIBL 100, 1956Montet, Pierre, La stèle du roi Kamose. In: CRAIBL 100, 1956, 112-120. - Montet, Géographie 1Montet, Pierre, Géographie de l'Égypte ancienne, première partie: To-mehou. La Basse Égypte. 1957. - Montet, Géographie 2Montet, Pierre, Géographie de l'Égypte ancienne, deuxième partie: tA Sma To-chemâ. La Haute Égypte. 1961. + Montet, Byblos et l’ÉgypteMontet, Pierre, Byblos et l’Égypte, quatre campagnes de fouilles à Gebeil 1921, 1922, 1923, 1924. 1928-29. + Montet, Byblos et l’Égypte 1Montet, Pierre, Byblos et l’Égypte, quatre campagnes de fouilles à Gebeil 1921, 1922, 1923, 1924, Bd. 1, Texte. 1928. + Montet, Byblos et l’Égypte 2Montet, Pierre, Byblos et l’Égypte, quatre campagnes de fouilles à Gebeil 1921, 1922, 1923, 1924, Bd. 2, Atlas. 1929. Montet, GéographieMontet, Pierre, Géographie de l´Égypte ancienne. 1957 u. 1961. - Montet, Kemi 1, 1928 (1)Montet, Pierre, Notes et documents pour servir à l'histoire des relations entre l'ancienne Égypte et la Syrie. In: Kêmi 1, 1928, 19-28, 83-93. - Montet, Kêmi 1, 1928 (2)Montet, Pierre, Les tombeaux de Siout et de Deir Rifeh. In: Kêmi 1, 1928, 53-68. - Montet, Kêmi 3, 1930-1935 (1)Montet, Pierre, Les tombeaux de Siout et de Deir Rifeh. In: Kêmi 3, 1930-1935, 45-111. - Montet, Kêmi 3, 1930-1935 (2)Montet, Pierre, Les dernières lignes de la grande inscription de Beni Hassan. In: Kêmi 3, 1930-1935, 112-132. - Montet, Kemi 4, 1933Montet, Pierre, La stèle de l'an 400 retrouvée. In: Kêmi 4, 1933, 191-215. - Montet, MonPiot 50, 1958Montet, Pierre, Un chef-d'oeuvre de l'art gréco-romain. La statue de Panemerit. In: MonPiot 50, 1958, 1-10. - Montet, RAr 48, 1956Montet, Pierre, Nouvelles études sur les Helou-nebout. In: RAr 48, 1956, 1-11. - Montet, ScènesMontet, Pierre, Les scènes de la vie privée dans les tombeaux égyptiens de l'ancien empire. 1925. - Montet, Syria 17, 1936Montet, Pierre, À propos de la statuette de Sanousrit-Ankh. In: Syria 17, 1936, 202-203. - Montet, Tanis 1Montet, Pierre, La nécropole royale de Tanis, Les constructions et le tombeau d'Osorkon II à Tanis. 1947. + Montet, Géographie 1Montet, Pierre, Géographie de l’Égypte ancienne, première partie: To-mehou. La Basse Égypte. 1957. + Montet, Géographie 2Montet, Pierre, Géographie de l’Égypte ancienne, deuxième partie: tA Sma To-chemâ. La Haute Égypte. 1961. + Montet, ScènesMontet, Pierre, Les scènes de la vie privée dans les tombeaux égyptiens de l’ancien empire. 1925. + Montet, TanisMontet, Pierre, La nécropole royale de Tanis. 1947-1960. + Montet, Tanis 1Montet, Pierre, La nécropole royale de Tanis, Les constructions et le tombeau d’Osorkon II à Tanis. 1947. Montet, Tanis 2Montet, Pierre, Les constructions et le tombeau de Psousennès à Tanis. 1951. Montet, Tanis 3Montet, Pierre, La nécropole royale de Tanis, Les constructions et le tombeau de Chéchanq III à Tanis. 1960. - Montet, TanisMontet, Pierre, La nécropole royale de Tanis. 1947-1960. Montet, Vie quotidienneMontet, Pierre, La vie quotidienne en Égypte au temps des Ramsès (XIIIe - XIIe siècles avant J.-C.). 1946. Moorey, Ancient EgyptMoorey, Peter Roger Stuart, Ancient Egypt. 1988 (2. rev. Ed). Moran, Amarna LettersMoran, William L., The Amarna Letters. 1992. - Moreno García, AdministrationMoreno García, Juan Carlos, Études sur l'administration, le pouvoir et l'idéologie en Égypte, de l'Ancien au Moyen Empire. AegLeod 4. 1997. + Moreno García, AdministrationMoreno García, Juan Carlos, Études sur l’administration, le pouvoir et l’idéologie en Égypte, de l’Ancien au Moyen Empire. AegLeod 4. 1997. Morenz, Ägypten und die Geburt der AlphabetschriftMorenz, Ludwig D., Ägypten und die Geburt der Alphabetschrift. AIDA 3. 2016. - Morenz, ÄL 15, 2005Morenz, Ludwig D., Em-habs Feldzugsbericht. Bild-textliche Inszenierung von "großer Geschichte" im Spiegel der Elite. In: ÄL 15, 2005, 169-180. Morenz, BegegnungMorenz, Siegfried, Die Begegnung Europas mit Ägypten. 1969. - Morenz, Biblische Notizen 114/115, 2002Morenz, Ludwig D., (Unrechtmäßiges) Erwerben von Schlachtopferfleisch(?). Eine Metapher für Hungersnot aus der Zeit der Regionen (Erste Zwischenzeit). In: Biblische Notizen 114/115, 2002, 47-52. - Morenz, DE 43, 1999Morenz, Ludwig D., Einem Dichter der Ramessidenzeit über die Schulter geschaut. Ein en passant skizziertes Epigramm(?). In: DE 43, 1999, 19-26. - Morenz, GM 257, 2019Morenz, Ludwig D., Von Lese-Kunst und Pilgerschaft. Überlegungen zur Stele Liège I/630. In: GM 257, 2019, 109-118. - Morenz, in: 5. TempeltagungMorenz, Ludwig D., Die Götter und ihr Redetext: die ältest-belegte Sakral-Monumentalisierung von Textlichkeit auf Fragmenten der Zeit des Djoser aus Heliopolis. In: 5. Tempeltagung, 2002, 137-158. - Morenz, in: Fs SchubartMorenz, Ludwig D., Ägypten und die altorphische Kosmogonie. In: Fs Schubart, 1950, 64-111. - Morenz, Or 72, 2003Morenz, Ludwig D., Frühe Schrift und hohe Kultur im Alten Ägypten: Aspekte von Ideologie auf Beischriften der Nar-mer-Palette. In: Or 72, 2003, 183-193. Morenz, RegionenMorenz, Ludwig D., Die Zeit der Regionen im Spiegel der Gebelein-Region. Kulturgeschichtliche Re-Konstruktionen. PÄ 27. 2010. Morenz, ReligionMorenz, Siegfried, Ägyptische Religion. 1960. - Morenz, SAK 25, 1998Morenz, Ludwig D., Besondere Zeichen aus der späten XI. Dynastie. Zu den Inschriften des Antef, Sohn der Myt. In: SAK 25, 1998, 237-249. Morenz, SchriftlichkeitskulturMorenz, Ludwig D., Beiträge zur Schriftlichkeitskultur im Mittleren Reich und in der 2. Zwischenzeit. ÄUAT 29. 1996. Morenz, Visuelle PoesieMorenz, Ludwig D., Sinn und Spiel der Zeichen. Visuelle Poesie im Alten Ägypten. Pictura et poesis 21. 2008. - Morenz, WdO 28, 1997Morenz, Ludwig D., Ein hathorisches Kultlied und ein königlicher Archetyp des Alten Reiches - Sinue B 270f. und eine Stele der späten XI. Dynastie (Louvre C 15). In: WdO 28, 1997, 7-17. - Morenz, WdO 29, 1998Morenz, Ludwig D., Die schmähende Herausforderung des Thebaners ḎꜢry an H̱ty. In: WdO 29, 1998, 5-20. - Morenz, ZÄS 130, 2003Morenz, Ludwig D., Die thebanischen Potentaten und ihr Gott. Zur Konzeption des Gottes Amun und der (Vor-)Geschichte des Sakralzentrums Karnak in der XI. Dynastie. In: ZÄS 130, 2003, 110-119. Moret, Caractère religieuxMoret, Alexandre, Du caractère religieux de la royauté pharaonique. AMG 15. 1902. - Moret, CRAIBL 77, 1933Moret, Alexandre, La stèle de Napata: nouveau récit des campagnes de Thoutmès III contre les Mitanniens. In: CRAIBL 77, 1933, 326-339. - Morris, ImperialismMorris, Ellen Fowles, The Architecture of Imperialism. Military Bases and the Evolution of Foreign Policy in Egypt's New Kingdom. PÄ 22. 2005. - Morschauser, in: Fs GoedickeMorschauser, Scott, The Opening Lines of KꜢ-gm.n.ỉ (P. Prisse I, 1-3a). In: Fs Goedicke, 1994, 177-185. - Morschauser, in: Goedicke, KadeshMorschauser, Scott, Observations on the speeches of Ramesses II in the literary record of the battle of Kadesh. In: Goedicke, Kadesh, 1985, 123-206. - Mosher, JARCE 29, 1992Mosher, Malcolm Jr., Theban and Memphite Book of the Dead traditions in the Late Period. In: JARCE 29, 1992, 143-172. - Moss, in: Fs GriffithMoss, Rosalind L. B., Two Middle-Kingdom Stelae in the Louvre. In: Fs Griffith, 1932, 310-311. + Morris, ImperialismMorris, Ellen Fowles, The Architecture of Imperialism. Military Bases and the Evolution of Foreign Policy in Egypt’s New Kingdom. PÄ 22. 2005. Mourad, HyksosMourad, Anna-Latifa, Rise of the Hyksos. Egypt and the Levant from the Middle Kingdom to the Early Second Intermediate Period. ArEg 11. 2015. Moursi, HohenpriesterMoursi, Mohamed I., Die Hohenpriester des Sonnengottes von der Frühzeit Ägyptens bis zum Ende des Neuen Reiches. MÄS 26. 1972. Moussa/Altenmüller, NianchchnumMoussa, Ahmed M., Altenmüller, Hartwig, Das Grab des Nianchchnum und Chnumhotep. AV 21. 1977. Mrsich, Fragen zum altägyptischen RechtMrsich, Tycho Q., Fragen zum altägyptischen Recht der Isolationsperiode vor dem Neuen Reich. Ein Forschungsbericht aus dem Arbeitskreis Historiogenese von Rechtsnormen. 2005. - Mudry, MEDITERR J OTOL 3, 2006Mudry, Albert, Otology in Medical Papyri in Ancient Egypt. In: MEDITERR J OTOL 3, 2006, 133-142. - Muhammed, ASAE 59, 1966 (1)Muhammed, M. Abdul-Qader, Recent Finds. In: ASAE 59, 1966, 143-155. - Muhammed, ASAE 59, 1966 (2)Muhammed, M. Abdul-Qader, Two Theban Tombs. Kyky and Bak-en-Amun. In: ASAE 59, 1966, 157-184. - Muhammed, ASAE 60, 1968Muhammed, M. Abdul-Qader, Prelimiary Report on the excavations carried out in the temple of Luxor: seasons 1958-1959 & 1959-1960. In: ASAE 60, 1968, 227-279. - Muhs, in: Fs ThissenMuhs, Brian P., Two Demotic Letters from the Archive of Herianoupis, from the Curzon Collection now in the British Museum. In: Fs Thissen, 2010, 397-404. + Muhs, O. Taxes 2Muhs, Brian P., Receipts, Scribes, and Collectors in Early Ptolemaic Thebes (O. Taxes 2). 2011. (new) Muhs, Tax ReceiptsMuhs, Brian P., Tax Receipts, Taxpayers, and Taxes in Early Ptolemaic Thebes. OIP 126. 2005. Müller, Äg. SammlungMüller, Hans Wolfgang, Die Ägyptische Sammlung des Bayerischen Staates. Ausstellung in den Ausstellungsräumen der Staatlichen Graphischen Sammlung München, Meiserstraße 10, Erdgeschoß vom 21. Juli bis 5. Oktober 1966. 1966. Müller, ÄthiopienMüller, Wilhelm Max, Äthiopien. AO 6. 1904. - Müller, Enchoria 28, 2003Müller, Matthias, Ein neuer Textzeuge zum Schluß des Rituals des Sokarauges. In: Enchoria 28, 2003, 82-84. Müller, ErkundigungsfahrtenMüller, Hans Wolfgang, Bericht über im März/April 1966 in das östliche Nildelta unternommene Erkundigungsfahrten. SBAW 1966/8. 1966. Müller, FelsengräberMüller, Hans Wolfgang, Die Felsengräber der Fürsten von Elephantine aus der Zeit des Mittleren Reiches. ÄF 9. 1940. - Müller, FuB 22, 1982Müller, Wolfgang, Die Papyrusgrabung auf Elephantine 1906-1908. Das Grabungstagebuch der 3. Kampagne. In: FuB 22, 1982, 7-50. - Müller, FuB 24, 1984Müller, Ingeborg, Eine Stele des Mittleren Reiches von Elephantine. In: FuB 24, 1984, 30-33. - Müller, GM 150, 1996Müller, Matthias, Randnotizen zu einigen Illahun-Papyri. In: GM 150, 1996, 13-32. - Müller, GM 191, 2002Müller, Michael S., Legale Sekundärbestattungen des späten Alten Reiches auf der Qubbet el-Hawa. In: GM 191, 2002, 67-70. - Müller, GM 192, 2003Müller, Michael S., Legale Sekundärbestattungen des späten Alten Reiches auf der Qubbet el-Hawa (Neuabdruck). In: GM 192, 2003, 55-59. - Müller, GM 216, 2008Müller, Matthias, Fragmente einer Beschwörung aus dem Mittleren Reich. In: GM 216, 2008, 51-54. - Müller, IA 1, 2005Müller, Maya, Die Königsplastik des Mittleren Reiches und ihre Schöpfer: Reden über Statuen - Wenn Statuen reden. In: IA 1, 2005, 27-78. - Müller, in: Fs JungeMüller, Matthias, Magie in der Schule? Die magischen Sprüche der Schülerhandschrift pBM EA 10.085 + 10.105. In: Fs Junge, 2006, 449-465. - Müller, in: Fs KitchenMüller, Matthias, Wandbild, Text- und Artefaktbefund: Ein Terminus der Sargherstellung. In: Fs Kitchen, 2011, 329-338. - Müller, in: TUAT NF 4Müller, Matthias, Levantinische Beschwörungen in ägyptischer Übersetzung. In: TUAT NF 4, 2008, 257-293. Müller, IsiskultMüller, Hans Wolfgang, Der Isiskult im antiken Benevent und Katalog der Skulpturen aus den ägyptischen Heiligtümern im Museo del Sannio zu Benevent. MÄS 16. 1969. - Müller, JEA 58, 1972Müller, Dieter, A Middle Egyptian word for 'measure'. In: JEA 58, 1972, 301-302. Müller, LiebespoesieMüller, Wilhelm Max, Die Liebespoesie der alten Ägypter. 1899. - Müller, LingAeg 10, 2002Müller, Matthias, Rezension: Christian Leitz, Magical and Medical Papyri of the New Kingdom. In: LingAeg 10, 2002, 425-435. - Müller, LingAeg 11, 2003Müller, Matthias, Rezension: Robert J. Demarée, Ramesside Ostraca. In: LingAeg 11, 2003, 249-254. - Müller, LingAeg 7, 2000Müller, Matthias, Review: Koenig, Yvan 1997. Les ostraca hiératiques inédits de la Bibliothèque nationale et universitaire de Strasbourg. In: Koenig, Ostraca hiératique de BNU Strasbourg, 2000, 271-288. - Müller, MDAIK 4, 1933Müller, Hans Wolfgang, Die Totendenksteine des Mittleren Reiches. Ihre Genesis, ihre Darstellungen und ihre Komposition. In: MDAIK 4, 1933, 165-206. - Müller, OLZ 97, 2002Besprechung: J. E. Hoch, Semitic Words in the Egyptian Texts of the New Kingdom and the Third Intermediate Period. In: OLZ 97, 2002, 29-42. - Müller, ZÄS 84, 1959Müller, Dieter, Zu Urk. IV 1541, 1-7. In: ZÄS 84, 1959, 158-160. + Müller-Karpe, HdVMüller-Karpe, Hermann, Handbuch der Vorgeschichte. 4 Bde. 1966-1980. Müller-Karpe, HdV 1Müller-Karpe, Hermann, Handbuch der Vorgeschichte, Bd. 1, Altsteinzeit. 1966. Müller-Karpe, HdV 2Müller-Karpe, Hermann, Handbuch der Vorgeschichte, Bd. 2, Jungsteinzeit. 1968. Müller-Karpe, HdV 3Müller-Karpe, Hermann, Handbuch der Vorgeschichte, Bd. 3, Kupferzeit. 1974. Müller-Karpe, HdV 4Müller-Karpe, Hermann, Handbuch der Vorgeschichte, Bd. 4, Bronzezeit. 1980. - Müller-Karpe, HdVMüller-Karpe, Hermann, Handbuch der Vorgeschichte. 4 Bde. 1966-1980. Müller-Roth, Das Buch vom TageMüller-Roth, Marcus, Das Buch vom Tage. OBO 236. 2008. - Müller-Wollermann, VA 3, 1987Müller-Wollermann, Renate, sw.tjw-Bauern als Kolonisatoren. In: VA 3, 1987, 263-267. Multi-Cultural SocietyLife in a Multi-Cultural Society: Egypt from Cambyses to Constantine and beyond. Hrsg. von Johnson, Janet H. SAOC 51. 1992. Munier, Scala copte 44 de ParisMunier, Henri, La Scala copte 44 de la Bibliothèque nationale de Paris. Transcription et vocabulaire. Tome 1. Transcription. 1930. - Munro, Bak-suMunro, Irmtraut, Das Totenbuch des Bak-su (pKM 1970.37/pBrocklehurst) aus der Zeit Amenophis' II. HAT 2. 1995. - Munro, MDAIK 37, 1981Munro, Peter, Frühform oder Deckname des Jati (Aton) in Heliopolis? In: MDAIK 37, 1981, 359-367. + Munro, Bak-suMunro, Irmtraut, Das Totenbuch des Bak-su (pKM 1970.37/pBrocklehurst) aus der Zeit Amenophis’ II. HAT 2. 1995. Munro, Nacht-AmunMunro, Irmtraut, Das Totenbuch des Nacht-Amun aus der Ramessidenzeit (pBerlin P. 3002). HAT 4. 1997. Munro, Pa-en-nesti-taui Munro, Irmtraut, Das Totenbuch des Pa-en-nesti-taui aus der Regierungszeit des Amenemope (pLondon BM 10064). HAT 7. 2001. Munro, Pa-nedjem II.Munro, Irmtraut, Der Totenbuch-Papyrus des Hohenpriesters Pa-nedjem II. (pLondon BM 10793 / pCampbell). HAT 3. 1996. Munro, Tb-HandschriftenMunro, Irmtraut, Totenbuch-Handschriften der 18. Dynastie im Museum Cairo. ÄA 54. 1994. + Munro, TotenbuchhandschriftenMunro, Irmtraut, Die Totenbuchhandschriften der 18. Dynastie im Ägyptischen Museum Cairo. ÄA 54. 1994. Munro, Totenbuchhandschriften IMunro, Irmtraut, Die Totenbuchhandschriften der 18. Dynastie im Ägyptischen Museum Cairo, Bd. 1, Textband. ÄA 54. 1994. Munro, Totenbuchhandschriften IIMunro, Irmtraut, Die Totenbuchhandschriften der 18. Dynastie im Ägyptischen Museum Cairo, Bd. 2, Tafelband. ÄA 54. 1994. - Munro, TotenbuchhandschriftenMunro, Irmtraut, Die Totenbuchhandschriften der 18. Dynastie im Ägyptischen Museum Cairo. ÄA 54. 1994. Munro, Totenbuch-PapyriMunro, Irmtraut, Untersuchungen zu den Totenbuch-Papyri der 18. Dynastie: Kriterien ihrer Datierung. 1987. Munro, Unas-Friedhof NW IMunro, Peter, Der Unas-Friedhof Nord-West, I. Topographisch-historische Einleitung, Das Doppelgrab der Königinnen Nebet und Khenut. 1993. - Munro, ZÄS 85, 1960Munro, Peter, Die beiden Stelen des Wnmj aus Abydos. In: ZÄS 85, 1960, 56-70. Munro/Vittmann, Pa-sheri-KhonsuMunro, Irmtraut, Vittmann, Günter, The Abridged Book of the Dead Scroll of Pa-sheri-Khonsu. 2019. Münster, Isis Münster, Maria, Untersuchungen zur Göttin Isis vom Alten Reich bis zum Ende des Neuen Reiches. MÄS 11. 1968. Murnane, Amarna PeriodMurnane, William J., Texts from the Amarna Period in Egypt. 1995. Murnane, CoregenciesMurnane, William J., Ancient Egyptian Coregencies. SAOC 40. 1977. - Murnane, JNES 37, 1978Murnane, William J., Rezension: Labib Habachi, The Second Stela of Kamose and His Struggle against the Hyksos Ruler and His Capital. In: JNES 37, 1978, 277-278. Murnane/Van Siclen, Boundary StelaeMurnane, William J., Van Siclen, Charles C., The Boundary Stelae of Akhenaten. 1993. - Murray, AEE 1934Murray, Margaret A., Queen Tety-shery. In: AEE, 1934, 65-69. Murray, Names and TitlesMurray, Margaret A., Index of Names and Titles of the Old Kingdom. 1908. Murray, OsireionMurray, Margaret A., The Osireion at Abydos. BSAE 9. 1903. Murray, Saqqara MastabasMurray, Margaret A., Saqqara Mastabas I, 1904. ERA 10. 1905. @@ -3395,57 +2209,40 @@

      Abbreviat Museum Kairo, Kat.Die Schatzkammer Ägyptens. Die berühmte Sammlung des Ägyptischen Museums in Kairo. Hrsg. von Tiradritti, Francesco. 2000. Museum LuxorMuseum für Altägyptische Kunst in Luxor. Führer durch die Ausstellung. Hrsg.: Organisation für Ägyptische Altertümer. 1978. Mutter u. KindErman, Adolf, Zaubersprüche für Mutter und Kind. 1901. - Myśliwiec, Atum IMyśliwiec, Karol, Studien zum Gott Atum. Bd 1. Die heiligen Tiere des Atum. HÄB 5. 1978. Myśliwiec, AtumMyśliwiec, Karol, Studien zum Gott Atum. 1978-1979. + Myśliwiec, Atum IMyśliwiec, Karol, Studien zum Gott Atum. Bd 1. Die heiligen Tiere des Atum. HÄB 5. 1978. Myśliwiec, Portrait RoyalMyśliwiec, Karol, Le portrait royal dans le bas-relief du Nouvel Empire. TCAM 18. 1976. - Naissance de l'écritureNaissance de l'écriture. Cunéiformes et hiéroglyphes. Galeries nationales du Grand Palais, 7 mai - 9 août 1982 (Ausstellungskat.). Hrsg. von Ziegler, Christiane. 1982. + Naissance de l’écritureNaissance de l’écriture. Cunéiformes et hiéroglyphes. Galeries nationales du Grand Palais, 7 mai - 9 août 1982 (Ausstellungskat.). Hrsg. von Ziegler, Christiane. 1982. Naqada and BallasPetrie, William M. Flinders, Quibell, James Edward, Naqada and Ballas. ERA 1. 1896. + NaukratisPetrie, William M. Flinders, Gardner, Ernest A., Naukratis I-II. EEF 3 u. 6. 1886 u. 1888. Naukratis 1Petrie, William M. Flinders, Naukratis I. EEF 3. 1886. Naukratis 2Gardner, Ernest A., Naukratis II. EEF 6. 1888. - NaukratisPetrie, William M. Flinders, Gardner, Ernest A., Naukratis I-II. EEF 3 u. 6. 1886 u. 1888. Nauri-DekretHistorische Inschriften der 19. Dyn., I: Das Dekret Sethos´ I. von Nauri. BAe 4. 1933. - Navailles/Neveu, GM 103, 1988Neveu, François, Navailles, R., Une ténébreuse affaire: P. Bankes I. In: GM 103, 1988, 51-60. Naville, BubastisNaville, Édouard, Bubastis (1887-89). EEF 8. 1891. Naville, Festival-HallNaville, Édouard, The Festival-Hall of Osorkon II in the Great Temple of Bubastis (1887-1889). EEF 10. 1892. Naville, Saft el HennehNaville, Édouard, The Shrine of Saft el Henneh and the Land of Goshen (1885). EEF 5. 1887. Negm, Simut (TT 409)Negm, Maged, The Tomb of Simut called Kyky: Theban Tomb 409 at Qurnah. 1997. - Nelson, JNES 8, 1949Nelson, Harold Hayden, Certain Reliefs at Karnak and Medinet Habu and the Ritual of Amenophis I. In: JNES 8, 1949, 201-229, 310-345. + Neugebauer/Parker, Astron. TextsNeugebauer, Otto, Parker, Richard A., Egyptian Astronomical Texts, I-III. BES 3, 5, 6. 1960, 1964, 1969. Neugebauer/Parker, Astron. Texts 1Neugebauer, Otto, Parker, Richard A., Egyptian Astronomical Texts I: The Early Decans. BES 3. 1960. Neugebauer/Parker, Astron. Texts 2Neugebauer, Otto, Parker, Richard A., Egyptian Astronomical Texts II: The Ramesside Star Clocks. BES 5. 1964. + Neugebauer/Parker, Astron. Texts 3Neugebauer, Otto, Parker, Richard A., Egyptian Astronomical Texts III: Decans, Planets, Constellations and Zodiacs. BES 6. 1969. Neugebauer/Parker, Astron. Texts 3.1Neugebauer, Otto, Parker, Richard A., Egyptian Astronomical Texts III: Decans, Planets, Constellations and Zodiacs: Text. BES 6. 1969. Neugebauer/Parker, Astron. Texts 3.2Neugebauer, Otto, Parker, Richard A., Egyptian Astronomical Texts III: Decans, Planets, Constellations and Zodiacs: Tafeln. BES 6. 1969. - Neugebauer/Parker, Astron. Texts 3Neugebauer, Otto, Parker, Richard A., Egyptian Astronomical Texts III: Decans, Planets, Constellations and Zodiacs. BES 6. 1969. - Neugebauer/Parker, Astron. TextsNeugebauer, Otto, Parker, Richard A., Egyptian Astronomical Texts, I-III. BES 3, 5, 6. 1960, 1964, 1969. - Neveu, RdE 41, 1990Neveu, François, À propos du P. DM 28: un conseil royal consacré aux affaires de "la tombe". In: RdE 41, 1990, 143-152. - Neveu, SEAP 11, 1992Neveu, François, La particule néo-égyptienne yꜢ. In: SEAP 11, 1992, 13-30. New Kingdom to the Coptic Period StelaeLeprohon, Ronald J., Boston Museum of Fine Arts. Fascicle 3. Stelae 2: The New Kingdom to the Coptic Period. CAA. 1991. - Newberry, AAA 2, 1909Newberry, Percy Edward, A bird cult of the Old Kingdom. In: AAA 2, 1909, 49-51. - Newberry, AAA 4, 1912Newberry, Percy Edward, The inscribed tombs of Ekhmîm. In: AAA 4, 1912, 99-120. - Newberry, PSBA 35, 1913Newberry, Percy Edward, Notes on the Carnarvon Tablet No. I. In: PSBA 35, 1913, 117-122. Newberry, RekhmaraNewberry, Percy Edward, The Life of Rekhmara, Vezîr of Upper Egypt under Thothmes III and Amenhetep II (circa B. C. 1471-1448). 1900. Newberry, ScarabsNewberry, Percy Edward, Egyptian Antiquities: Scarabs. An introduction to Egyptian Seals and Signet Rings. 1906. - Nibbi, JEA 62, 1976Nibbi, Alessandra, Remarks on the Two Stelae from the Wadi Gasus. In: JEA 62, 1976, 45-56. - Niccacci, in: Fs CouroyerNiccacci, Alviero, La Stèle d'Israël: grammaire et stratégie de communication. In: Fs Couroyer, 1997, 43-107. - Nims, JEA 24, 1938Nims, Charles Francis, Notes on University of Michigan demotic papyri from Philadelphia. In: JEA 24, 1938, 73-82. - Nims, MDAIK 14, 1956Nims, Charles Francis, A stele of Penre, builder of the Ramesseum. In: MDAIK 14, 1956, 146-149. Niwinski, Funerary PapyriNiwinski, Andrzej, Studies on the Illustrated Theban Funerary Papyri of the 11th and 10th Centuries B.C. OBO 86. 1989. Nofret (Ausstellungskat.)Nofret - Die Schöne. Die Frau im Alten Ägypten. 'Wahrheit' and Wirklichkeit. Roemer- and Pelizaeus-Museum Hildesheim, 15. Juli 1985 - 4. November 1985. 1985. + Nolan, Mud SealingsNolan, John S., Mud Sealings and Fourth Dynasty Administration at Giza. 2010. https://oi.uchicago.edu/sites/oi.uchicago.edu/files/uploads/shared/docs/nolan_dissertation_2010.pdf (new) Nubia in New KingdomNubia in the New Kingdom. Lived Experience, Pharaonic Control and Indigenous Traditions. Hrsg. von Spencer, Neal, Stevens, Anna, Binder, Michaela. BMPES 3. 2017. Nubien und Sudan (Ausstellungskat.)Nubien und Sudan im Altertum. Führer durch die Sonderausstellung des Berliner Ägyptischen Museums. 1963. Nunn, MedicineNunn, John F., Ancient Egyptian Medicine. 1996. Nur el-Din, O. LeidenNur el-Din, Mohamed Abd el-Halim Ahmed, The Demotic Ostraca in the National Museum of Antiquities at Leiden. 1974. Nyord, Breathing FleshNyord, Rune, Breathing Flesh. Conceptions of the Body in the Ancient Egyptian Coffin Texts. CNI Publications 37. 2009. - Nyord, ZÄS 137, 2010Nyord, Rune, The Radial Structure of Some Middle Egyptian Prepositions. In: ZÄS 137, 2010, 27-44. ObjevováníObjevování země na Nilu. Hrsg. von Onderka, Pavel, Maříková Vlčková, Petra, Mynářová, Jana. 2008. - Obsomer, CampagnesObsomer, Claude, Les campagnes de Sésostris dans Hérodote. Essai d'interprétation du texte grec à la lumière des réalités égyptiennes. CEA 1. 1989. - Obsomer, GM 130, 1992Obsomer, Claude, Les lignes 8 à 24 de la stèle de Mentouhotep (Florence 2540) érigée à Bouhen en l'an 18 de Sésostris Ier. In: GM 130, 1992, 57-74. - Obsomer, in: Fs ThéodoridèsObsomer, Claude, dỉ.f prt-ḫrw et la filiation ms(t).n/ỉr(t).n, comme critères de datation dans les textes du Moyen Empire. In: Fs Théodoridès, 1993, 163-200. - Obsomer, in: Pharaons NoirsObsomer, Claude, L'empire nubien des Sésostris. Ouaouat et Kouch sous la XIIe dynastie. In: Pharaons Noirs, 2007, 53-75. - Obsomer, RdE 44, 1993Obsomer, Claude, La date de Nésou-Montou (Louvre C1). In: RdE 44, 1993, 103-140. + Obsomer, CampagnesObsomer, Claude, Les campagnes de Sésostris dans Hérodote. Essai d’interprétation du texte grec à la lumière des réalités égyptiennes. CEA 1. 1989. Obsomer, Sésostris IerObsomer, Claude, Sésostris Ier. Étude chronologique et historique du règne. CEA 5. 1995. Ockinga, GottebenbildlichkeitOckinga, Boyo, Die Gottebenbildlichkeit im alten Ägypten und im Alten Testament. ÄUAT 7. 1984. - Ockinga/Fischer-Elfert, ZÄS 147, 2020Ockinga, Boyo, Fischer-Elfert, Hans-Werner, An amuletic papyrus from Theban Tomb 233 and the four Akh-spirits. In: ZÄS 147, 2020, 34-46. - O'Connor, in: Amenhotep IIIO'Connor, David B., The City and the World: Worldview and Built Forms in the Reign of Amenhotep III. In: Amenhotep III, 1998, 125-172. oDem 1001-1108Posener, Georges, Catalogue des ostraca hiératiques littéraires de Deir el Médineh, Nos. 1001-1108. DFIFAO 1. 1938. oDeM 1001-1266Posener, Georges, Catalogue des ostraca hiératiques littéraires de Deir el Médineh, Nos. 1001-1266. DFIFAO 1, 18. 1938-1972. oDem 1109-1167Posener, Georges, Catalogue des ostraca hiératiques littéraires de Deir el Médineh, Nos. 1109-1167. DFIFAO 18. 1951. @@ -3458,16 +2255,14 @@

      Abbreviat oDem 1607-1675Posener, Georges, Catalogue des ostraca hiératiques littéraires de Deir el Médineh, Nos. 1607-1675. DFIFAO 20. 1980. oDeM 1676-1774Gasse, Annie, Catalogue des ostraca hiératiques littéraires de Deir-el-Médina, Nos. 1676-1774. Tome IV - Fasc. 1. DFIFAO 25. 1990. oDeM 1775-1873, 1156Gasse, Annie, Catalogue des ostraca littéraires de Deir al-Medîna, Nos. 1775-1873 et 1156. Tome V. DFIFAO 44. 2005. - oDem 2001-2255Vandier d'Abbadie, Jeanne, Catalogue des ostraca figurés de Deir el Médineh, Nos. 2001-2255. DFIFAO 2.1. 1936. - oDeM 2001-3053Vandier d'Abbadie, Jeanne, Catalogue des ostraca figurés de Deir el Médineh. DFIFAO 2.1-2.4. 1935-59. - oDem 2256-2722Vandier d'Abbadie, Jeanne, Catalogue des ostraca figurés de Deir el Médineh, Nos. 2256-2722. DFIFAO 2.2. 1937. - oDem 2734-3053Vandier d'Abbadie, Jeanne, Catalogue des ostraca figurés de Deir el Médineh, Nos. 2734-3053. DFIFAO 2.4. 1959. + oDem 2001-2255Vandier d’Abbadie, Jeanne, Catalogue des ostraca figurés de Deir el Médineh, Nos. 2001-2255. DFIFAO 2.1. 1936. + oDeM 2001-3053Vandier d’Abbadie, Jeanne, Catalogue des ostraca figurés de Deir el Médineh. DFIFAO 2.1-2.4. 1935-59. + oDem 2256-2722Vandier d’Abbadie, Jeanne, Catalogue des ostraca figurés de Deir el Médineh, Nos. 2256-2722. DFIFAO 2.2. 1937. + oDem 2734-3053Vandier d’Abbadie, Jeanne, Catalogue des ostraca figurés de Deir el Médineh, Nos. 2734-3053. DFIFAO 2.4. 1959. oDeM 550-623Sauneron, Serge, Catalogue des ostraca hiératiques non littéraires de Deir el-Médineh, Nos. 550-623. DFIFAO 13. 1959. oDeM 624-705Černý, Jaroslav, Catalogue des ostraca hiératiques non littéraires de Deir el-Médinéh, Nos. 624-705. DFIFAO 14. 1970. - oDem Étude généraleVandier d'Abbadie, Jeanne, Catalogue des ostraca figurés de Deir el Médineh, Étude générale. DFIFAO 2.3. 1946. - Ogdon, GM 164, 1998Ogdon, Jorge R., Studies in Ancient Egyptian Magical Writing, 2. Apropos of the Word ꜣt. In: GM 164, 1998, 79-83. + oDem Étude généraleVandier d’Abbadie, Jeanne, Catalogue des ostraca figurés de Deir el Médineh, Étude générale. DFIFAO 2.3. 1946. Omaggio BottiOmaggio a Giuseppe Botti. 1984. - Omar, in: Fs GraefeOmar, Magdi, Zwei napatanische Schreibungen für sbj "Feinde"? In: Fs Graefe, 2003, 215-219. OMGOckinga, Boyo, Mittelägyptische Grammatik. 1998. oMichaelidisGoedicke, Hans, Wente, Edward F., Ostraka Michaelides. 1962. Omlin, Amenemhet I.Omlin, Joseph, Amenemhet I. und Sesostris I. Die Begründer der XII. Dynastie. 1962. @@ -3475,55 +2270,33 @@

      Abbreviat Orcurti, Museo di TorinoOrcurti, Pier-Camillo, Catalogo illustrato dei monumenti egizii del R. Museo di Torino. 1852-1855 (2 Bde.). O'Rourke, ProtectionO'Rourke, Paul F., A Royal Book of Protection of the Saite Period, pBrooklyn 47.218.49. YES 9. 2015. Osing, AspectsOsing, Jürgen, Aspects de la culture pharaonique. Quatre leçons au Collège de France (février-mars 1989). MAIBL 12. 1992. - Osing, BiOr 37, 1980Osing, Jürgen, Besprechung: William A. Ward, The Four Egyptian Homographic Roots B-3. Etymological and Egypto-Semitic Studies. In: BiOr 37, 1980, 139-140. - Osing, BiOr 58, 2001Osing, Jürgen, Besprechung: Gábor Takács, Etymological Dictionary of Egyptian. Volume I: A Phonological Introduction. In: BiOr 58, 2001, 565-581. - Osing, BiOr 60, 2003Osing, Jürgen, Besprechung: Gábor Takács, Etymological Dictionary of Egyptian. Volume II: b-, p-, f-. In: BiOr 60, 2003, 551-569. Osing, DachlaFakhry, Ahmed, Osing, Jürgen, Denkmäler der Oase Dachla. Aus dem Nachlaß von Ahmed Fakhry. AV 28. 1982. - Osing, in: Fs BrunnerOsing, Jürgen, Die Worte von Heliopolis. In: Fs Brunner, 1983, 347-361. - Osing, in: Fs DreyerOsing, Jürgen, Zum Namen des Gaues von Oxyrhynchus. In: Fs Dreyer, 2008, 517-524. - Osing, in: Fs IversenOsing, Jürgen, Zu zwei literarischen Werken des Mittleren Reiches. In: Fs Iversen, 1992, 101-119. - Osing, in: Fs KaiserOsing, Jürgen, Die Worte von Heliopolis (II). In: Fs Kaiser, 1991, 269-280. - Osing, in: Fs KákosyOsing, Jürgen, Zu einigen magischen Texten. In: Fs Kákosy, 1992, 473-480. - Osing, in: Fs Leclant IOsing, Jürgen, Zu Spruch 534 der Pyramidentexte. In: Fs Leclant I, 1994, 279-284. - Osing, in: Fs QuaegebeurOsing, Jürgen, Beiträge zu den Oasen. In: Fs Quaegebeur, 1998, 1443-1448. - Osing, in: Gs BehrensOsing, Jürgen, Etymologische Notizen. In: Gs Behrens, 1991, 245-248. - Osing, JEA 64, 1978Osing, Jürgen, Rezension: Jaroslav Černý, Coptic Etymological Dictionary. In: JEA 64, 1978, 186-189. - Osing, JEA 69, 1983Osing, Jürgen, Rezension: Ricardo A. Caminos, A Tale of Woe. From a Hieratic Papyrus in the A. S. Pushkin Museum of Fine Arts in Moscow. In: JEA 69, 1983, 175-178. - Osing, MDAIK 32, 1976Osing, Jürgen, Ächtungstexte aus dem Alten Reich (II). In: MDAIK 32, 1976, 133-185. - Osing, MDAIK 33, 1977Osing, Jürgen, Vier Ostraka aus Giza. In: MDAIK 33, 1977, 109-111. - Osing, MDAIK 42, 1986Osing, Jürgen, Zur Disposition der Pyramidentexte des Unas. In: MDAIK 42, 1986, 131-144. - Osing, MDAIK 43, 1987Osing, Jürgen, Sprüche gegen die jbḥꜣtj-Schlange. In: MDAIK 43, 1987, 205-211. Osing, NefersecheruOsing, Jürgen, Das Grab des Nefersecheru in Zawyet Sultan. AV 88. 1992. Osing, NominalbildungOsing, Jürgen, Die Nominalbildung des Ägyptischen. 1976. - Osing, OLZ 74, 1979Osing, Jürgen, Besprechung: Thomas G. H. James, Corpus of Hieroglyphic Inscriptions in the Brooklyn Museum. In: OLZ 74, 1979, 12-13. - Osing, Or 46, 1977Osing, Jürgen, Zur Syntax der Biographie des wnj. In: Or 46, 1977, 165-182. Osing, Pap. OxOsing, Jürgen, Der spätägyptische Papyrus BM 10808. ÄA 33. 1976. Osing, TebtunisOsing, Jürgen, Hieratische Papyri aus Tebtunis I. CNI Publications 17. 1998. Osing/Rosati, PapiriPapiri geroglifici e ieratici da Tebtynis. Hrsg. von Osing, Jürgen, Rosati, Gloria. 1998. Osman/Edwards, Nubian FrontierOsman, Ali, Edwards, David N., The Archaeology of a Nubian Frontier. Survey on the Nile Third Cataract, Sudan. 2011. - Ostrand, KMT 13, 2002Ostrand, Kenneth D., Egypt in Greece: Egyptian artifacts in the National Archaeological Museum of Athens. In: KMT 13 (1), 2002, 55-61. Oswalt, ConceptOswalt, John N., The Concept of Amon-Re as Reflected in the Hymns and Prayers of the Ramesside Period. 1968. Otto, Biogr. Inschr. Otto, Eberhard, Die biographischen Inschriften der ägyptischen Spätzeit. PÄ 2. 1954. Otto, Gott und MenschOtto, Eberhard, Gott und Mensch nach den ägyptischen Tempelinschriften der griechisch-römischen Zeit. Eine Untersuchung zur Phraseologie der Tempelinschriften. 1964. - Otto, in: Gs OttoOtto, Eberhard, Zur Komposition von Coffin Texts Spell 1130. In: Gs Otto, 1977, 1-18. Otto, MundöffnungsritualOtto, Eberhard, Das ägyptische Mundöffnungsritual. ÄA 3. 1960. Otto, StierkulteOtto, Eberhard, Beiträge zur Geschichte der Stierkulte in Ägypten. UGAÄ 13. 1938. Otto, TopographieOtto, Eberhard, Topographie des thebanischen Gaues. UGAÄ 16. 1952. + Ouadi es-SebouâGauthier, Henri, Le temple de Ouadi es-Sebouâ. Temples Immergés. 1912. Ouadi es-Sebouâ 1Gauthier, Henri, Le temple de Ouadi es-Sebouâ, Texte. Temples Immergés. 1912. Ouadi es-Sebouâ 2Gauthier, Henri, Le temple de Ouadi es-Sebouâ, Planches. Temples Immergés. 1912. - Ouadi es-SebouâGauthier, Henri, Le temple de Ouadi es-Sebouâ. Temples Immergés. 1912. P. Dem. Saq.Smith, Harry S., Tait, William John, Saqqâra Demotic Papyri I (P. Dem. Saq. I). EES 7. 1983. P. L. Bat. 19Textes grecs, démotiques et bilingues. Hrsg. von Boswinkel, E., Pestman, Pieter W. P.L.Bat. 19. 1978. P. L. Bat. 23Textes et études de papyrologie grecque, démotique et copte. Hrsg. von Pestman, Pieter W. P.L.Bat. 23. 1985. P. Tebt. TaitTait, William John, Papyri from Tebtunis in Egyptian and in Greek (P. Tebt. Tait). EES 3. 1977. Paget/ Pirie, Ptah-hetepPaget, Rosalind F. E., Pirie, Annie A., Griffith, Francis Llewellyn, The Tomb of Ptah-hetep. ERA 2. 1898. ΠαγκαρπειαΠαγκαρπεια, Mélanges Henri Grégoire. AIP 12. 1953. - Palanque, NilPalanque, Charles, Le Nil à l'époque pharaonique. Son rôle et son culte en Égypte. BEHE 144. 1903. + Palais de Darius à SuseLe Palais de Darius à Suse. Une résidence royale sur la route de Persépolis à Babylone. Hrsg. von Perrot, Jean. 2010. (new) + Palanque, NilPalanque, Charles, Le Nil à l’époque pharaonique. Son rôle et son culte en Égypte. BEHE 144. 1903. pAmherstNewberry, Percy Edward, The Amherst Papyri. Being an Account of the Egyptian Papyri in the Collection of the Right Hon. Lord Amherst of Hackney, F. S. A., at Didlington Hall, Norfolk. 1899. pAnast. IGardiner, Alan H., Egyptian Hieratic Texts I. 1911, Nachdr. 1964. pAniRenouf, Peter Le Page, Facsimile of the Papyrus of Ani in the British Museum, The Book of the Dead. 1890. - Panov, LingAeg 18, 2010Panov, Maxim, Die Stele der Taimhotep. In: LingAeg 18, 2010, 169-191. - Pantalacci, BIFAO 98, 1998Pantalacci, Laure, La documentation épistolaire du palais des gouverneurs à Balat-'Ayn Asīl. In: BIFAO 98, 1998, 303-315. Papyrus Ebers und die antike HeilkundePapyrus Ebers und die antike Heilkunde. Akten der Tagung vom 15.-16.3.2002 in der Albertina/UB der Universität Leipzig. Hrsg. von Fischer-Elfert, Hans-Werner. Philippika 7. 2005. Papyrus Erzherzog RainerPapyrus Erzherzog Rainer. Führer durch die Ausstellung. Hrsg. von Karabacek, Joseph von. 1892. Parker, CalendarsParker, Richard A., The Calendars of Ancient Egypt. SAOC 26. 1950. @@ -3531,43 +2304,32 @@

      Abbreviat Parker, Saite Oracle PapyrusParker, Richard A., A Saite Oracle Papyrus from Thebes in the Brooklyn Museum (Papyrus Brooklyn 47.218.3). 1962. Parker/Leclant/Goyon, Edifice of TaharqaParker, Richard A., Leclant, Jean, Goyon, Jean-Claude, The Edifice of Taharqa. 1979. Parkinson, Eloquent PeasantParkinson, R. B., The Tale of the Eloquent Peasant. 1991. - Parkinson, in: Fs JamesParkinson, R. B., Two or three Literary Artefacts. British Museum EA 41650/47896, and 22878-9. In: Fs James, 1999, 49-57. - Parkinson, in: Fs SimpsonParkinson, R. B., Khakheperreseneb and Traditional Belles Lettres. In: Fs Simpson, 1996, 647-654. - Parkinson, in: Gs PosenerParkinson, R. B., Two New "Literary" Texts on a Second Intermediate Period Papyrus? A Preliminary Account of P. BM EA 10475. In: Gs Posener, 1999, 177-196. - Parkinson, JEA 83, 1997Parkinson, R. B., The Text of Khakheperreseneb. New Readings of EA 5645, and an Unpublished Ostracon. In: JEA 83, 1997, 55-68. - Parkinson, JEA 90, 2004Parkinson, R. B., The Discourse of the Fowler: Papyrus Butler verso (P. BM EA 10274). In: JEA 90, 2004, 81-111. - Parkinson, Poetry and CultureParkinson, R. B., Poetry and Culture in Middle Kingdom Egypt. A Dark Side to Perfection. 2002. Parkinson, PoetryParkinson, R. B., Reading Ancient Egyptian Poetry. Among other Histories. 2009. + Parkinson, Poetry and CultureParkinson, R. B., Poetry and Culture in Middle Kingdom Egypt. A Dark Side to Perfection. 2002. Parkinson, Rosetta StoneParkinson, R. B., Cracking Codes. The Rosetta Stone and Decipherment. 1999. Parkinson, TaleThe Tale of Sinuhe and other Ancient Egyptian Poems, 1940-1640 BC. 1997. Parkinson, VoicesParkinson, R. B., Voices from Ancient Egypt. An anthology of Middle Kingdom Writings. 1991. - Parkinson, ZÄS 130, 2003Parkinson, R. B., The Missing Beginning of "The Dialogue of a Man and His Ba": P.Amherst III and the History of the "Berlin Library". In: ZÄS 130, 2003, 120-133. Parkinson/Baylis, Literary PapyriParkinson, R. B., Baylis, Lisa, Four 12th Dynasty Literary Papyri (Pap. Berlin P. 3022-5): A Photographic Record. 2012. - Parkinson/Demarée, JEA 93, 2007Parkinson, R. B., Demarée, Robert Johannes, The Text of Khakheperreseneb: An Addendum. In: JEA 93, 2007, 270. Parlasca, MumienportraitsParlasca, Klaus, Mumienportraits und verwandte Denkmäler. 1966. Pasek, HawaraPasek, Steve, Demotische und griechische Urkunden aus Hawara in Übersetzung. 2012. Pasek, SiedlungPasek, Steve, Eine ägyptische Siedlung in hellenistischer Zeit. 2007. Passalacqua, Catalogue raisonnéPassalacqua, Joseph, Catalogue raisonné et historique des antiquités découvertes en Égypte. 1826. - Patanè, BSEG 11, 1987Patanè, Massimo, À propos du chant du harpiste d'Antef. In: BSEG 11, 1987, 99-109. - Patanè, BSEG 6, 1982Patanè, Massimo, La structure poétique de la stèle C 30 du musée du Louvre. In: BSEG 6, 1982, 77-82. Patch, ReflectionsPatch, Diana C., Reflections of Greatness. Ancient Egypt at the Carnegie Museum of Natural History. 1990. Pätznick, Die Siegelabrollungen und Rollsiegel der Stadt ElephantinePätznick, Jean-Pierre, Die Siegelabrollungen und Rollsiegel der Stadt Elephantine im 3. Jahrtausend v.Chr. Spurensicherung eines archäologischen Artefakts. BAR-IS 1339. 2005. - Pätznick, in: Tomorad/Popielska-Grzybowska, Egypt 2015Pätznick, Jean-Pierre, Meret-Neith: in the footsteps of the first woman pharaoh in history. In: Tomorad/Popielska-Grzybowska, Egypt 2015, 2017, 289-306. - Payraudeau, RdE 54, 2003Payraudeau, Frédéric, La désignation du gouverneur de Thèbes aux époques libyenne et éthiopienne. In: RdE 54, 2003, 131-153. + pBerlinHieratische Papyrus aus den Königl. Museen zu Berlin, Bd. 1-5. 1901-11. pBerlin 1Hieratische Papyrus aus den Königlichen Museen zu Berlin, I: Rituale für den Kultus des Amon und für den Kultus der Mut. 1901. pBerlin 2Hieratische Papyrus aus den königlichen Museen zu Berlin, II: Hymnen an verschiedene Götter. Zusatzkapitel zum Totenbuch. 1905. pBerlin 3Hieratische Papyrus aus den königlichen Museen zu Berlin, III: Schriftstücke der VI. Dynastie aus Elephantine. Zaubersprüche für Mutter und Kind. Ostraka. 1911. pBerlin 3038Wreszinski, Walter, Die Medizin der alten Ägypter, Bd 1: Der große medizinische Papyrus des Berliner Museums. 1909. pBerlin 4Vogelsang, Friedrich, Gardiner, Alan H., Hieratische Papyrus aus den königlichen Museen zu Berlin, IV: Literarische Texte des Mittleren Reiches, I: Die Klagen des Bauern. 1908. pBerlin 5Gardiner, Alan H., Hieratische Papyrus aus den königlichen Museen zu Berlin, V: Literarische Texte des Mittleren Reiches, II: Die Erzählung des Sinuhe und Hirtengeschichte. 1909. - pBerlinHieratische Papyrus aus den Königl. Museen zu Berlin, Bd. 1-5. 1901-11. pBM 10490Budge, Ernest Alfred Th. Wallis, The Book of the Dead: facsimiles of the papyri of Hunefer, Ȧnhai, Ḳerāsher and Netchemet, with supplementary text from the papyrus of Nu. 1899. pBM 9995Budge, Ernest Alfred Th. Wallis, The Book of Breathing. 1901 . pBologna 1094Lincke, Arthur, Correspondenzen aus der Zeit des Ramessiden. Zwei hieratische Papyri des Museo Civico zu Bologna. 1878. + pBoulaqMariette, Auguste, Les papyrus Egyptiens du Musée de Boulaq. 1871-1876. pBoulaq Bd. I. Pap. nos 1-9Les papyrus égyptiens du Musée de Boulaq. Bd. I. Papyrus nos 1-9. Hrsg. von Mariette, Auguste. 1871. pBoulaq Bd. II. Pap. nos 10-20Les papyrus égyptiens du Musée de Boulaq. Bd. II. Papyrus nos 10-20. Hrsg. von Mariette, Auguste. 1872. pBoulaq Bd. III. Pap. nos 21-22Les papyrus égyptiens du Musée de Boulaq. Bd. III. Papyrus nos 21 & 22. Hrsg. von Mariette, Auguste. 1876. - pBoulaqMariette, Auguste, Les papyrus Egyptiens du Musée de Boulaq. 1871-1876. pBremner-RhindFaulkner, Raymond O., The Papyrus Bremner-Rhind (BM No. 10188). BAe 3. 1933. pBrooklyn 351446Hayes, William C., A Papyrus of the Late Middle Kingsdom in the Brooklyn Museum. 1955. pCarlsberg ILange, Hans Ostenfeldt, Neugebauer, Otto, Papyrus Carlsberg Nr. 1, ein hieratisch-demotischer kosmologischer Text. 1940. @@ -3577,39 +2339,29 @@

      Abbreviat pEbersWreszinski, Walter, Die Medizin der alten Ägypter 3: Der Papyrus Ebers. 1913. Peck/Knudsen, Museum ToledoPeck, William H., Knudsen, Sandra E., Egypt in Toledo. The Ancient Egyptian Collection at the Toledo Museum of Art. Hrsg. von Reich, Paula. 2011. Peden, Ramesses IVPeden, Alexander J., The Reign of Ramesses IV. 1994. + pEdwin SmithBreasted, James Henry, The Edwin Smith Surgical Papyrus, I-II. OIP 3, 4. 1930. pEdwin Smith 1Breasted, James Henry, The Edwin Smith Surgical Papyrus, Bd. 1. OIP 3. 1930. pEdwin Smith 2Breasted, James Henry, The Edwin Smith Surgical Papyrus, Bd. 2. OIP 4. 1930. - pEdwin SmithBreasted, James Henry, The Edwin Smith Surgical Papyrus, I-II. OIP 3, 4. 1930. - Peet, AAA 17, 1930Peet, Thomas Eric, Two letters from Akhetaten. In: AAA 17, 1930, 82-97. - Peet, AAA 7, 1914-1916Peet, Thomas Eric, A Mortuary Contract of the XIth Dynasty. In: AAA 7, 1914-1916, 81-88. - Peet, Comparative StudyPeet, Thomas Eric, A Comparative Study of the Literatures of Egypt, Palestine, and Mesopotamia. Egypt's Contribution to the Literature of the Ancient World. 1931. - Peet, in: CAHPeet, Thomas Eric, Contemporary Life and Thought in Egypt. In: CAH, 1924, 196-226. - Peet, in: Mél. Masp. IPeet, Thomas Eric, The unit of value Saty in Papyrus Bulaq 11. In: Mél. Masp. I, 1934, 185-99. - Peet, JEA 12, 1926Peet, Thomas Eric, Two eighteenth dynasty letters: papyrus Louvre 3230. In: JEA 12, 1926, 70-74. + Peet, Comparative StudyPeet, Thomas Eric, A Comparative Study of the Literatures of Egypt, Palestine, and Mesopotamia. Egypt’s Contribution to the Literature of the Ancient World. 1931. Peet, Stela of Sebek-khuPeet, Thomas Eric, The Stela of Sebek-khu. The Earliest Record of an Egyptian Campaign in Asia. 1914. + Peet, Tomb RobberiesPeet, Thomas Eric, The great Tomb Robberies of the Twentieth Egyptian Dynasty, I-II. 1930. Peet, Tomb Robberies 1Peet, Thomas Eric, The Great Tomb Robberies of the Twentieth Egyptian Dynasty, I. Text. 1930. Peet, Tomb Robberies 2Peet, Thomas Eric, The Great Tomb Robberies of the Twentieth Egyptian Dynasty, II. Plates. 1930. - Peet, Tomb RobberiesPeet, Thomas Eric, The great Tomb Robberies of the Twentieth Egyptian Dynasty, I-II. 1930. - Pellegrini, Bessarione 9, 1900-1901Pellegrini, Astorre, L'obelisco mediceo. Frammento della stele istorica di Wadi Halfa. In: Bessarione 9, 1900-1901, 410-428. - pErmitageGolénischeff, Wladimir, Les papyrus hiératiques Nos. 1115, 1116 A et 1116 B de l'Ermitage Impérial à St.-Pétersbourg. 1913. - Pernigotti, Antiqua 4, 1979Pernigotti, Sergio, Documenti di cultura scolastica nell'antico Egitto. In: Antiqua 4, 1979, 7-18. - Pernigotti, ScuolaPernigotti, Sergio, Scuola e cultura nell'Egitto del Nuovo Regno: le "Miscellanee neo-egiziane". TVOA 6. 2005. + pErmitageGolénischeff, Wladimir, Les papyrus hiératiques Nos. 1115, 1116 A et 1116 B de l’Ermitage Impérial à St.-Pétersbourg. 1913. + Pernigotti, ScuolaPernigotti, Sergio, Scuola e cultura nell’Egitto del Nuovo Regno: le "Miscellanee neo-egiziane". TVOA 6. 2005. Perry, Eloquent PeasantPerry, Evelyn, A Critical Study of The Eloquent Peasant (PhD Dissertation, Johns Hopkins University). 1986. Pestman, AmenothesPestman, Pieter W., L’archivio di Amenothes figlio di Horos. 1981. Pestman, Archive of Theban ChoachytesPestman, Pieter W., The Archive of the Theban Choachytes (Second Century B.C.). A Survey of the Demotic and Greek Papyri Contained in the Archive. StudDem 2. 1993. - Pestman, ChronologiePestman, Pieter W., Chronologie égyptienne d'après les textes démotiques (332 av. J.-C. - 453 ap. J.-C.). P.L.Bat. 15. 1967. - Pestman, in: GleaningsPestman, Pieter W., Who were the owners, in the "community of workmen", of the Chester Beatty Papyri. In: Gleanings, 1982, 155-172. + Pestman, ChronologiePestman, Pieter W., Chronologie égyptienne d’après les textes démotiques (332 av. J.-C. - 453 ap. J.-C.). P.L.Bat. 15. 1967. Pestman, MarriagePestman, Pieter W., Marriage and Matrimonial Property in Ancient Egypt. P.L.Bat. 9. 1961. + Pestman, Processo di HermiasIl processo di Hermias e altri documenti dell’archivio dei choachiti: (P. Tor. Choachiti). Papiri greci e demotici conservati a Torino e in altre collezioni d’Italia. Hrsg. von Pestman, Pieter W. CMT 6. 1992. (new) Pestman, Rec. de textesPestman, Pieter W., Quaegebeur, Jan, Vos, R. L., Recueil de textes démotiques et bilingues, I. Transcriptions, II. Traductions, III. Index et planches. 1977. Pestman, TsenhorLes papyrus démotiques de Tsenhor (P. Tsenhor). Les archives privées d’une femme égyptienne du temps de Darius Ier. Hrsg. von Pestman, Pieter W. StudDem 4. 1994. Petersmarck, KemitPetersmarck, Edina, Die Kemit. Ostraka, Schreibtafel und ein Papyrus. GM Beiheft 12. 2012. - Peterson, in: Fs WessetzkyPeterson, Bengt, A Note of the Wisdom of Amenemope 3,9-4,10. In: Fs Wessetzky, 1974, 323-328. - Peterson, JEA 52, 1966Peterson, Bengt, A New Fragment of The Wisdom of Amenemope. In: JEA 52, 1966, 120-128. - Peterson, OrSu 19-20, 1971Peterson, Bengt, Ausgewählte ägyptische Personennamen nebst prosopographischen Notizen aus Stockholmer Sammlungen. In: OrSu 19-20, 1971, 3-22. + PetosirisLefebvre, Gustave, Le tombeau de Petosiris, I-III. 1923-24. Petosiris 1Lefebvre, Gustave, Le tombeau de Petosiris, I, Description. 1924. Petosiris 2Lefebvre, Gustave, Le tombeau de Petosiris, II, Les textes. 1923. Petosiris 3Lefebvre, Gustave, Le tombeau de Petosiris, III, Vocabulaire et planches. 1923. - PetosirisLefebvre, Gustave, Le tombeau de Petosiris, I-III. 1923-24. Petrie, AmarnaPetrie, William M. Flinders, Tell el-Amarna. 1894. Petrie, AmuletsPetrie, William M. Flinders, Amulets. 1914, 1972 (Neudruck). Petrie, Buttons and Design ScarabsPetrie, William M. Flinders, Buttons and Design Scarabs. BSAE 38. 1925. @@ -3624,14 +2376,14 @@

      Abbreviat Petrie, Objects of Daily UsePetrie, William M. Flinders, Objects of Daily Use. BSAE 42. 1927. Petrie, Prehistoric EgyptPetrie, William M. Flinders, Prehistoric Egypt. BSAE 31. 1920. Petrie, ResearchesPetrie, William M. Flinders, Researches in Sinai. 1906. + Petrie, RTPetrie, William M. Flinders, The Royal Tombs of the First Dynasty I-II. EEF 18 u. 21. 1900 u. 1901. Petrie, RT 1Petrie, William M. Flinders, The Royal Tomby of the First Dynasty I. EEF 18. 1900. Petrie, RT 2Petrie, William M. Flinders, The Royal Tombs of the First Dynasty II. EEF 21. 1901. - Petrie, RTPetrie, William M. Flinders, The Royal Tombs of the First Dynasty I-II. EEF 18 u. 21. 1900 u. 1901. Petrie, ScarabsPetrie, William M. Flinders, Scarabs and Cylinders with Names. BSAE 29. 1917. Petrie, SeasonPetrie, William M. Flinders, A Season in Egypt 1887. 1888. + Petrie, TanisPetrie, William M. Flinders, Tanis I-II. EEF 2 u. 4. 1888-89. Petrie, Tanis 1Petrie, William M. Flinders, Tanis I. EEF 2. 1888. Petrie, Tanis 2Petrie, William M. Flinders, Tanis II. EEF 4. 1889. - Petrie, TanisPetrie, William M. Flinders, Tanis I-II. EEF 2 u. 4. 1888-89. Petrie, TemplesPetrie, William M. Flinders, Six Temples at Thebes. 1896. 1897. Petrie, Tombs of the CourtiersPetrie, William M. Flinders, Tombs of the Courtiers and Oxyrhynkhos. BSAE 37. 1925. Petrie, Tools and WeaponsPetrie, William M. Flinders, Tools and Weapons. BSAE 30. 1917. @@ -3640,97 +2392,74 @@

      Abbreviat Petrie/Walker, QurnehPetrie, William M. Flinders, Walker, James H., Qurneh. BSAE 16. 1909. Peust, Das NapatanischePeust, Carsten, Das Napatanische. MzÄS 3. 1999. Peust, Egyptian PhonologyPeust, Carsten, Egyptian Phonology. An Introduction to the Phonology of a Dead Language. MzÄS 2. 1999. - Peust, in: TUAT Erg.Peust, Carsten, Das Zweibrüdermärchen. In: TUAT Erg., 2001, 147-165. - Peust, in: TUAT NF 1Peust, Carsten, Hungersnotstele. In: TUAT NF 1, 2004, 208-217. - Peust, in: TUAT NF 3Peust, Carsten, Das Lehrstück Kemit. In: TUAT NF 3, 2006, 307-313. - Peust, in: TUAT NF 4Peust, Carsten, Ein Orakelamulett (pTurin 1983). In: TUAT NF 4, 2008, 324-330. Peust, Indirekte RedePeust, Carsten, Indirekte Rede im Neuägyptischen. GOF 33. 1996. - Peust, LingAeg 16, 2008Peust, Carsten, Rezension: Gábor Takács, Etymological Dictionary of Egyptian. Volume Three: m-. In: LingAeg 16, 2008, 393-401. Peust, ToponymePeust, Carsten, Die Toponyme vorarabischen Ursprungs im modernen Ägypten. 2010. + Pfeiffer, Griechische und lateinische InschriftenPfeiffer, Stefan, Griechische und lateinische Inschriften zum Ptolemäerreich und zur römischen Provinz Aegyptus. EQÄ 9. 2015. (new) Pfeiffer, KanoposPfeiffer, Stefan, Das Dekret von Kanopos (238 v.Chr.). Kommentar und historische Auswertung eines dreisprachigen Synodaldekretes der ägyptischen Priester zu Ehren Ptolemaios’ III. und seiner Familie. AfP Beiheft 18. 2004. pGreenfieldBudge, Ernest Alfred Th. Wallis, The Greenfield Papyrus in the British Museum. 1912. Pharaonen des GoldlandesDie Pharaonen des Goldlandes. Antike Königreiche im Sudan. Hrsg. von Wildung, Dietrich. 1998. Pharaonen und FremdePharaonen und Fremde. Dynastien im Dunkel. Sonderausstellung des Historischen Museums der Stadt Wien in Zusammenarbeit mit dem Ägyptologischen Institut der Universität Wien und dem Österreichischen Archäologischen Institut Kairo, Rathaus Wien, Volkshalle, 8. Sept. - 23. Okt. 1994. 1994. Pharaons NoirsPharaons noirs. Sur la Piste des Quarante Jours. Hrsg. von Bruwier, Marie-Cécile. 2007. pHarris IErichsen, Wolja, Papyrus Harris I. BAe 5. 1933. + pHier. BM (Edwards)Oracular Amuletic Decrees of the Late New Kingdom. Hrsg. von Edwards, I. E. S. HPBM 4. 1960. pHier. BM (Edwards) 1Oracular amuletic decrees of the late New Kingdom, Bd. 1 Text. Hrsg. von Edwards, I. E. S. HPBM 4. 1960. pHier. BM (Edwards) 2Oracular amuletic decrees of the late New Kingdom, Bd. 2 Plates. Hrsg. von Edwards, I. E. S. HPBM 4. 1960. - pHier. BM (Edwards)Oracular Amuletic Decrees of the Late New Kingdom. Hrsg. von Edwards, I. E. S. HPBM 4. 1960. pHier. BM (Gardiner)Chester Beatty Gift. Hrsg. von Gardiner, Alan H. HPBM 3. 1935. - PhilaeBénédite, Georges, Description et histoire de l'île de Phiae. MMAF 13. 1893. + PhilaeBénédite, Georges, Description et histoire de l’île de Phiae. MMAF 13. 1893. pHolmPapyrus Graecus Holmensis, Rezepte für Silber, Steine und Purpur. Hrsg. von Lagercrantz, O. 1913. Photographs of NebseniPhotographs of the Papyrus of Nebseni in the British Museum. 1876. Piankoff, Chapelles IPiankoff, Alexandre, Les chapelles de Tout-Ankh-Amon. Fascicule premier. MIFAO 72. 1952. Piankoff, Chapelles IIPiankoff, Alexandre, Les chapelles de Tout-Ankh-Amon. Fascicule deuxième. MIFAO 72. 1951. Piankoff, Litany of RePiankoff, Alexandre, The Litany of Re. BS 40.4. 1964. + Piankoff, Livre des PortesPiankoff, Alexandre, Maystre, Charles, Le Livre des Portes I-III. MIFAO 74, 75, 90. 1939-62. Piankoff, Livre des Portes 1Piankoff, Alexandre, Maystre, Charles, Le Livre des Portes I. MIFAO 74. 1939. Piankoff, Livre des Portes 2Piankoff, Alexandre, Le Livre des Portes II. MIFAO 75. 1961. Piankoff, Livre des Portes 3Piankoff, Alexandre, Le Livre des Portes III. MIFAO 90. 1962. - Piankoff, Livre des PortesPiankoff, Alexandre, Maystre, Charles, Le Livre des Portes I-III. MIFAO 74, 75, 90. 1939-62. Piankoff, Livre du Jour et de la NuitPiankoff, Alexandre, Le Livre du Jour et de la Nuit. BE 13. 1942. Piankoff, Myth. Pap.Piankoff, Alexandre, Rambova, N., Mythological Papyri. BS 40.3. 1957. + Piankoff, Ramesses VIPiankoff, Alexandre, The Tomb of Ramesses I-II. BS 40.1. 1954. Piankoff, Ramesses VI, 1Piankoff, Alexandre, The Tombs of Ramesses VI, Bd. 1. BS 40.1. 1954. Piankoff, Ramesses VI, 2Piankoff, Alexandre, The Tomb of Ramesses VI, Bd. 2. BS 40.1. 1954. - Piankoff, Ramesses VIPiankoff, Alexandre, The Tomb of Ramesses I-II. BS 40.1. 1954. - Piankoff, RdE 1, 1933Piankoff, Alexandre, Quelques passages des "Instructions de Douaf" sur une tablette du Musée du Louvre. In: RdE 1, 1933, 51-74. Piankoff, ShrinesPiankoff, Alexandre, The Shrines of Tut-Ankh-Amon. BS 40.2. 1955. Piankoff, UnasPiankoff, Alexandre, The Pyramid of Unas. BS 40.5. 1968. Piankoff, Wandering of the SoulPiankoff, Alexandre, The Wandering of the Soul. 1974. - Piankoff/Clère, JEA 20, 1934Piankoff, Alexandre, Clère, Jacques Jean, A Letter to the Dead on a Bowl in the Louvre. In: JEA 20, 1934, 157-169. - Piccato, LingAeg 5, 1997Piccato, Aldo, The Berlin Leather Roll and the Egyptian Sense of History. In: LingAeg 5, 1997, 137-159. - Piccione, SSEAJ 30, 2003Piccione, Peter A., The Women of Thutmose III in the Stelae of the Egyptian Museum. In: SSEAJ 30, 2003, 91-102. + Piehl, Inscr.Piehl, Karl, Inscriptions hiéroglyphiques recueillies en Europe et en Égypte, Sér. 1-3 (6 Vols.). 1886-1903. Piehl, Inscr. 1,1Piehl, Karl, Inscriptions hiéroglyphiques recueillies en Europe et en Égypte, Sér. 1,1. 1886. Piehl, Inscr. 1,2Piehl, Karl, Inscriptions hiéroglyphiques recueillies en Europe et en Égypte, Sér. 1,2. 1888. Piehl, Inscr. 2,1Piehl, Karl, Inscriptions hiéroglyphiques recueillies en Europe et en Égypte, Sér. 2,1. 1890. Piehl, Inscr. 2,2Piehl, Karl, Inscriptions hiéroglyphiques recueillies en Europe et en Égypte, Sér. 2,2. 1892. Piehl, Inscr. 3,1Piehl, Karl, Inscriptions hiéroglyphiques recueillies en Europe et en Égypte, Sér. 3,1. 1895. Piehl, Inscr. 3,2Piehl, Karl, Inscriptions hiéroglyphiques recueillies en Europe et en Égypte, Sér. 3,2. 1903. - Piehl, Inscr.Piehl, Karl, Inscriptions hiéroglyphiques recueillies en Europe et en Égypte, Sér. 1-3 (6 Vols.). 1886-1903. Piehl, Petites ÉtudesPiehl, Karl, Petites études égyptologiques. 1881. - Piehl, PSBA 10, 1887-1888Piehl, Karl, Textes égyptiens inédits. In: PSBA 10, 1887-1888, 530-539. - Piehl, PSBA 15, 1892-1893Piehl, Karl, Notes de philologie égyptienne. In: PSBA 15, 1892-1893, 31-47, 247-268, 471-493. - Piehl, RecTrav 1, 1870Piehl, Karl, Petites notes de critique et de philologie. In: RecTrav 1, 1870, 133-138, 196-205. - Piehl, RecTrav 2, 1880Piehl, Karl, Petites notes de critique et de philologie. In: RecTrav 2, 1880, 27-32, 121-129. - Piehl, RecTrav 4, 1883Piehl, Karl, Petites notes de critique et de philologie. In: RecTrav 4, 1883, 117-124. - Piehl, Sphinx 2, 1898Piehl, Karl, Explication d'une stèle datant du Moyen Empire. In: Sphinx 2, 1898, 131-136. - Piehl, Sphinx 4, 1901Piehl, Karl, La stèle 1774 du Musée de Florence. In: Sphinx 4, 1901, 15-17. Pieper, NeferhotepPieper, Max, Die große Inschrift des Königs Neferhotep in Abydos. Ein Beitrag zur ägyptischen Religions- und Literaturgeschichte. MVAeG 32,2. 1929. - Pieper, ZÄS 66, 1931Pieper, Max, Ein Text über das ägyptische Brettspiel. In: ZÄS 66, 1931, 16-33. - Pier, AJSL 21, 1904-1905Pier, Garrett Chatfield, A New Historical Stela of the Intefs. In: AJSL 21, 1904-1905, 159-162. Pierce, Three Demotic PapyriPierce, Richard Holton, Three Demotic Papyri in the Brooklyn Museum. 1972. - Pierre-Croisiau, in: Textes des Pyramides et Textes des SarcophagesPierre-Croisiau, Isabelle, Nouvelles identifications de Textes des Sarcophages parmi les "nouveaux" Textes des Pyramides de Pépy Ier et de Mérenrê. In: Textes des Pyramides et Textes des Sarcophages, 2004, 263-278. - Pierret, Musée Égyptien du Louvre 1Pierret, Paul, Recueil d'inscriptions inédites du Musée Égyptien du Louvre, Bd. 1. EE 2. 1874. - Pierret, Musée Égyptien du Louvre 2Pierret, Paul, Recueil d'inscriptions inédites du Musée Égyptien du Louvre, Bd. 2. EE 8. 1878. - Pierret, Musée Égyptien du LouvrePierret, Paul, Recueil d'inscriptions inédites du Musée Égyptien du Louvre, Bd. 1-2. EE 2, 8. 1874-1878. + Pierret, Musée Égyptien du LouvrePierret, Paul, Recueil d’inscriptions inédites du Musée Égyptien du Louvre, Bd. 1-2. EE 2, 8. 1874-1878. + Pierret, Musée Égyptien du Louvre 1Pierret, Paul, Recueil d’inscriptions inédites du Musée Égyptien du Louvre, Bd. 1. EE 2. 1874. + Pierret, Musée Égyptien du Louvre 2Pierret, Paul, Recueil d’inscriptions inédites du Musée Égyptien du Louvre, Bd. 2. EE 8. 1878. Pilgrim, Elephantine XVIIIPilgrim, Cornelius von, Elephantine XVIII. Untersuchungen in der Stadt des Mittleren Reiches und der Zweiten Zwischenzeit. AV 91. 1996. - Pillet, ASAE 24, 1924Pillet, Maurice, Rapport sur les travaux de Karnak (1923-1924). In: ASAE 24, 1924, 53-88. - Pillet, ThèbesPillet, Maurice, Thèbes: Karnak et Louxor. Les villes d'art célèbres. 1928. + Pillet, ThèbesPillet, Maurice, Thèbes: Karnak et Louxor. Les villes d’art célèbres. 1928. Pinch, MagicPinch, Geraldine, Magic in ancient Egypt. 2006 (2. Aufl.). - Piotrovskij, Drevnjaja Nubija, 1964Piotrovskij, Boris Borisovič, Stranicy drevnej istorii severnoj Nubii ['The limits of the ancient history of Northern Nubia']. In: Drevnjaja Nubija. Rezul'taty rabot archeologiceskoi ekspedicii A. N. SSSR v Obedinennoi Arabskoi Respublike (1961-1962). 1964. 5-31 . - Piotrovskij, VDI 1, 1966Piotrovskij, Boris Borisovič, Dve egipetskie nadpisi VI dinastii v Vadi-Allaki (Nubija) ['Two Egyptian Inscriptions of the Sixth Dynasty in Wadi-Allaki (Nubia)']. In: VDI 1, 1966, 80-82. - Piquette, ZÄS 137, 2010Piquette, Kathryn E., A compositional approach to a First Dynasty inscribed label fragment from the Abydos tomb complex ascribed to Qa'a. In: ZÄS 137, 2010, 54-65. - Pirenne, Institutions et Droit 1Pirenne, Jacques, Histoire des institutions et du droit privé de l'ancienne Égypte, Bd. 1 Des origines à la fin de la IVe dynastie. 1932. - Pirenne, Institutions et Droit 2Pirenne, Jacques, Histoire des institutions et du droit privé de l'ancienne Égypte, Bd. 2 La Ve dynastie (2750-2625). 1934. - Pirenne, Institutions et Droit 3Pirenne, Jacques, Histoire des institutions et du droit privé de l'ancienne Égypte, Bd. 3 La VIe dynastie et le démembrement de l'empire. 1935. - Pirenne, Institutions et DroitPirenne, Jacques, Histoire des institutions et du droit privé de l'ancienne Égypte, I-III. 1932-35. - Pistolesi, Vaticano IVPistolesi, Erasmo, Il Vaticano, Volume IV. 1829. + Pirenne, Institutions et DroitPirenne, Jacques, Histoire des institutions et du droit privé de l’ancienne Égypte, I-III. 1932-35. + Pirenne, Institutions et Droit 1Pirenne, Jacques, Histoire des institutions et du droit privé de l’ancienne Égypte, Bd. 1 Des origines à la fin de la IVe dynastie. 1932. + Pirenne, Institutions et Droit 2Pirenne, Jacques, Histoire des institutions et du droit privé de l’ancienne Égypte, Bd. 2 La Ve dynastie (2750-2625). 1934. + Pirenne, Institutions et Droit 3Pirenne, Jacques, Histoire des institutions et du droit privé de l’ancienne Égypte, Bd. 3 La VIe dynastie et le démembrement de l’empire. 1935. Pistolesi, VaticanoPistolesi, Erasmo, Il Vaticano. 1829-1838 (8. Bde.). + Pistolesi, Vaticano IVPistolesi, Erasmo, Il Vaticano, Volume IV. 1829. pJumilhacVandier, Jacques, Le Papyrus Jumilhac. 1961. + pKahun and GurobGriffith, Francis Llewellyn, The Petrie papyri: hieratic papyri from Kahun and Gurob, I-II. 1897/98. pKahun and Gurob 1Griffith, Francis Llewellyn, The Petrie papyri: hieratic papyri from Kahun and Gurob, I: Text. 1897. pKahun and Gurob 2Griffith, Francis Llewellyn, The Petrie papyri: hieratic papyri from Kahun and Gurob, II: Plates. 1898. - pKahun and GurobGriffith, Francis Llewellyn, The Petrie papyri: hieratic papyri from Kahun and Gurob, I-II. 1897/98. pKairo 86637Bakir, Abd el-Mohsen, The Cairo Calendar No. 86637. 1966. pLac MoerisLanzone, Rodolfo Vittorio, Les papyrus du Lac Moeris. 1896. - Plantikow-Münster, ZÄS 95, 1969Münster, Maria, Die Inschrift des bꜣk-n-ḫnsw in München. In: ZÄS 95, 1969, 117-135. pLeiden I 350Zandee, Jan, De hymnen aan Amon van papyrus Leiden I 350. OMRO 28. 1947. pLeiden T 3Heerma van Voss, Matthieu, Zwischen Grab und Paradies. 1971. + Pleyte, Livre des MortsPleyte, Willem, Chapitres supplémentaires du Livre des Morts, Bd. 1-3. 1881. Pleyte, Livre des Morts IPleyte, Willem, Chapitres supplémentaires du Livre des Morts 162 á 174 publiés d´apres les Monuments de Leide, du Louvre et du Musée Britannique. 1881. Pleyte, Livre des Morts IIPleyte, Willem, Chapitres supplémentaires du Livre des Morts 162,162* 163. Traduction et Commentaire. 1881. Pleyte, Livre des Morts IIIPleyte, Willem, Chapitres supplémentaires du Livre des Morts 164-174. Traduction et Commentaire. 1881. - Pleyte, Livre des MortsPleyte, Willem, Chapitres supplémentaires du Livre des Morts, Bd. 1-3. 1881. Pleyte/Rossi, Papyrus de TurinPleyte, Willem, Rossi, Francesco, Papyrus de Turin / facsimilés par F. Rossi de Turin et publ. par W. Pleyte de Leide Planches. 1869-1876. Plinius, Nat. hist.Plinius Secundus, Naturalis historia, Vol. I-VI. 1866-1882. - Plumley, JEA 50, 1964Plumley, J. Martin, Qaṣr Ibrîm 1963-1964. In: JEA 50, 1964, 3-5. + PMPorter, Bertha, Moss, Rosalind L. B., Málek, Jaromír, Topographical bibliography of ancient Egyptian hieroglyphic texts, reliefs, and paintings, I-VIII. 1927-1952, 1960ff. (2.Auflage), 1999-2012. PM 1.1Porter, Bertha, Moss, Rosalind L. B., Topographical bibliography of ancient Egyptian hieroglyphic texts, reliefs, and paintings I: The Theban necropolis. Part 1: Private Tombs. 1927, 1960 (2. Auflage). PM 1.2Porter, Bertha, Moss, Rosalind L. B., Topographical bibliography of ancient Egyptian hieroglyphic texts, reliefs, and paintings I: The Theban necropolis. Part 2: Royal tombs and smaller cemeteries. 1927, 1964 (2. Auflage). PM 2Porter, Bertha, Moss, Rosalind L. B., Topographical bibliography of ancient Egyptian hieroglyphic texts, reliefs, and paintings II: Theban temples. 1929, 1972 (2. Auflage). @@ -3743,147 +2472,61 @@

      Abbreviat PM 8.1Málek, Jaromír, Topographical bibliography of ancient Egyptian hieroglyphic texts, statues, reliefs, and paintings VIII: objects of provenance not known. Part 1: royal statues, private statues (Predynastic to Dynasty XVII). 1999. PM 8.3Málek, Jaromír, Topographical bibliography of ancient Egyptian hieroglyphic texts, reliefs, and paintings VIII: objects of provenance not known. Part 3: stelae (Early Dynastic period to Dynasty XVII). 2007. PM 8.4Málek, Jaromír, Topographical bibliography of ancient Egyptian hieroglyphic texts, statues, reliefs, and paintings VIII: objects of provenance not known. Part 4: stelae (Dynasty XVIII to the Roman Period). 2012. - PMPorter, Bertha, Moss, Rosalind L. B., Málek, Jaromír, Topographical bibliography of ancient Egyptian hieroglyphic texts, reliefs, and paintings, I-VIII. 1927-1952, 1960ff. (2.Auflage), 1999-2012. pMag. Harris 501 (H.O. Lange)Lange, Hans Ostenfeldt, Der magische Papyrus Harris. 1927. + pMag. LLGriffith, Francis Llewellyn, Thompson, Herbert, The Demotic Magical Papyrus of London and Leiden (BM 10070, Leiden I 383), I-III. 1904-1909. pMag. LL 1Griffith, Francis Llewellyn, Thompson, Herbert, The Demotic Magical Papyrus of London and Leiden (BM 10070, Leiden I 383), I. 1904. pMag. LL 2Griffith, Francis Llewellyn, Thompson, Herbert, The Demotic Magical Papyrus of London and Leiden (BM 10070, Leiden I 383), II. 1905. pMag. LL 3Griffith, Francis Llewellyn, Thompson, Herbert, The Demotic Magical Papyrus of London and Leiden (BM 10070, Leiden I 383), III. 1909. - pMag. LLGriffith, Francis Llewellyn, Thompson, Herbert, The Demotic Magical Papyrus of London and Leiden (BM 10070, Leiden I 383), I-III. 1904-1909. pMed. LondonWreszinski, Walter, Die Medizin der Alten Ägypter 2: Der Londoner medizinische Papyrus (BM 10059) und der Papyrus Hearst. 1912. pMoskau 4676Struve, Vasilij V., Mathematischer Papyrus des Staatlichen Museums der schönen Künste in Moskau. 1930. PNARScheele-Schweitzer, Katrin, Die Personennamen des Alten Reiches. Altägyptische Onomastik unter lexikographischen und sozio-kulturellen Aspekten. Philippika 28. 2014. Pococke, DescriptionPococke, Richard, A Description of the East and some other Countries. 1743-1745 (3 Bde.). - Polinger Foster/Ritner, JNES 55, 1996Polinger Foster, Karen, Ritner, Robert K., Texts, Storms, and the Thera Eruption. In: JNES 55, 1996, 1-14. Polotsky, InschriftenPolotsky, Hans Jakob, Zu den Inschriften der 11. Dynastie. UGAÄ 11. 1929. Polz, Beginn NRPolz, Daniel, Der Beginn des Neuen Reiches. Zur Vorgeschichte einer Zeitenwende. SDAIK 31. 2007. - Polz, ZÄS 117, 1990Polz, Daniel, Die šnꜥ-Vorsteher des Neuen Reiches. In: ZÄS 117, 1990, 43-60. Pommerening, HohlmaßePommerening, Tanja, Die altägyptischen Hohlmaße. 2005. - Pommerening, in: Basel Egyptology Prize 1Pommerening, Tanja, Neues zu den Hohlmassen und zum Medizinalmasssystem. In: Basel Egyptology Prize 1, 2003, 201-219. - Pommerening, in: Dils/Popko, Zwischen Philologie und Lexikographie des Ägyptisch-KoptischenPommerening, Tanja, Wege zur Identifikation altägyptischer Drogennamen - eine kritische Betrachtung. In: Dils/Popko, Zwischen Philologie und Lexikographie des Ägyptisch-Koptischen, 2016, 82-111. Popko, GeschichtsschreibungPopko, Lutz, Untersuchungen zur Geschichtsschreibung der Ahmosiden- und Thutmosidenzeit. "... damit man von seinen Taten noch in Millionen von Jahren sprechen wird". WSA 2. 2006. - Popko, in: TUAT NF 7Popko, Lutz, Die Königshymnen an Ramses VI. und VII. des Papyrus Turin CG 54031. In: TUAT NF 7, 2013, 197-210. Porten, Elephantine PapyriThe Elephantine Papyri in English. Three Millennia of Cross-Cultural Continuity and Change. Hrsg. von Porten, Bezalel. DMOA 22. 1996. - Posener, GM 25, 1977Posener, Georges, Les quarante rouleaux de lois. In: GM 25, 1977, 63-66. - Posener, in: Fs FechtPosener, Georges, L'enseignement d'un homme à son fils: cinq nouveaux ostraca. In: Fs Fecht, 1987, 361-367. - Posener, in: Fs RickePosener, Georges, Amon juge du pauvre. In: Fs Ricke, 1971, 59-63. - Posener, in: Gs OttoPosener, Georges, La complainte de l'échanson Bay. In: Gs Otto, 1977, 385-397. - Posener, JEA 68, 1982Posener, Georges, Un papyrus d'El-Hîbeh. In: JEA 68, 1982, 134-138. Posener, L'Enseignement LoyalistePosener, Georges, L’Enseignement Loyaliste. Sagesse égyptienne du Moyen Empire. 1976. - Posener, Littérature et PolitiquePosener, Georges, Littérature et Politique dans l'Égypte de la XIIe Dynastie. BEHE 307. 1956. - Posener, MDAIK 25, 1969Posener, Georges, Fragment littéraire de Moscou. In: MDAIK 25, 1969, 101-106. + Posener, Littérature et PolitiquePosener, Georges, Littérature et Politique dans l’Égypte de la XIIe Dynastie. BEHE 307. 1956. Posener, Pap. VandierPosener, Georges, Le papyrus Vandier. BiGen 7. 1985. - Posener, Première Domination PersePosener, Georges, La première domination perse en Égypte: Recueil d'inscriptions hiéroglyphiques. BdE 11. 1936. - Posener, RdE 10, 1955 (1)Posener, Georges, L'exorde de l'Instruction éducative d'Amennakhte (recherches littéraires, V). In: RdE 10, 1955, 61-72. - Posener, RdE 10, 1955 (2)Posener, Georges, Urk. IV, 139, 2-7. In: RdE 10, 1955, 92-94. - Posener, RdE 11, 1957Posener, Georges, Le conte de Néferkarê et du général Siséné - Recherches littéraires 6. In: RdE 11, 1957, 119-137. - Posener, RdE 12, 1960Posener, Georges, Une nouvelle histoire de revenant (recherches littéraires, VII). In: RdE 12, 1960, 75-82. - Posener, RdE 16, 1964Posener, Georges, Néshi du procès de Mès. In: RdE 16, 1964, 213-214. - Posener, RdE 18, 1966Posener, Georges, Quatre tablettes scolaires de Basse Époque (Aménémopé et Hardjédef). In: RdE 18, 1966, 45-65. - Posener, RdE 27, 1975Posener, Georges, La piété personnelle avant l'âge amarnien. In: RdE 27, 1975, 195-210. - Posener, RdE 36, 1985Posener, Georges, Pour la reconstitution de l'Enseignement d'un homme à son fils. In: RdE 36, 1985, 115-119. - Posener, RdE 6, 1951Posener, Georges, Les richesses inconnues de la littérature égyptienne (recherches littéraires I). In: RdE 6, 1951, 27-48. - Posener, RdE 7, 1950Posener, Georges, Section finale d'une sagesse inconnue (recherches littéraires, II). In: RdE 7, 1950, 71-84. - Posener, RdE 8, 1951Posener, Georges, Ostraca inédits du Musée de Turin (recherches littéraires III). In: RdE 8, 1951, 171-189. - Posener, RdE 9, 1952Posener, Georges, Le début de l'enseignement de Hardjedef (recherches littéraires, IV). In: RdE 9, 1952, 109-120. - Posener, SSEAJ 12, 1982Posener, Georges, A New Royal Inscription of the XIIth Dynasty. In: SSEAJ 12, 1982, 7-8. - Posener, Syria 34, 1957Posener, Georges, Les Asiatiques en Égypte sous les XIIe et XIIIe dynasties (à propos d'un livre récent). In: Syria 34, 1957, 145-163. + Posener, Première Domination PersePosener, Georges, La première domination perse en Égypte: Recueil d’inscriptions hiéroglyphiques. BdE 11. 1936. Posener-Kriéger, GebeleinPosener-Kriéger, Paule, I Papiri di Gebelein. Scavi G. Farina 1935. 2004. - Posener-Kriéger, in: Fs Champollion II 2Posener-Kriéger, Paule, Les papyrus de l'Ancien Empire. In: Fs Champollion II 2, 1974, 25-35. - Posener-Krieger, JEA 64, 1978Posener-Kriéger, Paule, A Letter to the Governor of Elephantine. In: JEA 64, 1978, 84-87. - Posener-Kriéger, Pap. d'AbousirPosener-Kriéger, Paule, Les archives du temple funéraire de Néferirkarê-Kakaï (Les papyrus d’Abousir). BdE 65/1 et 65/2. 1976. - Posener-Kriéger, RdE 22, 1970Posener-Kriéger, Paule, La nuit de Re'. In: RdE 22, 1970, 131-137. - Posener-Krieger, RdE 32, 1980Posener-Kriéger, Paule, Fragments de papyrus provenant de Saqqarah. In: RdE 32, 1980, 83-93. + Posener-Kriéger, Pap. d’AbousirPosener-Kriéger, Paule, Les archives du temple funéraire de Néferirkarê-Kakaï (Les papyrus d’Abousir). BdE 65/1 et 65/2. 1976. Posener-Kriéger/Cenival, Abu Sir Pap.Posener-Kriéger, Paule, Cenival, Jean Louis de, The Abu Sir Papyri. HPBM 5. 1968. - Postel, BIFAO 103, 2003Postel, Lilian, "Rame" ou "course"? Enquête lexicographique sur le terme Hpt. In: BIFAO 103, 2003, 377-420. - Postel, in: Fs GoyonPostel, Lilian, Une nouvelle mention des campagnes nubiennes de Montouhotep II à Karnak. In: Fs Goyon, 2008, 329-340. - Postel, ProtocolePostel, Lilian, Protocole des souverains égyptiens et dogme monarchique au début du Moyen Empire. Des premiers Antef au début du règne d'Amenemhat Ier. MRE 10. 2004. + Postel, ProtocolePostel, Lilian, Protocole des souverains égyptiens et dogme monarchique au début du Moyen Empire. Des premiers Antef au début du règne d’Amenemhat Ier. MRE 10. 2004. pPrisseJéquier, Gustave, Les papyrus Prisse et ses variantes. Papyrus de la Bibliothèque Nationale (nos 183 à 194), papyrus 10371 et 10435 du British Museum, Tablette Carnarvon au Musée du Caire. 1911. pRam. (Gardiner)Gardiner, Alan H., The Ramesseum Papyri. 1955. + pRhind Mathem.Chace, Arnold Buffum, The Rhind Mathematical Papyrus (BM 10057 & 10058), I-II. 1927-29. pRhind Mathem. 1Chace, Arnold Buffum, The Rhind Mathematical Papyrus (BM 10057 & 10058), I. 1927. pRhind Mathem. 2Chace, Arnold Buffum, The Rhind Mathematical Papyrus (BM 10057 & 10058), II. 1929. - pRhind Mathem.Chace, Arnold Buffum, The Rhind Mathematical Papyrus (BM 10057 & 10058), I-II. 1927-29. Pries, StundenritualPries, Andreas H., Das nächtliche Stundenritual zum Schutz des Königs und verwandte Kompositionen. Der Papyrus Kairo 58027 und die Textvarianten in den Geburtshäsern von Dendara und Edfu. SAGA 27. 2009. - Priese, AoF 1, 1974Priese, Karl-Heinz, ꜥrm und ꜥꜣm, das Land Irame. Ein Beitrag zur Topographie des Sudan im Altertum. In: AoF 1, 1974, 7-41. Priese, MeribPriese, Karl-Heinz, Die Opferkammer des Merib. 1984. - Priese, Meroitica 7, 1984Priese, Karl-Heinz, Orte des mittleren Niltals in der Überlieferung bis zum Ende des christlichen Mittelalters. In: Meroitica 7, 1984, 484-497. - Priese, ZÄS 95, 1968Priese, Karl-Heinz, Zwei Wörter in den "spätäthiopischen" Inschriften. In: ZÄS 95, 1968, 40-47. PrismPiepkorn, Arthur C., Historical Prism Inscriptions of Ashurbanipal. 1933. - Prisse d'Avennes, Monuments égyptiensPrisse D'Avennes, Émile, Monuments égyptiens. Bas-reliefs, peintures, inscriptions, etc., d'après les dessins exécutés sur les lieux; pour faire suite aux Monuments de l'Égypte et de la Nubie de Champollion-le-Jeune. 1847. + Prisse d’Avennes, Monuments égyptiensPrisse D’Avennes, Émile, Monuments égyptiens. Bas-reliefs, peintures, inscriptions, etc., d’après les dessins exécutés sur les lieux; pour faire suite aux Monuments de l’Égypte et de la Nubie de Champollion-le-Jeune. 1847. + Profane LandscapesProfane Landscapes, Sacred Spaces. Hrsg. von Bárta, Miroslav, Janák, Jiří. 2020. (new) pRollinDevéria, Théodule, Le papyrus judiciaire de Turin et les papyrus Lee et Rollin. 1868. PRULe Palais Royal d´Ugarit, I-VI. Hrsg. von Schaeffer, Claude F.-A. MRS (Bd. 2-6 = 7, 6, 9, 11, 23). 1955ff. pSalt 825 (Derchain)Derchain, Philippe, Le Papyrus Salt 825 (B.M. 10051) rituel pour la conservation de la vie en Égypte. 1965. PSI Papiri greci e latini, Pubblicationi della Società Italiana per la Ricerca dei Papiri Greci e Latini in Egitto. 1912ff. pTurin (jud.)Devéria, Théodule, Le papyrus judiciaire de Turin. 1965-67. Pusch, Senet-BrettspielPusch, Edgar B., Das Senet-Brettspiel im Alten Ägypten. MÄS 38. 1979. + pWilbourGardiner, Alan H., The Wilbour Papyrus, I-IV. 1941-52. pWilbour 1Gardiner, Alan H., The Wilbour Papyrus, I. 1941. pWilbour 2Gardiner, Alan H., The Wilbour Papyrus, II. 1948. pWilbour 3Gardiner, Alan H., The Wilbour Papyrus, III. 1948. pWilbour 4Gardiner, Alan H., The Wilbour Papyrus, IV. 1952. - pWilbourGardiner, Alan H., The Wilbour Papyrus, I-IV. 1941-52. + Pyr.Sethe, Kurt, Die altägyptischen Pyramidentexte, I-IV. 1908-22. Pyr. 1Sethe, Kurt, Die altägyptischen Pyramidentexte, Bd. 1 Spruch 1-468. 1908. Pyr. 2Sethe, Kurt, Die altägyptischen Pyramidentexte, Bd. 2 Spruch 469-714. 1910. Pyr. 3Sethe, Kurt, Die altägyptischen Pyramidentexte, Bd. 3. 1922. Pyr. 4Sethe, Kurt, Die altägyptischen Pyramidentexte, Bd. 4. 1922. - Pyr.Sethe, Kurt, Die altägyptischen Pyramidentexte, I-IV. 1908-22. Qau and Badari IBrunton, Guy, Qau and Badari I. BSAE. 1927. Qau and Badari IIBrunton, Guy, Qau and Badari II. BSAE. 1928. Qau and Badari IIIBrunton, Guy, Qau and Badari III. BSAE. 1930. Quack, Ägyptische RitualeÄgyptische Rituale der griechisch-römischen Zeit. Hrsg. von Quack, Joachim Friedrich. 2014. Quack, AniQuack, Joachim Friedrich, Die Lehren des Ani. OBO 141. 1994. - Quack, BACE 13, 2002Quack, Joachim Friedrich, Some Old Kingdom Execration Figurines From the Teti Cemetery. In: BACE 13, 2002, 149-160. - Quack, BiOr 54, 1997Quack, Joachim Friedrich, Quack, Joachim Friedrich 1997. Review: Hannig, Rainer 1995. Großes Handwörterbuch Ägyptisch - Deutsch: die Sprache der Pharaonen (2800-950 v. Chr.). Kulturgeschichte der Antiken Welt 64. In: BiOr 54, 1997, 328-334. - Quack, CdE 74, 1999Quack, Joachim Friedrich, Magie und Totenbuch - eine Fallstudie (pEbers 2,1-6). In: CdE 74, 1999, 5-17. - Quack, Enchoria 21, 1994 (1)Quack, Joachim Friedrich, Eine unetymologische Schreibung für den Namen des Planeten Jupiter. In: Enchoria 21, 1994, 148-149. - Quack, Enchoria 21, 1994 (2)Quack, Joachim Friedrich, Korrekturvorschläge zu einigen demotischen literarischen Texten. In: Enchoria 21, 1994, 63-72. - Quack, GM 123, 1991Quack, Joachim Friedrich, Über die mit ꜥnḫ gebildeten Namenstypen und die Vokalisation einiger Verbalformen. In: GM 123, 1991, 91-100. - Quack, GM 135, 1993Quack, Joachim Friedrich, Beiträge zur Textkritik der Prophezeihung des Neferti. In: GM 135, 1993, 77-79. - Quack, in: Carlsberg Papyri 7 (1)Quack, Joachim Friedrich, Die hieratischen und hieroglyphischen Papyri aus Tebtynis. Ein Überblick. In: Carlsberg Papyri 7, 2006, 1-7. - Quack, in: Carlsberg Papyri 7 (2)Quack, Joachim Friedrich, Ein neuer Zeuge für den Text zum neunköpfigen Bes. In: Carlsberg Papyri 7, 2006, 53-64. - Quack, in: Carlsberg Papyri 7 (3)Quack, Joachim Friedrich, Fragmente des Mundöffnungsrituals aus Tebtynis. In: Carlsberg Papyri 7, 2006, 69-150. - Quack, in: Carlsberg Papyri 7 (4)Quack, Joachim Friedrich, Eine Handschrift des Sokarrituals (P. Carlsberg 656). In: Carlsberg Papyri 7, 2006, 65-68. - Quack, in: Continuity and InnovationQuack, Joachim Friedrich, From Ritual to Magic. Ancient Egyptian Forerunners of the Charitesion and their Social Setting. In: Continuity and Innovation, 2011, 43-84. - Quack, in: Dils/Popko, Zwischen Philologie und Lexikographie des Ägyptisch-KoptischenQuack, Joachim Friedrich, Ägyptisch, Demotisch, Koptisch? Vom Nachteil des Schubladendenkens in der Lexikographie des Alten Ägypten. In: Dils/Popko, Zwischen Philologie und Lexikographie des Ägyptisch-Koptischen, 2016, 112-136. - Quack, in: Festgabe Neues Museum (1)Quack, Joachim Friedrich, Anrufungen an Osiris als nächtlichen Sonnengott im Rahmen eines Königsrituals (Pap. Berlin P. 23026). In: Festgabe Neues Museum, 2013, 165-187. - Quack, in: Festgabe Neues Museum (2)Quack, Joachim Friedrich, Reste eines Kultkalenders (Pap. Berlin P. 14472 + Pap. Strasbourg BNU hier. 38 a und Pap. Berlin P. 29065). In: Festgabe Neues Museum, 2013, 189-206. - Quack, in: Festgabe Neues Museum (3)Quack, Joachim Friedrich, Papyrus Berlin P. 23817: Reste eines semidemotischen Traktats über Tierzucht? In: Festgabe Neues Museum, 2013, 329-335. - Quack, in: Fs FrandsenQuack, Joachim Friedrich, Die Geburt eines Gottes? In: Fs Frandsen, 2015, 317-328. - Quack, in: Fs Graefe IIQuack, Joachim Friedrich, Psammetich der Eunuch: wie aus Geschichte Geschichten werden. In: Fs Graefe II, 2018, 475-486. - Quack, in: Fs JanowskiQuack, Joachim Friedrich, Lobpreis der Gottheit und Hoffnung auf Beistand im spätramessidischen Ägypten: eine Neubearbeitung der sogenannten "Gebete eines ungerecht Verfolgten. In: Fs Janowski, 2013, 557-593. - Quack, in: Fs KitchenQuack, Joachim Friedrich, Beiträge zu religiösen und magischen Texten. In: Fs Kitchen, 2011, 413-416. - Quack, in: Fs SpalingerQuack, Joachim Friedrich, Zur Frage der botanischen Natur des bꜢq-Baumes und des von ihm gewonnenen Öls mit einem Anhang: pBM 10085 „2–3“ rekto. Ein schnippischer Dialog zwischen Mann und Frau? In: Fs Spalinger, 2016, 275-290. - Quack, in: Getrennte WegeQuack, Joachim Friedrich, Das Problem der Ḥꜣ.w-nb.wt. In: Getrennte Wege, 2007, 331-362. - Quack, in: Menschenbilder und Körperkonzepte (1)Quack, Joachim Friedrich, Der Weber als Eunuch im Alten Ägypten. In: Menschenbilder und Körperkonzepte, 2012, 519-526. - Quack, in: Menschenbilder und Körperkonzepte (2)Quack, Joachim Friedrich, Zur Beschneidung im Alten Ägypten. In: Menschenbilder und Körperkonzepte, 2012, 561-651. - Quack, in: Papyrus Ebers und die antike HeilkundeQuack, Joachim Friedrich, Tabuisierte und ausgegrenzte Kranke nach dem 'Buch vom Tempel'. In: Papyrus Ebers und die antike Heilkunde, 2005, 63-80. - Quack, in: Rösch/Simon, PurityQuack, Joachim Friedrich, Reinigen durch Anschwärzen? Zum Motiv des Antagonistischen in ägyptischen Reinigungsritualen. In: Rösch/Simon, Purity, 2012, 107-121. - Quack, in: TUAT NF 7Quack, Joachim Friedrich, Gebete als Schultexte in ramessidischen Papyri. In: TUAT NF 7, 2013, 156-164. - Quack, JAOS 125, 2005Quack, Joachim Friedrich, Rezension: Maria Michela Luiselli, Der Amun-Re Hymnus des P. Boulaq 17 (P. Kairo CG 58038). In: JAOS 125, 2005, 126-128. - Quack, LingAeg 10, 2002 (1)Quack, Joachim Friedrich, Explizite Aufzeichnungemeidung im Alten Ägypten. In: LingAeg 10, 2002, 339-342. - Quack, LingAeg 10, 2002 (2)Quack, Joachim Friedrich, Die erste Person Plural des selbständigen Personalpronomens im Mittelägyptischen. In: LingAeg 10, 2002, 335-337. - Quack, LingAeg 11, 2003 Quack, Joachim Friedrich, Zum Lautwert von Gardiner Sign-List U 23. In: LingAeg 11, 2003, 113-116. - Quack, LingAeg 11, 2003Quack, Joachim Friedrich, Die spätägyptische Alphabetreihenfolge und das 'südsemitische' Alphabet. In: LingAeg 11, 2003, 163-184. - Quack, LingAeg 12, 2004 (1)Quack, Joachim Friedrich, Gibt es einen stammhaften Imperativ ỉyỉ «komm»? In: LingAeg 12, 2004, 133-136. - Quack, LingAeg 12, 2004 (2)Quack, Joachim Friedrich, Zur Endung tj im Neuhieratischen. In: LingAeg 12, 2004, 137-141. - Quack, LingAeg 3, 1993 (1)Quack, Joachim Friedrich, Philologische Miszellen 2. In: LingAeg 3, 1993, 151-152. - Quack, LingAeg 3, 1993 (2)Quack, Joachim Friedrich, Ein altägyptisches Sprachtabu. In: LingAeg 3, 1993, 59-79. - Quack, LingAeg 7, 2000Quack, Joachim Friedrich, Zur Lesung von Gardiner Sign-List Aa8. In: LingAeg 7, 2000, 219-224. Quack, MerikareQuack, Joachim Friedrich, Studien zur Lehre für Merikare. GOF 23. 1992. - Quack, OLZ 100, 2005Quack, Joachim Friedrich, Zu einer neuen Edition des Mont-Tores. In: OLZ 100 (2), 2005, 125-137. - Quack, RdE 46, 1995Quack, Joachim Friedrich, Notes en marge du Papyrus Vandier. In: RdE 46, 1995, 163-170. - Quack, SAK 23, 1996Quack, Joachim Friedrich, Das Pavianshaar und die Taten des Thot (pBrooklyn 47.218.48+85 3,1-6). In: SAK 23, 1996, 305-333. - Quack, SAK 32, 2004Quack, Joachim Friedrich, Der pränatale Geschlechtsverkehr von Isis und Osiris sowie eine Notiz zum Alter des Osiris. In: SAK 32, 2004, 327-332. - Quack, SAK 34, 2006Quack, Joachim Friedrich, Apopis, Nabelschnur des Re. In: SAK 34, 2006, 377-379. - Quack, SAK 36, 2007Quack, Joachim Friedrich, Die Initiation zum Schreiberberuf im Alten Ägypten. In: SAK 36, 2007, 249-295. - Quack, SAK 45, 2016Quack, Joachim Friedrich, Zur Situierung von TB 166 Pleyte. In: SAK 45, 2016, 283-293. - Quack, WdO 24, 1993Quack, Joachim Friedrich, Ein neuer ägyptischer Weisheitstext. In: WdO 24, 1993, 5-19. - Quack, WdO 27, 1996Quack, Joachim Friedrich, Ägyptisch šꜤ(.t) 'Kleie' und ein angeblich semitischer Personenname. In: WdO 27, 1996, 5-8. - Quack, WdO 31, 2000/2001Quack, Joachim Friedrich, Die rituelle Erneuerung der Osirisfigurinen. In: WdO 31, 2001, 5-18. - Quack, ZÄS 126, 1999Quack, Joachim Friedrich, Ein neues medizinisches Fragment der Spätzeit (pAshmolean Museum 1984.55 rt.). In: ZÄS 126, 1999, 141-149. - Quack, ZÄS 128, 2001Quack, Joachim Friedrich, Ein neuer Versuch zum Moskauer literarischen Brief. In: ZÄS 128, 2001, 167-181. - Quack, ZDMG 146, 1996Quack, Joachim Friedrich, Rezension: Semitic words in Egyptian texts of the New Kingdom and Third Intermediate Period. In: ZDMG 146, 1996, 507-514. - Quaegebeur, in: Fs KákosyQuaegebeur, Jan, L'animal Shaï associé au trône d'Osiris. In: Fs Kákosy, 1992, 481-493. - Quaegebeur, JNES 30, 1971Quaegebeur, Jan, Documents concerning a Cult of Arsinoe Philadelphos at Memphis. In: JNES 30, 1971, 240-270. - Quaegebeur, ShaiQuaegebeur, Jan, Le dieu égyptien Shaï dans la religion et l'onomastique. OLA 2. 1975. + Quaegebeur, ShaiQuaegebeur, Jan, Le dieu égyptien Shaï dans la religion et l’onomastique. OLA 2. 1975. Quibell, Archaic MastabasQuibell, James Edward, Excavations at Saqqara (1912-1914). Excav. Saqq. 25. 1923. Quibell, El KabQuibell, James Edward, El Kab. ERA 3. 1898. Quibell, Excav. Saqq. IQuibell, James Edward, Excavations at Saqqara (1905-1906) I. Excav. Saqq. 20. 1907. @@ -3895,10 +2538,11 @@

      Abbreviat Quirke, Book of the DeadQuirke, Stephen, Going out in daylight - prt m hrw: The ancient Egyptian Book of the Dead; translation, sources, meaning. GHP Egyptology 20. 2013. Quirke, Egyptian LiteratureQuirke, Stephen, Egyptian Literature 1800 BC. Questions and Readings. GHP Egyptology 2. 2004. Quirke, Funerary PapyriQuirke, Stephen, Owners of funerary papyri in the British Museum. BMOP 92. 1993. - Quirke, in: EreignisQuirke, Stephen, Sehel and Suez. Canal-Cutting and Periodisation in Ancient and Modern History. In: Ereignis, 2009, 223-230. + Quirke, Titles and bureauxQuirke, Stephen, Titles and bureaux of Egypt 1850-1700 BC. GHP Egyptology 1. 2004. (new) RASoden, Wolfram von, Edzard, Dietz Otto, Reallexikon der Assyrologie. 1932-2018 . - RAC 1.1Klauser, Theodor, Reallexikon für Antike und Christentum: Aaron - Biographie II. RAC 1. 2001. + RACReallexikon für Antike und Christentum. Hrsg. von Schöllgen, George u.a. 1950-2019 . RAC 1Klauser, Theodor, Reallexikon für Antike und Christentum: A und O - Bauen. RAC 1. 1950. + RAC 1.1Klauser, Theodor, Reallexikon für Antike und Christentum: Aaron - Biographie II. RAC 1. 2001. RAC 10Klauser, Theodor, Reallexikon für Antike und Christentum: Genesis - Gigant. RAC 10. 1978. RAC 11Klauser, Theodor, Reallexikon für Antike und Christentum: Girlande - Gottesnamen. RAC 11. 1981. RAC 12Klauser, Theodor, Reallexikon für Antike und Christentum: Gottesschau (Visio beatifica) - Gürtel. RAC 12. 1983. @@ -3925,22 +2569,14 @@

      Abbreviat RAC 9Klauser, Theodor, Reallexikon für Antike und Christentum: Gebet II - Generatianismus. RAC 9. 1976. RAC Register 1-15Kremer, Christian Josef, Reallexikon für Antike und Christentum: Register der Bände I bis XV. RAC. 2000. RAC SachwörterbuchLeppin, Hartmut, Reallexikon für Antike und Christentum. Sachwörterbuch zur Auseinandersetzung des Christentums mit der Antiken Welt. RAC. 2012-2014. - RACReallexikon für Antike und Christentum. Hrsg. von Schöllgen, George u.a. 1950-2019 . Rachewiltz, Libro dei Morti Rachewiltz, Boris de, Il Libro dei Morti degli antichi Egiziani. 1958. RADGardiner, Alan H., Ramesside Administrative Documents. 1948. Radestock, Prinzipien der ägyptischen MedizinRadestock, Susanne, Prinzipien der ägyptischen Medizin. Medizinische Lehrtexte der Papyri Ebers und Smith. Eine wissenschaftstheoretische Annäherung. 2015. Radwan, Darstellungen des regierenden KönigsRadwan, Ali, Die Darstellungen des regierenden Königs und seiner Familienangehörigen in den Privatgräbern der 18. Dynastie. MÄS 21. 1969. - Radwan, in: Fs StadelmannRadwan, Ali, Thutmosis III. als Gott. In: Fs Stadelmann, 1998, 329-340. - Radwan, MDAIK 37, 1981Radwan, Ali, Zwei Stelen aus dem 47. Jahre Thutmosis' III. In: MDAIK 37, 1981, 403-407. - Raedler, in: Bács/Beinlich, Constructing authorityRaedler, Christine, Creating authority: the High Priest of Osiris Wenennefer and a special deification of Ramesses II. In: Bács/Beinlich, Constructing authority, 2017, 215-240. - Raedler, in: Gundlach/Klug, Ägyptische KönigtumRaedler, Christine, Die Wesire Ramses' II.: Netzwerke der Macht. In: Gundlach/Klug, Ägyptische Königtum, 2004, 277-416. Ragazzoli, ÉlogesRagazzoli, Chloé, Éloges de la ville en Égypte ancienne. Histoire et littérature. IEA 4. 2008. - Ragazzoli, in: Festgabe Neues MuseumRagazzoli, Chloé, Un nouveau manuscrit du scribe Inéna? Le recueil de miscellanées du Papyrus Koller (Pap. Berlin P. 3043). In: Festgabe Neues Museum, 2012, 207-239. Rammant-Peeters, PyramidionsRammant-Peeters, Agnès, Les pyramidions égyptiens du Nouvel Empire. OLA 11. 1983. Ramses (Karlsruhe)Ramses. Göttlicher Herrscher am Nil. Katalog zur Ausstellung, Karlsruhe 17. Dez. 2016 - 18. Jun. 2017. [2016]. Randall-Maciver/Woolley, BuhenRandall-Maciver, David, Woolley, C. Leonard, Buhen. PUM 7-8. 1911 (2 Bde.). - Ranke, in: Mél. Masp. IRanke, Hermann, Ein Wesir der 13. Dynastie. In: Mél. Masp. I, 1934, 361-365. - Ranke, ZÄS 74, 1938Ranke, Hermann, Eine Bleitafel mit hieroglyphischer Inschrift. In: ZÄS 74, 1938, 49-51. RÄRGBonnet, Hans, Reallexikon der ägyptischen Religionsgeschichte. 1953. Ratié, HatchepsoutRatié, Suzanne, La Reine Hatchepsout. Sources et problèmes. OrMonsp 1. 1979. Ratié, NeferoubenefRatié, Suzanne, Le Papyrus de Neferoubenef (Louvre III 93). BdE 43. 1968. @@ -3948,77 +2584,54 @@

      Abbreviat Raue, Inschriften im Ägyptischen Museum –Georg Steindorff– der Universität LeipzigInschriften im Ägyptischen Museum –Georg Steindorff– der Universität Leipzig. Hrsg. von Raue, Dietrich. 2016. Ray, Archive of HorRay, John D., The Archive of Hor. EES Texts 2. 1976. Ray, Baboon and Falcon GalleriesRay, John D., Texts from the Baboon and Falcon Galleries. Demotic, Hieroglyphic and Greek Inscriptions from the Sacred Animal Necropolis, North Saqqara. EES Texts 15. 2011. - Razanajao, BIFAO 106, 2006Razanajao, Vincent, La stéle de Gemenefhorbak (Caire JE 85932) Dieux, fêtes et rites osiriens à Imet. In: BIFAO 106, 2006, 219-244. RCK IDunham, Dows, El Kurru, Published for The Museum of Fine Arts. 1950. RCK IIDunham, Dows, Nuri. 1955. RCK IIIDunham, Dows, Chapman, Suzanne E., Decorated Chapels of the Meroitic Pyramids at Meroë and Barkal. 1952. RCK IVDunham, Dows, Royal Tombs at Meroë and Barkal. 1957. RCK VDunham, Dows, The West and South Cemeteries at Meroe. Excavated by the late George Andrew Reisner. 1963. - Rec.dMBrugsch, Heinrich, Recueil de monuments égyptiens: dessinés sur lieux et publ. sous les auspices de Son Altesse le Vice-roi d'Égypte Mohammed-Saïd-Pacha par Henri Brugscheil de monuments egyptiens. 1862-1863. - Recklinghausen, ZÄS 132, 2005Recklinghausen, Daniel von, Ägyptische Quellen zum Judentum. In: ZÄS 132, 2005, 147-160. - Redford, Akhenaten Temple Project IIRedford, Donald B., The Akhenaten Temple Project, Volume II. Rwd-mnw, Foreigners and Inscriptions. 1988. - Redford, Akhenaten Temple ProjectRedford, Donald B., The Akhenaten Temple Project. 1976-1994. + Rec.dMBrugsch, Heinrich, Recueil de monuments égyptiens: dessinés sur lieux et publ. sous les auspices de Son Altesse le Vice-roi d’Égypte Mohammed-Saïd-Pacha par Henri Brugscheil de monuments egyptiens. 1862-1863. + Recklinghausen, Philensis-DekreteRecklinghausen, Daniel von, Die Philensis-Dekrete. Untersuchungen über zwei Synodaldekrete aus der Zeit Ptolemaios’ V. und ihre geschichtliche und religiöse Bedeutung. ÄA 73. 2018. (new) Redford, AkhenatenRedford, Donald B., Akhenaten: The Heretic King. 1984. + Redford, Akhenaten Temple ProjectRedford, Donald B., The Akhenaten Temple Project. 1976-1994. + Redford, Akhenaten Temple Project IIRedford, Donald B., The Akhenaten Temple Project, Volume II. Rwd-mnw, Foreigners and Inscriptions. 1988. Redford, EgyptRedford, Donald B., Egypt, Canaan, and Israel in Ancient Times. 1992. Redford, Eighteenth Dyn.Redford, Donald B., History and Chronology of the Eighteenth Dynasty of Egypt: Seven Studies. 1967. - Redford, in: Fs WilliamsRedford, Donald B., An Offering Inscription from the 2nd Pylon at Karnak. In: Fs Williams, 1982, 125-131. - Redford, in: HyksosRedford, Donald B., Textual Sources for the Hyksos Period. In: Hyksos, 1997, 1-44. - Redford, JAOS 99, 1979Redford, Donald B., A Gate Inscription from Karnak and Egyptian Involvement in Western Asia During the Early 18th Dynasty. In: JAOS 99, 1979, 270-287. Redford, King-ListsRedford, Donald B., Pharaonic King-Lists, Annals and Day-Books. A Contribution to the Study of the Egyptian Sense of History. SSEA Publications 4. 1986. - Redford, SSEAJ 17, 1987Redford, Donald B., The Tod Inscription of Senwosret I and Early 12th Dynasty Involvement in Nubia and the South. In: SSEAJ 17, 1987, 36-55. Redford, Wars Syria and PalestineRedford, Donald B., The Wars in Syria and Palestine of Thutmose III. CHANE 16. 2003. - Redford/Redford, JARCE 26, 1989Redford, Donald B., Redford, Susan, Graffiti and Petroglyphs Old and New from the Eastern Desert. In: JARCE 26, 1989, 3-50. - Reeves, JEA 74, 1988Reeves, Carl Nicholas, New light on Kiya from texts in the British Museum. In: JEA 74, 1988, 91-101. - Regulski/Kahl, MDAIK 66, 2010Regulski, Ilona, Kahl, Jochem, Gesiegelte Objektverschlüsse aus dem Grab des Ninetjer in Saqqara. In: MDAIK 66, 2010, 225-233. Reich, Papyri juristischen InhaltsReich, Nathaniel, Papyri juristischen Inhalts in hieratischer und demotischer Schrift aus dem British Museum. 1914. Reiche, Hymnischer TextReiche, Christina, Ein hymnischer Text in den Gräbern des Ḥwyꜣ, ʾIꜥḥ-ms und Mry-Rꜥ in El-'Amarna: Text und Textsorte, Textanalyse und Textinterpretation. Ein "sozio-kommunikativer" Ansatz. Hrsg. von Junge, Friedrich, Westendorf, Wolfhart. GOF 35. 1998. Reinach, Musée LyonReinach, Adolphe Joseph, Catalogue des antiquités égyptiennes, recueillies dans les fouilles de Koptos en 1910 et 1911, exposées au Musée Guimet de Lyon. 1913. - Reinach/Weill, ASAE 12, 1912Reinach, Adolphe Joseph, Weill, Raymond, Parthénios fils de Paminis 'prostatès' d'Isis à Koptos. In: ASAE 12, 1912, 1-24. - Reineke, AoF 2, 1975Reineke, Walter Friedrich, Zur Ziegelrampe des Papyrus Anastasi I. In: AoF 2, 1975, 5-9. Reineke, Frühgeschichte MathematikReineke, Walter Friedrich, Gedanken und Materialien zur Frühgeschichte der Mathematik in Ägypten. Diss. B (unpubliziert). 1986. - Reineke, in: Fs PrieseReineke, Walter Friedrich, Vier Felsinschriften aus der Festung Askut in Nubien. In: Fs Priese, 2015, 239-246. - Reineke, in: Gs EndesfelderReineke, Walter Friedrich, Sechs Felsinschriften aus der Festung Askut in Nubien. In: Gs Endesfelder, 2017, 267-274. Reinisch, ChrestomathieReinisch, Simon Leo, Ägyptische Chrestomathie. 1873-1875. - Reisner, BMFA 23, 1925Reisner, George Andrew, Excavations in Egypt and Ethiopia 1922-1925. In: BMFA 23, 1925, 17-29. - Reisner, CdE 4, 1928Reisner, George Andrew, La stèle historique de Thoutmès III. In: CdE 4, 1928, 75-79. Reisner, GizaReisner, George Andrew, A History of the Giza Necropolis. 2 vols. 1942, 1952. Reisner, Hearst Medical PapyrusReisner, George Andrew, The Hearst Medical Papyrus. Hieratic Text in 17 Facsimile Plates in Collotype with Introduction and Vocabulary. UCPEA 1. 1905. Reisner, MycerinusReisner, George Andrew, Mycerinus: the temples of the third pyramid at Giza. 1931. - Reisner, SNR 4, 1921Reisner, George Andrew, Historical Inscriptions from Gebel Barkal. In: SNR 4, 1921, 59-75. Reisner, Tomb DevelopmentReisner, George Andrew, The development of the Egyptian tomb down to the accession of Cheops. 1936. - Reisner, ZÄS 66, 1931Reisner, George Andrew, Inscribed Monuments from Gebel Barkal. In: ZÄS 66, 1931, 76-100. - Reisner/Reisner, ZÄS 69, 1933 (1)Reisner, George Andrew, Reisner, Mary B., Inscribed Monuments from Gebel Barkal. Part 2. The Granite Stela of Thutmosis III. In: ZÄS 69, 1933, 24-39. - Reisner/Reisner, ZÄS 69, 1933 (2)Reisner, George Andrew, Reisner, Mary B., Inscribed Monuments from Gebel Barkal. Part 3. The Stela of Sety I. In: ZÄS 69, 1933, 73-78. + ReliefsReliefs and Inscriptions at Karnak. Vol. I-IV. OIP 25, 35, 74, 107. 1936, 1954, 1986. Reliefs at Luxor IReliefs and Inscriptions at Luxor Temple. I. The Festival Procession of Opet in the Colonnade Hall. OIP 112. 1994. - Reliefs IRamses III's Temple within the Great Inclosure of Amon, I. Hrsg. von Nelson, Harold Hayden. OIP 25. 1936. - Reliefs IIRamses III's Temple within the Great Inclosure of Amon, II. Hrsg. von Nelson, Harold Hayden. OIP 35. 1936. + Reliefs IRamses III’s Temple within the Great Inclosure of Amon, I. Hrsg. von Nelson, Harold Hayden. OIP 25. 1936. + Reliefs IIRamses III’s Temple within the Great Inclosure of Amon, II. Hrsg. von Nelson, Harold Hayden. OIP 35. 1936. Reliefs IIIThe Bubastide Portal by the Epigraphic Survey. OIP 74. 1954. Reliefs IVThe Battle Reliefs of King Sety I. OIP 107. 1986. - ReliefsReliefs and Inscriptions at Karnak. Vol. I-IV. OIP 25, 35, 74, 107. 1936, 1954, 1986. Renaud, Le Dialogue du DésespéréRenaud, Odette, Le Dialogue du Désespéré avec son âme. Une interprétation littéraire. CSEG 1. 1991. - Renouf, PSBA 9, 1887Renouf, Peter Le Page, Note on the Inscription of Amenophis III. In: PSBA 9, 1887, 206. Report for 1907-1908The Archaeological Survey of Nubia. Report for 1907-1908. 1910. Report for 1908-1909Firth, Cecil M., The Archaeological Survey of Nubia. Report for 1908-1909. I. Report on the Work on the Season. Catalogue of Graves and their Contents. 1912. Revillout, Corpus PapyrorumCorpus Papyrorum Aegypti, I. Papyrus démotiques du Louvre. II. Papyrus démotiques du British Museum. Hrsg. von Revillout, Eugène. 1885-1902. Reymond, Medical BookA Medical Book from Crocodilopolis. P. Vindob. D. 6257. Hrsg. von Reymond, Eve A. E. MPER N.S. 10. 1976. - Reymond, ZÄS 96, 1969Reymond, Eve A. E., The Children of Tanen. Part II: The God-of-the-Temple in the Edfu Tradition. In: ZÄS 96, 1969, 36-47. RGGDie Religion in Geschichte und Gegenwart. Handwörterbuch für Theologie und Religionswissenschaft. 3., völlig neu bearbeitete Auflage. Hrsg. von Galling, Kurt. 1956-1962. - Ricke, Bemerkungen AR I/IIBemerkungen zur ägyptischen Baukunst des Alten Reichs I. 1944-1950. Ricke, Bemerkungen AR IRicke, Herbert, Bemerkungen zur ägyptischen Baukunst des Alten Reichs I. BeiträgeBf 4. 1944. + Ricke, Bemerkungen AR I/IIBemerkungen zur ägyptischen Baukunst des Alten Reichs I. 1944-1950. Ricke, Bemerkungen AR IIRicke, Herbert, Bemerkungen zur ägyptischen Baukunst des Alten Reiches II. BeiträgeBf 5. 1950. Ricke, HarmachisRicke, Herbert, Der Harmachistempel des Chefren in Giseh. BeiträgeBf 10. 1970. - Ricke, Kamutef-HeiligtumRicke, Herbert, Das Kamutef-Heiligtum Hatschepsut's und Thutmoses' III. in Karnak. Bericht über eine Ausgrabung vor dem Muttempelbezirk. BeiträgeBf 3,2. 1954. - Ricke, NAWG, 1965Ricke, Herbert, Vorbericht über eine Ausgrabung im Totentempel Amenophis' III. In: NAWG, 1965, 199-203. - Ricke, Tempel Nektanebos II.Ricke, Herbert, Die Tempel Nektanebos' II. in Elephantine. BeiträgeBf 6. 1960. - Ricke, TotentempelRicke, Herbert, Der Totentempel Thutmoses' III., baugeschichtliche Untersuchung. BeiträgeBf 3,1. 1939. + Ricke, Kamutef-HeiligtumRicke, Herbert, Das Kamutef-Heiligtum Hatschepsut’s und Thutmoses’ III. in Karnak. Bericht über eine Ausgrabung vor dem Muttempelbezirk. BeiträgeBf 3,2. 1954. + Ricke, Tempel Nektanebos II.Ricke, Herbert, Die Tempel Nektanebos’ II. in Elephantine. BeiträgeBf 6. 1960. + Ricke, TotentempelRicke, Herbert, Der Totentempel Thutmoses’ III., baugeschichtliche Untersuchung. BeiträgeBf 3,1. 1939. Ricke, Userkaf-SH I/IIRicke, Herbert, Das Sonnenheiligtum des Königs Userkaf. 1: Der Bau. 2: Die Funde. BeiträgeBf 7, 8. 1965-1969. Rickert, Gottheit und GabeRickert, Alexa, Gottheit und Gabe. Eine ökonomische Prozession im Soubassement des Opettempels von Karnak und ihre Parallele in Kôm Ombo. SSR 4. 2011. Rickert/Ventker, Altägyptische EnzyklopädienAltägyptische Enzyklopädien. Die Soubassements in den Tempeln der griechisch-römischen Zeit. Hrsg. von Rickert, Alexa, Ventker, Bettina. SSR 7. 2014. - Riesterer, Ägyptisches Museum Kairo IRiesterer, Peter P., Das Ägyptische Museum Kairo. Kunstschätze aus dem Ägyptischen Museum Kairo, Bd. I: Ausgewählte Kostbarkeiten. 1963. Riesterer, Ägyptisches Museum KairoDas Ägyptische Museum Kairo. 1963, 1965. - Rilly, BSFE 191-192, 2015Rilly, Claude, Le miroir brisé de la reine Tiyi: première saison du projet QSAP sur le temple de Sedeinga (Soudan). In: BSFE 191-192, 2015, 39-59. - Ringling/Schmitz, GM 44, 1981Ringling, Erika, Schmitz, Jürgen, Zum Begriff ḥs.t. In: GM 44, 1981, 57-58. - Riqqeh and Memphis VIEngelbach, Reginald, Riqqeh and Memphis VI. In: BSAE 25, 1915, . + Riesterer, Ägyptisches Museum Kairo IRiesterer, Peter P., Das Ägyptische Museum Kairo. Kunstschätze aus dem Ägyptischen Museum Kairo, Bd. I: Ausgewählte Kostbarkeiten. 1963. + RITAKitchen, Kenneth A., Ramesside Inscriptions. Translated & Annotated. Translations. 1993-2014. RITA IKitchen, Kenneth A., Ramesside Inscriptions. Translated & Annotated: Translations, I. Ramesses I, Sethos I and Contemporaries. 1993. RITA IIKitchen, Kenneth A., Ramesside inscriptions. Translated & Annotated: Translations, II. Ramesses II, royal inscriptions. 1996. RITA IIIKitchen, Kenneth A., Ramesside Inscriptions. Translated & Annotated: Translations, III. Ramesses II, his Contemporaries. 2000. @@ -4026,113 +2639,74 @@

      Abbreviat RITA VKitchen, Kenneth A., Ramesside inscriptions. Translated & Annotated: Translations, V. Setnakht, Ramesses III, and contemporaries. 2008. RITA VIKitchen, Kenneth A., Ramesside Inscriptions. Translated & Annotated: Translations, VI. Ramses IV to XI and Contemporaries. 2012. RITA VIIKitchen, Kenneth A., Ramesside inscriptions. Translated & Annotated: Translations, VII. Addenda to I-VI. 2014. - RITAKitchen, Kenneth A., Ramesside Inscriptions. Translated & Annotated. Translations. 1993-2014. + RITANCKitchen, Kenneth A., Davies, Benedict G., Ramesside Inscriptions. Translated & Annotated. Notes and Comments. 1993-2014. RITANC IKitchen, Kenneth A., Ramesside inscriptions. Translated & Annotated: Notes and Comments, I. Ramesses I, Sethos I and contemporaries. 1993. RITANC IIKitchen, Kenneth A., Ramesside Inscriptions. Translated & Annotated: Notes and Comments, II. Ramesses II, Royal Inscriptions. 1999. RITANC IIIDavies, Benedict G., Ramesside Inscriptions. Translated & Annotated: Notes and Comments, III. Ramesses II, His Contemporaries. 2013. RITANC IVDavies, Benedict G., Ramesside Inscriptions. Translated & Annotated: Notes and Comments, IV. Merenptah and the Late Nineteenth Dynasty. 2014. - RITANCKitchen, Kenneth A., Davies, Benedict G., Ramesside Inscriptions. Translated & Annotated. Notes and Comments. 1993-2014. - Ritner, GM 164, 1998Ritner, Robert K., Fictive Adoptions or Celibate Priestesses? In: GM 164, 1998, 85-90. Ritner, Libyan AnarchyRitner, Robert K., The Libyan Anarchy. Inscriptions from Egypt’s Third Intermediate Period. 2009. Ritner, MechanicsRitner, Robert K., The Mechanics of Ancient Egyptian Magical Practice. SAOC 54. 1993. - Ritner/Moeller, in: Egyptian CursesRitner, Robert K., Moeller, Nadine, The Ahmose Tempest Stela. An Ancient Egyptian Account of a Natural Catastrophe. In: Egyptian Curses, 2014, 63-81. - Ritner/Moeller, JNES 73, 2014Ritner, Robert K., Moeller, Nadine, The Ahmose 'Tempest Stela', Thera and Comparative Chronology. In: JNES 73, 2014, 1-19. Ritter, VerbalsystemRitter, Thomas, Das Verbalsystem der königlichen und privaten Inschriften. XVIII. Dxynastie bis einschließlich Amenophis III. GOF 30. 1995. + Roberson, AOTSBRoberson, Joshua Aaron, The Awakening of Osiris and the Transit of the Solar Barques. OBO 262. 2013. (new) Robichon/Varille, En ÉgypteRobichon, Clément, Varille, Alexandre, En Égypte: cent soixante-cinq photographies. 1937. - Robichon/Varille, Temple Amenhotep, Fils de HapouVarille, Alexandre, Robichon, Clément, Le temple du scribe royal Amenhotep, fils de Hapou I. In: FIFAO 11, 1936, . Robins, ArtRobins, Gay, The Art of Ancient Egypt. 1997. - Robins, GM 56, 1982Robins, Gay, Meritamun, Daughter of Ahmose, and Meritamun, Daughter of Thutmose III. In: GM 56, 1982, 79-87. - Robins, JEA 76, 1990Robins, Gay, Rezension: Lana Troy, Patterns of Queenship in Ancient Egyptian Myth and History. In: JEA 76, 1990, 214-220. - Roccati, BSFE 99, 1984Roccati, Alessandro, Les papyrus de Turin. In: BSFE 99, 1984, 9-27. - Roccati, in: Dio nella BibbiaRoccati, Alessandro, Aspetti di Dio nella civiltà egizia. In: Dio nella Bibbia, 1980, 218-231. - Roccati, in: Drinking in Ancient SocietiesRoccati, Alessandro, Liste alimentari nella tradizione di testi religiosi egizi. In: Drinking in Ancient Societies, 1994, 441-469. - Roccati, in: Fs HaikalRoccati, Alessandro, Frammenti di un racconto mitologico. In: Fs Haikal, 2003, 231-233. - Roccati, in: Kousoulis/Lazaridis, Tenth International Congress of Egyptologists IIRoccati, Alessandro, Alien speech: some remarks on the language of the Kehek. In: Kousoulis/Lazaridis, Tenth International Congress of Egyptologists II, 2015, 1531-1535. - Roccati, JEA 54, 1968Roccati, Alessandro, Una lettera inedita dell' Antico Regno. In: JEA 54, 1968, 14-22. - Roccati, JEA 68, 1982Roccati, Alessandro, Su un passo di Hardjedef. In: JEA 68, 1982, 16-19. - Roccati, LittératureRoccati, Alessandro, La littérature historique sous l'Ancien Empire égyptien. LAPO 11. 1982. + Roccati, LittératureRoccati, Alessandro, La littérature historique sous l’Ancien Empire égyptien. LAPO 11. 1982. Roccati, Magica TaurinensiaRoccati, Alessandro, Magica Taurinensia. Il grande papiro magico di Torino e i suoi duplicati. AnOr 56. 2011. - Roccati, Or 70, 2001Roccati, Alessandro, Review: Leitz, Christian 1999. Magical and medical papyri of the New Kingdom. In: Leitz, Magical and Medical Papyri, 2001, 193-195. - Roccati, OrAnt 14, 1975Roccati, Alessandro, Scavi nel Museo Egizio di Torino, VII: tra i papiri torines. In: OrAnt 14, 1975, 243-253. Roccati, Papiro Ieratico N. 54003Roccati, Alessandro, Papiro Ieratico n. 54003, Estratti magici e rituali del Primo Medio Regno. 1970. - Roccati, RSO 42, 1967Roccati, Alessandro, Due lettere al morti. In: RSO 42, 1967, 323-328. Roccati, SapienzaRoccati, Alessandro, Sapienza egizia. La letteratura educativa in Egitto durante il III millennio a.C. 1994. Roccati/Siliotti, La magia in EgittoLa magia in Egitto ai tempi dei faraoni: atti, convegno internazionale di studi, Milano, 29-31 ottobre 1985. Hrsg. von Roccati, Alessandro, Siliotti, Alberto. 1987. Rochholz, Schöpfung, Feindvernichtung, RegenerationRochholz, Matthias, Schöpfung, Feindvernichtung, Regeneration. Untersuchung zum Symbolgehalt der machtgeladenen Zahl 7 im alten Ägypten. ÄUAT 56. 2002. + Roeder, Ägyptische ReligionDie ägyptische Religion in Texten und Bildern. BAW. 1959-1961 (4 Bde.). Roeder, Ägyptische Religion IIRoeder, Günther, Die ägyptische Religion in Texten und Bildern II. Mythen und Legenden um ägyptische Gottheiten und Pharaonen. BAW. 1960. Roeder, Ägyptische Religion IIIRoeder, Günther, Die ägyptische Religion in Texten und Bildern III. Kulte, Orakel und Naturverehrung im alten Ägypten. 1960. - Roeder, Ägyptische ReligionDie ägyptische Religion in Texten und Bildern. BAW. 1959-1961 (4 Bde.). Roeder, Amarna-ReliefsRoeder, Günther, Amarna-Reliefs aus Hermopolis. Ausgrabungen der Deutschen Hermopolis-Expedition in Hermopolis 1929-1939. 1969. Roeder, HermopolisRoeder, Günther, Hermopolis 1929 - 1939 Ausgrabungen der Deutschen Hermopolis-Expedition in Hermopolis, Ober-Ägypten. 1959. Roeder, Urkunden zur ReligionRoeder, Günther, Urkunden zur Religion des Alten Ägypten. 1915. - Roik, GM 119, 1990Roik, Elke, Das Nbj-Maßsystem ein bisher unerforschtes altägyptisches Längenmaßsystem. In: GM 119, 1990, 91-100. Römer, Gottes- und PriesterherrschaftRömer, Malte, Gottes- und Priesterherrschaft in Ägypten am Ende des Neuen Reiches. Ein religionsgeschichtliches Phänomen und seine Grundlagen. ÄUAT 21. 1994. - Römer, in: Fs FechtRömer, Malte, Der Kairener Hymnus an Amun-Re: Zur Gliederung von pBoulaq 17. In: Fs Fecht, 1987, 405-428. - Römer, SAK 19, 1992Römer, Malte, Der Handel und die Kaufleute im Alten Ägypten. In: SAK 19, 1992, 258-284. Römheld, WeisheitRömheld, Diethard, Wege der Weisheit. Die Lehren Amenemopes und Proverbien 22,17 - 24,22. BZAW 184. 1989. Römheld, WeisheitslehreRömheld, Diethard, Die Weisheitslehre im Alten Orient. Elemente einer Formgeschichte. Biblische Notizen Beihefte 4. 1989. Rommelaere, ChevauxRommelaere, Catherine, Les chevaux du Nouvel Empire égyptien: origines, races, harnachement. CEA 3. 1991. Rondot, TempleRondot, Vincent, Le temple de Soknebtynis et son dromos. Tebtynis 2. FIFAO 50. 2004. - Röpke, in: Erzählen in frühen Hochkulturen IRöpke, Frank, Überlegungen zum "Sitz im Leben" der Kahuner homosexuellen Episode zwischen Horus und Seth (pKahun VI.12 = pUniversity College London 32158, rto.). In: Erzählen in frühen Hochkulturen I, 2009, 239-290. Röpke, Mythologische Erzählungen in den HeilstextenRöpke, Frank, Mythologische Erzählungen in den Heilstexten. 2018. - Rosati, in: Donadoni Roveri, Ägypten IIRosati, Gloria, Die Stelen des Mittleren Reichs. In: Donadoni Roveri, Ägypten II, 1988, 104-113. Rosati/Buranelli, Vatikanische MuseenRosati, Gloria, Buranelli, Francesco, Vatikanische Museen, Etruskische und Ägyptische Kunst. 1983. Rösch/Simon, PurityHow purity is made. Hrsg. von Rösch, Petra Hildegard, Simon, Udo Gerald. 2012. Roscher, Lex. Myth.Roscher, Wilhelm H., Ausführliches Lexikon der griechischen und römischen Mythologie. 1884-1937. - Rosellini, Monumenti civili, storici, del cultoRosellini, Ippolito, I monumenti dell'Egitto e della Nubia, disegnati dalla Spedizione Scientifico-Letteraria Toscana in Egitto. Distribuiti in ordine di materie, interpretati ed illustrati dal Ippolito Rosellini. 1832-1844. - Rosenvasser, JEA 20, 1934Rosenvasser, Abraham, A New Duplicate Text of the Story of Sinuhe. In: JEA 20, 1934, 47-50. - Rosenvasser, RIHAO 5, 1980 Rosenvasser, Abraham, Aksha: Otra versión de la "Estela de Kuban". In: Revista del Instituto de Historia Antigua Oriental 5, 1980, 7-28. - Rosmorduc, Egypte 34, 2004Rosmorduc, Serge, Histoire de fantôme égyptien. In: Egypte 34, 2004, 51-58. - Rosmorduc, RdE 60, 2009Rosmorduc, Serge, De quelques passages de la stèle d'Israël. In: RdE 60, 2009, 139-146. + Rosellini, Monumenti civili, storici, del cultoRosellini, Ippolito, I monumenti dell’Egitto e della Nubia, disegnati dalla Spedizione Scientifico-Letteraria Toscana in Egitto. Distribuiti in ordine di materie, interpretati ed illustrati dal Ippolito Rosellini. 1832-1844. Roß, Schutz von KindernRoß, Anja, Der Schutz von Kindern im alten Ägypten: die religiösen und soziokulturellen Aspekte der Oracular Amuletic Decrees. GM Beiheft 17. 2019. Rößler-Köhler, Kapitel 17Rößler-Köhler, Ursula, Kapitel 17 des ägyptischen Totenbuchs. GOF 10. 1979. Roth, Egyptian PhylesRoth, Ann Macy, Egyptian Phyles in the Old Kingdom. The Evolution of a System of Social Organization. SAOC 48. 1991. Roth, Giza Mastabas 6Roth, Ann Macy, A Cemetery of Palace Attendants. Including G 2084-2099, G 2230+2231, and G 2240. Giza Mastabas 6. 1995. - Roth, in: Fs Gundlach IIRoth, Silke, Der Herrscher im Fest: zur rituellen Herrschaftslegitimation des ägyptischen Königs und ihrer Aussendarstellung im Rahmen von Festen. In: Fs Gundlach II, 2006, 205-249. - Roth, in: Gundlach/Rößler-Köhler, RamessidenzeitRoth, Silke, "Da wurden an diesem Tage die zwei großen Länder zu einem Lande": zum Verhältnis von Königsideologie und internationaler Heiratspolitik in der Zeit Ramses' II. In: Gundlach/Rößler-Köhler, Ramessidenzeit, 2003, 175-195. - Roth, JEA 78, 1992Roth, Ann Macy, The psš-kf and the 'Opening of the Mouth' Ceremony: A Ritual of Birth and Rebirth. In: JEA 78, 1992, 113-147. Roth, KönigsmütterRoth, Silke, Die Königsmütter des Alten Ägypten von der Frühzeit bis zum Ende der 12. Dynastie. ÄUAT 46. 2001. Rothöhler, DMTRothöhler, Benedikt, Neue Gedanken zum Denkmal memphitischer Theologie. 2004. http://www.ub.uni-heidelberg.de/archiv/7030 - Rougé, CRAIBL 5, 1861Rougé, Emmanuel de, Note sur les principaux résultats des fouilles exécutées en Égypte par les ordres de S. A. le Vice-roi. In: CRAIBL 5, 1861, 201-212. + Rougé, Inscr. hiéro.Rougé, Emmanuel de, Inscriptions hiéroglyphiques copiées en Égypte pendant la mission scientifique de M. le vicomte Emmanuel de Rougé. EE 9-12. 1877-1879 (4. Bde.). Rougé, Inscr. hiéro. IRougé, Emmanuel de, Inscriptions hiéroglyphiques copiées en Égypte pendant la mission scientifique de M. le vicomte Emmanuel de Rougé (T. I). EE 9. 1877. Rougé, Inscr. hiéro. IIIRougé, Emmanuel de, Inscriptions hiéroglyphiques copiées en Égypte pendant la mission scientifique de M. le vicomte Emmanuel de Rougé (T. III). EE 11. 1878. Rougé, Inscr. hiéro. IVRougé, Emmanuel de, Inscriptions hiéroglyphiques copiées en Égypte pendant la mission scientifique de M. le vicomte Emmanuel de Rougé (T. IV). EE 12. 1879. - Rougé, Inscr. hiéro.Rougé, Emmanuel de, Inscriptions hiéroglyphiques copiées en Égypte pendant la mission scientifique de M. le vicomte Emmanuel de Rougé. EE 9-12. 1877-1879 (4. Bde.). Rougé, Musée du LouvreRougé, Emmanuel de, Notice sommaire des monuments égyptiens exposés dans les galeries du Musée du Louvre. 1876 (Nouv. éd.). - Rougé, Notice des monuments 3. Ed.Rougé, Emmanuel de, Notice des monuments exposés dans la galerie d'antiquités égyptiennes (salle du rez-de-chaussée) au Musée du Louvre. 1872 (3. Aufl.). - Rougé, Notice des monumentsRougé, Emmanuel de, Notice des monuments exposés dans la galerie d'antiquités égyptiennes (salle du rez-de-chaussée) au Musée du Louvre. 1849. - Rougé, RAr n. s. 4, 1861Rougé, Emmanuel de, Étude sur divers monuments du règne de Toutmès III découverts à Thèbes par M. Mariette. In: RAr n. s. 4, 1861, 196-222, 344-372. + Rougé, Notice des monumentsRougé, Emmanuel de, Notice des monuments exposés dans la galerie d’antiquités égyptiennes (salle du rez-de-chaussée) au Musée du Louvre. 1849. + Rougé, Notice des monuments 3. Ed.Rougé, Emmanuel de, Notice des monuments exposés dans la galerie d’antiquités égyptiennes (salle du rez-de-chaussée) au Musée du Louvre. 1872 (3. Aufl.). Roulin, Livre de la NuitRoulin, Gilles, Le Livre de la Nuit. Ire-IIe partie. OBO 147/1-2. 1996. - Rowe, ASAE 39, 1939Rowe, Alan, Three new stelae from the south-eastern desert. In: ASAE 39, 1939, 187-194. Rowe, Beth-ShanRowe, Alan, The topography and history of Beth-Shan: with details of the Egyptian and other inscriptions found on the site. PPMUP 1. 1930. Rowe, ScarabsRowe, Alan, A catalogue of Egyptian scarabs, scaraboids, seals and amulets in the Palestine Archaeological Museum. Government of Palestine, Department of Antiquities. 1936. + RPNRanke, Hermann, Die altägyptischen Personennamen. 1935-1977. RPN IRanke, Hermann, Die ägyptischen Personennamen. Band I. Verzeichnis der Namen. 1935. RPN IIRanke, Hermann, Die ägyptischen Personennamen. Band II. Einleitung. Form und Inhalt der Namen. Geschichte der Namen. Vergleiche mit anderen Namen. Nachträge und Zusätze zu Band I. Umschreibungslisten. 1952. RPN IIIRanke, Hermann, Die ägyptischen Personennamen, Band III. Verzeichnis der Bestandteile. 1977. - RPNRanke, Hermann, Die altägyptischen Personennamen. 1935-1977. - Rubinstein, VDI, 1952Rubinstein, R. I., Две стелы XI династии из ГМИИ им. А. С. Пушкина [Deux stèles de la XIème dynastie conservées au Musée des Beaux Arts Pouchkine]. In: VDI, 1952, 126-133. - Russmann, in: Hatschepsut (Ausstellungskat.)Russmann, Edna R., Art in Transition. The Rise of the 18th Dynasty and the Emergence of the Thutmoside Style in Sculpture and Relief. In: Hatschepsut (Ausstellungskat.), 2005, 23-27. Russmann/Strudwick/James, BM TreasuresRussmann, Edna R., Strudwick, Nigel, James, Thomas G. H., Temples and Tombs. Treasures of Egyptian Art from the British Museum. 2006. - Russo, JEA 93, 2007Russo, Barbara, Some Notes on the Funerary Cult in the Early Middle Kingdom: Stela BM EA 1164. In: JEA 93, 2007, 195-209. Ryhiner, LotusRyhiner, Marie-Louise, L’offrande du lotus dans les temples égyptiens de l’époque tardive. 1986. - Ryholt, in: Tebtynis und Soknopaiu NesosRyholt, Kim, On the Contents and Nature of the Tebtunis Temple Library. A Status Report. In: Tebtynis und Soknopaiu Nesos, 2005, 141-170. - Ryholt, JEA 79, 1993Ryholt, Kim, A Pair of Oracle Petitions Addressed to Horus-of-the-Camp. In: JEA 79, 1993, 189-198. Ryholt, Narrative LiteratureRyholt, Kim, Narrative Literature from the Tebtunis Temple Library. CNI Publications 35. 2012. Ryholt, Petese Stories IIRyholt, Kim, The Petese Stories II (P. Petese II). CNI Publications 29. 2006. Ryholt, Political SituationRyholt, Kim, The Political Situation in Egypt during the Second Intermediate Period, c. 1800-1550 B.C. CNI Publications 20. 1997. + Ryholt/Quack, Demotic Literary TextsRyholt, Kim, Quack, Joachim Friedrich, Demotic literary texts from Tebtunis and beyond. The Carlsberg Papyri 11. 2019. (new) Saad, Ceiling stelaeSaad, Zaki Yusef, Ceiling stelae in Second Dynasty tombs from the excavations at Helwan. CASAE 21. 1957. Saad, ḤilwānSaad, Zaki Yusef, al-Ḥafā’ir al-malakiyya bi-Ḥilwān – al-fann wa-al-ḥaḍāra fī al-usratayn alūlā wa-al-ṯāniya (Les fouilles royales à Hélouan. L'art et la civilisation à la première et la seconde dynastie). 1952. - Saad/Manniche, JEA 57, 1971Manniche, Lise, Saad, Ramadan, A Unique Offering List of Amenophis IV Recently Found at Karnak. In: JEA 57, 1971, 70-72. - Sabek, in: Fs Endesfelder/Priese/Reineke/WenigSabek, Yasser, Bemerkungen zu zwei ägyptischen Wörtern. In: Fs Endesfelder, Priese, Reineke, Wenig, 2001, 431-442. - Sabek, ZÄS 129, 2002Sabek, Yasser, Der hieratische Papyrus Berlin P 10497. In: ZÄS 129, 2002, 75-84. Sacred SpaceSacred Space and Sacred Function in Ancient Thebes. Hrsg. von Dorman, Peter, Bryan, Betsy M. SAOC 61. 2007. + Sadek, Wadi el-HudiSadek, Ashraf Iskander, The Amethyst Mining Inscriptions of Wadi el-Hudi. Part I-II. 1980, 1985. Sadek, Wadi el-Hudi ISadek, Ashraf Iskander, The Amethyst Mining Inscriptions of Wadi el-Hudi. Part I: Text. 1980. Sadek, Wadi el-Hudi IISadek, Ashraf Iskander, The Amethyst Mining Inscriptions of Wadi el-Hudi. Part II: Additional Texts, Plates. 1985. - Sadek, Wadi el-HudiSadek, Ashraf Iskander, The Amethyst Mining Inscriptions of Wadi el-Hudi. Part I-II. 1980, 1985. Saeculum, WGSaeculum Weltgeschichte. Hrsg. von Franke, Herbert u.a. Saeculum. 1965-1975 (1. Aufl.). Saleh/Sourouzian, Ägyptisches Museum KairoSaleh, Mohamed, Sourouzian, Hourig, Die Hauptwerke im Ägyptischen Museum Kairo. 1986. Saleh/Sourouzian, Egyptian Museum CairoSaleh, Mohamed, Sourouzian, Hourig, The Egyptian Museum Cairo (Official Catalogue). 1987. - Sambin, BIFAO 87, 1987Sambin, Chantal, Les objets šbt des musées. In: BIFAO 87, 1987, 275-292. Sanchez/Meltzer, Edwin Smith PapyrusSanchez, Gonzalo M., Meltzer, Edmund S., The Edwin Smith Papyrus. Updated Translation of the Trauma Treatise and Modern Medical Commentaries. 2012. Sander-Hansen, GottesweibSander-Hansen, Constantin Emil, Das Gottesweib des Amun. 1940. Sander-Hansen, GrammatikSander-Hansen, Constantin Emil, Studien zur Grammatik der Pyramidentexte. 1956. @@ -4140,30 +2714,15 @@

      Abbreviat Sander-Hansen, MetternichsteleSander-Hansen, Constantin Emil, Die Texte der Metternichstele. 1956. Sandman Holmberg, PtahSandman, Maj, The God Ptah. 1946. Sandman, Texts from AkhenatenSandman, Maj, Texts from the time of Akhenaten. BAe 8. 1938. - Satzinger, in: Fs GoedickeSatzinger, Helmut, Übersetzungsvorschläge und Anmerkungen zu einigen neuägyptischen Texten. In: Fs Goedicke, 1994, 233-242 . - Satzinger, JbKHSWien 77, 1981Satzinger, Helmut, Der heilige Stab als Kraftquelle des Königs: Versuch einer Funktionsbestimmung der ägyptischen Stabträger-Statuen. In: JbKHSWien 77, 1981, 9-43. + Satzinger, Das Kunsthistorische Museum in WienSatzinger, Helmut, Das Kunsthistorische Museum in Wien: die Ägyptisch-Orientalische Sammlung. 1994. (new) Satzinger, Neg. KonstruktionenSatzinger, Helmut, Die negativen Konstruktionen im Alt- und Mittelägyptischen. MÄS 12. 1968. - Satzinger, ZÄS 113, 1986Satzinger, Helmut, Syntax der Präpositionsadjektive ('Präpositionsnisben'). In: ZÄS 113, 1986, 141-153. Saunders, TransitionSaunders, John B. de C. M., The Transition from Ancient Egyptian to Greek Medicine. 1963. - Sauneron, BIFAO 51, 1952Sauneron, Serge, Le 'Chancelier du dieu' dans son double rôle d'embaumeur et de prêtre d'Abydos. In: BIFAO 51, 1952, 137-171. - Sauneron, BIFAO 55, 1956Sauneron, Serge, Sakhebou (troisième article). In: BIFAO 55, 1956, 61-64. - Sauneron, BIFAO 57, 1958Sauneron, Serge, Une recette égyptienne de collyre. In: BIFAO 57, 1958, 157-161. - Sauneron, BIFAO 62, 1964Sauneron, Serge, Remarques de philologie et d'étymologie (§§26 - 35). In: BIFAO 62, 1964, 15-31. - Sauneron, BIFAO 64, 1966Sauneron, Serge, Remarques de philologie et d'étymologie (§§ 36 - 45). In: BIFAO 64, 1966, 1-10. - Sauneron, in: Livre du CentenaireSauneron, Serge, Deux pages d'un texte littéraire inédit: Papyrus Deir el-Médineh 39. In: Livre du Centenaire, 1980, 135-141. - Sauneron, Kêmi 18, 1968Sauneron, Serge, Les désillusions de la guerre asiatique (Pap. Deir el-Médinéh 35). In: Kêmi 18, 1968, 17-27. Sauneron, OphiologieSauneron, Serge, Un traité égyptien d’ophiologie. Papyrus du Brooklyn Museum No 47.218.48 et .85. BiGen 11. 1989. Sauneron, Papyrus magique illustréSauneron, Serge, Le papyrus magique illustré de Brooklyn (Brooklyn Mus. 47.218.156). 1970. - Sauneron, RdE 15, 1963Sauneron, Serge, Remarques de philologie et d'étymologie. In: RdE 15, 1963, 49-62. - Sauneron, Rituel de l'embaumementSauneron, Serge, Rituel de l’embaumement, Pap. Boulaq III Pap. Louvre 5.158. 1952. + Sauneron, Rituel de l’embaumementSauneron, Serge, Rituel de l’embaumement, Pap. Boulaq III Pap. Louvre 5.158. 1952. Säve-Söderbergh, Ägypten und NubienSäve-Söderbergh, Torgny, Ägypten und Nubien, ein Beitrag zur Geschichte altägyptischer Aussenpolitik. 1941. - Säve-Söderbergh, JEA 35, 1949Säve-Söderbergh, Torgny, A Buhen Stela from the Second Intermediate Period (Kharṭūm No. 18). In: JEA 35, 1949, 50-58. - Säve-Söderbergh, JEA 37, 1951Säve-Söderbergh, Torgny, The Hyksos Rule in Egypt. In: JEA 37, 1951, 53-71. - Säve-Söderbergh, Kush 4, 1956Säve-Söderbergh, Torgny, The Nubian Kingdom of the Second Intermediate Period. In: Kush 4, 1956, 54-61. Sawi/Gomaà, PanehsiSawi, Ahmed el-, Gomaà, Farouk, Das Grab des Panehsi, Gottesvaters von Heliopolis in Matariya. ÄUAT 23. 1993. - Sayce, PSBA 9, 1887Sayce, Archibald Henry, A dated inscription of Amenophis III. In: PSBA 9, 1887, 195-197. - Sayed, BIFAO 80, 1980El-Sayed, Ramadan, A propos de la statue de Pasar CG. 630 au Musée du Caire. In: BIFAO 80, 1980, 207-231. - Sayed, RdE 29, 1977Sayed, Abdel Monem A. H., Discovery of the Site of the 12th Dynasty Port at Wadi Gawasis on the Red Sea Shore. (Preliminary Report on the Excavations of the Faculty of Arts, University of Alexandria, in the Eastern Desert of Egypt - March 1976). In: RdE 29, 1977, 138-178. + SBSammelbuch griechischer Urkunden aus Ägypten. Hrsg. von Rupprecht, Hans-Albert u.a. 1915-2016. SB 1Preisigke, Friedrich, Sammelbuch Griechischer Urkunden aus Ägypten. SB 1. 1915. SB 10Kießling, Emil, Sammelbuch Griechischer Urkunden aus Ägypten. SB 10. 1971. SB 11Kießling, Emil, Sammelbuch Griechischer Urkunden aus Ägypten. SB 11. 1973. @@ -4180,8 +2739,8 @@

      Abbreviat SB 19,2Rupprecht, Hans-Albert, Sammelbuch Griechischer Urkunden aus Ägypten 19,2 (Index zu Band 18, Teil 2, Abschnitt 9). SB 19,2. 2001. SB 2Preisigke, Friedrich, Sammelbuch Griechischer Urkunden aus Ägypten. SB 2. 1922. SB 20Rupprecht, Hans-Albert, Sammelbuch Griechischer Urkunden aus Ägypten 20. SB 20. 1997. - SB 21,2Rupprecht, Hans-Albert, Sammelbuch Griechischer Urkunden aus Ägypten 21,2 (Index zu Band 20, Teil 2, Abschnitt 9). SB 21,2. 2002. SB 21Rupprecht, Hans-Albert, Sammelbuch Griechischer Urkunden aus Ägypten 21 (Index zu Band 20). SB 21. 1998. + SB 21,2Rupprecht, Hans-Albert, Sammelbuch Griechischer Urkunden aus Ägypten 21,2 (Index zu Band 20, Teil 2, Abschnitt 9). SB 21,2. 2002. SB 22Rupprecht, Hans-Albert, Sammelbuch Griechischer Urkunden aus Ägypten 22 (Nr. 15203-15874). SB 22. 2001. SB 23Rupprecht, Hans-Albert, Sammelbuch Griechischer Urkunden aus Ägypten 23 (Index zu Bd. 22). SB 23. 2002. SB 24Rupprecht, Hans-Albert, Sammelbuch Griechischer Urkunden aus Ägypten 24 (Nr. 15875-16340). SB 24. 2003. @@ -4193,35 +2752,22 @@

      Abbreviat SB 7Kießling, Emil, Sammelbuch Griechischer Urkunden aus Ägypten. SB 7. 1964. SB 8Kießling, Emil, Sammelbuch Griechischer Urkunden aus Ägypten. SB 8. 1967. SB 9Kießling, Emil, Sammelbuch Griechischer Urkunden aus Ägypten. SB 9. 1969. - SBSammelbuch griechischer Urkunden aus Ägypten. Hrsg. von Rupprecht, Hans-Albert u.a. 1915-2016. Scalf, Passports to EternityScalf, Foy David, III, Passports to Eternity: Formulaic Demotic Funerary Texts and the Final Phase of Egyptian Funerary Literature in Roman Egypt. Diss. 2014. - Scamuzzi, in: Fs Rosellini, StudiScamuzzi, Ernesto, Si-Ment-wōser (Stele inv. n. 6365, Museo Egizio di Firenze). In: Fs Rosellini, Studi, 1955, 253-259. Schad, EntdeckungSchad, Brigitte, Die Entdeckung des "Briefes" als literarisches Ausdrucksmittel in der Ramessidenzeit. Antiquitates 34. 2006. Schade-Busch, KönigsideologieSchade-Busch, Mechthild, Zur Königsideologie Amenophis’ III. Analyse der Phraseologie historischer Texte der Voramarnazeit. HÄB 35. 1992. Schaedel, Listen des pHarrisSchaedel, Herbert D., Die Listen des großen Papyrus Harris, ihre wirtschaftliche und politische Ausdeutung. LÄS 6. 1936. - Schaeffer, Syria 15, 1934Schaeffer, Claude F.-A., Les fouilles de Ras Shamra, cinquième campagne (printemps 1933): rapport sommaire. Mit Anhang: Montet, Note sur les inscriptions de Sanousrit-Ankh. In: Syria 15, 1934, 105-136. Schäfer, AmarnaSchäfer, Heinrich, Amarna in Religion und Kunst. SDOG 7. 1931. Schäfer, BildnisSchäfer, Heinrich, Das altägyptische Bildnis. LÄS 5. 1936. Schäfer, Die aethiopische KönigsinschriftSchäfer, Heinrich, Die aethiopische Königsinschrift des Berliner Museums. 1901. Schäfer, KunstSchäfer, Heinrich, Von ägyptischer Kunst. Eine Grundlage, 4. verbesserte Auflage herausgegeben und mit einem Nachwort versehen von Emma Brunner-Traut. 1963. - Schäfer, MDAIK 4, 1933Schäfer, Heinrich, Der Reliefschmuck der Berliner Tür aus der Stufenpyramide und der Königstitel Ḥr-nb 𓅃𓎱. In: MDAIK 4, 1933, 1-17. Schäfer, MysterienSchäfer, Heinrich, Die Mysterien des Osiris in Abydos unter König Sesostris III. nach dem Denkstein des Oberschatzmeisters I-cher-nofret im Berliner Museum. UGAÄ 4. 1904. - Schäfer, OLZ 32, 1929Schäfer, Heinrich, König Amenophis II als Meisterschütz. In: OLZ 32, 1929, 233-244. - Schäfer, SPAW 26, 1919Schäfer, Heinrich, Die Anfänge der Reformation Amenophis des IV. In: SPAW 26, 1919, 477-484. - Schäfer, ZÄS 42, 1905Schäfer, Heinrich, Ein Zug nach der großen Oase unter Sesostris I. In: ZÄS 42, 1905, 124-128. - Schäfer, ZÄS 55, 1918Schäfer, Heinrich, Altes und Neues zur Kunst und Religion von Tell el-Amarna. In: ZÄS 55, 1918, 1-43. - Schäfer, ZÄS 67, 1931Schäfer, Heinrich, Die kupferne Zielscheibe in der Sphinxinschrift Thutmosis des IV. In: ZÄS 67, 1931, 92-95. Schäfer/Andrae, KunstSchäfer, Heinrich, Andrae, Ernst Walter, Die Kunst des alten Orients. PKG 2. 1925. + Scharff, Altertümer der Vor- und Frühzeit ÄgyptensScharff, Alexander, Die Altertümer der Vor- und Frühzeit Ägyptens, Bd. 1-2. MÄSB 4-5. 1929-1931. Scharff, Altertümer der Vor- und Frühzeit Ägyptens IScharff, Alexander, Die Altertümer der Vor- und Frühzeit Ägyptens, 1. Teil: Werkzeuge, Waffen, Gefäße. MÄSB 4. 1931. Scharff, Altertümer der Vor- und Frühzeit Ägyptens IIScharff, Alexander, Die Altertümer der Vor- und Frühzeit Ägyptens, 2. Teil: Bestattung, Kunst, Amulette und Schmuck, Geräte zur Körperpflege, Spiel- und Schreibgeräte, Schnitzereien aus Holz und Elfenbein, Verschiedenes. MÄSB 5. 1929. - Scharff, Altertümer der Vor- und Frühzeit ÄgyptensScharff, Alexander, Die Altertümer der Vor- und Frühzeit Ägyptens, Bd. 1-2. MÄSB 4-5. 1929-1931. Scharff, StreitgesprächScharff, Alexander, Der Bericht über das Streitgespräch eines Lebensmüden mit seiner Seele. SBAW 9. 1937. - Scharff, ZÄS 57, 1922Scharff, Alexander, Ein Rechnungsbuch des königlichen Hofes aus der 13. Dynastie (Pap. Boulaq Nr. 18). In: ZÄS 57, 1922, 51-68. - Scharff, ZÄS 59, 1924Scharff, Alexander, Briefe aus Illahun. In: ZÄS 59, 1924, 20-51. - Scharff, ZÄS 77, 1941Scharff, Alexander, Die Lehre für Kagemni. In: ZÄS 77, 1941, 13-21. Schätze altägyptischer KunstSchätze altägyptischer Kunst, Kunsthalle Basel, 27. Juni - 13.September 1953. 1953. Schätze der Pyramiden Die Schätze der Pyramiden. Hrsg. von Hawass, Zahi A. 2004. - Scheel, SAK 13, 1986Scheel, Bernd, Studien zum Metallhandwerk im Alten Ägypten II. Handlungen und Beischriften in den Bildprogrammen der Gräber des Mittleren Reiches. In: SAK 13, 1986, 81-205. Scheele, StofflistenScheele-Schweitzer, Katrin, Die Stofflisten des Alten Reiches. Lexikographie, Entwicklung und Gebrauch. Menes 2. 2005. Scheepers, WenamonverhaalScheepers, Anne, Het Wenamonverhaal. Een filologisch-historisch onderzoek (unveröffentlichte Lizentiatsarbeit). 1990. Schenkel, Arbeit an einer KonkordanzSchenkel, Wolfgang, Aus der Arbeit an einer Konkordanz zu den altägyptischen Sargtexten. GOF 12. 1983. @@ -4230,42 +2776,27 @@

      Abbreviat Schenkel, Einführung 2005Schenkel, Wolfgang, Einführung in die klassisch-ägyptische Sprache und Schrift. 2005. Schenkel, Einführung 2012Schenkel, Wolfgang, Einführung in die klassisch-ägyptische Sprache und Schrift. 2012. Schenkel, Frühmittelägyptische StudienSchenkel, Wolfgang, Frühmittelägyptische Studien. BOS 13. 1962. - Schenkel, GM 84, 1985Schenkel, Wolfgang, zꜢ.t 'Kindchen', ṯꜢ.t 'Jüngchen'. In: GM 84, 1985, 65-70. Schenkel, GrundformenSchenkel, Wolfgang, Grundformen mittelägyptischer Sätze anhand der Sinuhe-Erzählung. MÄS 7. 1965. - Schenkel, JEA 50, 1964Schenkel, Wolfgang, Eine Neue Weisheitslehre? In: JEA 50, 1964, 6-12. - Schenkel, LingAeg 25, 2017Schenkel, Wolfgang, ı͗n-/= "sagt" < ı͗(.ı͗) ı͗n- "sagt(e), nämlich". In: LingAeg 25, 2017, 231-279. - Schenkel, MDAIK 20, 1965Schenkel, Wolfgang, Die Wurzel bnj «süß». In: MDAIK 20, 1965, 115. - Schenkel, MDAIK 29, 1973Schenkel, Wolfgang, Ein Türsturz von der Grabkapelle des Königs wꜢḥ-Ꜥnḫ Antef. In: MDAIK 29, 1973, 215-219. - Schenkel, MDAIK 31, 1975Schenkel, Wolfgang, Die Gräber des PꜢ-ṯnf-j und eines Unbekannten in der thebanischen Nekropole (Nr. 128 und Nr. 129). In: MDAIK 31, 1975, 127-158. Schenkel, Memphis, Herakleopolis, ThebenSchenkel, Wolfgang, Memphis, Herakleopolis, Theben. Die epigraphischen Zeugnisse der 7. - 11. Dynastie Ägyptens. ÄA 12. 1965. Schenkel, NominalbildungSchenkel, Wolfgang, Zur Rekonstruktion der deverbalen Nominalbildung des Ägyptischen. GOF 13. 1983. - Schenkel, SAK 27, 1999Schenkel, Wolfgang, ś-Kausativa, t-Kausativa und „innere“ Kausativa. Die ś-Kausativa der Verben I.ś in den Sargtexten. In: SAK 27, 1999, 313-352. Schentuleit, BuchhaltungSchentuleit, Maren, Aus der Buchhaltung des Weinmagazins im Edfu-Tempel. Der demotische P. Carlsberg 409. CNI Publications 32. 2006. Schentuleit/Vittmann, CPR 29Schentuleit, Maren, Vittmann, Günter, "Du hast mein Herz zufriedengestellt ...". Ptolemäerzeitliche demotische Urkunden aus Soknopaiu Nesos. CPR 29. 2009. - Schiaparelli, ChaSchiaparelli, Ernesto, Relazione sui Lavori della Missione Archeologica Italiana in Egitto (Anni 1903-1920). Volume 2: La Tomba Intatta dell'Architetto „Cha“ nella Necropoli di Tebe. 1927. - Schiaparelli, GSAI 1, 1887Schiaparelli, Ernesto, Due iscrizioni inedite del Museo Egizio di Firenze. In: GSAI 1, 1887, 1-16. + Schiaparelli, ChaSchiaparelli, Ernesto, Relazione sui Lavori della Missione Archeologica Italiana in Egitto (Anni 1903-1920). Volume 2: La Tomba Intatta dell’Architetto „Cha“ nella Necropoli di Tebe. 1927. Schiaparelli, Museumskatalog FlorenzSchiaparelli, Ernesto, Museo Archeologico di Firenze: antichità egizie. 1887. - Schiaparelli, RevEg 9, 1900Schiaparelli, Ernesto, Les papyrus égyptiens de Turin. In: RevEg 9, 1900, 106-107. Schiaparelli, Valle delle regineSchiaparelli, Ernesto, Esplorazione della «Valle delle regine» nella necropoli di Tebe. 1923. Schipper, WenamunSchipper, Bernd U., Die Erzählung des Wenamun. Ein Literaturwerk im Spannungsfeld von Politik, Geschichte und Religion. OBO 209. 2005. - Schipper, ZÄS 125, 1998Schipper, Bernd U., Von der 'Lehre des Sehetep-jb-Re' zur 'Loyalistischen Lehre'. Überlegungen zur Überlieferungsgeschichte loyalistischer Aussagen. In: ZÄS 125, 1998, 161-179. Schlögl, Echnaton - TutanchamunSchlögl, Hermann Alexander, Echnaton - Tutanchamun. Daten, Fakten, Literatur, 4. Aufl. 1993. + Schlögl, TatenenSchlögl, Hermann Alexander, Der Gott Tatenen nach Texten und Bildern des Neuen Reiches. OBO 29. 1980. (new) Schmidt, ChoixSchmidt, Valdemar, Choix de monuments égyptiens, Glyptothèque NY-Carlsberg (2 Bde.). 1906-1910. - Schmidt, Museum MünterianumSchmidt, Valdemar, Museum Münterianum. Collection de stèles égyptiennes léguées à l'évêché de Copenhague par feu Frédéric Münter, évêque de Sélande, et actuellement conservées à la Glyptothèque Ny Carlsberg, à Copenhague. 1910. + Schmidt, Museum MünterianumSchmidt, Valdemar, Museum Münterianum. Collection de stèles égyptiennes léguées à l’évêché de Copenhague par feu Frédéric Münter, évêque de Sélande, et actuellement conservées à la Glyptothèque Ny Carlsberg, à Copenhague. 1910. Schmitt/Vittmann, Iran. Personennamenbuch VIIISchmitt, Rüdiger, Vittmann, Günter, Iranisches Personennamenbuch, VIII: Iranische Namen in ägyptischer Nebenüberlieferung. 2013. Schmitz, Amenophis ISchmitz, Franz-Jürgen, Amenophis I. Versuch einer Darstellung der Regierungszeit eines ägyptischen Herrschers der frühen 18. Dynastie. HÄB 6. 1978. Schmitz, KönigssohnSchmitz, Bettina, Untersuchungen zum Titel sꜢ-njśwt "Königssohn". Habelt 2. 1976. - Schneider, ÄL 12, 2002Schneider, Thomas, Sinuhes Notiz über die Könige: Syrisch-anatolische Herrschertitel in ägyptischer Überlieferung. In: ÄL 12, 2002, 257-272. Schneider, Ausländer ISchneider, Thomas, Ausländer in Ägypten während des Mittleren Reiches und der Hyksoszeit. Teil 1: Die ausländischen Könige. ÄUAT 42. 1998. Schneider, Ausländer IISchneider, Thomas, Ausländer in Ägypten während des Mittleren Reiches und der Hyksoszeit. Teil 2: Die ausländische Bevölkerung. ÄUAT 42. 2003. Schneider, Egyptische kunstSchneider, Hans Diederik, De ontdekking van de Egyptische kunst: 1798 - 1830. 1998. Schneider, HoremhebSchneider, Hans Diederik, The Memphite tomb of Ḥoremḥeb, commander-in-chief of Tut'ankhamūn II: A catalogue of the finds. With contributions by C. J. Eyre and Y. M. Harpur. EM 60. 1996. - Schneider, in: Fs Assmann, MythosSchneider, Thomas, Neues zum Verständnis des Dramatischen Ramesseumspapyrus. Vorschläge zur Übersetzung der Szenen 1-23. In: Fs Assmann, Mythos, 2008, 231-255. - Schneider, in: Fs LloydSchneider, Thomas, Contextualising the Tale of the Herdsman. In: Fs Lloyd, 2007, 309-318. Schneider, PersonennamenSchneider, Thomas, Asiatische Personennamen in ägyptischen Quellen des Neuen Reiches. OBO 114. 1992. - Schneider, SSEAJ 38, 2011-2012Schneider, Thomas, Wie der Wettergott Ägypten aus der großen Flut errettete. Ein "inkulturierter" ägyptischer Sintflut-Mythos und die Gründung der Ramsesstadt. In: SSEAJ 38, 2011-2012, 173-193. - Schneider, UF 35, 2003Schneider, Thomas, Texte über den syrischen Wettergott aus Ägypten. In: UF 35, 2003, 605-627. - Schneider, ZÄS 120, 1993Schneider, Thomas, Zur Etymologie der Bezeichnung „König von Ober- und Unterägypten“. In: ZÄS 120, 1993, 166-181. Schneider/Raven, Egyptische OudheidSchneider, Hans Diederik, Raven, Maarten Jan, De Egyptische Oudheid: Een inleiding aan de hand van de Egyptische verzameling in het Rijksmuseum van Oudheden to Leiden. 1981. Scholl, Papyrus EbersScholl, Reinhold, Der Papyrus Ebers: die größte Buchrolle zur Heilkunde Altägyptens. 2002. Schoske, FeindvernichtungSchoske, Sylvia, Das Erschlagen der Feinde. Ikonographie und Stilistik der Feindvernichtung im alten Ägypten. 1982. @@ -4275,54 +2806,34 @@

      Abbreviat Schoske/Wildung, NofretSchoske, Sylvia, Wildung, Dietrich, Nofret - Die Schöne. Die Frau im Alten Ägypten (Ausstellungskatalog). 1984. Schott, BücherSchott, Siegfried, Bücher und Bibliotheken im Alten Ägypten. 1990. Schott, Das schöne FestSchott, Siegfried, Das schöne Fest vom Wüstentale. Festbräuche einer Totenstadt. AAWLM 11. 1952. - Schott, Denkstein Sethos' I.Schott, Siegfried, Der Denkstein Sethos' I. für die Kapelle Ramses' I. in Abydos. In: NAWG 1, 1964, 1-84. Schott, FestdatenSchott, Siegfried, Altägyptische Festdaten. AAWLM 10. 1950. - Schott, in: Fs HelckSchott, Erika, Das Goldhaus im Dramatischen Ramesseumspapyrus. In: Fs Helck, 1984, 265-273. - Schott, KanaisSchott, Siegfried, Kanais. Der Tempel Sethos I. im Wâdi Mia. In: NAWG 6, 1961, 123-189. Schott, LiebesliederSchott, Siegfried, Altägyptische Liebeslieder mit Märchen und Liebesgeschichten. 1950. Schott, Mythe und MythenbildungSchott, Siegfried, Mythe und Mythenbildung im alten Ägypten. UGAÄ 15. 1945. - Schott, NAWG, 1967Schott, Siegfried, Eine ägyptische Schreibpalette als Rechenbrett. In: NAWG, 1967, 91-114. Schott, PyramidenkultSchott, Siegfried, Bemerkungen zum ägyptischen Pyramidenkult. BeiträgeBf 5. 1950. Schott, SphinxtempelSchott, Siegfried, Ägyptische Quellen zum Plan des Sphinxtempels. BeiträgeBf 10. 1970. - Schott, ZÄS 74, 1938Schott, Siegfried, Die beiden Neunheiten als Ausdruck für „Zähne“ und „Lippen“. In: ZÄS 74, 1938, 94-96. Schrift und GedächtnisSchrift und Gedächtnis. Beiträge zur Archäologie der literarischen Kommunikation. Hrsg. von Assmann, Aleida, Assmann, Jan, Hardmeier, Christof. ALK 1. 1983. - Schulman, BES 1, 1979Schulman, Alan Richard, (TArt): cabin, forecastle, inclosed structure. In: BES 1, 1979, 29-40. - Schulman, JARCE 13, 1976Schulman, Alan Richard, The Royal Butler Ramessesemperre. In: JARCE 13, 1976, 117-130. Schulman, Military RankSchulman, Alan Richard, Military Rank, Title and Organization in the Egyptian New Kingdom. MÄS 6. 1964. - Schulman, SSEAJ 16, 1986Schulman, Alan Richard, The So-called Poem on the King's Chariot Revisited. Part I and II. In: SSEAJ 16, 1986, 19-35, 39-49. - Schulz, in: Gs BartaSchulz, Regine, Die Biographie des Ahmose - Sohn der Abana. Versuch einer Erzähltextanalyse. In: Gs Barta, 1995, 315-352. Schulz, WürfelhockerSchulz, Regine, Die Entwicklung und Bedeutung des kuboiden Statuentypus. Eine Untersuchung zu den sogenannten „Würfelhockern“. HÄB 33-34. 1992. Schumacher, SopduSchumacher, Inke W., Der Gott Sopdu. Der Herr der Fremdländer. OBO 79. 1988. Schüssler, CheopsSchüssler, Karlheinz, Pharao Cheops und der Magier. Altägyptische Märchen und Erzählungen. 2003. Schwaller de Lubicz, The Temples of KarnakSchwaller de Lubicz, René A., The Temples of Karnak. 1999. Schwarz, Schiffe und Schiffsteile als KlassifikatorenSchwarz, Sandro, Schiffe und Schiffsteile als Klassifikatoren in der ägyptischen Hieroglyphenschrift. 2005. http://www.sandro-schwarz.com/NaviformeKlassifikatoren.pdf - Schweitzer, CCdE 15, 2011Schweitzer, Simon D., Etymologische Notizen zu 𓇓‌𓏏𓈖. In: CCdE 15, 2011, 83-92. - Schweitzer, in: Fs GraefeSchweitzer, Simon D., Verbalklassen und Verbalklassenwechsel am Beispiel des koptischen Stativs ⲕⲏⲕ ͋. In: Fs Graefe, 2003, 233-248. - Schweitzer, ZÄS 138, 2011Schweitzer, Simon D., Zum Lautwert einiger Hieroglyphen 𓁶, 𓍋, 𓄙, 𓏇. In: ZÄS 138, 2011, 132-149. Scott III, ArtScott III, Gerry D., Ancient Egyptian Art at Yale. 1986. - Scott-Moncrieff, PSBA 29, 1907Scott-Moncrieff, Philip David, Some notes on the XVIIIth Dynasty temple at Wady Ḥalfa. In: PSBA 29, 1907, 39-46. Second Intermediate PeriodThe Second Intermediate Period (Thirteenth-Seventeenth Dynasties). Current Research, Future Prospects. Hrsg. von Marée, Marcel. OLA 192. 2010. Sedment IPetrie, William M. Flinders, Brunton, Guy, Sedment I. BSAE 34. 1924. Sedment IIPetrie, William M. Flinders, Brunton, Guy, Sedment II. BSAE 35. 1924. Seele, TjaneferSeele, Keith Cedric, The Tomb of Tjanefer at Thebes. OIP 86. 1959. - SéhelSéhel entre Égypte et Nubie. Inscriptions rupestres et graffiti de l'époque pharaonique, actes du colloque international, 31 mai - 1er juin 2002, Université Paul Valéry, Montpellier. Hrsg. von Gasse, Annie, Rondot, Vincent. OrMonsp 14. 2004. + SéhelSéhel entre Égypte et Nubie. Inscriptions rupestres et graffiti de l’époque pharaonique, actes du colloque international, 31 mai - 1er juin 2002, Université Paul Valéry, Montpellier. Hrsg. von Gasse, Annie, Rondot, Vincent. OrMonsp 14. 2004. Seibert, CharakteristikSeibert, Peter, Die Charakteristik. Untersuchungen zu einer altägyptischen Sprechsitte und ihren Ausprägungen in Folklore und Literatur. Teil I. Philologische Bearbeitung der Bezeugungen. ÄA 17. 1967. Seidl, Äg. RechtsgeschichteSeidl, Erwin, Einführung in die ägyptische Rechtsgeschichte bis zum Ende des Neuen Reiches [1. Juristischer Teil]. ÄF 10. 1951. - Seidl, in: Fs Arangio-Ruiz ISeidl, Erwin, Eine neue Urkunde aus Ägypten zum Prinzip der notwendigen Entgeltlichkeit. In: Fs Arangio-Ruiz I, 1953, 47-56. Seidl, Ptol. RechtsgeschichteSeidl, Erwin, Ptolemäische Rechtsgeschichte. ÄF 22. 1962. Seidl, Rechtsgeschichte der Saiten- und PerserzeitSeidl, Erwin, Ägyptische Rechtsgeschichte der Saiten- und Perserzeit. ÄF 20. 1968. Seidl/Engler, Universität TübingenSeidl, Erwin, Engler, Bernd, Museen und Sammlungen der Universität Tübingen. MUT 14. 2014. - Seidlmayer, GM 208, 2006Seidlmayer, Stephan Johannes, Zum Verständnis der "Liste von Grabbeigaben" von der Qubbet el-Hawa. In: GM 208, 2006, 95-103. - Seidlmayer, MDAIK 38, 1982Seidlmayer, Stephan Johannes, Nekropole, Keramikwerkstatt und königliche Anlage in der Nordweststadt (mit Bericht über zwei Brennöfen der 4.- Anfang der 5. Dynastie). In: Elephantine, 9.-10. Grabungsbericht. In: MDAIK 38, 1982, 296ff. - Seidlmayer, MDAIK 39, 1983Seidlmayer, Stephan Johannes, Zu einigen Architekturinschriften aus Tell el-Amarna. In: MDAIK 39, 1983, 183-206. - Seidlmayer, MDAIK 47, 1991Seidlmayer, Stephan Johannes, Eine Schreiberpalette mit änigmatischer Aufschrift (Städtische Galerie Liebieghaus / Frankfurt a.M. Inv.-Nr. IN 1899). In: MDAIK 47, 1991, 319-330. - Seidlmayer, MDAIK 57, 2001Seidlmayer, Stephan Johannes, 'Dreißig Jahre ließ ich gehen ...'. Ergänzungen zu zwei Jubiläumsinschriften im Gebiet von Aswân. In: MDAIK 57, 2001, 247-256. - Seidlmayer, SAK 28, 2000Seidlmayer, Stephan Johannes, Zu Fundort und Aufstellungskontext der großen Semna-Stele Sesostris' III. In: SAK 28, 2000, 233-242. Seidlmayer, TextanalyseSeidlmayer, Stephan Johannes, Pharao setzt die Grenzen. Textanalyse zwischen traditioneller Philologie und elektronischen Medien. Eine Ausstellung der Berlin-Brandenburgischen Akademie der Wissenschaften und der Staatlichen Museen zu Berlin, Stiftung Preußischer Kulturbesitz, im Ägyptischen Museum, Berlin-Charlottenburg, 1. Oktober - 31. Dezember 1999. 1999. Select PapyriHawkins, E., Select Papyri in the Hieratic Character from the Collections of the British Museum. 1982. Self, Soul and BodySelf, Soul and Body in Religious Experience. Hrsg. von Baumgartner, Albert I., Assmann, Jan, Stroumsa, Guy. Numen Beil. 78. 1998. - Selve, DE 49, 2001Selve, Valérie, Les fonctions sacerdotales du vizir Montouhotep de la douzième dynastie: d'après la stèle CG 20359. In: DE 49, 2001, 71-80. - Senso dell'arteIl senso dell'arte nell'antico Egitto. Hrsg. von Ferrari, Daniela, Piacentini, Patrizia. 1990. + Senso dell'arteIl senso dell’arte nell’antico Egitto. Hrsg. von Ferrari, Daniela, Piacentini, Patrizia. 1990. + Sérida, Castration StorySérida, Rana, A castration story from the Tebtunis temple library. The Carlsberg Papyri 14. 2016. (new) Sesto CongressoSesto Congresso internazionale di egittologia. Atti (Torino 1-8 Settembre 1991). 1992-1993 (2 Bde.). Sethe, AmunSethe, Kurt, Amun und die acht Urgötter von Hermopolis. APAW 4. 1929. Sethe, BürgschaftsrechtSethe, Kurt, Demotische Urkunden zum ägyptischen Bürgschaftsrechte vorzüglich der Ptolemäerzeit. ASAW 32. 1920. @@ -4330,128 +2841,70 @@

      Abbreviat Sethe, Dramatische TexteSethe, Kurt, Dramatische Texte zu altägyptischen Mysterienspielen. Hrsg. u. erläutert von Kurt Sethe. UGAÄ 10. 1928. Sethe, EinbalsamierungSethe, Kurt, Zur Geschichte der Einbalsamierung bei den Ägyptern und einiger damit verbundener Bräuche. 1934. Sethe, Erl.Sethe, Kurt, Erläuterungen zu den aegyptischen Lesestücken. 1927. + Sethe, Kommentar PTSethe, Kurt, Übersetzung und Kommentar zu den altägyptischen Pyramidentexten. 1935-1962. Sethe, Kommentar PT ISethe, Kurt, Übersetzung und Kommentar zu den altägyptischen Pyramidentexten I [Spruch 213-260 (§§ 134a-323d)]. 1935. Sethe, Kommentar PT IISethe, Kurt, Übersetzung und Kommentar zu den altägyptischen Pyramidentexten II Spruch 261-325 (§§ 324-533). 1935. Sethe, Kommentar PT IIISethe, Kurt, Übersetzung und Kommentar zu den altägyptischen Pyramidentexten III Spruch 326-435 (§§ 534-787). 1935. Sethe, Kommentar PT IVSethe, Kurt, Übersetzung und Kommentar zu den altägyptischen Pyramidentexten IV Spruch 436-606 (§§ 788a-1101d). 1935. Sethe, Kommentar PT VSethe, Kurt, Übersetzung und Kommentar zu den altägyptischen Pyramidentexten V Spruch 507-582 (§§ 1102-1565). 1962. Sethe, Kommentar PT VISethe, Kurt, Übersetzung und Kommentar zu den altägyptischen Pyramidentexten VI Index. 1962. - Sethe, Kommentar PTSethe, Kurt, Übersetzung und Kommentar zu den altägyptischen Pyramidentexten. 1935-1962. Sethe, LesestückeSethe, Kurt, Ägyptische Lesestücke zum Gebrauch im Akademischen Unterricht. Texte des Mittleren Reiches. 1924, 1928 (2. Aufl.), 1959 (3. Aufl.). - Sethe, Thronwirren/PrinzenlisteSethe, Kurt, Die Thronwirren unter den Nachfolgern Königs Thutmosis' I., ihr Verlauf und ihre Bedeutung. Die Prinzenliste von Medinet Habu und die Reihenfolge der ersten Könige der zwanzigsten Dynastie. UGAÄ 1. 1896. + Sethe, Thronwirren/PrinzenlisteSethe, Kurt, Die Thronwirren unter den Nachfolgern Königs Thutmosis’ I., ihr Verlauf und ihre Bedeutung. Die Prinzenliste von Medinet Habu und die Reihenfolge der ersten Könige der zwanzigsten Dynastie. UGAÄ 1. 1896. Sethe, UrgeschichteSethe, Kurt, Urgeschichte und älteste Religion der Ägypter. AKM 18,4. 1930. Sethe, ZahlenSethe, Kurt, Von Zahlen und Zahlworten bei den alten Ägyptern und was für andere Völker daraus zu lernen ist. 1916. - Sethe, ZÄS 42, 1905Sethe, Kurt, Zur Königsfolge der 11. Dynastie. In: ZÄS 42, 1905, 131-134. - Sethe, ZÄS 50, 1912Sethe, Kurt, Der Name des Gottes Suchos. In: ZÄS 50, 1912, 80-83. - Sethe, ZÄS 61, 1926Sethe, Kurt, Ein Prozessurteil aus dem alten Reich. In: ZÄS 61, 1926, 67-79. Setne IIGriffith, Francis Llewellyn, Stories of the High Priests of Memphis. 1900. Settgast, BestattungsdarstellungenSettgast, Jürgen, Untersuchungen zu altägyptischen Bestattungsdarstellungen. ADAIK 3. 1963. Seyfried, Amonmose (TT 373)Seyfried, Karl-Joachim, Das Grab des Amonmose (TT 373). Theben 4. 1990. Seyfried, Djehutiemhab (TT 194)Seyfried, Karl-Joachim, Das Grab des Djehutiemhab (TT 194). Theben 7. 1995. Seyfried, ExpeditionenSeyfried, Karl-Joachim, Beiträge zu den Expeditionen des Mittleren Reiches in die Ost-Wüste. HÄB 15. 1981. - Seyfried, GM 81, 1984Seyfried, Karl-Joachim, Zur Inschrift des Hor (Wadi el Hudi Nr. 1 (143)). In: GM 81, 1984, 55-63. Sharpe, InscriptionsSharpe, Samuel, Egyptian Inscriptions from the British Museum and other Sources. 1837-1855. Sheikh SaïdDavies, Norman de Garis, The Rock Tombs of Sheikh Saïd. 1901. - Sheikholeslami, in: Egypt in TransitionSheikholeslami, Cynthia May, The Night and Day Hours in Twenty-Fifth Dynasty Sarcophagi from Thebes. In: Bareš/Coppens/Smoláriková, Egypt in Transition, 2010, 376-395. - Sheikholeslami, in: The Libyan period in EgyptSheikholeslami, Cynthia May, The End of the Libyan Period and the Resurgence of the Cult of Montu. In: Broekman/Demarée/Kaper, The Libyan period in Egypt, 2009, 361-374. - Sheikholeslami, in: The Theban necropolisSheikholeslami, Cynthia May, The burials of priests of Montu at Deir el-Bahari in the Theban necropolis. In: Strudwick/Taylor, The Theban necropolis, 2003, 131-137. Shinnie, Ancient NubiaShinnie, Peter L., Ancient Nubia. 1996. - Shinnie, JEA 41, 1955Shinnie, Peter L., A note on Ast-Raset. In: JEA 41, 1955, 128-129. - Shirun-Grumach, in: Egyptological StudiesGrumach, Irene, Die poetischen Teile der Gebel-Barkal-Stele. In: Egyptological Studies, 1982, 117-186. - Shirun-Grumach, in: TUAT 3,2Grumach, Irene, Die Lehre des Amenemope. In: TUAT 3,2, 1991, 222-250. Shirun-Grumach, OffenbarungGrumach, Irene, Offenbarung, Orakel und Königsnovelle. ÄUAT 24. 1993. - Shisha-Halevy, JAOS 109, 1989Shisha-Halevy, Ariel, Papyrus Vandier Recto: An Early Demotic Literary Text? In: JAOS 109, 1989, 421-435. - Shupak, in: Context of Scripture IIIShupak, Nili, The Dispute between a Man and his Ba. In: Context of Scripture III, 2002, 321-325. + Shorter, CatalogueShorter, Alan Wynn, Catalogue of Egyptian religious papyri in the British Museum, copies of the book Pr(t)-m-hrw from the XVIIIth to the XXIInd dynasty. 1938. (new) Silverman, Interrog. ConstructionsSilverman, David P., Interrogative Constructions with JN and JN-JW in Old and Middle Egyptian. Bibliotheca Aegyptia 1. 1980. Simons, Topographical ListsSimons, Jan Jozef, Handbook for the Study of Egyptian Topographical Lists Relating to Western Asia. 1937. - Simpson, BiOr 52, 1995Simpson, William Kelly, Review: Luft, Ulrich 1992. Das Archiv von Illahun: Briefe 1. In: Luft, Illahun 1, 1995, 323-327. Simpson, Giza Mastabas 2Simpson, William Kelly, The Mastabas of Qar and Idu. Giza Mastabas 2. 1976. Simpson, Giza Mastabas 3Simpson, William Kelly, The Mastabas of Kawab, Khafkhufu I and II. Giza Mastabas 3. 1978. Simpson, Giza Mastabas 4Simpson, William Kelly, Mastabas of the Western Cemetery, Part I. Giza Mastabas 4. 1980. Simpson, Heka-NeferSimpson, William Kelly, Heka-Nefer and the Dynastic Material from Toshka and Arminna. 1963. - Simpson, in: Fs WenteSimpson, William Kelly, The Nag'-Ed-Deir Papyri. In: Fs Wente, 1999, 387-396. - Simpson, in: Fs WilliamsSimpson, William Kelly, A New Kingdom Relief of a Harper and his Song. In: Fs Williams, 1982, 133-137. - Simpson, in: Gs OttoSimpson, William Kelly, Amor Dei: nṯr mrr rmṯ m tꜢ wꜢ (Sh. Sai. 147-148) and the Embrace. In: Gs Otto, 1977, 493-498. - Simpson, JARCE 38, 2001Simpson, William Kelly, Studies in the Twelfth Egyptian Dynasty IV: The Early Twelfth Dynasty False-Door/Stela of Khery-ankh/Heni from Matariya/Ain Shams (Heliopolis). In: JARCE 38, 2001, 9-20. - Simpson, JARCE 8, 1969-1970Simpson, William Kelly, A Short Harper's Song of the Late New Kingdom in the Yale University Art Gallery. In: JARCE 8, 1969-1970, 49-50. - Simpson, JEA 41, 1955Simpson, William Kelly, The non-existence of a vizier Khentybau in the Middle Kingdom. In: JEA 41, 1955, 129-130. - Simpson, JEA 42, 1956Simpson, William Kelly, A statuette of King Nyneter. In: JEA 42, 1956, 45-49. - Simpson, JEA 46, 1960Simpson, William Kelly, Papyrus Lythgoe: A Fragment of a Literary Text of the Middle Kingdom from el-Lisht. In: JEA 46, 1960, 65-70. - Simpson, JEA 52, 1966Simpson, William Kelly, The Letter to the Dead from the Tomb of Meru (N 3737) at Nag' ed-Deir. In: JEA 52, 1966, 39-52. - Simpson, JEA 56, 1970Simpson, William Kelly, A Late Old Kingdom Letter to the Dead from Nag' Ed-Deir N 3500. In: JEA 56, 1970, 58-64. - Simpson, JNES 18, 1959Simpson, William Kelly, Historical and Lexical Notes on the New Series of Hammamat Inscriptions. In: JNES 18, 1959, 20-37. Simpson, KayemnofretSimpson, William Kelly, The Offering Chapel of Kayemnofret in the Museum of Fine Arts. 1992. - Simpson, MDAIK 47, 1991Simpson, William Kelly, Mentuhotep, Vizier of Sesostris I, Patron of Art and Architecture. In: MDAIK 47, 1991, 331-340. + Simpson, Pap. ReisnerSimpson, William Kelly, Papyrus Reisner I-IV. 1963-1986. Simpson, Pap. Reisner ISimpson, William Kelly, Papyrus Reisner I: the Records of a Building Project in the Reign of Sesostris I. Transcription and commentary. 1963. Simpson, Pap. Reisner IISimpson, William Kelly, Papyrus Reisner II. Accounts of the Dockyard Workshop at This in the Reign of Sesostris I. Transcription and Commentary. 1965. Simpson, Pap. Reisner IIISimpson, William Kelly, Papyrus Reisner III: The records of a building project in the early Twelfth Dynasty. transcription and commentary. 1969. Simpson, Pap. Reisner IVSimpson, William Kelly, Papyrus Reisner IV: Personal accounts of the early Twelfth Dynasty. Transcription and commentary; with indices to Papyri Reisner I-IV and palaeography to Papyrus Reisner IV, sections F, G. 1986. - Simpson, Pap. ReisnerSimpson, William Kelly, Papyrus Reisner I-IV. 1963-1986. Simpson, Sekhem-ankh-PtahSimpson, William Kelly, The Offering Chapel of Sekhem-ankh-Ptah in the Museum of Fine Arts, Boston. 1976. Simpson/O'Connor, Inscribed MaterialSimpson, William Kelly, O'Connor, David B., Inscribed Material from the Pennsylvania-Yale Excavations at Abydos. PPYE 6. 1995. Singer, My Skull Has Not Been CrushedSinger, Ariel, My Skull Has Not Been Crushed. The Lexicography of some Ancient Egyptian Cranial Terminology. 2013. http://dar.aucegypt.edu/handle/10526/3553 SIRISVidman, Ladislav, Sylloge inscriptionum religionis Isiacae et Sarapiacae. 1969. - Sist, OrAnt 14, 1975Sist, L., Un'epigrafe privata da Esna (?). In: OrAnt 14, 1975, 315-320. SiutGriffith, Francis Llewellyn, The Inscriptions of Siût and Dêr Rîfeh. 1889. Smith et al., Mother of Apis InscriptionsSmith, Harry S., The Sacred Animal Necropolis at North Saqqara. The Mother of Apis Inscriptions. 2011. - Smith, AJA 46, 1942Smith, William Stevenson, The origin of some unidentified Old Kingdom reliefs. In: AJA 46, 1942, 509-531. Smith, Art and ArchitectureSmith, William Stevenson, The Art and Architecture of Ancient Egypt. 1965. Smith, AskutSmith, Stuart Tyson, Askut in Nubia. The Economics and Ideology of Egyptian Imperialism in the Second Millenium B.C. 1995. Smith, Buhen InscriptionsSmith, Harry S., The fortress of Buhen, The Inscriptions. EES 48. 1976. - Smith, in: Fs FairmanSmith, Harry S., Varia Ptolemaica. I. Words with mim prefix in the Ptolemaic Period. II. ΝΕΙΛΟΣ. III. Ptolemaic Temples in the Memphite Necropolis. In: Fs Fairman, 1979, 161-166. - Smith, in: Fs LüddeckensSmith, Mark, On some orthographies of the verbs mꜢ ʻseeʼ and mn 'endure' in Demotic and other Egyptian texts. In: Fs Lüddeckens, 1984, 193-210. Smith, InterconnectionsSmith, William Stevenson, Interconnections in the Ancient Near East. A Study of the Relationships between the Arts of Egypt, the Aegean, and Western Asia. 1965. - Smith, J Fam Plann Reprod health Care 37, 2011Smith, Lesley, The Kahun Gynaecological Papyrus: ancient Egyptian medicine. In: J Fam Plann Reprod Health Care 37, 2011, 54-55. - Smith, JARCE 28, 1991Smith, Stuart Tyson, Askut and the Role of the Second Cataract Forts. In: JARCE 28, 1991, 107-132. - Smith, JEA 44, 1958Smith, Harry S., A Cairo text of part of the 'Instructions of 'Onkhsheshonqy'. In: JEA 44, 1958, 121-122. Smith, Mortuary TextsSmith, Mark, The Mortuary Texts of Papyrus BM 10507. CDPBM 3. 1987. Smith, Opening the MouthSmith, Mark, The Liturgy of Opening the Mouth for Breathing. 1993. Smith, P. HarknessSmith, Mark, Papyrus Harkness (MMA 31.9.7). 2005. Smith, Primaeval OceanSmith, Mark, On the Primaeval Ocean. 2002. - Smith, RdE 57, 2006Smith, Mark, The great decree issued to the nome of the silent land. In: RdE 57, 2006, 217-232. Smith, SculptureSmith, William Stevenson, A History of Egyptian Sculpture and Painting in the Old Kingdom. 1949. Smith, Traversing EternitySmith, Mark, Traversing Eternity. Texts for the Afterlife from Ptolemaic and Roman Egypt. 2009. Smith/Redford, Akhenaten Temple Project ISmith, Ray Winfield, Redford, Donald B., The Akhenaten Temple Project I. Initial Discoveries. 1976. - Smith/Smith, ZÄS 103, 1976Smith, Harry S., Smith, Alexandrina, A Reconsideration of the Kamose Texts. In: ZÄS 103, 1976, 48-76. - Smither, JEA 25, 1939 (1)Smither, Paul C., A Postal Register of the Ramesside Age. In: JEA 25, 1939, 103. - Smither, JEA 25, 1939 (2)Smither, Paul C., A new reading of Lebensmüde, 131-2. In: JEA 25, 1939, 220. - Smither, JEA 27, 1941Smither, Paul C., A tax-assessor's journal of the Middle Kingdom. In: JEA 27, 1941, 74-76 u. Tf. IX, XI A. - Smither, JEA 28, 1942Smither, Paul C., An Old Kingdom letter concerning the crimes of count Sabni. In: JEA 28, 1942, 16-19. - Smither, JEA 31, 1945Smither, Paul C., The Semnah Dispatches. In: JEA 31, 1945, 3-10 u. pl. 1-6. - Smither/Dakin, JEA 25, 1939Smither, Paul C., Dakin, Alec N., Stelae in the Queen's college, Oxford. In: JEA 25, 1939, 157-165. Social Aspects of Funerary CultureSocial aspects of funerary culture in the Egyptian Old and Middle Kingdoms: proceedings of the international symposium held at Leiden University 6-7 June, 1996. Hrsg. von Willems, Harco. OLA 103. 2001. - Somaglino/Tallet, BIFAO 111, 2011Somaglino, Claire, Tallet, Pierre, Une mystérieuse route sud-orientale sous le règne de Ramsès III. In: BIFAO 111, 2011, 361-369. - Somaglino/Tallet, in: Desert Road ArchaeologySomaglino, Claire, Tallet, Pierre, A road to the Arabian Peninsula in the reign of Ramesses III. In: Desert Road Archaeology, 2013, 511-518. Sortir au jourSortir au jour. Les aegyptiaca de la Fondation Martin Bodmer. Hrsg. von Chappaz, Jean-Luc, Vuilleumier, Sandrine. CSEG 7. 2001. - Sottas, in: Fs ChampollionSottas, Henri, Un ostracon thébain de la XVIIIe dynastie. In: Fs Champollion, 1922, 483-493. Sottas, Papyrus Démotiques de LilleSottas, Henri, Papyrus démotiques de Lille. Tome 1er. 1922. - Sourouzian, in: Les temples de millions d'annéesSourouzian, Hourig, The Temple of Millions of Years of Amenhotep III : Past, Present, and Future Perspectives. In: Les temples de millions d'années, 2010, 91-98. Sourouzian, MerenptahSourouzian, Hourig, Les monuments du roi Merenptah. SDAIK 22. 1989. Sowada, Teti Cemetery IVSowada, K., Callaghan, T., Bentley, P., The Teti Cemetery at Saqqara, Vol. IV. Minor Burials and Other Material. ACER 12. 1999. Spalinger, Battle of KadeshSpalinger, Anthony J., The transformation of an ancient Egyptian narrative: P.Sallier III and the battle of Kadesh. GOF 40. 2002. Spalinger, Dedicatory Inscription of Ramesses IISpalinger, Anthony J., The great dedicatory inscription of Ramesses II: a Solar-Osirian tractate at Abydos. CHANE 33. 2009. Spalinger, Five ViewsSpalinger, Anthony J., Five Views on Egypt. LingAeg – StudMon 6. 2006. - Spalinger, in: Goedicke, KadeshSpalinger, Anthony J., Notes on the reliefs on the battle of Kadesh. In: Goedicke, Kadesh, 1985, 1-42. - Spalinger, in: Gs BerlevSpalinger, Anthony J., Encomia and Papyrus Anastasi II. In: Gs Berlev, 2003, 123-144. - Spalinger, in: Redford, Akhenaten Temple Project IISpalinger, Anthony J., A hymn of praise to Akhenaten. In: Redford, Akhenaten Temple Project II, 1988, 29-34. - Spalinger, JARCE 33, 1996Spalinger, Anthony J., The Festival Structure of Thutmose III's Buto Stele. In: JARCE 33, 1996, 69-76. - Spalinger, JNES 37, 1978Spalinger, Anthony J., A New Reference to an Egyptian Campaign of Thutmose III in Asia. In: JNES 37, 1978, 35-41. Spalinger, Military DocumentsSpalinger, Anthony J., Aspects of the Military Documents of the Ancient Egyptians. YNER 9. 1982. - Spalinger, SAK 22, 1995Spalinger, Anthony J., The Calendrical Importance of the Tombos Stela. In: SAK 22, 1995, 271-281. - Spalinger, SAK 24, 1997Spalinger, Anthony J., Drama in History. Exemplars from mid Dynasty XVIII. In: SAK 24, 1997, 269-300. - Spalinger, SSEAJ 13, 1983Spalinger, Anthony J., The Historical Implications of the Year 9 Campaign of Amenophis II. In: SSEAJ 13, 1983, 89-101. Speleers, Inscriptions égyptiennesSpeleers, Louis, Recueil des inscriptions égyptiennes des Musées Royaux du Cinquantenaire à Bruxelles. 1923. - Speleers, RecTrav 39, 1921Speleers, Louis, La stèle de Maï du Musée de Bruxelles (E. 5300). In: RecTrav 39, 1921, 113-144. Spencer, BM BookSpencer, A. Jeffrey, The British Museum Book of Ancient Egypt (new Ed.). 2007. Spencer, Cat. BM VSpalinger, Anthony J., Catalogue of Egyptian antiquities in the British Museum V: Early Dynastic objects. 1980. Spencer, Egyptian TempleSpencer, Patricia, The Egyptian Temple. A Lexicographical Study. 1984. Sperveslage, Ägypten und ArabienSperveslage, Gunnar, Ägypten und Arabien. Ein Beitrag zu den interkulturellen Beziehungen Altägyptens. AOAT 420. 2019. - Sperveslage, GM 233, 2012Sperveslage, Gunnar, Lexikographische und ikonographische Innovation in der Amarnazeit am Beispiel von Echnatons Sänfte. In: GM 233, 2012, 79-90. - Sperveslage, GM 256, 2018Sperveslage, Gunnar, Quoth the raven: nervermore! Zur frühzeitlichen Stele Nr. 127 aus Abydos. In: GM 256, 2018, 167-173. - Sperveslage, in: Fs GrunertSperveslage, Gunnar, Die Kugel ist kaputt. Zum Weihrauch in den Abusirpapyri. In: Fs Grunert, 2011, 151-156. - Sperveslage, MDAIR 123Sperveslage, Gunnar, Ein Fragment einer ägyptischen Opfertafel aus Ostia. In: Römische Mitteilungen, 2017 , . - Sperveslage, ZOrA 6, 2013Sperveslage, Gunnar, Ägyptische Einflüsse auf der Arabischen Halbinsel in vorislamischer Zeit am Beispiel der Oase von Tayma. In: ZOrA 6, 2013, 234-252. - Sperveslage/Eichmann, Proceedings of the Seminar for Arabian Studies 42, 2012Sperveslage, Gunnar, Eichmann, Ricardo, Egyptian cultural impact on north-west Arabia in the second and first millennia BC. Proceedings of the Seminar for Arabian Studies 42 (Papers from the forty-fifth meeting of the Seminar for Arabian Studies held at the British Museum, London, 28 to 30 July 2011). In: PSAS 42, 2012, 371-383. Spiegel, Horus und SethSpiegel, Joachim, Die Erzählung vom Streite des Horus und Seth in Pap. Beatty I als Literaturwerk. LÄS 9. 1937. Spiegel, SynkretismusSpiegel, Joachim, Die Götter von Abydos. Studien zum ägyptischen Synkretismus. GOF 1. 1973. Spiegel, WeisheitsliteraturSpiegel, Joachim, Die Präambel des Amenemope und die Zielsetzung der ägyptischen Weisheitsliteratur. 1935. @@ -4464,110 +2917,62 @@

      Abbreviat Spiegelberg, Demotica IISpiegelberg, Wilhelm, Demotica II (20-34). SBAW 1928, 2. Abh. 1928. Spiegelberg, ElephantineSpiegelberg, Wilhelm, Demotische Papyrus von der Insel Elephantine. 1908. Spiegelberg, Hieratic OstracaSpiegelberg, Wilhelm, Hieratic Ostraca and Papyri found by J. E. Quibell in the Ramesseum, 1895-6. ERA extra volume. 1898. - Spiegelberg, in: Petrie, TemplesSpiegelberg, Wilhelm, The Inscriptions. In: Petrie, Temples, 1897, 20-30. Spiegelberg, Koptisches HandwörterbuchSpiegelberg, Wilhelm, Koptisches Handwörterbuch. 1921. Spiegelberg, MaterialienSpiegelberg, Wilhelm, Studien und Materialien zum Rechtswesen des Pharaonenreiches der Dynastien XVIII–XXI (c. 1500 - 1000 v. Chr.). 1892. - Spiegelberg, OLZ 30, 1927Spiegelberg, Wilhelm, Die ersten Regierungsjahre Ramses' IV. In: OLZ 30, 1927, 73-76. - Spiegelberg, OLZ 32, 1929Spiegelberg, Wilhelm, Eine ägyptische Göttergruppe aus Syrien. In: OLZ 32, 1929, 14-17. - Spiegelberg, OLZ 5, 1902Spiegelberg, Wilhelm, Ein aegyptisches Verzeichnis der Planeten und Tierkreisbilder. In: OLZ 5, 1902, 6-9. - Spiegelberg, OLZ 7, 1904Spiegelberg, Wilhelm, Die Datierung der Sphinxstele. In: OLZ 7, 1904, 288-291. Spiegelberg, P. HauswaldtSpiegelberg, Wilhelm, Die demotischen Papyri Hauswaldt. 1913. Spiegelberg, P. LoebSpiegelberg, Wilhelm, Die demotischen Papyri Loeb. 1931. Spiegelberg, P. StraßburgSpiegelberg, Wilhelm, Die demotischen Papyrus der Straßburger Bibliothek. 1902. Spiegelberg, PriesterdekreteSpiegelberg, Wilhelm, Der demotische Text der Priesterdekrete von Kanopus und Memphis (Rosettana). 1922. Spiegelberg, RechnungenSpiegelberg, Wilhelm, Rechnungen aus der Zeit Setis I. (circa 1350 v. Chr.) mit anderen Rechnungen des Neuen Reiches (2 Bde.). 1896. - Spiegelberg, RecTrav 15, 1893Spiegelberg, Wilhelm, Varia. In: RecTrav 15, 1893, 67-69, 141-145. - Spiegelberg, RecTrav 16, 1894 (1)Spiegelberg, Wilhelm, Varia. In: RecTrav 16, 1894, 26-32. - Spiegelberg, RecTrav 16, 1894 (2)Spiegelberg, Wilhelm, Des papyrus hiératiques inédits du Louvre. In: RecTrav 16, 1894, 68-74. - Spiegelberg, RecTrav 19, 1897Spiegelberg, Wilhelm, Varia. In: RecTrav 19, 1897, 86-101. - Spiegelberg, RecTrav 20, 1898Spiegelberg, Wilhelm, Die Bauinschrift Amenophis' III auf der Flinders Petrie-Stele. In: RecTrav 20, 1898, 37-54. - Spiegelberg, RecTrav 26, 1904Spiegelberg, Wilhelm, Varia. In: RecTrav 26, 1904, 41-52, 143-154. - Spiegelberg, RecTrav 35, 1913Spiegelberg, Wilhelm, Das Kolophon des liturgischen Papyrus aus der Zeit des Alexander IV. In: RecTrav 35, 1913, 35-40. - Spiegelberg, ZÄS 44, 1907Spiegelberg, Wilhelm, Beiträge zur Erklärung des Papyrus Anastasi I. In: ZÄS 44, 1907, 118-125. - Spiegelberg, ZÄS 50, 1912 (1)Spiegelberg, Wilhelm, Zwei Kalksteinplatten mit demotischen Texten. In: ZÄS 50, 1912, 32-36. - Spiegelberg, ZÄS 50, 1912 (2)Spiegelberg, Wilhelm, Ein angeblicher thebanischer Gaugraf Antef. In: ZÄS 50, 1912, 119. - Spiegelberg, ZÄS 53, 1917Spiegelberg, Wilhelm, Briefe der 21. Dyn. aus El-Hibe. In: ZÄS 53, 1917, 1-30. - Spiegelberg, ZÄS 57, 1922Spiegelberg, Wilhelm, Horus als Arzt. In: ZÄS 57, 1922, 70-71. - Spiegelberg, ZÄS 63, 1928Spiegelberg, Wilhelm, Ein Gerichtsprotokoll aus der Zeit Thutmosis' IV. In: ZÄS 63, 1928, 105-115. - Spiegelberg, ZÄS 66, 1931Spiegelberg, Wilhelm, Die Inschriften des großen Skarabäus in Karnak. In: ZÄS 66, 1931, 44-45. - Spiegelberg/Erman, ZÄS 36, 1898Spiegelberg, Wilhelm, Erman, Adolf, Grabstein eines syrischen Söldners aus Tell Amarna. In: ZÄS 36, 1898, 126-129. Spiegelberg/Pörtner, GrabsteineSpiegelberg, Wilhelm, Pörtner, B., Aegyptische Grabsteine und Denksteine aus süddeutschen Sammlungen I. Karlsruhe, Mülhausen, Strassburg, Stuttgart. 1902. Spiekermann/Kampp-Seyfried, GizaSpiekermann, Antje, Kampp-Seyfried, Friederike, Giza. Ausgrabungen im Friedhof der Cheopspyramide von Georg Steindorff. KS 6. 2003. - Staatliche Sammlung MünchenStaatliche Sammlung Ägyptischer Kunst München. Hrsg. von Schoske, Sylvia. 1995. Staatliche SammlungStaatliche Sammlung Ägyptischer Kunst, München, Residenz Hofgartenstrasse. Hrsg. von Gessler-Löhr, Beatrix, Müller, Hans Wolfgang, Wildung, Dietrich. 1972, 1976 (2. erw. Aufl.). - Stadelmann, in: Fs FechtStadelmann, Rainer, Ramses II., Harmachis und Hauron. In: Fs Fecht, 1987, 436-449. - Stadelmann, MDAIK 20, 1965Stadelmann, Rainer, Ein Beitrag zum Brief des Hyksos Apophis. In: MDAIK 20, 1965, 62-69. - Stadelmann, MDAIK 21, 1966Stadelmann, Rainer, Aus der Heidelberger Universitätssammlung: Zwei Reliefs eines Rindervorstehers des Thot, namens Hajja. In: MDAIK 21, 1966, 110-115. + Staatliche Sammlung MünchenStaatliche Sammlung Ägyptischer Kunst München. Hrsg. von Schoske, Sylvia. 1995. Stadelmann, PyramidenStadelmann, Rainer, Die ägyptischen Pyramiden. 1985. Stadler, IsisStadler, Martin Andreas, Isis, das göttliche Kind und die Weltordnung. MPER N.S. 28. 2004. + Stadler, SoknopaiosritualStadler, Martin Andreas, Das Soknopaiosritual: Texte zum täglichen Ritual im Tempel des Soknopaios zu Dimê (SPR). ÄOP 6. 2022. (new) Stadler, Weiser und WesirStadler, Martin Andreas, Weiser und Wesir. Studien zu Vorkommen, Rolle und Wesen des Gottes Thot im ägyptischen Totenbuch. 2009. Staehelin, TrachtStaehelin, Elisabeth, Untersuchungen zur ägyptischen Tracht im Alten Reich. MÄS 8. 1966. Steckeweh, FürstengräberSteckeweh, Hans, Die Fürstengräber von Qâw. Mit Beiträgen von Georg Steindorff und einem Anhang, Die griechisch-römischen Begräbnisstätten von Antäopolis von Ernst Kühn und Walther Wolf. Mit einem Beitrag von Hermann Grapow. Sieglin Exp. 6. 1936. Stegbauer, Magie als Waffe gegen SchlangenStegbauer, Katharina, Magie als Waffe gegen Schlangen in der ägyptischen Bronzezeit. 2015. Steindorff, BlütezeitSteindorff, Georg, Die Blütezeit des Pharaonenreichs. MzWG 10. 1900. - Steindorff, in: Hölscher, ChephrenSteindorff, Georg, Die übrigen Fundstücke. In: Hölscher, Chephren, 1912, 104-115. - Steindorff, LpBer 52, 1900Steindorff, Georg, Vorläufiger Bericht über seine im Winter 1899/1900 nach der Oase Sîwe und nach Nubien unternommenen Reisen. In: LpBer 52, 1900, 209-239. Steindorff, TiSteindorff, Georg, Das Grab des Ti. 1913. - Steindorff, ZÄS 39, 1901Steindorff, Georg, Ein Grabstein des Mittleren Reichs im Museum von Stuttgart. In: ZÄS 39, 1901, 117-121. Steindorff/Seele, When Egypt Ruled the EastSteindorff, Georg, Seele, Keith Cedric, When Egypt Ruled the East. 1957 (2. Aufl.). Steiner, Serpent SpellsSteiner, Richard C., Early Northwest Semitic serpent spells in the Pyramid Texts. HSS 61. 2011. Stephan, Altägyptische MedizinStephan, Joachim, Die altägyptische Medizin und ihre Spuren in der abendländischen Medizingeschichte. 2011. - Stern, ZÄS 12, 1874Stern, Ludwig, Urkunde über den Bau des Sonnentempels zu On. Eine hieratische Handschrift auf Leder im Königlichen Museum zu Berlin. In: ZÄS 12, 1874, 85-96. - Stern, ZÄS 15, 1877Stern, Ludwig, Hieroglyphisch-Koptisches. In: ZÄS 15, 1877, 72-88, 113-124. Sternberg-El-Hotabi, HorusstelenSternberg-El-Hotabi, Heike, Untersuchungen zur Überlieferungsgeschichte der Horusstelen. Ein Beitrag zur Religionsgeschichte Ägyptens im 1. Jahrtausend v. Chr. ÄA 62. 1999. - Sternberg-el-Hotabi, in: TUAT 3,5Sternberg-El-Hotabi, Heike, Der Mythos von der Vernichtung des Menschengeschlechtes. In: TUAT 3,5, 1995, 1018-1037. - Sternberg-el-Hotabi/Gutekunst/Kausen, TUAT II, 2, 1988Sternberg-El-Hotabi, Heike, Gutekunst, Wilfried, Kausen, Ernst, Ägyptische Rituale und Beschwörungen. In: TUAT II,3, 1988, 358-431. Steuer, WxdwSteuer, Robert Otto, Whdw. Aetiological principle of pyaemia in ancient Egyptian medicine. 1948. Steuer/Saunders, Ancient Egyptian and Cnidian MedicineSteuer, Robert Otto, Saunders, John B. de C. M., Ancient Egyptian & Cnidian medicine. The relationship of their aetiological concepts of disease. 1959. - Stevens, MedJAust 2, 1975Stevens, John M., Gynaecology from Ancient Egypt: The Papyrus Kahun. A Translation of the Oldest Treatise on Gynaecology that has Survived from the Ancient World. In: MedJAust 2, 1975, 949-952. + Stewart, Petrie CollectionStewart, Harry M., Egyptian Stelae, Reliefs and Paintings from the Petrie Collection. 1976-1983. Stewart, Petrie Collection IStewart, Harry M., Egyptian Stelae, Reliefs and Paintings from the Petrie Collection I: The New Kingdom. 1976. Stewart, Petrie Collection IIStewart, Harry M., Egyptian Stelae, Reliefs and Paintings from the Petrie Collection II: Archaic Period to Second Intermediate Period. 1979. - Stewart, Petrie CollectionStewart, Harry M., Egyptian Stelae, Reliefs and Paintings from the Petrie Collection. 1976-1983. STGAssmann, Jan, Sonnenhymnen in thebanischen Gräbern. Theben 1. 1983. Stock, 1. ZwischenzeitStock, Hanns, Studia Aegyptiaca II. Die erste Zwischenzeit Ägyptens. Untergang der Pyramidenzeit, Zwischenreiche von Abydos und Herakleopolis, Aufstieg Thebens. AnOr 31. 1949. Stock, 13. bis 17. DynastieStock, Hanns, Studien zur Geschichte und Archäologie der 13. bis 17. Dynastie Ägyptens unter besonderer Berücksichtigung der Skarabäen dieser Zwischenzeit. ÄF 12. 1942. - Störk, GM 43, 1981Störk, Lothar, "Er ist ein Gott, während ich ein Herrscher bin." Die Anfechtung der Hyksossuzeränität unter Kamose. In: GM 43, 1981, 63-65. Störk, NashörnerStörk, Lothar, Die Nashörner. Verbreitungs- und kulturgeschichtliche Materialen unter besonderer Berücksichtigung der afrikanischen Arten und des altägyptischen Kulturbereiches. 1977. StraboThe Geography of Strabo. With an English Translation by Horace Leonard Jones. 1954-1961. - Stracmans, CdE 25, 1950Stracmans, Maurice, Les lignes 36-38 de la grande inscription du roi Neferhotep de la XIIIe dynastie. In: CdE 25, 1950, 27-30. - Stracmans, in: Fs HombertStracmans, Maurice, La grande inscription du Roi Neferhotep Ier (XIIIe dynastie égyptienne). In: Fs Hombert, 1950-1951, 173-181. - Stricker, OMRO 29, 1948Stricker, B. H., Spreuken tot beveiliging gedurende de schrikkeldagen naar Pap. I 346. In: OMRO 29, 1948, 55-70. Strouhal, PharaonenzeitStrouhal, Eugen, Ägypten zur Pharaonenzeit: Alltag und gesellschaftliches Leben. 1994. Strouhal/Vachala/Vymazalová, MedicineStrouhal, Eugen, Vachala, Břetislav, Vymazalová, Hana, The Medicine of the Ancient Egyptians 1: Surgery, Gynecology, Obstetrics, and Pediatrics. 2014. Strudwick, MasterpiecesStrudwick, Nigel, Masterpieces of Ancient Egypt. 2006. + Strudwick, Texts from the Pyramid AgeStrudwick, Nigel, Texts from the Pyramid Age. 2005. (new) Strudwick/Strudwick, ThebesStrudwick, Nigel, Strudwick, Helen, Thebes in Egypt. A Guide to the Tombs and Temples of Ancient Luxor. 1999. Strudwick/Taylor, The Theban necropolisThe Theban necropolis: past, present and future. Hrsg. von Strudwick, Nigel, Taylor, John H. 2003. StudHell 34Le culte du souverain dans l’Égypte ptolémaïque au IIIe siècle avant notre ère. Actes du colloque international, Bruxelles 10 mai 1995. Hrsg. von Melaerts, H. Stud. Hellen. 34. 1998. Studia Aegyptiaca IStudia Aegyptiaca I. AnOr 17. 1938. Studia biblica et orientalia. Vol. III. Oriens antiquusStudia biblica et orientalia, edita a Pontificio Instituto Biblico ad celebrandum annum L ex quo conditum est Institutum. Vol. III. Oriens antiquus. 1959. Sturtewagen, Geroglifici svelatiSturtewagen, Christian, Geroglifici svelati. 1987. - Sudan Treasures (Ausstellungskat.)Sudan Ancient Treasures. An Exhibition of Recent Discoveries from the Sudan National Museum. Hrsg. von Welsby, Derek A., Anderson, Julie R. 2004. SudanSudan. Antike Königreiche am Nil. Hrsg. von Wildung, Dietrich. 1996. - Suvorov, in: Dann, CRE 2004Suvorov, Rachel Rodabaugh, The Kahun papyrus in context: the "floating uterus". In: Dann, CRE 2004, 2006, 138-146. - Suys, Sagesse d'AniSuys, Émile, La sagesse d'Ani. Texte, traduction et commentaire. AnOr 11. 1935. + Sudan Treasures (Ausstellungskat.)Sudan Ancient Treasures. An Exhibition of Recent Discoveries from the Sudan National Museum. Hrsg. von Welsby, Derek A., Anderson, Julie R. 2004. + Suys, Sagesse d’AniSuys, Émile, La sagesse d’Ani. Texte, traduction et commentaire. AnOr 11. 1935. Sweeney, CorrespondenceSweeney, Deborah, Correspondence and Dialogue. Pragmatic Factors in Late Ramesside Letter-Writing. ÄUAT 49. 2001. - Sweeney, GM 158, 1997Sweeney, Deborah, Offence and Reconciliation in Ancient Egypt. A Study in Late Ramesside Letter No. 46. In: GM 158, 1997, 63-79. - Sweeney, in: Groll/Stein/Bogot, Papers for Discussion 2Sweeney, Deborah, The Great Dedicatory Inscription of Ramses II at Abydos (lines 1-79). In: Groll/Stein/Bogot, Papers for Discussion 2, 1985, 134-327. - Szafrański, in: Fs BeckerathSzafrański, Zbigniew, Observations on the Second Intermediate Period Relief. In: Fs Beckerath, 1990, 245-251. - Szafrański, in: ProceedingsSzafrański, Zbigniew, A new Third Intermediate Period necropolis at Deir el-Bahari. In: Hawass/Bács/Schreiber, Proceedings, 2011, 141-148. Szpakowska, DreamsSzpakowska, Kasia, Behind Closed Eyes. Dreams and Nightmares in Ancient Egypt. 2003. + Tacke, OpferritualTacke, Nikolaus, Das Opferritual des ägyptischen Neuen Reiches. OLA 222. 2013. Tacke, Opferritual ITacke, Nikolaus, Das Opferritual des ägyptischen Neuen Reiches, Bd. 1, Texte. OLA 222. 2013. Tacke, Opferritual IITacke, Nikolaus, Das Opferritual des ägyptischen Neuen Reiches, Bd. 2, Übersetzung und Kommentar. OLA 222. 2013. - Tacke, OpferritualTacke, Nikolaus, Das Opferritual des ägyptischen Neuen Reiches. OLA 222. 2013. Tacke, VerspunkteTacke, Nikolaus, Verspunkte als Gliederungsmittel in ramessidischen Schülerinschriften. SAGA 22. 2001. - Tait, in: Carlsberg Papyri 1Tait, William John, Handlist of published Carlsberg Papyri. In: Carlsberg Papyri 1, 1991, 129-140. - Takács, DE 39, 1997Takács, Gábor, Aegyptio-Afroasiatica VII. In: DE 39, 1997, 89-94. - Takahashi et al., JES 5, 1997Takahashi, Ryuzaburo, Yoshimura, Sakuji, Takamiya, Izumi H., Kashiwagi, Hiroyuki, Akiyama, Shinichi, Nakagawa, Takeshi, Nishimoto, Shinichi, Kikuchi, Tetsuo, Kondo, Jiro, Waseda University excvations at north Saqqara: a preliminary report on the fourth season, August - September 1995. In: JES 5, 1997, 5-34. - Tallet, BIFAO 102, 2002Tallet, Pierre, Notes sur le ouadi Maghara et sa région au Moyen Empire. In: BIFAO 102, 2002, 371-387. - Tallet, BIFAO 95, 1995Tallet, Pierre, Le shedeh: étude d'un procédé de vinification en Égypte ancienne. In: BIFAO 95, 1995, 459-492. - Tallet, in: CommerceTallet, Pierre, Quelques aspects de l'économie du vin en Égypte ancienne, au Nouvel Empire. In: Commerce, 1998, 241-267. Tallet, Sésostris IIITallet, Pierre, Sésostris III et la fin de la XIIe dynastie. 2005. - Tarkhan I and Memphis VPetrie, William M. Flinders, Tarkhan I and Memphis V. In: BSAE 23, 1913, . - Tarkhan IIPetrie, William M. Flinders, Tarkhan II. In: BSAE 26, 1914, . - Tattko, in: Rickert/Ventker, Altägyptische Enzyklopädien ITattko, Jan, Die hydrologischen Prozessionen - Verkörperungen einzelner Aspekte der Nilflut und des Fruchtlands in den Soubassements der Tempel der griechisch-römischen Zeit. In: Rickert/Ventker, Altägyptische Enzyklopädien, 2014, 361-440. Taylor, Book of the DeadTaylor, John H., Journey through the afterlife: Ancient Egyptian Book of the Dead. 2010. Taylor, Egypt and NubiaTaylor, John H., Egypt and Nubia. 1991. - Taylor, in: The Theban necropolisTaylor, John H., Theban coffins from the Twenty-second to the Twenty-sixth Dynasty: dating and synthesis of development. In: Strudwick/Taylor, The Theban necropolis, 2003, 95-121. Taylor, Titles of the 18th Dyn.Taylor, J. A., An Index of Male Non-Royal Egyptian Titles, Epithets & Phrases of the 18th Dynasty. 2001. Taylor/Strudwick, MummiesTaylor, John H., Strudwick, Nigel, Mummies. Death and the Afterlife in Ancient Egypt. Treasures from the British Museum. 2005. Tb (Allen)Allen, Thomas George, The Egyptian book of the dead. Documents in the Oriental Institute Museum at the University of Chicago. OIP 82. 1960. @@ -4583,55 +2988,32 @@

      Abbreviat Tebtynis VITebtynis VI, Scripta varia, Textes hiéroglyphiques, hiératiques, démotiques,araméens, grecs et coptes sur différents supports (S.V.Tebt. I). Hrsg. von Gallazzi, Claudio. FIFAO 78. 2018. Teeter, Egyptian CivilizationBefore the pyramids: the origins of Egyptian civilization. Hrsg. von Teeter, Emily. OIP 33. 2011. Temple in Ancient EgyptThe Temple in Ancient Egypt. New discoveries and recent research. Hrsg. von Quirke, Stephen. 1997. + Temple of Khonsu IThe Temple of Khonsu I. Scenes of King Herihor in the Court. With Translations of Texts. OIP 100. 1979. (new) Temple of Khonsu IIThe Temple of Khonsu II, Scenes and Inscriptions in the Court and the First Hypostyle Hall, with Translations of Texts and Glossery for Volumes 1 and 2. OIP 103. 1981. Textcorpus und WörterbuchTextcorpus und Wörterbuch. Aspekte zur ägyptischen Lexikographie. Hrsg. von Grunert, Stefan, Hafemann, Ingelore. PÄ 14. 1999. - Textes des Pyramides et Textes des SarcophagesD'un monde à l'autre: Textes des Pyramides & Textes des Sarcophages. Actes de la table ronde internationale, "Textes des Pyramides versus Textes des Sarcophages", IFAO - 24-26 septembre 2001. Hrsg. von Bickel, Susanne, Mathieu, Bernard. BdE 139. 2004. - Texts from Deir el-Medina Village voices: proceedings of the symposium "Texts from Deir el-Medîna and their interpretation," Leiden, May 31 - June 1, 1991. Hrsg. von Demarée, Robert Johannes, Egberts, Arno. CNWS Publications. 1992. + Textes des Pyramides et Textes des SarcophagesD’un monde à l’autre: Textes des Pyramides & Textes des Sarcophages. Actes de la table ronde internationale, "Textes des Pyramides versus Textes des Sarcophages", IFAO - 24-26 septembre 2001. Hrsg. von Bickel, Susanne, Mathieu, Bernard. BdE 139. 2004. + Texts from Deir el-Medina Village voices: proceedings of the symposium "Texts from Deir el-Medîna and their interpretation," Leiden, May 31 - June 1, 1991. Hrsg. von Demarée, Robert Johannes, Egberts, Arno. CNWS Publications. 1992. The XIth Dynasty Temple at Deir el-Bahari INaville, Édouard, Hall, Harry R., Ayrton, Edward Russell, The XIth Dynasty Temple at Deir el-Bahari. I. EEF 28. 1907. The XIth Dynasty Temple at Deir el-Bahari IINaville, Édouard, Hall, Harry R., Clarke, Somers, The XIth Dynasty Temple at Deir el-Bahari. II. EEF 30. 1910. The XIth Dynasty Temple at Deir el-Bahari IIINaville, Édouard, Hall, Harry R., The XIth Dynasty Temple at Deir el-Bahari. III. EEF 32. 1913. Theban OstracaGardiner, Alan H., Theban Ostraca. Edited from the Originals, now mainly in the Royal Ontario Museum of Archaeology, Toronto, and the Bodleian Library, Oxford. 1913. Theis, Magie und RaumTheis, Christoffer, Magie und Raum: der magische Schutz ausgewählter Räume im alten Ägypten nebst einem Vergleich zu angrenzenden Kulturbereichen. ORA 13. 2014. - Théodoridès, AIP 21, 1977Théodoridès, Aristide, L'art de trouver une fonction après la vieillesse. In: AIP 21, 1977, 67-81. - Théodoridès, RdE 19, 1967Théodoridès, Aristide, De la prétendue expression juridique pnꜤ r mdt. In: RdE 19, 1967, 111-121. - Théodoridès, RIDA 21, 1974Théodoridès, Aristide, Mise en ordre chronologique des éléments de la Stèle Juridique de Karnak avec ses influences sur la procédure. In: RIDA 21, 1974, 31-74. - Théodoridès, RIDA 22, 1975Théodoridès, Aristide, Les relations de l'Égypte pharaonique avec ses voisins. In: RIDA 22, 1975, 87-140. - Théodoridès, RIDA 4, 1957Théodoridès, Aristide, Le "procès" dans la Stèle Juridique de Karnak. In: RIDA 4, 1957, 33-52. - Théodoridès, RIDA 5, 1958Théodoridès, Aristide, La donation conditionnelle du Vizir Ay. In: RIDA 5, 1958, 33-64. - Théodoridès, RIDA 9, 1962Théodoridès, Aristide, Le rôle du Vizir dans la Stèle Juridique de Karnak. In: RIDA 9, 1962, 45-135. Thiem, Gebel es-SilsilehThiem, Andrea-Christina, Speos von Gebel es-Silsileh. Analyse der architektonischen und ikonographischen Konzeption im Rahmen des politischen und legitimatorischen Programmes der Nachamarnazeit. ÄUAT 47. 2000. - Thiers, KARNAK 11, 2003Thiers, Christophe, Une porte de Ptolémée Évergète II consacrée à Khonsou-qui-fixe-le-sort. In: KARNAK 11, 2003, 585-602. Thiers/Volokhine, Ermant IThiers, Christophe, Volokhine, Youri, Ermant I: Les cryptes du temple ptolémaïque; étude épigraphique. MIFAO 124. 2005. - Thirion, RdE 33, 1981Thirion, Michelle, Notes d'onomastíque. Contribution à une revision du Ranke PN [Deuxième Série]. In: RdE 33, 1981, 79-87. - Thirion, RdE 34, 1982-83Thirion, Michelle, Notes d'onomastique. Contribution à une révision du Ranke, PN [Troisième série]. In: RdE 34, 1982-1983, 101-114. - Thirion, RdE 36, 1985Thirion, Michelle, Notes d'onomastique. Contribution à une révision du Ranke PN [Quatrième série]. In: RdE 36, 1985, 125-143. Thissen, AnchscheschonqiThissen, Heinz-Josef, Die Lehre des Anchscheschonqi (P. BM 10508). PTA 32. 1984. Thissen, Dem. Graffiti von Med. HabuThissen, Heinz-Josef, Die Demotischen Graffiti von Medinet Habu. Dem.Stud. 10. 1989. Thomas, Royal NecropoleisThomas, Elizabeth, The Royal Necropoleis of Thebes. 1966. Thompson, Family ArchiveThompson, Herbert, A Family Archive from Siut. From Papyri in the British Museum Including an Account of a Trial before the Laocritae in the Year B.C. 170. 1934. Tietze, AmarnaTietze, Christian, Amarna. Lebensräume - Lebensbilder - Weltbilder. 2010. - Till, ZÄS 73, 1937Till, Walter C., Das Pi`el im Ägyptischen. In: ZÄS 73, 1937, 131-138. Tiradritti, WandmalereiTiradritti, Francesco, Ägyptische Wandmalerei. 2007. - Tobin, BiOr 48, 1991Tobin, Vincent A., A Re-Assessment of the Lebensmüde. In: BiOr 48, 1991, 341-363. TôdBisson de La Roque, Fernand, Tôd: (1934 à 1936). FIFAO 17. 1937. Tombs of the South Asasif NecropolisTombs of the South Asasif Necropolis. New Discoveries and Research 2012-14. Hrsg. von Pischikova, Elena. 2017. Tomorad/Popielska-Grzybowska, Egypt 2015Egypt 2015: perspectives of research: proceedings of the Seventh European Conference of Egyptologists, 2nd-7th June 2015, Zagreb, Croatia. Hrsg. von Tomorad, Mladen, Popielska-Grzybowska, Joanna. ArEg 18. 2017. Töpfer, BalsamierungsritualTöpfer, Susanne, Das Balsamierungsritual. Eine (Neu-)Edition der Textkomposition Balsamierungsritual (pBoulaq 3, pLouvre 5158, pDurham 1983.11 + pSt. Petersburg 18128). SSR 13. 2015. - Töpfer, Dynamis 34, 2014Töpfer, Susanne, The physical activity of parturition in ancient Egypt: textual and epigraphical sources. In: Dynamis 34, 2014, 317-335. - Töpfer, in: Quack, Ägyptische RitualeTöpfer, Susanne, Bemerkungen zum Balsamierungsritual nach den Papyri Boulaq III und Louvre E 5158. In: Quack, Ägyptische Rituale, 2014, 201-221. - Topozada, BIFAO 88, 1988Topozada, Zakeya, Les deux campagnes d'Amenhotep III en Nubie. In: BIFAO 88, 1988, 153-164. Török, Frontier RegionTörök, László, Between Two Worlds. The Frontier Region between Ancient Nubia and Egypt 3700 BC - 500 AD. PÄ 29. 2009. - Totentempel Amenophis IIIUntersuchungen im Totentempel Amenophis' III. Hrsg. von Haeny, Gerhard. BeiträgeBf 11. 1981. - TPPIClère, Jacques Jean, Vandier, Jacques, Textes de la première période intermédiaire et de la XIème dynastie. In: BAe 10, 1948, . - Trapani, in: Dépendance ruraleTrapani, Marcella, Un cas d'abus de pouvoir dans l'administration rurale. In: Dépendance rurale, 2004, 211-225. - Trapani, ZÄS 129, 2002Trapani, Marcella, Une nouvelle enquête sur la stèle d'Ahmès-Néfertari. In: ZÄS 129, 2002, 152-165. - Traunecker, BIFAO 72, 1972Traunecker, Claude, Les rites de l'eau à Karnak d'après les textes de la rampe de Taharqa. In: BIFAO 72, 1972, 185.236. - Traunecker/Fazzini/Peck, JARCE 20, 1983Traunecker, Claude, Fazzini, Richard A., Peck, William H., Une chapelle de magie guérisseuse sur le parvis du temple de Mout à Karnak. In: JARCE 20, 1983, 65-92. + Totentempel Amenophis IIIUntersuchungen im Totentempel Amenophis’ III. Hrsg. von Haeny, Gerhard. BeiträgeBf 11. 1981. Tresson, KoubânTresson, Paul, La stèle de Koubân. BdE 9. 1922. - Tresson, RB 42, 1933Tresson, Paul, Un curieux cas d'exorcisme dans l'antiquité. La stèle égyptienne de Bakhtan. In: RB 42, 1933, 57-78. - Tresson, RB 47, 1938Tresson, Paul, La stèle triomphale de Thoutmosis III: un glorieux bilan de règne. In: RB 47, 1938, 539-554. TriadonLemm, Oskar von, Das Triadon, Ein sahidisches Gedicht mit arabischer Übersetzung. 1903. - Troy, BACE 4, 1993Troy, Lana, Creating a god: The mummification ritual. In: BACE 4, 1993, 55-81. Troy, QueenshipTroy, Lana, Patterns of Queenship in Ancient Egyptian Myth and History. Boreas 14. 1986. TUAT 1,6Rechts- und Wirtschaftsurkunden, Historisch-chronologische Texte. Historisch-chronologische Texte III. Hrsg. von Kaiser, Otto. TUAT 1, Lieferung 6. 1985. TUAT 2,1Religiöse Texte. Deutungen der Zukunft in Briefen, Orakeln und Omina. Hrsg. von Kaiser, Otto. TUAT 2, Lieferung 1. 1986. @@ -4646,30 +3028,29 @@

      Abbreviat TUAT NF 5Böck, Barbara, Texte zur Heilkunde. Hrsg. von Janowski, Bernd, Schwemer, Daniel. TUAT N.F. 5. 2010. TUAT NF 6Arpagaus, Daniel, Grab-, Sarg-, Bau- und Votivinschriften. Hrsg. von Janowski, Bernd, Schwemer, Daniel. TUAT N.F. 6. 2011. TUAT NF 7Hymnen, Klagelieder und Gebete. Hrsg. von Janowski, Bernd, Schwemer, Daniel. TUAT N.F. 7. 2013. - Tulli, RPARA 8, 1933Tulli, Alberto, La stele di Wôśer nel R. Museo Archeologico di Firenze. In: RPARA 8, 1933, 15-20. + TUAT NF 8Weisheitstexte, Mythen und Epen. Hrsg. von Janowski, Bernd, Schwemer, Daniel. TUAT N.F. 8. 2015. (new) + Turin Cat.Fabretti, A., Regio Museo di Torino: antichità egizie. Ordinato e descritto da A. Fabretti, F. Rossi e R. V. Lanzone. 1882-1888. Turin Cat. 1Fabretti, A., Regio Museo di Torino : antichità egizie. Ordinato e descritto da A. Fabretti, F. Rossi e R. V. Lanzone, Bd. 1. 1882. Turin Cat. 2Fabretti, A., Regio Museo di Torino : antichità egizie. Ordinato e descritto da A. Fabretti, F. Rossi e R. V. Lanzone, Bd. 2. 1888. - Turin Cat.Fabretti, A., Regio Museo di Torino: antichità egizie. Ordinato e descritto da A. Fabretti, F. Rossi e R. V. Lanzone. 1882-1888. Tutanchamun, Kat.Tutanchamun : Hamburg, Museum für Kunst und Gewerbe, 15. Mai - 19. Juli 1981. Hrsg. von Settgast, Jürgen, Munro, Peter. 1981. Twenty-Second Congress of OrientalistsProceedings of the Twenty-Second Congress of Orientalists, held in Istanbul, September 15th to 22nd, 1951. Hrsg. von Togan, Zeki Velidi. 1953-1957 (2 Bde.). Tylor/Griffith, PaheriTylor, Joseph John, Griffith, Francis Llewellyn, Wall drawings and monuments of El Kab. [1]. The Tomb of Paheri. With an introduction by F.Ll. Griffith. 1895. Tzachou-Alexandri, Museumskatalog AthenTzachou-Alexandri, Olga, Ο κόσμος της Αιγύπτου στο Εθνικό Αρχαιολογικό Μουσείο. The World of Egypt in the National Archaeological Museum. 1995. Ugaritica ISchaeffer, Claude F.-A., Ugaritica I. Études relatives aux découvertes de Ras Shamra. MRS 3. 1939. - Ugaritica IVSchaeffer, Claude F.-A., Ugaritica IV. Découvertes des XVIIIe et XIXe campagnes, 1954-1955. Fondements préhistoriques d'Ougarit et nouveaux sondages. Etudes anthropologiques. Poteries grecques et monnaies islamiques de Ras Shamra et environs. MRS 15. 1962. - Ullmann, in: Sacred SpaceUllmann, Martina, Thebes. Origins of a Ritual Landscape. In: Sacred Space, 2007, 3-25. + Ugaritica IVSchaeffer, Claude F.-A., Ugaritica IV. Découvertes des XVIIIe et XIXe campagnes, 1954-1955. Fondements préhistoriques d’Ougarit et nouveaux sondages. Etudes anthropologiques. Poteries grecques et monnaies islamiques de Ras Shamra et environs. MRS 15. 1962. Ullmann, Königskult und TempeltypologieUllmann, Martina, König für die Ewigkeit - Die Häuser der Millionen von Jahren. Eine Untersuchung zu Königskult und Tempeltypologie in Ägypten. ÄUAT 51. 2002. Under One SkyUnder One Sky. Astronomy and Mathematics in the Ancient Near East. Hrsg. von Steele, John M., Imhausen, Annette. AOAT 297. 2002. + Univers végétalEncyclopédie religieuse de l’univers végétal. Croyances phytoreligieuses de l’Égypte ancienne, Bd. 1-4. Hrsg. von Aufrère, Sydney H. OrMonsp 10-11, 15-16. 1999-2005. Univers végétal IEncyclopédie religieuse de l’univers vegétal. Croyances phytoreligieuses de l’Égypte ancienne, Bd. 1. Hrsg. von Aufrère, Sydney H. OrMonsp 10. 1999. Univers végétal IIEncyclopédie religieuse de l’univers vegétal. Croyances phytoreligieuses de l’Égypte ancienne, Bd. 2. Hrsg. von Aufrère, Sydney H. OrMonsp 11. 2001. Univers végétal IIIEncyclopédie religieuse de l’univers vegétal. Croyances phytoreligieuses de l’Égypte ancienne, Bd. 3. Hrsg. von Aufrère, Sydney H. OrMonsp 15. 2005. Univers végétal IVEncyclopédie religieuse de l’univers vegétal. Croyances phytoreligieuses de l’Égypte ancienne. Hrsg. von Aufrère, Sydney H. OrMonsp 16. 2005. - Univers végétalEncyclopédie religieuse de l'univers végétal. Croyances phytoreligieuses de l'Égypte ancienne, Bd. 1-4. Hrsg. von Aufrère, Sydney H. OrMonsp 10-11, 15-16. 1999-2005. - Uphill, JNES 28, 1969Uphill, Eric P., Pithom and Raamses. Their Location and Significance. In: JNES 28, 1969, 15-39. UPZWilcken, Ulrich, Urkunden der Ptolemäerzeit (Ältere Funde). 1927-1957. Uranić, Aegyptiaca ZagrabiensiaUranić, Igor, Aegyptiaca Zagrabiensia: egipatska zbirka Arheološkog muzeja u Zagrebu. MAZCM 4. 2007. Uranić, Egyptian CollectionUranić, Igor, Egyptian Collection. Guide (Archaeological Museum Zagreb). 2005. Urk IV, Übersetzung 17-22Helck, Wolfgang, Urkunden der 18. Dynastie. Übersetzung zu den Heften 17-22. 1961. Urk IV, Übersetzung 5-16Burkhardt, Adelheid, Urkunden der 18. Dynastie. Übersetzung zu den Heften 5-16. Hrsg. von Blumenthal, Elke, Müller, Ingeborg, Reineke, Walter Friedrich. 1984. + Urk.Urkunden des aegyptischen Altertums. Begr. von Georg Steindorff. 1903-1957 . Urk. ISethe, Kurt, Urkunden des Alten Reichs/ bearb. von Kurt Sethe. Urk. 1 . 1903. Urk. IISethe, Kurt, Hieroglyphische Urkunden der griechisch-römischen Zeit. Urk. 2 . 1904. Urk. IIISchäfer, Heinrich, Urkunden der älteren Äthiopenkönige. Urk. 3. 1905. @@ -4678,134 +3059,65 @@

      Abbreviat Urk. VISchott, Siegfried, Urkunden mythologischen Inhalts. Bearb. von Siegfried Schott. Urk. 6 . 1929-1939. Urk. VIISethe, Kurt, Historisch-Biographische Urkunden des Mittleren Reiches. Urk. 7 . 1935. Urk. VIIISethe, Kurt, Thebanische Tempelinschriften aus Griechisch-Römischer Zeit. Urk. 8. 1957. - Urk.Urkunden des aegyptischen Altertums. Begr. von Georg Steindorff. 1903-1957 . Urkunden der 18. Dynastie, ÜbersetzungenSethe, Kurt, Urkunden der 18. Dynastie. Bearb. und übersetzt von Kurt Sethe. 1914. Userkaf IRicke, Herbert, Das Sonnenheiligtum des Königs Userkaf. I. Der Bau. BeiträgeBf 7. 1965. Userkaf IIRicke, Herbert, Das Sonnenheiligtum des Königs Userkaf. II. Die Funde. BeiträgeBf 8. 1969. v. Soden, AkkHwbSoden, Wolfram von, Akkadisches Handwörterbuch. 1959-1981. + Valbelle, PoidsValbelle, Dominique, Catalogue des poids à inscriptions hiératiques de Deir el-Médineh. Nos 5001-5423. DFIFAO 16. 1977. (new) Valbelle, Satis et AnoukisValbelle, Dominique, Satis et Anoukis. SDAIK 8. 1981. - Valloggia, RdE 21, 1969Valloggia, Michel, Amenemhat IV et sa corégence avec Amenemhat III. In: RdE 21, 1969, 107-133. Valloggia, Recherche sur les "messagers" Valloggia, Michel, Recherche sur les "messagers" (wpwtyw) dans les sources égyptiennes profanes. 1976. - Van de Walle, BiOr 9, 1952Van de Walle, Baudouin, Rezension: S. Schott, Altägyptische Liebeslieder mit Märchen und Liebesgeschichten. In: BiOr 9, 1952, 105-108. - Van de Walle, CdE 13, 1938Van de Walle, Baudouin, Les rois sportifs de l'ancienne Égypte. In: CdE 13, 1938, 234-257. - Van de Walle, CdE 22, 1947Van de Walle, Baudouin, Le thème de la satire des métiers dans la littérature égyptienne. In: CdE 22, 1947, 50-72. - Van de Walle, in: Fs CapartVan de Walle, Baudouin, Une stèle égyptienne du Moyen Empire au Musée Curtius de Liège. In: Fs Capart, 1935, 563-574. - Van de Walle, in: Fs GrapowVan de Walle, Baudouin, Les déterminatifs dissimilés des noms d'animaux. In: Fs Grapow, 1955, 366-378. - Van de Walle, RdE 3, 1938Van de Walle, Baudouin, Un hymne du Moyen Empire complété au moyen de deux stèles du Musée National de Rio de Janeiro. In: RdE 3, 1938, 91-97. - Van de Walle, ZÄS 90, 1963Van de Walle, Baudouin, Une tablette scolaire provenant d'Abydos. In: ZÄS 90, 1963, 118-123. Van den Boorn, DutiesVan den Boorn, G. P. F., The duties of the vizier: civil administration in the early New Kingdom. 1988. Van der Molen, Dictionary of Coffin TextsVan der Molen, Rami, A Hieroglyphic Dictionary of Egyptian Coffin Texts. PÄ 15. 2000. - Van der Plas, in: Fs SchmitzVan der Plas, Dirk, Ostrakon Golenischeff 4470. In: Fs Schmitz, 2008, 257-259. Van der Plas, NilVan der Plas, Dirk, L’hymne à la crue du Nil. EgUit 4. 1986. Van Seters, HyksosVan Seters, John, The Hyksos. A New Investigation. 1966. - Van Siclen, BARCE 188, 2005Van Siclen, Charles C., Conservation of the Third Kamose Stela at Karnak (Phase 1). In: BARCE 188, 2005, 21-23. - Van Siclen, BSFE 163, 2005Van Siclen, Charles C., La cour du IXe pylône à Karnak. In: BSFE 163, 2005, 27-46. - Van Siclen, in: Second Intermediate PeriodVan Siclen, Charles C., The Third Stela of Kamose. In: Second Intermediate Period, 2010, 355-358. Van Siclen, King Amenhotep IIVan Siclen, Charles C., The alabaster shrine of King Amenhotep II. 1986. - Van Siclen, VA 6, 1990Van Siclen, Charles C., On a Relief of Ahmose from Dendera. In: VA 6, 1990, 184-187. - Van Walsem, in: Fs QuaegebeurWalsem, René van, The Caption to a Cattle-Fording Scene in a Tomb at Saqqara and its Implication for the Seh/Sinnbild Discussion on Egyptian Iconography. In: Fs Quaegebeur, 1998, 1469-1485. - Van Walsem, OMRO 59-60, 1978-1979Walsem, René van, The psS-kf: an investigation of an ancient Egyptian funerary instrument. In: OMRO 59-60, 1978-1979, 193-249. Vandersleyen, ÄgyptenDas alte Ägypten. Hrsg. von Vandersleyen, Claude. PKG 15. 1975. - Vandersleyen, CdE 52, 1977Vandersleyen, Claude, Une stèle de l'an 18 d'Amosis à Hanovre. In: CdE 52, 1977, 223-244. - Vandersleyen, GuerresVandersleyen, Claude, Les guerres d'Amosis. Fondateur de la XVIIIe dynastie. MRE 1. 1971. - Vandersleyen, in: Eyre, Seventh International Congress of EgyptologistsVandersleyen, Claude, Les Guerres de Mérenptah et de Ramsès III contre les Peuples de l'Ouest, et leurs Rapports avec le Delta. In: Eyre, Seventh International Congress of Egyptologists, 1998, 1197-1203. - Vandersleyen, in: Fs KákosyVandersleyen, Claude, Inepou: Un terme désignant le roi avant qu'il ne soit roi. In: Fs Kákosy, 1992, 563-566. - Vandersleyen, L'ÉgypteVandersleyen, Claude, L'Égypte et la Vallée du Nil 2: De la fin de l'Ancien Empire à la fin du Nouvel Empire. 1995. - Vandersleyen, MoïseVandersleyen, Claude, L'Égypte au temps de Moïse: l'invasion des étrangers nomades: Keftiou, Hébreux, Philistins, etc.; l'Exode: le retour en scène des pharaons égyptiens. 2016. - Vandersleyen, RdE 19, 1967Vandersleyen, Claude, Une tempête sous le règne d'Amosis. In: RdE 19, 1967, 123-159. - Vandersleyen, RdE 20, 1968Vandersleyen, Claude, Deux nouveaux fragments de la stèle d'Amosis relatant une tempête. In: RdE 20, 1968, 127-134. - Vandersleyen, RdE 44, 1993Vandersleyen, Claude, Rahotep, Sébekemsaf Ier et Djéhouty, rois de la 13e dynastie. In: RdE 44, 1993, 189-191. - Vandier, ASAE 36, 1936Vandier, Jacques, Une tombe inédite de la VIe dynastie à Akhmîm. In: ASAE 36, 1936, 33-44. - Vandier, CdE 18, 1943Vandier, Jacques, Quelques stèles de soldats de la Première Periode Intermédiaire. In: CdE 18, 1943, 21-29. - Vandier, CRAIBL 112, 1968Vandier, Jacques, Une stèle égyptienne portant un nouveau nom royal de la troisième dynastie. In: CRAIBL 112, 1968, 16-22. - Vandier, FamineVandier, Jacques, La famine dans l'Égypte ancienne. RAPH 7. 1936. - Vandier, Manuel Manuel d'archeologie egyptienne. Tome 1-6. 1952-1978. - Vandier, Manuel IVandier, Jacques, Manuel d'archéologie égyptienne 1. Les époques de formation. 1952. - Vandier, Manuel II.1Vandier, Jacques, Manuel d'archéologie égyptienne 2. Les grandes époques Premier volume. L'architecture funéraire Deuxième volume. L'architecture religieuse et civile. 1954-55. - Vandier, Manuel IIVandier, Jacques, Manuel d'archéologie égyptienne 2. Les grandes époques. 1954. - Vandier, Manuel III,1Vandier, Jacques, Manuel d'archéologie égyptienne 3. Les grandes époques. La statuaire Album de 174 planches. 1958. - Vandier, Manuel IIIVandier, Jacques, Manuel d'archéologie égyptienne 3. Les grandes époques. La statuaire. 1958. - Vandier, Manuel IVVandier, Jacques, Manuel d'archéologie égyptienne 4. Bas-reliefs et peintures. Scènes de la vie quotidienne. 1964. - Vandier, Manuel VVandier, Jacques, Manuel d'archéologie égyptienne 5. Bas-reliefs et peintures. Scènes de la vie quotidienne 2. 1969. - Vandier, Mo'allaVandier, Jacques, Mo`alla. La tombe d'Ankhtifi et la tombe de Sébekhotep. BdE 18. 1950. + Vandersleyen, GuerresVandersleyen, Claude, Les guerres d’Amosis. Fondateur de la XVIIIe dynastie. MRE 1. 1971. + Vandersleyen, L'ÉgypteVandersleyen, Claude, L’Égypte et la Vallée du Nil 2: De la fin de l’Ancien Empire à la fin du Nouvel Empire. 1995. + Vandersleyen, MoïseVandersleyen, Claude, L’Égypte au temps de Moïse: l’invasion des étrangers nomades: Keftiou, Hébreux, Philistins, etc.; l’Exode: le retour en scène des pharaons égyptiens. 2016. + Vandier, FamineVandier, Jacques, La famine dans l’Égypte ancienne. RAPH 7. 1936. + Vandier, Manuel Manuel d’archeologie egyptienne. Tome 1-6. 1952-1978. + Vandier, Manuel IVandier, Jacques, Manuel d’archéologie égyptienne 1. Les époques de formation. 1952. + Vandier, Manuel IIVandier, Jacques, Manuel d’archéologie égyptienne 2. Les grandes époques. 1954. + Vandier, Manuel II.1Vandier, Jacques, Manuel d’archéologie égyptienne 2. Les grandes époques Premier volume. L’architecture funéraire Deuxième volume. L’architecture religieuse et civile. 1954-55. + Vandier, Manuel IIIVandier, Jacques, Manuel d’archéologie égyptienne 3. Les grandes époques. La statuaire. 1958. + Vandier, Manuel III,1Vandier, Jacques, Manuel d’archéologie égyptienne 3. Les grandes époques. La statuaire Album de 174 planches. 1958. + Vandier, Manuel IVVandier, Jacques, Manuel d’archéologie égyptienne 4. Bas-reliefs et peintures. Scènes de la vie quotidienne. 1964. + Vandier, Manuel VVandier, Jacques, Manuel d’archéologie égyptienne 5. Bas-reliefs et peintures. Scènes de la vie quotidienne 2. 1969. + Vandier, Mo'allaVandier, Jacques, Mo`alla. La tombe d’Ankhtifi et la tombe de Sébekhotep. BdE 18. 1950. Vandorpe/Clarysse, EdfuEdfu, an Egyptian Provincial Capital in the Ptolemaic Period, Brussel, 3 September 2001. Hrsg. von Vandorpe, Katelijn, Clarysse, Willy C. 2003. - Vandorpe/Quack, in: Fs VleemingVandorpe, Katelijn, Quack, Joachim Friedrich, Drei demotische Papyri aus der Sammlung des Übersee-Museums Bremen. In: Fs Vleeming, 2018, 249-256. Vandorpe/Vleeming, Erbstreit PapyriVandorpe, Katelijn, Vleeming, Sven P., The Erbstreit Papyri, A Bilingual Dossier from Pathyris of the Second Century BC (Pap. Erbstreit). StudDem 13. 2017. - Varille, ASAE 53, 1955Varille, Alexandre, La grande porte du temple d'Apet à Karnak. In: ASAE 53, 1955, 79-118. - Varille, BIFAO 35, 1935Varille, Alexandre, Trois nouveaux chants de harpistes. In: BIFAO 35, 1935, 153-160. - Varille, BIFAO 41, 1942Varille, Alexandre, La grande stèle d'Aménophis II à Giza. In: BIFAO 41, 1942, 31-38. - Varille, in: Mél. Masp. IVarille, Alexandre, La stèle de Sa-Mentou-ouser (no. 6365 du Musée Égyptien de Florence). In: Mél. Masp. I, 1935, 553-566. Varille, InscriptionsVarille, Alexandre, Inscriptions soncernant l’architecte Amenhotep fils de Hapou. BdE 44. 1968. Ventker, Der Starke auf dem DachVentker, Bettina, Der Starke auf dem Dach. Funktion und Bedeutung der löwengestaltigen Wasserspeier im alten Ägypten. SSR 6. 2012. Verbovsek, TempelstatuenVerbovsek, Alexandra, "Als Gunsterweis des Königs in den Tempel gegeben …". Private Tempelstatuen des Alten und Mittleren Reiches. ÄUAT 63. 2004. - Vercoutter, BIFAO 46, 1947Vercoutter, Jean, Les Haou-Nebout (𓇉‌𓎟𓎟𓎟). In: BIFAO 46, 1947, 125-158. - Vercoutter, BIFAO 49, 1950Vercoutter, Jean, Les statues du général Hor, gouverneur d'Hérakléopolis, de Busiris et d'Héliopolis (Louvre A.88, Alexandie, s.n.). In: BIFAO 49, 1950, 85-114. - Vercoutter, CdE 27, 1952Vercoutter, Jean, Fouilles : Dara – Deir-El-Medineh. Mission française 1950-1951. In: CdE 27, 1952, 98-111. - Vercoutter, CRIPEL 1, 1973Vercoutter, Jean, La XVIIIe Dynastie à Sai et en Haute-Nubie. In: CRIPEL 1, 1973, 7-38. - Vercoutter, in: Mirgissa IVercoutter, Jean, Les problèmes archéologiques et historiques du site. In: Mirgissa I, 1970, 160-192. - Vercoutter, Kush 10, 1962Vercoutter, Jean, Preliminary report of the excavations at Aksha by the Franco-Argentine Archaeological Expedition, 1961. In: Kush 10, 1962, 109-116. - Vercoutter, Kush 14, 1966Vercoutter, Jean, Semna South Fort and the Records of Nile Levels at Kumma. In: Kush 14, 1966, 125-164. - Vercoutter, Kush 4, 1956Vercoutter, Jean, New Egyptian Texts from the Sudan. In: Kush 4, 1956, 66-82. - Vercoutter, Kush 6, 1958Vercoutter, Jean, Excavations at Sai 1955-7. A Preliminary Report. In: Kush 6, 1958, 144-169. - Vercoutter, L'EgypteVercoutter, Jean, L'Égypte et le monde égéen préhellénique. Étude critique des sources égyptiennes (du début de la XVIIIe à la fin de la XIXe Dynastie). BdE 22. 1956. + Vercoutter, L'EgypteVercoutter, Jean, L’Égypte et le monde égéen préhellénique. Étude critique des sources égyptiennes (du début de la XVIIIe à la fin de la XIXe Dynastie). BdE 22. 1956. Vercoutter, Textes biographiquesVercoutter, Jean, Textes biographiques du Sérapeum de Memphis. 1962. - Vergote, ZÄS 91, 1964Vergote, Jozef, L'Étymologie de ég. rꜢ-pr: copte ·rpé: ar. birbā? In: ZÄS 91, 1964, 135-137. Verhoeven, GrillenVerhoeven, Ursula, Grillen, Kochen, Backen im Alltag und im Ritual Altägyptens. RitesEg 4. 1984. Verhoeven, IahtesnachtVerhoeven, Ursula, Das saitische Totenbuch der Iahtesnacht: P. Colon. Aeg. 10207. PTA 41.1-2. 1993. - Verhoeven, in: Fs GundlachVerhoeven, Ursula, Ein historischer "Sitz im Leben" für die Erzählung von Horus und Seth des Papyrus Chester Beatty I. In: Fs Gundlach, 1996, 347-363. - Verhoeven, in: Gs PosenerVerhoeven, Ursula, Von hieratischen Literaturwerken in der Spätzeit. In: Gs Posener, 1999, 255-265. - Verhoeven, in: Kon-TexteVerhoeven, Ursula, Literarische Ansichtskarten aus dem Norden versus Sehnsucht nach dem Süden. In: Kon-Texte, 2004, 65-80. Verhoeven, Späthieratische BuchschriftVerhoeven, Ursula, Untersuchungen zur Späthieratischen Buchschrift. OLA 99. 2001. Verner, Abusir IVerner, Miroslav, The Mastaba of Ptahshepses, Reliefs I/1. Abusir 1. 1977. - Verner, BIFAO 87, 1987Verner, Miroslav, Remarques sur le temple solaire Ḥtp-Rꜥ et la date du mastaba de Ti. In: BIFAO 87, 1987, 293-297. Vernier, Bijouterie et JoaillerieVernier, Émile Séraphin, La bijouterie et la joaillerie égyptiennes. MIFAO 2. 1907. Vernus, AthribisVernus, Pascal, Athribis. Textes et documents relatifs à la géographie, aux cultes, et à l’histoire d’une ville du delta égyptien à l’époque pharaonique. BdE 74. 1978. - Vernus, BSEG 13, 1989Vernus, Pascal, Sur deux inscriptions du Moyen Empire (Urk. VII, 36; Caire JE 51911). In: BSEG 13, 1989, 173-181. - Vernus, ChantsVernus, Pascal, Chants d'amour de l'Égypte antique. 1992. - Vernus, ConscienceVernus, Pascal, Essai sur la conscience de l'histoire dans l'Égypte pharaonique. BEHE 332. 1995. - Vernus, CRIPEL 18, 1996Vernus, Pascal, Le début de l'Enseignement de Ptahhotep: un nouveau manuscrit. In: CRIPEL 18, 1996, 119-140. - Vernus, DE 6, 1986Vernus, Pascal, Allusion au partage des acquets dans une autobiographie de la deuxième période intermédiaire. In: DE 6, 1986, 79-86. + Vernus, ChantsVernus, Pascal, Chants d’amour de l’Égypte antique. 1992. + Vernus, ConscienceVernus, Pascal, Essai sur la conscience de l’histoire dans l’Égypte pharaonique. BEHE 332. 1995. Vernus, Future at IssueVernus, Pascal, Future at Issue. Tense, Mood and Aspect in Middle Egyptian. Studies in Syntax and Semantics. YES 4. 1990. - Vernus, in: Fs FrandsenVernus, Pascal, Le racine √gm, notion de « rencontre, contact avec », et ses radicaux dérivés (gmḥ, ngmgm et gmgm). In: Fs Frandsen, 2015, 419-430. - Vernus, in: Fs LauerVernus, Pascal, Le vizir Ptahhotep et le balancier. In: Fs Lauer, 1997, 437-443. - Vernus, in: LÄ VVernus, Pascal, s.v. Schreibtafel. In: LÄ V, 1984, 703-709. - Vernus, Information historique 50, 1988Vernus, Pascal, Les inscriptions d'Edfou du début de la XIIe dynastie au début de la XVIIIe dynastie. In: Information historique 50, 1988, 14-19. - Vernus, Or 48, 1979Vernus, Pascal, Un décret de Thoutmosis III relatif à la santé publique (P.Berlin 3049, vo XVIII-XIX). In: Or 48, 1979, 176-184. Vernus, PartiesVernus, Pascal, Les Parties du Discours en Moyen Égyptien. Autopsie d’une théorie. CSEG 5. 1997. - Vernus, RdE 25, 1973Vernus, Pascal, La stèle C 3 du Louvre. In: RdE 25, 1973, 217-234. - Vernus, RdE 28, 1976Vernus, Pascal, La formule 'le souffle de la bouche' au Moyen Empire. In: RdE 28, 1976, 139-145. - Vernus, RdE 33, 1981Vernus, Pascal, Omina calendériques et comptabilité d'offrandes sur une tablette hiératique de la XVIIIe dynastie. In: RdE 33, 1981, 89-124. - Vernus, RdE 34, 1982Vernus, Pascal, Etudes de philologie et de linguistique (II). In: RdE 34, 1982-1983, 115-128. - Vernus, RdE 35, 1984Vernus, Pascal, Études de philologie et de linguistique (III). In: RdE 35, 1984, 159-188. - Vernus, RdE 41, 1990Vernus, Pascal, Entre Néo-égyptien et Démotique: la langue utilisée dans la traduction du Rituel de repousser l'Agressif (Études sur la diglossie I). In: RdE 41, 1990, 153-208. - Vernus, SagessesVernus, Pascal, Sagesses de l'Égypte pharaonique. 2001, 2010 (2. bear. Aufl.). - Vernus. RdE 37, 1986Vernus, Pascal, Études de philologie et de linguistique (V). In: RdE 37, 1986, 139-147. + Vernus, SagessesVernus, Pascal, Sagesses de l’Égypte pharaonique. 2001, 2010 (2. bear. Aufl.). Vernus/Yoyotte, BestiaireVernus, Pascal, Yoyotte, Jean, Bestiaire des pharaons. 2005. Verreth, ToponymsVerreth, Herbert, Toponyms in Demotic and Abnormal Hieratic texts from the 8th century BC till the 5th century AD. TOP 5. 2011. - Vigneau, Musée du LouvreVigneau, André, Le Musée du Louvre : l'Égypte, la Mésopotamie. 1935. - Vikentiev, BIE 30, 1947-1948Vikentiev, Vladimir, La traversée de l'Oronte. La chasse et la veillée de nuit du pharaon Aménophis II, d'après la grande stèle de Mit-Rahineh. In: BIE 30, 1947-1948, 251-307. - Vinson, ZÄS 124, 1997Vinson, Steve, On ḥry.t, "Bulwark", in P. Anastasi IV, 7/9-8/7. In: ZÄS 124, 1997, 156-162. - Virey, RecTrav 8, 1886Virey, Philippe, Deux petits textes provenant de Thèbes. In: RecTrav 8, 1886, 169-172. - Visions d'ÉgypteVisions d'Égypte. Émile Prisse d'Avennes (1807-1879). 2011. - Vittmann, in: Das Ägyptische und die Sprachen Vorderasiens, Nordafrikas und der ÄgäisVittmann, Günter, Iranisches Sprachgut in ägyptischer Übelieferung. In: AOAT 310, 2004, 129-182. - Vittmann, in: Fs SatzingerVittmann, Günter, Varia Aegyptiaca. In: Fs Satzinger, 2003, 161-182. - Vittmann, Or 47, 1978Vittmann, Günter, Zu den thebanischen Totenstelen der 25. und 26. Dynastie (Korrekturen und Ergänzungen zu P. Munro, Die spätägyptischen Totenstelen [ÄgFo 25] 187-228). In: Or 47, 1978, 1-11. + Vigneau, Musée du LouvreVigneau, André, Le Musée du Louvre : l’Égypte, la Mésopotamie. 1935. + Visions d’ÉgypteVisions d’Égypte. Émile Prisse d’Avennes (1807-1879). 2011. Vittmann, P. Rylands 9Vittmann, Günter, Der demotische Papyrus Rylands 9. ÄUAT 38. 1998. Vittmann, Priester und BeamteVittmann, Günter, Priester und Beamte im Theben der Spätzeit. 1978. Vittmann, RiesenVittmann, Günter, "Riesen" und riesenhafte Wesen in der Vorstellung der Ägypter. 1995. - Vittmann, SAK 22, 1995Vittmann, Günter, Die Autobiographie der Tathotis (Stele Wien 5857). In: SAK 22, 1995, 283-323. - Vittmann, SAK 30, 2002Vittmann, Günter, Der große Priesterstammbaum in Karnak. In: SAK 30, 2002, 351-371. - Vittmann, WZKM 86, 1996Vittmann, Günter, Semitisches Sprachgut im Demotischen. In: WZKM 86, 1996, 435-447. - Vittmann, WZKM 87, 1997Vittmann, Günter, Review: Hoch, James E. 1994. Semitic words in Egyptian texts of the New Kingdom and Third Intermediate Period. In: WZKM 87, 1997, 277-288. - Vittmann, ZÄS 125, 1998Vittmann, Günter, Tradition und Neuerung in der demotischen Literatur. In: ZÄS 125, 1998, 62-77. - Vittmann, ZÄS 127, 2000Vittmann, Günter, Von Kastraten, Hundskopfmenschen und Kannibalen. In: ZÄS 127, 2000, 167-180. - Vleeming, BiOr 42, 1985Vleeming, Sven P., Notes on Some Early-demotic Cattle Documents. In: BiOr 42, 1985, 508-525. + Vittmann, WegmetaphorikVittmann, Günter, Altägyptische Wegmetaphorik. 1999. (new) Vleeming, GooseherdsVleeming, Sven P., The Gooseherds of Hou (Pap. Hou). A Dossier Relating to Various Agricultural Affairs from Provincial Egypt of the Early Fifth Century B.C. StudDem 3. 1991. Vleeming, LexicographyAspects of Demotic Lexicography. Acts of the Second International Conference for Demotic Studies, Leiden, 19-21 September 1984. Hrsg. von Vleeming, Sven P. StudDem 1. 1987. Vleeming, OrthographyAspects of Demotic Orthography. Acts of an International Colloquium held in Trier, 8 November 2010. Hrsg. von Vleeming, Sven P. StudDem 11. 2013. + Vleeming, Ostraka VariaVleeming, Sven P., Ostraka Varia. Tax Receipts and Legal Documents on Demotic, Greek, and Greek-Demotic Ostraka, chiefly of the Early Ptolemaic Period, from Various Collections (P.L.Bat.26). P.L.Bat. 26. 1994. (new) + Vleeming, Short TextsVleeming, Sven P., Some Coins of Artaxerxes and other short Texts in the Demotic Script found on Various Objects and Gathered from Many Publications. StudDem 5. 2001. Vleeming, Short Texts IIVleeming, Sven P., Demotic and Greek Mummy Labels and Other Short Texts Gathered from Many Publications. StudDem 9. 2011. Vleeming, Short Texts IIIVleeming, Sven P., Demotic Graffiti and Other Short Texts Gathered from Many Publications. Short Texts III 1201-2350. StudDem 12. 2015. - Vleeming, Short TextsVleeming, Sven P., Some Coins of Artaxerxes and other short Texts in the Demotic Script found on Various Objects and Gathered from Many Publications. StudDem 5. 2001. Vogel, FestungenVogel, Carola, Ägyptische Festungen und Garnisonen bis zum Ende des Mittleren Reiches. HÄB 46. 2004. Vogelsang, BauerVogelsang, Friedrich, Kommentar zu den Klagen des Bauern. UGAÄ 6. 1913 (Nachdr. 1964). Volten, AniiVolten, Aksel, Studien zum Weisheitsbuch des Anii. HFM 23,3. 1937. @@ -4813,226 +3125,125 @@

      Abbreviat Von Meroe bis IndienKockelmann, Holger, Rickert, Alexa, Von Meroe bis Indien. Fremdvölkerlisten und nubische Gabenträger in den griechisch-römischen Tempeln. 2015. Vos, Apis Embalming RitualVos, R. L., The Apis Embalming Ritual, P. Vindob. 3873. OLA 50. 1993. Vycichl, Dict. étym.Vycichl, Werner, Dictionnaire étymologique de la langue copte. 1983. - Vycichl, in: Fs JunkerVycichl, Werner, Grundlagen der ägyptisch-semitischen Wortvergleichung. In: Fs Junker, 1958, 367-405. - Vycichl, ZÄS 112, 1985Vycichl, Werner, Das Zeichen für d 'Hand' in der Hieroglyphenschrift und die semitischen Entsprechungen des zugrunde liegenden Etymons. In: ZÄS 112, 1985, 169-179. - Vyse, Pyramids of Gizeh IIIVyse, Howard, Operations carried on at the Pyramids of Gizeh in 1837. With an account of a voyage into upper Egypt, and an Appendix. Vol. III: Appendix. 1842. Vyse, Pyramids of GizehVyse, Howard, Operations carried on at the pyramids of Gizeh in 1837. With an account of a voyage into Upper Egypt, and an appendix. 3 vols. 1840-1842. + Vyse, Pyramids of Gizeh IIIVyse, Howard, Operations carried on at the Pyramids of Gizeh in 1837. With an account of a voyage into upper Egypt, and an Appendix. Vol. III: Appendix. 1842. Waddell, ManethoWaddell, William G., Manetho. LCL 350. 1940. Wagner, AnchnesneferibreWagner, Mareike, Der Sarkophag der Gottesgemahlin Anchnesneferibre. SSR 16. 2016. Waitkus, KryptenWaitkus, Wolfgang, Die Texte in den unteren Krypten des Hathortempels von Dendera. Ihre Aussagen zur Funktion und Bedeutung dieser Räume. MÄS 47. 1997. Walker, Anatom. Term.Walker, James H., Studies in Ancient Egyptian Anatomical Terminology. ACE-Stud. 4. 1996. - Walker, VetRecOpen 76, 1964Walker, Edward Ronald, The Veterinary Papyrus of Kahun. In: VetRecOpen 76, 1964, 198-200. Wallert, PalmenWallert, Ingrid, Die Palmen im Alten Ägypten. Eine Untersuchung ihrer praktischen, symbolischen und religiösen Bedeutung. MÄS 1. 1962. - Wallert, Verzierte LöffelWallert, Ingrid, Der verzierte Löffel. Seine Formgeschichte und Verwendung im alten Ägypten. ÄA 16. 1967. Wallis, Ceramic ArtWallis, Henry, Egyptian Ceramic Art. Typical Examples of the Art of the Egyptian Potter. 1900. Wangstedt, O. ZürichWangstedt, S. W., Die demotischen Ostraka der Universität zu Zürich. 1965. Wangstedt, OstrakaWangstedt, S. W., Ausgewählte demotische Ostraka aus der Sammlung des Victoria-Museums zu Uppsala und der Staatlichen Papyrussammlung zu Berlin. 1954. Waraksa, Female FigurinesWaraksa, Elizabeth A., Female Figurines from the Mut Precinct. Context and Ritual Function. OBO 240. 2009. - Ward, CdE 71, 1996Ward, William A., A New Look at Semitic Personal Names and Loanwords in Egyptian. In: CdE 71, 1996, 17-47. Ward, Feminine TitlesWard, William A., Essays on Feminine Titles of the Middle Kingdom and related Subjects. 1986. - Ward, GM 109, 1989Ward, William A., Egyptian tḫbs: A Hurrian Loan-word in the Vernacular of Deir el-Medineh. In: GM 109, 1989, 73-82. - Ward, JEA 59, 1973Ward, William A., The biconsonantal doublet gp/gb, 'overflow'. In: JEA 59, 1973, 228-231. - Ward, JNES 37, 1978Ward, William A., The Ḥỉw-ꜣss, the Ḥỉw-Serpent, and the God Seth. In: JNES 37, 1978, 23-24. - Ward, JNES 44, 1985Ward, William A., A Late Egyptian Ꜥr.t: The So-Called Upper Room. In: JNES 44, 1985, 329-335. - Ward, Or 32, 1963Ward, William A., Notes on Some Semitic Loan-Words and Personal Names in Late Egyptian. In: Or 32, 1963, 413-436. Ward, RootsWard, William A., The Four Egyptian Homographic Roots B-3. StudPohl 6. 1978. Ward, Sacred BeetleWard, John, The Sacred Beetle. A Popular Treatise on Egyptian Scarabs in Art and History. 1902. - Ward, SAK 5, 1977Ward, William A., Lexicographical Miscellanies. In: SAK 5, 1977, 265-292. - Ward, SAK 9, 1981Ward, William A., Lexicographical Miscellanies II. In: SAK 9, 1981, 359-373. Ward, TitlesWard, William A., Index of Egyptian Administrative and Religious Titles of the Middle Kingdom. 1982. - Ward, ZÄS 102, 1975Ward, William A., The Biconsonantal Root *bꜢ and Remarks on Bilabial Interchange in Egyptian. In: ZÄS 102, 1975, 60-67. - Ward, ZÄS 107, 1980Ward, William A., The Middle Kingdom Title ꜤꜢw, 'Journey-man, Trainee'. In: ZÄS 107, 1980, 170-174. - Ward, ZÄS 98, 1972Ward, William A., Middle Egyptian nhrhr, 'Self-satisfaction'. In: ZÄS 98, 1972, 155-156. + Wasmuth, AchämenidenzeitWasmuth, Melanie, Ägypto-persische Herrscher- und Herrschaftspräsentation in der Achämenidenzeit. 2017. (new) Way, GöttergerichtWay, Thomas von der, Göttergericht und "Heiliger" Krieg im alten Ägypten: die Inschriften des Merenptah zum Libyerkrieg des Jahres 5. SAGA 4. 1992. Way, TextüberlieferungWay, Thomas von der, Die Textüberlieferung Ramses’ II. zur Qades-Schlacht. Analyse und Struktur. HÄB 22. 1984. - WbZ: DZA Digitalisiertes Zettelarchiv des Wörterbuchs der ägyptischen Sprache aaew.bbaw.de/tla/servlet/DzaIdx, in: Thesaurus Linguae Aegyptiae aaew.bbaw.de/tla/, v16, 15. Aktualisierung, 31. Okt. 2014, hrsg. von der Berlin-Brandenburgischen Akademie der Wissenschaften - WbZ: OrtsnamenOrtsnamen-Zettel DZA 11.094.570-11.381.530 , in: Digitalisiertes Zettelarchiv des Wörterbuchs der ägyptischen Sprache aaew.bbaw.de/tla/servlet/DzaBrowser?newpid=11.094.570&show=anzeigen!, in: Thesaurus Linguae Aegyptiae aaew.bbaw.de/tla/, v16, 15. Aktualisierung, 31. Okt. 2014, hrsg. von der Berlin-Brandenburgischen Akademie der Wissenschaften WbZDas Zettelarchiv [des Wörterbuchs der ägyptischen Sprache] aaew.bbaw.de/archive/das-digitalisierte-zettelarchiv/einfuehrung, hrsg. von der Berlin-Brandenburgischen Akademie der Wissenschaften + WbZ: DZA Digitalisiertes Zettelarchiv des Wörterbuchs der ägyptischen Sprache aaew.bbaw.de/tla/servlet/DzaIdx, in: Thesaurus Linguae Aegyptiae aaew.bbaw.de/tla/, v16, 15. Aktualisierung, 31. Okt. 2014, hrsg. von der Berlin-Brandenburgischen Akademie der Wissenschaften + WbZ: OrtsnamenOrtsnamen-Zettel DZA 11.094.570-11.381.530 , in: Digitalisiertes Zettelarchiv des Wörterbuchs der ägyptischen Sprache aaew.bbaw.de/tla/servlet/DzaBrowser?newpid=11.094.570&show=anzeigen!, in: Thesaurus Linguae Aegyptiae aaew.bbaw.de/tla/, v16, 15. Aktualisierung, 31. Okt. 2014, hrsg. von der Berlin-Brandenburgischen Akademie der Wissenschaften Weeks, Anatomical KnowledgeWeeks, Kent R., Anatomical Knowledge of the Ancient Egyptians and the Representation of the Human Figure in Egyptian Art. 1970. Weeks, Giza Mastabas 5Weeks, Kent R., Mastabas of Cemetery G 6000. Including G 6010 (Neferbauptah), G 6020 (Iymery), G 6030 (Ity), G 6040 (Shepseskafankh). Giza Mastabas 5. 1994. Wehr, Dictionary of Modern Written ArabicWehr, Hans, Cowan, J. Milton, A Dictionary of Modern Written Arabic. 1976. - Weigall, ASAE 7, 1906Weigall, Arthur E. P., A report on the excavation of the funeral temple of Thoutmosis III at Gurneh. In: ASAE 7, 1906, 121-141. Weigall, Guide to AntiquitiesWeigall, Arthur E. P., A Guide to the Antiquities of Upper Egypt. From Abydos to the Sudan Frontier. 1910. Weigall, Lower NubiaWeigall, Arthur E. P., A Report on the Antiquities of Lower Nubia (The First Cataract to the Sudanese Frontier) and Their Condition in 1906-7, A Photographic Reprint with Additions. 1907 . Weigall, TravelsWeigall, Arthur E. P., Travels in the Upper Egyptian Deserts. 1909. - Weill, BIFAO 30, 1931Weill, Raymond, La racine …, (i) «être» génératrice de formes verbales et de noms de personnes. In: BIFAO 30, 1931, 593-618. - Weill, BIFAO 32, 1932Weill, Raymond, Compléments pour "La fin du Moyen Empire égyptien", monuments et faits documentaires. In: BIFAO 32, 1932, 7-52. - Weill, BIFAO 45, 1947Weill, Raymond, Le livre du "Désespéré". Le sens, l'intention et la composition littéraire de l'ouvrage. In: BIFAO 45, 1947, 89-154. - Weill, Inscriptions SinaiWeill, Raymond, Recueil des inscriptions égyptiennes du Sinaï: bibliographie, texte, traduction et commentaire, précédé de la géographie, de l'histoire et de la bibliographie des établissements égyptiens de la péninsule. 1904. - Weill, Les décrets royaux de l'Ancien Empire égyptienWeill, Raymond, Les décrets royaux de l'Ancien Empire égyptien: étude sur les décrets royaux trouvés à Koptos au cours des travaux de la Société française des fouilles archéologiques (campagnes de 1910 et 1911) et sur les documents similaires d'autres provenances. 1912. - Weill, Origines de l'Égypte pharaoniqueWeill, Raymond, Les origines de l'Égypte pharaonique. Première partie: La IIe et la IIIe dynasties. 1908. - Weill, REA 2, 1929Weill, Raymond, Le roi Neterkhet-Zeser et l'officier Imhotep à la pyramide à degrès de Saqqarah. In: REA 2, 1929, 99-120. - Weill, Sphinx 15, 1911/12Weill, Raymond, Monuments nouveaux des premières dynasties. In: Sphinx 15, 1911-12, 1-35. + Weill, Inscriptions SinaiWeill, Raymond, Recueil des inscriptions égyptiennes du Sinaï: bibliographie, texte, traduction et commentaire, précédé de la géographie, de l’histoire et de la bibliographie des établissements égyptiens de la péninsule. 1904. + Weill, Les décrets royaux de l’Ancien Empire égyptienWeill, Raymond, Les décrets royaux de l’Ancien Empire égyptien: étude sur les décrets royaux trouvés à Koptos au cours des travaux de la Société française des fouilles archéologiques (campagnes de 1910 et 1911) et sur les documents similaires d’autres provenances. 1912. + Weill, Origines de l’Égypte pharaoniqueWeill, Raymond, Les origines de l’Égypte pharaonique. Première partie: La IIe et la IIIe dynasties. 1908. Wenig, ÄMB FührerWenig, Steffen, Führer durch das Berliner Ägyptische Museum. 1961. - Wenig, FuB 8, 1967Wenig, Steffen, Ein Kasten für Opferspeisen aus dem Mittleren Reich. In: FuB 8, 1967, 39-59. - Wente, JNES 20, 1961Wente, Edward F., A Letter of Complaint to the Vizier To. In: JNES 20, 1961, 252-257. - Wente, JNES 21, 1962Wente, Edward F., Egyptian “Make Merry” Songs Reconsidered. In: JNES 21, 1962, 118-128. - Wente, JNES 22, 1963Wente, Edward F., Two Ramesside Stelas Pertaining to the Cult of Amenophis I. In: JNES 22, 1963, 30-36. - Wente, JNES 24, 1965Wente, Edward F., A note on “The Eloquent Peasant,” B I, 13-15. In: JNES 24, 1965, 105-109. Wente, Late Ramesside LettersWente, Edward F., Late Ramesside Letters. SAOC 33. 1967. Wente, LettersWente, Edward F., Letters from Ancient Egypt. 1990. - Wente, OLP 6/7, 1975-1976Wente, Edward F., A misplaced letter to the dead. In: OLP 6-7, 1975-1976, 595-600. - Werning, in: TUAT NF 2Werning, Daniel, Die Beth-Sche'an-Gedenkstele Sethos' I. In: TUAT NF 2, 2005, 221-227. - Westendorf, BSEG 4, 1980Westendorf, Wolfhart, Der Wortstamm kꜢ(j) "heben, tragen" > "hervorbringen, erzeugen". In: BSEG 4, 1980, 99-102. - Westendorf, BSEG 5, 1981Westendorf, Wolfhart, Pap. d'Orbiney 4,6: die angeblich wundgeprügelte Frau und das angebliche Fremdwort pdr "Fett". In: BSEG 5, 1981, 57-60. - Westendorf, Darstellungen des SonnenlaufesWestendorf, Wolfhart, Altägyptische Darstellungen des Sonnenlaufes auf der abschüssigen Himmelsbahn. MÄS 10, 1966. - Westendorf, GM 155, 1996Westendorf, Wolfhart, Beiträge aus und zu den medizinischen Texten: Die Droge psḏ. In: GM 155, 1996, 109-112. - Westendorf, GM 206, 2005Westendorf, Wolfhart, Noch einmal: Das Wort ama Knabe/Jüngling/Unbeschnittener/Unreiner. In: GM 206, 2005, 103-110. - Westendorf, GM 46, 1981Westendorf, Wolfhart, Die Menschen als Ebenbilder Pharaos. Bemerkungen zur 'Lehre des Amenemhet' (Abschnitt V). In: GM 46, 1981, 33-42. - Westendorf, GM 90, 1986Westendorf, Wolfhart, Zur Etymologie des bḥd-Thrones. In: GM 90, 1986, 85-86. Westendorf, Handbuch MedizinWestendorf, Wolfhart, Handbuch der altägyptischen Medizin. HdO 36/1-2. 1999. - Westendorf, in: Fs AßfalgWestendorf, Wolfhart, Bemerkungen zum Sonnenhymnus von Amarna. In: Fs Aßfalg, 1990, 405-409. - Westendorf, in: Fs Brunner-TrautWestendorf, Wolfhart, Die geteilte Himmelsgöttin. In: Fs Brunner-Traut, 1992, 341-358. - Westendorf, in: Fs GutbubWestendorf, Wolfhart, Der eine im Himmel, der andere in der Erde. In: Fs Gutbub, 1984, 239-244. - Westendorf, in: Fs JunkerWestendorf, Wolfhart, nꜤꜤ-jb 'mit ausgeglichenem Herzen'. In: Fs Junker, 1957, 297-298. - Westendorf, in: Fs Mus. BerlinWestendorf, Wolfhart, Papyrus Berlin 10456: ein Fragment des wiederentdeckten medizinischen Papyrus Rubensohn. In: Fs Mus. Berlin, 1974, 247-254. Westendorf, Papyrus Edwin SmithWestendorf, Wolfhart, Papyrus Edwin Smith. Ein medizinisches Lehrbuch aus dem Alten Ägypten. Wund- und Unfallchirurgie, Zaubersprüche gegen Seuchen, verschiedene Rezepte. 1966. - Westendorf, ZÄS 92, 1966Westendorf, Wolfhart, Beiträge aus und zu den medizinischen Texten. In: ZÄS 92, 1966, 128-154. - Wettengel, Papyrus d'OrbineyWettengel, Wolfgang, Die Erzählung von den beiden Brüdern. Der Papyrus d’Orbiney und die Königsideologie der Ramessiden. OBO 195. 2003. - Wettengel/Winter, in: Fs DerchainWinter, Erich, Wettengel, Wolfgang, Der Text der Kom Ombo-Szene von der Fahrt im Papyrusdickicht. In: Fs Derchain, 1991, 363-374. + Wettengel, Papyrus d’OrbineyWettengel, Wolfgang, Die Erzählung von den beiden Brüdern. Der Papyrus d’Orbiney und die Königsideologie der Ramessiden. OBO 195. 2003. White, PoetryWhite, John Bradley, A Study of the Language of Love in the Song of Songs and Ancient Egyptian Poetry. SBL Dissertation 38. 1978. Whitehouse, Ashmolean MuseumWhitehouse, Helen, Ancient Egypt and Nubia in the Ashmolean Museum. 2009. Widmaier, LandschaftenWidmaier, Kai, Landschaften und ihre Bilder in ägyptischen Texten des zweiten Jahrtausends v. Chr. GOF 47. 2009. - Wiebach, GM 44, 1981Wiebach-Koepke, Silvia, Bemerkungen zum ägyptischen Grabstein - am Beispiel der abydenischen Stelen des Mittleren Reiches. In: GM 44, 1981, 69-78. + Widmer, Résurrection d’OsirisWidmer, Ghislaine, Résurrection d’Osiris - naissance d’Horus: les papyrus Berlin P. 6750 et Berlin P. 8765, témoignages de la persistance de la tradition sacerdotale dans le Fayoum à l’époque romaine. ÄOP 3. 2015. (new) Wiedemann, Ägyptische GeschichteWiedemann, Alfred, Ägyptische Geschichte. 1884. Wiedemann, Hieratische TexteWiedemann, Alfred, Hieratische Texte aus den Museen zu Berlin und Paris in Facsimile mit Uebersetzung und sachlichem Commentar. 1879. - Wiedemann, Muséon 10, 1891Wiedemann, Alfred, Observations sur quelques stèles funéraires égyptiennes. In: Muséon 10, 1891, 42-55, 199-205. - Wiedemann, OLZ 1, 1898Wiedemann, Alfred, Zwei ägyptische Statuen des Museums zu Leiden. In: OLZ 1, 1898, 269-273. - Wiedemann, PSBA 11, 1889Wiedemann, Alfred, Texts of the second part of the Eighteenth Dynasty. In: PSBA 11, 1889, 422-425. - Wiedemann, RecTrav 17, 1895Wiedemann, Alfred, Varia. In: RecTrav 17, 1895, 1-17. - Wiener/Allen, JNES 57, 1998Allen, James P., Wiener, Malcolm H., Separate Lives: The Ahmose Tempest Stela and the Theran Eruption. In: JNES 57, 1998, 1-28. Wiese, Antikenmuseum BaselWiese, André, Antikenmuseum Basel und Sammlung Ludwig: Die Ägyptische Abteilung. 2001. Wijngaarden, MeesterwerkenWijngaarden, Willem Dirk van, Meesterwerken der Egyptische kunst te Leiden. 1938. - Wilbour/Maspero, RecTrav 13, 1890Wilbour, Charles E., Maspero, Gaston, Canalizing the cataract. In: RecTrav 13, 1890, 202-204. - Wild, BIFAO 54, 1954Wild, Henri, Statue de Hor-néfer au Musée des Beaux-Arts de Lausanne. In: BIFAO 54, 1954, 173-222. - Wild, BIFAO 58, 1959Wild, Henri, L’ « adresse aux visiteurs » du tombeau de Ti. In: BIFAO 58, 1959, 101-113. - Wild, in: Fs JunkerWild, Henri, Ex-voto d'une princesse saïte à l'adresse d'Amenhotep - fils de Hapou. In: Fs Junker, 1958, 406-413. Wild, Tombeau de Ti IIWild, Henri, Le tombeau de Ti. II. La chapelle (1). MIFAO 65,2. 1953. Wild, Tombeau de Ti IIIWild, Henri, Le tombeau de Ti. III. La chapelle (2). MIFAO 65,3. 1966. Wildung, ImhotepWildung, Dietrich, Imhotep und Amenhotep. Gottwerdung im alten Ägypten. MÄS 36. 1977. - Wildung, MDAIK 37, 1981Wildung, Dietrich, Ein Würfelhocker des Generals Nes-Month. In: MDAIK 37, 1981, 503-507. Wildung, Rolle äg. Könige IWildung, Dietrich, Die Rolle ägyptischer Könige im Bewusstsein ihrer Nachwelt 1. Posthume Quellen über die Könige der ersten vier Dynastien. MÄS 17. 1969. Wildung, Seseostris und AmenemhetWildung, Dietrich, Sesostris und Amenemhet. Ägypten im Mittleren Reich. 1984. - Wilfong, JEA 99, 2013Wilfong, Terry G., The oracular amuletic decrees: a question of length. In: JEA 99, 2013, 295-300. Wilkinson, Royal AnnalsWilkinson, Toby A. H., Royal Annals of Ancient Egypt. The Palermo Stone and its Associated Fragments. 2000. Wilkinson, Thebes and EgyptWilkinson, John Gardner, Topography of Thebes and General View of Egypt. 1835. Wilkinson, WritingsWilkinson, Toby A. H., Writings from ancient Egypt. 2016. Willems, CoffinsWillems, Harco, Chests of life: a study of the typology and conceptual development of Middle Kingdom standard class coffins. MVEOL 25. 1988. Willems, Dayr al-Barshā IWillems, Harco, Dayr al-Barshā, Volume I, The Rock Tombs of Djehutinakht (No. 17K74/1), Khnumnakht (No. 17K74/2), and Iha (No. 17K74/3). OLA 155. 2007. Willems, Funerary CultureWillems, Harco, Historical and archaeological aspects of Egyptian funerary culture: religious ideas and ritual practice in Middle Kingdom elite cemeteries. CHANE 73. 2014. - Willems, in: CompanionWillems, Harco, The First Intermediate Period and the Middle Kingdom. In: Companion, 2010, 81-100. - Willems, in: Social Aspects of Funerary CultureWillems, Harco, The Social and Ritual Context of a Mortuary Liturgy of the Middle Kingdom (CT Spells 30-41). In: Social Aspects of Funerary Culture, 2001, 253-372. - Willems, JNES 50, 1991Willems, Harco, The End of Seankhenptah's Household (Letter to the Dead Cairo JdE 25975). In: JNES 50, 1991, 183-192. - Williams, BMMA 8, 1913Williams, Caroline Ransom, The stela of Menthu-weser. In: BMMA 8, 1913, 216-218. - Williams, JAOS 92, 1972Williams, Ronald James, Scribal Training in Ancient Egypt. In: JAOS 92, 1972, 214-221. - Williams, JEA 48, 1962Williams, Ronald James, Reflections on the Lebensmüde. In: JEA 48, 1962, 49-56. Williams, Menthu-weserWilliams, Caroline Ransom, The Stela of Menthu-weser. 1913. - Wilson, in: ANET (1)Wilson, John A., Egyptian Myths, Tales, and Mortuary Texts. In: ANET, 1969, 3-36. - Wilson, in: ANET (10)Wilson, John A., Egyptian Rituals and Incantations. In: ANET, 1969, 325-330. - Wilson, in: ANET (2)Wilson, John A., Egyptian Historical Texts. In: ANET, 1969, 227-264, 553-555. - Wilson, in: ANET (3)Wilson, John A., Egyptian Hymns and Prayers. In: ANET, 1969, 365-381. - Wilson, in: ANET (4)Wilson, John A., Egyptian Didactic Tales. In: ANET, 1969, 405-410. - Wilson, in: ANET (5)Wilson, John A., Egyptian Instructions. In: ANET, 1969, 412-425. - Wilson, in: ANET (6)Wilson, John A., Egyptian Observations. In: ANET, 1969, 431-434. - Wilson, in: ANET (7)Wilson, John A., Egyptian Oracles and Prophecies. In: ANET, 1969, 441-449. - Wilson, in: ANET (8)Wilson, John A., Egyptian Secular Songs and Poems. In: ANET, 1969, 467-471. - Wilson, in: ANET (9)Wilson, John A., An Egyptian Letter. In: ANET, 1969, 475-479. - Wilson, in: Temple in Ancient EgyptWilson, Penelope, Slaughtering the crocodile at Edfu and Dendera. In: Temple in Ancient Egypt, 1997, 179-203. Wilson, Lexicographical StudyWilson, Penelope, A Lexicographical Study of the Ptolemaic Texts in the Temple of Edfu. 1997. Wilson, Ptol. LexikonWilson, Penelope, A Ptolemaic Lexikon. A lexicographical study of the texts in the temple of Edfu. OLA 78. 1997. Wilson, Survey SinaiWilson, Charles William, Ordnance survey of the peninsula of Sinai. Made with the sanction of [...] John Pakington […], by Captains C. W. Wilson and H. S. Palmer under the direction of [...] Henry James [...]. Ordnance Survey of Great Britain. 5 vols.: plates, maps, plans. 1869. + Wimmer, Hieratische PaläographieWimmer, Stefan Jakob, Hieratische Paläographie der nicht-literarischen Ostraka der 19. und 20. Dynastie. ÄUAT 28. 1995. Wimmer, Hieratische Paläographie 1Wimmer, Stefan Jakob, Hieratische Paläographie der nicht-literarischen Ostraka der 19. und 20. Dynastie, Bd. 1, Text. ÄUAT 28. 1995. Wimmer, Hieratische Paläographie 2Wimmer, Stefan Jakob, Hieratische Paläographie der nicht-literarischen Ostraka der 19. und 20. Dynastie, Bd. 2, Tafeln. ÄUAT 28. 1995. - Wimmer, Hieratische PaläographieWimmer, Stefan Jakob, Hieratische Paläographie der nicht-literarischen Ostraka der 19. und 20. Dynastie. ÄUAT 28. 1995. - Winand, CdE 73, 1998Winand, Jean, Une nouvelle sagesse en hiératique de la Basse Époque (Papyrus Brooklyn Museum 47.218.135). In: CdE 73, 1998, 42-53. Winand, Études de néo-égyptienWinand, Jean, Études de néo-égyptien. 1. La morphologie verbale. AegLeod 2. 1992. - Winand, OunamounWinand, Jean, Le voyage d'Ounamoun. Index verborum - concordance - relevés grammticaux. AegLeod 1. 1987. + Winand, OunamounWinand, Jean, Le voyage d’Ounamoun. Index verborum - concordance - relevés grammticaux. AegLeod 1. 1987. Winand, Temps et aspect en égyptienWinand, Jean, Temps et aspect en égyptien. Une approche sémantique. PÄ 25. 2006. Winand/Polis/Grossman, Lexical Semantics in Ancient EgyptianLexical Semantics in Ancient Egyptian. Hrsg. von Winand, Jean, Polis, Stéphane, Grossman, Eitan. LingAeg – StudMon 9. 2012. - Winckler, ZÄS 27, 1889Winckler, Hugo, Verzeichnis der aus dem Funde von El-Amarna herrührenden Thontafeln. In: ZÄS 27, 1889, 42-64. - Winkler, JARCE 51, 2015Winkler, Andreas, Third Time’s the Charm? A Document from the Reign of Claudius and the Councillor Priests, Redux. In: JARCE 51, 2015, 75-92. + Winkler, Rock-drawingsWinkler, Hans Alexander, Rock-drawings of southern Upper Egypt, Bd. 1-2. ASE 26-27. 1938-1939. Winkler, Rock-drawings IWinkler, Hans Alexander, Rock-drawings of southern Upper Egypt, Bd. 1, Sir Robert Mond Desert Expedition, season 1936-1937, preliminary report. ASE 26. 1938. Winkler, Rock-drawings IIWinkler, Hans Alexander, Rock-drawings of southern Upper Egypt, Bd. 2, Sir Robert Mond Desert Expedition, season 1937-1938, preliminary report (including 'Uwēnât). ASE 27. 1939. - Winkler, Rock-drawingsWinkler, Hans Alexander, Rock-drawings of southern Upper Egypt, Bd. 1-2. ASE 26-27. 1938-1939. - Winlock, AE, 1921Winlock, Herbert E., On Queen Tetisheri, Grandmother of Ahmose I. In: AE, 1921, 14-16. - Winlock, AJSL 32, 1915-1916Winlock, Herbert E., The Theban Necropolis in the Middle Kingdom. In: AJSL 32, 1915-1916, 1-37. Winlock, Bas-reliefsWinlock, Herbert E., Bas-reliefs from the temple of Rameses I at Abydos. 1921. - Winlock, JNES 2, 1943Winlock, Herbert E., The Eleventh Egyptian Dynasty. In: JNES 2, 1943, 249-283. Winlock, Rise and FallWinlock, Herbert E., The Rise and Fall of the Middle Kingdom in Thebes. 1947. Winlock, Temple of Ramesses I at AbydosWinlock, Herbert E., The temple of Ramesses I at Abydos. 1937. Wissenswelten (Ausstellungskat.)Wissenswelten. Die Bayerische Akademie der Wissenschaften und die wissenschaftlichen Sammlungen Bayerns. Ausstellungen zum 250-jährigen Jubiläum der Bayerischen Akademie der Wissenschaften. Hrsg. von Willoweit, Dietmar. 2009. Woldering, Ausgewählte WerkeWoldering, Irmgard, Ausgewählte Werke der aegyptischen Sammlung. Bildkataloge 1. 1955, 1958 (2. erw. Aufl.). Wolf, ÄgyptenWolf, Walther, Das alte Ägypten. MzWG. 1971. Wolf, KunstWolf, Walther, Die Kunst Aegyptens. Gestalt und Geschichte. 1957. - Wolf, OLZ 43, 1940Wolf, Walther, Rezension zu: Kees, Die Königin Aḥmes-Nefretere als Amonspriester (NGWG N.F. 2, 1936-1938). In: OLZ 43, 1940, 22-23. - Wolf, ZÄS 64, 1929Wolf, Walther, Der Berliner Ptah-Hymnus (P 3048, II-XII). In: ZÄS 64, 1929, 17-44. - Wolf, ZÄS 65, 1930Wolf, Walther, Papyrus Bologna 1086: ein Beitrag zur Kulturgeschichte des Neuen Reiches. In: ZÄS 65, 1930, 89-97. - Wolf, ZÄS 69, 1933Wolf, Walther, Neue Beiträge zum "Tagebuch eines Grenzbeamten". In: ZÄS 69, 1933, 39-45. - Wolterman, RdE 47, 1996Wolterman, Carles, A Vizier of Ramses III Visits an Oracle of Amun and Deir el-Medina. In: RdE 47, 1996, 147-170. - Wolters, GlyptothekWolters, Paul, Führer durch die Glyptothek König Ludwig's I. zu München. 1935. + Wolters, GlyptothekWolters, Paul, Führer durch die Glyptothek König Ludwig’s I. zu München. 1935. + WoodcuttersWoodcutters, Potters and Doorkeepers. Service Personnel of the Deir El-Medina Workmen. Hrsg. von Janssen, Jacobus (Jac) Johannes, Frood, Elizabeth, Goecke-Bauer, Maren. EgUit 17. 2003. (new) + Wresz., AtlasWreszinski, Walter, Atlas zur altaegyptischen Kulturgeschichte. 1914-1942. Wresz., Atlas IWreszinski, Walter, Atlas zur altaegyptischen Kulturgeschichte. Teil 1,1 – 1,2. 1923. Wresz., Atlas IIWreszinski, Walter, Atlas zur altaegyptischen Kulturgeschichte. Teil 2,1 – 2,2. 1935. Wresz., Atlas IIIWreszinski, Walter, Atlas zur altaegyptischen Kulturgeschichte. Teil 3: Gräber des Alten Reiches. Unter Mitwirkung von Hermann Grapow bearbeitet von Heinrich Schäfer. 1936/42. - Wresz., AtlasWreszinski, Walter, Atlas zur altaegyptischen Kulturgeschichte. 1914-1942. Wreszinski, Hofmuseum WienWreszinski, Walter, Aegyptische Inschriften aus dem K.K. Hofmuseum in Wien. 1906. Wreszinski, Londoner Med. Papyrus und Pap. HearstWreszinski, Walter, Der Londoner medizinische Papyrus (Brit. Museum Nr. 10059) und der Papyrus Hearst. In Transkription, Übersetzung und Kommentar. 1912. Wreszinski, LöwenjagdWreszinski, Walter, Löwenjagd im alten Ägypten. Morgenland 23. 1932. - Wreszinski, OLZ 29, 1926Wreszinski, Walter, Zur altägyptischen Tierheilkunde. In: OLZ 29, 1926, 727-732. + Wüthrich, Édition synoptiqueWüthrich, Annik, Édition synoptique et traduction des chapitres supplémentaires du Livre des Morts 162 à 167. SAT 19/1-2. 2015. Wüthrich, Édition synoptique IWüthrich, Annik, Édition synoptique et traduction des chapitres supplémentaires du Livre des Morts 162 à 167. SAT 19/1. 2015. Wüthrich, Édition synoptique IIWüthrich, Annik, Édition synoptique et traduction des chapitres supplémentaires du Livre des Morts 162 à 167. SAT 19/2. 2015. - Wüthrich, Édition synoptiqueWüthrich, Annik, Édition synoptique et traduction des chapitres supplémentaires du Livre des Morts 162 à 167. SAT 19/1-2. 2015. - Wüthrich, in: Charron/Barbotin, KhâemouasetWüthrich, Annik, Livre des Morts de Tiba-akhet. In: Charron/Barbotin, Khâemouaset, 2016, 294-295. - Wüthrich, in: Kousoulis/Lazaridis, Tenth International Congress of Egyptologists IWüthrich, Annik, Un exemple de l'évolution des concepts funéraires à la Troisième Période intermédiaire: le chapitre 166Pleyte du Livre des Morts. In: Kousoulis/Lazaridis, Tenth International Congress of Egyptologists I, 2015, 1281-1289. Wüthrich, Livre des MortsWüthrich, Annik, Eléments de théologie thébaine: les chapitres supplémentaires du Livre des Morts. SAT 16. 2010. Yamazaki, Mutter und KindYamazaki, Naoko, Zaubersprüche für Mutter und Kind. Papyrus Berlin 3027. Achet B 2. 2003. - Yeivin, JARCE 6, 1967Yeivin, Samuel, Amenophis II's Asiatic campaigns. In: JARCE 6, 1967, 119-128. - Yeivin, JPOS 14, 1934Yeivin, Samuel, A New Egyptian Source for the History of Palestine and Syria. In: JPOS 14, 1934, 194-229. - Yoshimura et al., JES 7, 1999Yoshimura, Sakuji, Takamiya, Izumi H., Kashiwagi, Hiroyuki, Akiyama, Shinichi, Kondo, Jiro, Nakagawa, Takeshi, Nishimoto, Shinichi, Kikuchi, Tetsuo, Takahashi, Ryuzaburo, Nagasaki, Junichi, Hasegawa, So, Waseda University excavations at North Saqqara: a preliminary report on the fifth season, July - September 1996. In: JES 7, 1999, 5-28. Young, HieroglyphicsYoung, Thomas, Hieroglyphics. Collected by the Egyptian Society. 2 vols. 1823-1828. - Yoyotte, BIFAO 54, 1954Yoyotte, Jean, Prêtres et sanctuaires du nome héliopolite à la basse époque. In: BIFAO 54, 1954, 83-115. - Yoyotte, BIFAO 61, 1962Yoyotte, Jean, Processions géographiques mentionnant le Fayoum et ses localités. In: BIFAO 61, 1962, 79-138. - Yoyotte, BIFAO 71, 1972Yoyotte, Jean, La localisation de Ouenkhem. In: BIFAO 71, 1972, 1-10. - Yoyotte, CRIPEL 11, 1989Yoyotte, Jean, Pharaon Iny. Un roi mystérieux du VIIIe siècle avant J.-C. In: CRIPEL 11, 1989, 113-131. Yoyotte, DeltaYoyotte, Jean, Les principautés du Delta au temps de l’anarchie libyenne. RAPH 34. 2012. - Yoyotte, RdE 13, 1961Yoyotte, Jean, Études géographiques I. La 'Cité des Acacias' (Kafr Ammar). In: RdE 13, 1961, 71-105. - Yurco, JARCE 23, 1986Yurco, Frank J., Merenptah's Canaanite campaign. In: JARCE 23, 1986, 189-215. Zába, PtahhotepZába, Zbynek, Les Maximes de Ptahhotep. 1956. Zába, Rock InscriptionsZába, Zbynek, The Rock Inscriptions of Lower Nubia (Czechoslovak Concession). 1974 [1979]. - Zabkar, ZÄS 108, 1981Zakbar, Louis V., A Hymn to Osiris Pantocrator at Philae. A Study of the Main Functions of the sḏm.n⸗f Form in Egyptian Religious Hymns. In: ZÄS 108, 1981, 141-171. Zahradnik, HundZahradnik, Eveline, Der Hund als geliebtes Haustier im Alten Ägypten anhand von bildlichen, schriftlichen und archäologischen Quellen. Altes und Mittleres Reich. 2009. Zandee, AmunhymnusZandee, Jan, Der Amunhymnus des Papyrus Leiden I 344, Verso. 1992. Zandee, Death as an EnemyZandee, Jan, Death as an Enemy According to Ancient Egyptian Conceptions. 1960. - Zandee, ZÄS 98, 1972Zandee, Jan, Sargtexte Spruch 75. Fortsetzung (Coffin Texts I 348b-372c). In: ZÄS 98, 1972, 149-155. - Zauzich, SchreibertraditionZauzich, Karl-Theodor, Die ägyptische Schreibertradition in Aufbau, Sprache und Schrift der demotischen Kaufverträge aus ptolemäischer Zeit. Bd. 1, Text. Bd. 2, Anmerkungen, Indices, Tabellen der Anlage. ÄA 19, 1968. - Zecchi, Inni religiosiZecchi, Marco, Inni religiosi dell'Egitto antico. TVOA 5. 2004. - Zeidler, GM 132, 1993Zeidler, Jürgen, Zur Frage der Spätentstehung des Mythos in Ägypten. In: GM 132, 1993, 85-109. - Zeidler, in: Fs SchenkelZeidler, Jürgen, Die Entwicklung der Vortonsilben-Vokale im Neuägyptischen. In: Fs Schenkel, 1995, 195-237. + Zecchi, Inni religiosiZecchi, Marco, Inni religiosi dell’Egitto antico. TVOA 5. 2004. Zeidler, PfortenbuchstudienZeidler, Jürgen, Pfortenbuchstudien. GOF 36. 1999. Zeitlose DokumenteZeitlose Dokumente der Seele. SJI 3. 1952. Zibelius, "Nubisches" SprachmaterialZibelius-Chen, Karola, "Nubisches" Sprachmaterial in hieroglyphischen und hieratischen Texten. Personennamen, Appellativa, Phrasen vom Neuen Reich bis in die napatanische und meroitische Zeit. Mit einem demotischen Anhang. Meroitica 25. 2011. Zibelius, Afrikan. Orts- und VölkernamenZibelius-Chen, Karola, Afrikanische Orts- und Völkernamen in hieroglyphischen und hieratischen Texten. TAVO 1. 1972. Zibelius, SiedlungenZibelius-Chen, Karola, Ägyptische Siedlungen nach Texten des Alten Reiches. TAVO 19. 1978. - Zibelius-Chen, in: Fs Leclant IIZibelius-Chen, Karola, Die Kubanstele Ramses' II. und die nubischen Goldregionen. In: Fs Leclant II, 1994, 411-417. Ziegler et al., Antiquités égyptiennesZiegler, Christiane, Letellier, Bernadette, Delange, Elisabeth, Pierrat-Bonnefois, Geneviève, Barbotin, Christophe, Étienne, Marc, Les antiquités égyptiennes I. Louvre. Guide du visiteur. 1997. - Ziegler, Catalogue des stèlesZiegler, Christiane, Catalogue des stèles, peintures et reliefs égyptiens de l'Ancien Empire et de la Première Période Intermédiaire vers 2686-2040 avant J.-C. 1990. + Ziegler, Catalogue des stèlesZiegler, Christiane, Catalogue des stèles, peintures et reliefs égyptiens de l’Ancien Empire et de la Première Période Intermédiaire vers 2686-2040 avant J.-C. 1990. Ziegler, LouvreZiegler, Christiane, Le Louvre. Les antiquités égyptiennes. 1990. - Ziegler, Statues égyptiennesZiegler, Christiane, Les statues égyptiennes de l'Ancien Empire. 1997. + Ziegler, Statues égyptiennesZiegler, Christiane, Les statues égyptiennes de l’Ancien Empire. 1997. + Zitman, AssiutZitman, Marcel, The necropolis of Assiut: a case study of local Egyptian funerary culture from the Old Kingdom to the end of the Middle Kingdom. OLA 180. 2010. Zitman, Assiut 1Zitman, Marcel, The necropolis of Assiut: a case study of local Egyptian funerary culture from the Old Kingdom to the end of the Middle Kingdom, Bd. 1, Text. OLA 180. 2010. Zitman, Assiut 2Zitman, Marcel, The necropolis of Assiut: a case study of local Egyptian funerary culture from the Old Kingdom to the end of the Middle Kingdom, Bd. 2, Maps, Plans of Tombs, Illustrations, Tables, Lists. OLA 180. 2010. - Zitman, AssiutZitman, Marcel, The necropolis of Assiut: a case study of local Egyptian funerary culture from the Old Kingdom to the end of the Middle Kingdom. OLA 180. 2010. - Zivie, BIFAO 75, 1975Zivie-Coche, Christiane M., À propos de quelques reliefs du Nouvel Empire au Musée du Caire. In: BIFAO 75, 1975, 285-310. Zivie, GizaZivie-Coche, Christiane M., Giza au deuxième millénaire. BdE 70. 1976. Zivie, HermopolisZivie, Alain-Pierre, Hermopolis et la nome de l’Ibis. Recherches sur la province du dieu Thot en Basse Égypte. BdE 66. 1975. Zivie, MaiaZivie, Alain-Pierre, La tombe de Maia. Mère nourricière du roi Toutânkhamon et grande du harem. 2009. - Zivie, SAK 8, 1980Zivie-Coche, Christiane M., La stèle d'Aménophis II à Giza - A propos d'une interprétation récente. In: SAK 8, 1980, 269-284. - Zivie-Coche, BIFAO 75, 1975Zivie-Coche, Christiane M., À propos de quelques reliefs du Nouvel Empire au Musée du Caire: I. La tombe de Ptahmay à Giza. In: BIFAO 75, 1975, 285-310. - Zivie-Coche, Statues et autobiographiesZivie-Coche, Christiane M., Statues et autobiographies de dignitaires. Tanis à l'époque ptolemaique. 2004. - Zonhoven, JEA 65, 1979Zonhoven, Ludovicus M. J., The inspection of a tomb at Deir el-Medîna (O. Wien Aeg. 1). In: JEA 65, 1979, 89-98. + Zivie-Coche, Statues et autobiographiesZivie-Coche, Christiane M., Statues et autobiographies de dignitaires. Tanis à l’époque ptolemaique. 2004.

    -

    state of: 6.12.2021.

    +

    state of: 15.11.2023.

    \ No newline at end of file diff --git a/src/main/resources/pages/en/listings/ling-glossings.html b/src/main/resources/pages/en/listings/ling-glossings.html index 85ab91e4..83f6cada 100644 --- a/src/main/resources/pages/en/listings/ling-glossings.html +++ b/src/main/resources/pages/en/listings/ling-glossings.html @@ -11,47 +11,72 @@

    Linguistic Glossin - 11st person - 22nd person - 33rd person - actactive - ADJadjective - advadverb - advzadverbializer/adverbialized - antanterior (perfective, perfect) - ARTarticle - AUXauxilliary - cardcardinal number - cnsvconsecutive - complcompletive - dudual - exclexclamative - ffemininum - impimperative - infinfinitive - ipfvimperfective - mmasculinum - Nnoun - nmlznominalizer/nominalized - NUMnumber - oblvobligative - ordordinal number - passpassive - plplural - posspossessive - postposterior - PREPpreposition - PRONpronoun - PTCLparticle - ptcpparticiple - relrelative pronoun/Relative Form - resresultative - sgsingular - stcstatus constructus - stprstatus pronominalis - tamtense/aspect/mode - Vverb - vblzverbializer/verbialized + .separation of morpheme abbreviations + :separable morpheme boundary + -clitic morpheme boundary + =suffix morpheme boundary + ~reduplication morpheme boundary + \ablaut morpheme boundary + /and/or + 11st person + 22nd person + 33rd person + actactive + ADJadjective + adjzadjectivizer/adjectivized + ADVadverb + advzadverbializer/adverbialized + antanterior (perfective, perfect) + ARTarticle + AUXauxilliary + ccommunis + cardcardinal number + cnsvconsecutive + complcompletive + demdemonstrative + DEMdemonstrative pronoun + distdistal + distrdistributive + DIVNdivine name/designation + dudual + exclexclamative + ffemininum + gengenitive (morpheme) + impimperative + indfindefinite + infinfinitive + INTJinterjection + ipfvimperfective + mmasculinum + Nnoun + nmlznominalizer/nominalized + NUMnumber + oblvobligative + ordordinal number + passpassive + PERSNpersonal name + plplural + posspossessive + postposterior + PREPpreposition + PROpersonal pronoun + PRONpronoun + PROPNproper name + PTCLparticle + ptcpparticiple + Qquestion particle/marker + relrelative pronoun/Relative Form + resresultative + ROOTroot + ROYLNroyal name + sgsingular + stcstatus constructus + stprstatus pronominalis + tamtense/aspect/mode + TITLtitle + TOPNtoponym + Vverb + vblzverbializer/verbialized

    diff --git a/src/main/resources/pages/en/listings/thesauri.html b/src/main/resources/pages/en/listings/thesauri.html new file mode 100644 index 00000000..b81d5bc2 --- /dev/null +++ b/src/main/resources/pages/en/listings/thesauri.html @@ -0,0 +1,57 @@ + diff --git a/src/main/resources/templates/fragments/common.html b/src/main/resources/templates/fragments/common.html index ce8225b2..37034d87 100644 --- a/src/main/resources/templates/fragments/common.html +++ b/src/main/resources/templates/fragments/common.html @@ -48,11 +48,15 @@

    TLA

    + @@ -401,7 +398,7 @@


    : -
    +

    @@ -463,7 +460,7 @@


    • - +
    @@ -501,7 +498,7 @@


    • - +
    @@ -524,7 +521,26 @@

    - + + + + +
    + +
    +

    + +
    +

      +
    • + +
      +
    • +
    +

    +
    +
    +
    @@ -538,7 +554,7 @@


    -
    +

    @@ -554,7 +570,7 @@


    • - +
    @@ -600,7 +616,7 @@


    • - +
    @@ -629,7 +645,7 @@

    Comments

    Comment 1

    -

    annotation body

    +

    annotation body

    @@ -643,11 +659,11 @@

    - - - Commentary author: - author, - + + Commentary author: + author; + with contributions by: + ; File created: xx.xx.20xx, latest revision: @@ -662,8 +678,7 @@

    Author: author; with contributions by: - - +

    File created: @@ -835,7 +850,7 @@

    -

    +

    diff --git a/src/main/resources/templates/ths/details.html b/src/main/resources/templates/ths/details.html index 94088410..c0097e1b 100644 --- a/src/main/resources/templates/ths/details.html +++ b/src/main/resources/templates/ths/details.html @@ -22,7 +22,7 @@
    -
    +