{"id":5398,"date":"2024-07-08T10:26:53","date_gmt":"2024-07-08T08:26:53","guid":{"rendered":"https:\/\/e3holding.de\/reporting-on-e3-holding-ses-fourth-acquisition\/"},"modified":"2024-12-12T21:17:51","modified_gmt":"2024-12-12T20:17:51","slug":"reporting-on-e3-holding-ses-fourth-acquisition","status":"publish","type":"post","link":"https:\/\/e3holding.de\/en\/reporting-on-e3-holding-ses-fourth-acquisition\/","title":{"rendered":"Reporting on E3 Holding SE&#8217;s fourth acquisition"},"content":{"rendered":"\n<p><\/p>\n<script type=\"text\/javascript\">let processScroll = () => {\n\tlet docElem = document.documentElement, \n\t\tdocBody = document.body,\n\t\tscrollTop = docElem['scrollTop'] || docBody['scrollTop'],\n    \tscrollBottom = (docElem['scrollHeight'] || docBody['scrollHeight']) - window.innerHeight - window.innerHeight,\n\t\tscrollPercent = scrollTop \/ scrollBottom * 100 + '%';\n\t\/\/ console.log(scrollTop + ' \/ ' + scrollBottom + ' \/ ' + scrollPercent);\n    document.getElementById(\"progress-bar\").style.setProperty(\"--scrollAmount\", scrollPercent);\t\n}\ndocument.addEventListener('scroll', processScroll);\n\njQuery(function ($) {\n    var project1 = $('.post-sidebar').offset();\n    var $window = $(window);\n    \n    $window.scroll(function() {\n        if ( $window.scrollTop() >= project1.top) {\n            $(\".post-sidebar-inner\").addClass(\"sticky\");\n        }\n        if ( $window.scrollTop() <= project1.top) {\n            $(\".post-sidebar-inner\").removeClass(\"sticky\");\n        }\n    });\t\t\t\n});\n\n\/*!\nName: Reading Time\nDependencies: jQuery\nAuthor: Michael Lynch\nAuthor URL: http:\/\/michaelynch.com\nDate Created: August 14, 2013\nDate Updated: April 30, 2018\nLicensed under the MIT license\n*\/\n\njQuery(function ($) {\n\n\t$.fn.readingTime = function(options) {\n\n\t\t\/\/ define default parameters\n\t\tconst defaults = {\n\t\t\treadingTimeTarget: '.eta',\n\t\t\treadingTimeAsNumber: false,\n\t\t\twordCountTarget: null,\n\t\t\twordsPerMinute: 270,\n\t\t\tround: true,\n\t\t\tlang: 'en',\n\t\t\tlessThanAMinuteString: 'test',\n\t\t\tprependTimeString: '',\n\t\t\tprependWordString: '',\n\t\t\tremotePath: null,\n\t\t\tremoteTarget: null,\n\t\t\tsuccess: function() {},\n\t\t\terror: function() {}\n\t\t};\n\n\t\tconst plugin = this;\n\t\tconst el = $(this);\n\n\t\tlet wordsPerSecond;\n\t\tlet lessThanAMinute;\n\t\tlet minShortForm;\n\n\t\tlet totalWords;\n\t\tlet totalReadingTimeSeconds;\n\n\t\tlet readingTimeMinutes;\n\t\tlet readingTimeSeconds;\n\t\tlet readingTime;\n\t\tlet readingTimeObj;\n\n\t\t\/\/ merge defaults and options\n\t\tplugin.settings = $.extend({}, defaults, options);\n\n\t\t\/\/ define vars\n\t\tconst s = plugin.settings;\n\n\t\tconst setTime = function(o) {\n\n\t\t\tif(o.text !== '') {\n\t\t\t\tif (s.lang == \"zh\") {\n\t\t\t\t\tlet text = o.text.trim();\n\t\t\t\t\t\/\/ step 1: count the number of Chinese characters\n\t\t\t\t\tconst charArray = text.match(\/[\\u4e00-\\u9fa5]\/g);\n\t\t\t\t\tlet charCount = 0;\n\t\t\t\t\tif (charArray != null) {\n\t\t\t\t\t\tcharCount = charArray.length;\n\t\t\t\t\t}\n\t\t\t\t\t\/\/ step 2: replace all the Chinese characters with blank\n\t\t\t\t\ttext = text.replace(\/[\\u4e00-\\u9fa5]\/g, \" \");\n\t\t\t\t\t\/\/ step 3:replace newlines with blank\n\t\t\t\t\ttext = text.replace(\/[\\r\\n]\/g, \" \");\n\t\t\t\t\t\/\/ step 4:replace special characters with blank\n\t\t\t\t\ttext = text.replace(\/\\W+\/g, \" \");\n\t\t\t\t\t\/\/ step 5: count the number of total English words\n\t\t\t\t\tconst totalEnWords = text.trim().split(\/\\s+\/g).length;\n\t\t\t\t\ttotalWords = totalEnWords + charCount;\n\t\t\t\t} else {\n\t\t\t\t\t\/\/split text by spaces to define total words\n\t\t\t\t\ttotalWords = o.text.trim().split(\/\\s+\/g).length;\n\t\t\t\t}\n\n\t\t\t\t\/\/define words per second based on words per minute (s.wordsPerMinute)\n\t\t\t\twordsPerSecond = s.wordsPerMinute \/ 60;\n\n\t\t\t\t\/\/define total reading time in seconds\n\t\t\t\ttotalReadingTimeSeconds = totalWords \/ wordsPerSecond;\n\n\t\t\t\t\/\/ define reading time\n\t\t\t\treadingTimeMinutes = Math.floor(totalReadingTimeSeconds \/ 60);\n\n\t\t\t\t\/\/ define remaining reading time seconds\n\t\t\t\treadingTimeSeconds = Math.round(totalReadingTimeSeconds - (readingTimeMinutes * 60));\n\n\t\t\t\t\/\/ format reading time\n\t\t\t\treadingTime = `${readingTimeMinutes}:${readingTimeSeconds}`;\n\t\t\t\t\/\/ if s.round\n\t\t\t\tif(s.round) {\n\n\t\t\t\t\t\/\/ if minutes are greater than 0\n\t\t\t\t\tif(readingTimeMinutes > 0) {\n\n\t\t\t\t\t\t\/\/ set reading time by the minute\n\t\t\t\t\t\t$(s.readingTimeTarget).text(s.prependTimeString + readingTimeMinutes + ((!s.readingTimeAsNumber) ? ' ' + minShortForm : ''));\n\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\/\/ set reading time as less than a minute\n\t\t\t\t\t\t$(s.readingTimeTarget).text((!s.readingTimeAsNumber) ? s.prependTimeString + lessThanAMinute : readingTimeMinutes);\n\t\t\t\t\t}\n\n\t\t\t\t} else {\n\n\t\t\t\t\t\/\/ set reading time in minutes and seconds\n\t\t\t\t\t$(s.readingTimeTarget).text(s.prependTimeString + readingTime);\n\t\t\t\t}\n\n\t\t\t\t\/\/ if word count container isn't blank or undefined\n\t\t\t\tif(s.wordCountTarget !== '' && s.wordCountTarget !== undefined) {\n\n\t\t\t\t\t\/\/ set word count\n\t\t\t\t\t$(s.wordCountTarget).text(s.prependWordString + totalWords);\n\t\t\t\t}\n\n\t\t\t\treadingTimeObj = {\n\t\t\t\t\twpm: s.wordsPerMinute,\n\t\t\t\t\twords: totalWords,\n\t\t\t\t\teta: {\n\t\t\t\t\t\ttime: readingTime,\n\t\t\t\t\t\tminutes: readingTimeMinutes,\n\t\t\t\t\t\tseconds: totalReadingTimeSeconds\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\t\/\/ run success callback\n\t\t\t\ts.success.call(this, readingTimeObj);\n\n\t\t\t} else {\n\n\t\t\t\t\/\/ run error callback\n\t\t\t\ts.error.call(this, {\n\t\t\t\t\terror: 'The element does not contain any text'\n\t\t\t\t});\n\t\t\t}\n\t\t};\n\n\t\t\/\/ if no element was bound\n\t\tif(!this.length) {\n\n\t\t\t\/\/ run error callback\n\t\t\ts.error.call(this, {\n\t\t\t\terror: 'The element could not be found'\n\t\t\t});\n\n\t\t\t\/\/ return so chained events can continue\n\t\t\treturn this;\n\t\t}\n\n\t\t\/\/ Use switch instead of ifs\n\t\tswitch (s.lang) {\n\t\t\t\/\/ if s.lang is Arabic\n\t\t\tcase 'ar':\n        lessThanAMinute = s.lessThanAMinuteString || \"\u0623\u0642\u0644 \u0645\u0646 \u062f\u0642\u064a\u0642\u0629\";\n        minShortForm = '\u062f\u0642\u064a\u0642\u0629';\n        break;\n\t\t\t\/\/ if s.lang is Czech\n\t\t\tcase 'cz':\n        lessThanAMinute = s.lessThanAMinuteString || \"M\u00e9n\u011b ne\u017e minutu\";\n        minShortForm = 'min';\n        break;\n\t\t\t\/\/ if s.lang is Danish\n\t\t\tcase 'da':\n        lessThanAMinute = s.lessThanAMinuteString || \"Mindre end et minut\";\n        minShortForm = 'min';\n        break;\n\t\t\t\/\/ if s.lang is German\n      case 'de':\n        lessThanAMinute = s.lessThanAMinuteString || \"Weniger als eine Minute\";\n        minShortForm = 'min';\n        break;\n\t\t\t\/\/ if s.lang is Spanish\n      case 'es':\n        lessThanAMinute = s.lessThanAMinuteString || \"Menos de un minuto\";\n        minShortForm = 'min';\n        break;\n\t\t\t\/\/ if s.lang is French\n      case 'fr':\n        lessThanAMinute = s.lessThanAMinuteString || \"Moins d'une minute\";\n        minShortForm = 'min';\n        break;\n\t\t\t\/\/ if s.lang is Hungarian\n      case 'hu':\n        lessThanAMinute = s.lessThanAMinuteString || \"Kevesebb mint egy perc\";\n        minShortForm = 'perc';\n        break;\n\t\t\t\/\/ if s.lang is Icelandic\n      case 'is':\n        lessThanAMinute = s.lessThanAMinuteString || \"Minna en eina m\u00edn\u00fatu\";\n        minShortForm = 'min';\n        break;\n\t\t\t\/\/ if s.lang is Italian\n      case 'it':\n        lessThanAMinute = s.lessThanAMinuteString || \"Meno di un minuto\";\n        minShortForm = 'min';\n        break;\n\t\t\t\/\/ if s.lang is Dutch\n      case 'nl':\n        lessThanAMinute = s.lessThanAMinuteString || \"Minder dan een minuut\";\n        minShortForm = 'min';\n        break;\n\t\t\t\/\/ if s.lang is Norwegian\n      case 'no':\n        lessThanAMinute = s.lessThanAMinuteString || \"Mindre enn ett minutt\";\n        minShortForm = 'min';\n        break;\n\t\t\t\/\/ if s.lang is Polish\n      case 'pl':\n        lessThanAMinute = s.lessThanAMinuteString || \"Mniej ni\u017c minut\u0119\";\n        minShortForm = 'min';\n        break;\n\t\t\t\/\/ if s.lang is Russian\n      case 'ru':\n        lessThanAMinute = s.lessThanAMinuteString || \"\u041c\u0435\u043d\u044c\u0448\u0435 \u043c\u0438\u043d\u0443\u0442\u044b\";\n        minShortForm = '\u043c\u0438\u043d';\n        break;\n\t\t\t\/\/ if s.lang is Slovak\n      case 'sk':\n        lessThanAMinute = s.lessThanAMinuteString || \"Menej ne\u017e min\u00fatu\";\n        minShortForm = 'min';\n        break;\n\t\t\t\/\/ if s.lang is Swedish\n      case 'sv':\n        lessThanAMinute = s.lessThanAMinuteString || \"Mindre \u00e4n en minut\";\n        minShortForm = 'min';\n        break;\n\t\t\t\/\/ if s.lang is Turkish\n      case 'tr':\n        lessThanAMinute = s.lessThanAMinuteString || \"Bir dakikadan az\";\n        minShortForm = 'dk';\n        break;\n\t\t\t\/\/ if s.lang is Ukrainian\n      case 'uk':\n        lessThanAMinute = s.lessThanAMinuteString || \"\u041c\u0435\u043d\u0448\u0435 \u0445\u0432\u0438\u043b\u0438\u043d\u0438\";\n        minShortForm = '\u0445\u0432';\n        break;\n\t\t\t\/\/ if s.lang is Greek\n\t\t\tcase 'el':\n        lessThanAMinute = s.lessThanAMinuteString || '\u039b\u03b9\u03b3\u03cc\u03c4\u03b5\u03c1\u03bf \u03b1\u03c0\u03cc \u03bb\u03b5\u03c0\u03c4\u03cc';\n        minShortForm = '\u03bb\u03b5\u03c0\u03c4\u03ac';\n        break;\n            \/\/ if s.lang is Portuguese\n            case 'pt-BR':\n        lessThanAMinute = s.lessThanAMinuteString || 'Menos de um minuto';\n        minShortForm = 'min';\n\t\tbreak;\n\t\t\t\/\/ if s.lang is Korean\n\t\t\tcase 'kr':\n\t\tlessThanAMinute = s.lessThanAMinuteString || '1\ubd84 \uc774\ud558';\n\t\tminShortForm = '\ubd84';\n        break;\n\t\t\t\/\/ default s.lang in english\n\t\t\tdefault:\n        lessThanAMinute = s.lessThanAMinuteString || 'Less than a minute';\n        minShortForm = 'min';\n    }\n\n\t\t\/\/ for each element\n\t\tel.each(function(index) {\n\n\t\t\t\/\/ if s.remotePath and s.remoteTarget aren't null\n\t\t\tif(s.remotePath != null && s.remoteTarget != null) {\n\n\t\t\t\t\/\/ get contents of remote file\n\t\t\t\t$.get(s.remotePath, function(data) {\n\t\t\t\t\tlet wrapper = document.createElement('div');\n\n\t\t\t\t\twrapper.innerHTML = data;\n\n\t\t\t\t\t\/\/ set time using the remote target found in the remote file\n\t\t\t\t\tsetTime({\n\t\t\t\t\t\ttext: $(wrapper).find(s.remoteTarget).text()\n\t\t\t\t\t});\n\t\t\t\t});\n\n\t\t\t} else {\n\n\t\t\t\t\/\/ set time using the targeted element\n\t\t\t\tsetTime({\n\t\t\t\t\ttext: el.text()\n\t\t\t\t});\n\t\t\t}\n\t\t});\n\n\t\treturn true;\n\t}\n});\n\njQuery(function ($) {\n\n\t$('#post-content').readingTime({\n\t\treadingTimeAsNumber: true,\n\t\twordsPerMinute: 200,\n\t\tround: false,\n\t\tlang: 'de',\n\t\t\n        success: function(data) {\n\t\t\tconsole.log(data);\n\t\t},\n\t\terror: function(data) {\n\t\t\tconsole.log(data.error);\n\t\t\t$('.reading-time').remove();\n\t\t}\n\t});\n});\n\n<\/script><section id=\"post-content\" class=\"custom-block section-post-content pt-medium pb-medium bg-white text-body\"><div class=\"wrapper-wide\"><div class=\"section-inner\"><div class=\"row g-0\"><div class=\"col-sm-20 offset-sm-2 col-lg-5 offset-lg-2 order-lg-2\"><div class=\"post-sidebar\"><div class=\"post-sidebar-inner pb-medium pb-lg-0\"><\/div><\/div><\/div><div class=\"col-sm-20 offset-sm-2 col-lg-12 offset-lg-2 order-lg-1\"><div class=\"post-excerpt pb-small\"><p class=\"lead mb-0\">We are very excited about our fourth acquisition! As numerous sources of media have reported, PEMA Vollkorn-Spezialit\u00e4ten GmbH &#038; Co. KG is now part of the E3 family, strengthening our food investment sector.<\/p><\/div><div id=\"post-content\" class=\"pb-medium\"><div class=\"acf-innerblocks-container\">\n\n<h3 class=\"wp-block-heading\">Press articles about the acquisition of PEMA Vollkorn-Spezialit\u00e4ten GmbH &amp; Co. KG<\/h3>\n\n\n<aside class=\"section-anchor\" id=\"results\"><\/aside><section id=\"block_f4e7f23bbe0866b01e0ef69ff15177e3\" class=\"custom-block section-post-archive list-view loop-clipping\"><div class=\"\"><div class=\"row g-0\"><div class=\"col-24\"><hr><div class=\"clipping-item clipping-item list-item pt-small pb-small\"><div class=\"item-content text-start\"><p class=\"post-category mb-1\">Newspaper article<\/p><h3 class=\"pt-0\">E3 in FINANCE magazine<\/h3><p class=\"small\">FINANCE magazine reports on our latest transaction. PEMA Vollkorn-Spezialit\u00e4ten GmbH &#038; Co. KG joined the E3 family in early July, strengthening our food investment sector. <br><br><span class=\"d-block lh-1-2\" style=\"font-size: 80%\">\r\nPaid content: Please subscribe to view the full article.<\/span><\/p><p class=\"small mb-0\"><b>FINANCE magazine<\/b>, 9 July 2024<\/p><\/div><div class=\"item-links\"><a class=\"external\" target=\"_blank\" href=\"https:\/\/www.finance-magazin.de\/nachrichten-ressort\/private-equity\/private-equity-news-main-capital-bregal-altor-185653\/\" rel=\"nofollow\"><button class=\"button button-background-secondary button-circle button-circle-small button-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" height=\"48\" viewBox=\"0 96 960 960\" width=\"48\"><path d=\"M180 936q-24 0-42-18t-18-42V276q0-24 18-42t42-18h279v60H180v600h600V597h60v279q0 24-18 42t-42 18H180Zm202-219-42-43 398-398H519v-60h321v321h-60V319L382 717Z\"\/><\/svg><\/button><span class=\"link-title small\">Go to website (in German only)<\/span><\/a><\/div><\/a><\/div><hr><div class=\"clipping-item clipping-item list-item pt-small pb-small\"><div class=\"item-content text-start\"><p class=\"post-category mb-1\">Newspaper article<\/p><h3 class=\"pt-0\">E3 at Just Food<\/h3><p class=\"small\">Just Food reports on our latest transaction. PEMA Vollkorn-Spezialit\u00e4ten GmbH &#038; Co. KG joined the E3 family in early July, strengthening our food investment sector.<\/p><p class=\"small mb-0\"><b>Just Food<\/b>, 8 July 2024<\/p><\/div><div class=\"item-links\"><a class=\"external\" target=\"_blank\" href=\"https:\/\/www.just-food.com\/news\/german-bakery-pema-sells-majority-stake-to-investor-e3-holding\/?cf-view\" rel=\"nofollow\"><button class=\"button button-background-secondary button-circle button-circle-small button-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" height=\"48\" viewBox=\"0 96 960 960\" width=\"48\"><path d=\"M180 936q-24 0-42-18t-18-42V276q0-24 18-42t42-18h279v60H180v600h600V597h60v279q0 24-18 42t-42 18H180Zm202-219-42-43 398-398H519v-60h321v321h-60V319L382 717Z\"\/><\/svg><\/button><span class=\"link-title small\">Go to website<\/span><\/a><\/div><\/a><\/div><hr><div class=\"clipping-item clipping-item list-item pt-small pb-small\"><div class=\"item-content text-start\"><p class=\"post-category mb-1\">Newspaper article<\/p><h3 class=\"pt-0\">E3 in wir magazine<\/h3><p class=\"small\">wir magazine for family-run businesses reports on our latest transaction. PEMA Vollkorn-Spezialit\u00e4ten GmbH &#038; Co. KG joined the E3 family in early July, strengthening our food investment sector. Editor Johannes Sill sits down with Dr Laura Krainz-Leupoldt, PEMA\u2019s successful Managing Director, and Olivier Weddrien.<\/p><p class=\"small mb-0\"><b>wir magazine for family-run businesses<\/b>, 8 July 2024<\/p><\/div><div class=\"item-links\"><a class=\"external\" target=\"_blank\" href=\"https:\/\/www.wirmagazin.de\/direktinvestments\/pema-teil-e3-holding-laura-krainz-leupoldt-olivier-weddrien-22053\/\" rel=\"nofollow\"><button class=\"button button-background-secondary button-circle button-circle-small button-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" height=\"48\" viewBox=\"0 96 960 960\" width=\"48\"><path d=\"M180 936q-24 0-42-18t-18-42V276q0-24 18-42t42-18h279v60H180v600h600V597h60v279q0 24-18 42t-42 18H180Zm202-219-42-43 398-398H519v-60h321v321h-60V319L382 717Z\"\/><\/svg><\/button><span class=\"link-title small\">Go to website (in German only)<\/span><\/a><\/div><\/a><\/div><hr><div class=\"clipping-item clipping-item list-item pt-small pb-small\"><div class=\"item-content text-start\"><p class=\"post-category mb-1\">Newspaper article<\/p><h3 class=\"pt-0\">E3 Holding in Nordbayerischer Kurier<\/h3><p class=\"small\">Nordbayerischer Kurier reports on our latest transaction in its 5 July 2024 edition. PEMA Vollkorn-Spezialit\u00e4ten GmbH &#038; Co. KG is now part of the E3 family, strengthening our food investment sector.<\/p><p class=\"small mb-0\"><b>Nordbayerischer Kurier<\/b>, 5 July 2024<\/p><\/div><div class=\"item-links\"><a title=\"Download as PDF (in German only)\" class=\"download\" target=\"_blank\" href=\"https:\/\/e3holding.de\/wordpress\/wp-content\/uploads\/2024\/07\/20240705_NBK_Akquisition-PEMA_print.pdf\" rel=\"nofollow\"><button class=\"button button-background-secondary button-circle button-circle-small button-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" height=\"48\" viewBox=\"0 96 960 960\" width=\"48\"><path d=\"M220 896q-24 0-42-18t-18-42V693h60v143h520V693h60v143q0 24-18 42t-42 18H220Zm260-153L287 550l43-43 120 120V256h60v371l120-120 43 43-193 193Z\"\/><\/svg><\/button><span class=\"link-title small\">Download as PDF (in German only)<\/span><\/a><\/div><\/a><\/div><hr><div class=\"clipping-item clipping-item list-item pt-small pb-small\"><div class=\"item-content text-start\"><p class=\"post-category mb-1\">Newspaper article<\/p><h3 class=\"pt-0\">E3 in Lebensmittel Praxis<\/h3><p class=\"small\">Specialist food magazine Lebensmittel Praxis reports on our latest transaction. PEMA Vollkorn-Spezialit\u00e4ten GmbH &#038; Co. KG is now part of the E3 family, strengthening our food investment sector.<\/p><p class=\"small mb-0\"><b>Lebensmittel Praxis<\/b>, 5 July 2024<\/p><\/div><div class=\"item-links\"><a class=\"external\" target=\"_blank\" href=\"https:\/\/lebensmittelpraxis.de\/?view=article&#038;id=40653:unternehmensnachfolge-vollkornbrot-spezialist-pema-durch-holding-gerettet&#038;catid=106\" rel=\"nofollow\"><button class=\"button button-background-secondary button-circle button-circle-small button-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" height=\"48\" viewBox=\"0 96 960 960\" width=\"48\"><path d=\"M180 936q-24 0-42-18t-18-42V276q0-24 18-42t42-18h279v60H180v600h600V597h60v279q0 24-18 42t-42 18H180Zm202-219-42-43 398-398H519v-60h321v321h-60V319L382 717Z\"\/><\/svg><\/button><span class=\"link-title small\">Go to website (in German only)<\/span><\/a><\/div><\/a><\/div><hr><div class=\"clipping-item clipping-item list-item pt-small pb-small\"><div class=\"item-content text-start\"><p class=\"post-category mb-1\">Newspaper article<\/p><h3 class=\"pt-0\">E3 in Lebensmittel Zeitung<\/h3><p class=\"small\">Food magazine Lebensmittel Zeitung reports on our latest transaction. PEMA Vollkorn-Spezialit\u00e4ten GmbH &#038; Co. KG is now part of E3 Group after we acquired a majority stake in the company, strengthening our food investment sector. <br><br><span class=\"d-block lh-1-2\" style=\"font-size: 80%\">\r\nPaid content: Please subscribe to view the full article.<\/span><\/p><p class=\"small mb-0\"><b>Lebensmittel Zeitung<\/b>, 5 July 2024<\/p><\/div><div class=\"item-links\"><a class=\"external\" target=\"_blank\" href=\"https:\/\/www.lebensmittelzeitung.net\/industrie\/nachrichten\/backwaren-e3-holding-erwirbt-mehrheit-an-pema-178636\" rel=\"nofollow\"><button class=\"button button-background-secondary button-circle button-circle-small button-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" height=\"48\" viewBox=\"0 96 960 960\" width=\"48\"><path d=\"M180 936q-24 0-42-18t-18-42V276q0-24 18-42t42-18h279v60H180v600h600V597h60v279q0 24-18 42t-42 18H180Zm202-219-42-43 398-398H519v-60h321v321h-60V319L382 717Z\"\/><\/svg><\/button><span class=\"link-title small\">Go to website (in German only)<\/span><\/a><\/div><\/a><\/div><hr><div class=\"clipping-item clipping-item list-item pt-small pb-small\"><div class=\"item-content text-start\"><p class=\"post-category mb-1\">Newspaper article<\/p><h3 class=\"pt-0\">E3 in TV Oberfranken<\/h3><p class=\"small\">TV Oberfranken reports on our latest transaction. PEMA Vollkorn-Spezialit\u00e4ten GmbH &#038; Co. KG is now part of E3 Group after we acquired a majority stake in the company, strengthening our food investment sector.<\/p><p class=\"small mb-0\"><b>TV Oberfranken<\/b>, 4 July 2024<\/p><\/div><div class=\"item-links\"><a class=\"external\" target=\"_blank\" href=\"https:\/\/www.tvo.de\/mediathek\/video\/weissenstadt-e3-holding-uebernimmt-mehrheit-von-backwarenhersteller-pema\/\" rel=\"nofollow\"><button class=\"button button-background-secondary button-circle button-circle-small button-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" height=\"48\" viewBox=\"0 96 960 960\" width=\"48\"><path d=\"M180 936q-24 0-42-18t-18-42V276q0-24 18-42t42-18h279v60H180v600h600V597h60v279q0 24-18 42t-42 18H180Zm202-219-42-43 398-398H519v-60h321v321h-60V319L382 717Z\"\/><\/svg><\/button><span class=\"link-title small\">Go to website (in German only)<\/span><\/a><\/div><\/a><\/div><hr><div class=\"clipping-item clipping-item list-item pt-small pb-small\"><div class=\"item-content text-start\"><p class=\"post-category mb-1\">Newspaper article<\/p><h3 class=\"pt-0\">E3 in Frankenpost<\/h3><p class=\"small\">Frankenpost reports on our latest transaction. PEMA Vollkorn-Spezialit\u00e4ten GmbH &#038; Co. KG is now part of the E3 family, strengthening our food investment sector. Olivier Weddrien and J\u00f6rg Loew, who will be taking over management of the company, speak to editor Matthias Will.<br><br><span class=\"d-block lh-1-2\" style=\"font-size: 80%\">\nPaid content: Please subscribe to view the full article.<\/span><\/p><p class=\"small mb-0\"><b>Frankenpost<\/b>, 4 July 2024<\/p><\/div><div class=\"item-links\"><a class=\"external\" target=\"_blank\" href=\"https:\/\/www.frankenpost.de\/inhalt.regionale-wirtschaft-das-hat-der-investor-mit-pema-vor.c083243e-a815-4b87-9f5f-b058c0de92e0.html\" rel=\"nofollow\"><button class=\"button button-background-secondary button-circle button-circle-small button-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" height=\"48\" viewBox=\"0 96 960 960\" width=\"48\"><path d=\"M180 936q-24 0-42-18t-18-42V276q0-24 18-42t42-18h279v60H180v600h600V597h60v279q0 24-18 42t-42 18H180Zm202-219-42-43 398-398H519v-60h321v321h-60V319L382 717Z\"\/><\/svg><\/button><span class=\"link-title small\">Go to website (in German only)<\/span><\/a><\/div><\/a><\/div><hr><div class=\"clipping-item clipping-item list-item pt-small pb-small\"><div class=\"item-content text-start\"><p class=\"post-category mb-1\">Newspaper article<\/p><h3 class=\"pt-0\">E3 in Frankenpost<\/h3><p class=\"small\">We are very excited about our fourth acquisition! As reported in the Frankenpost newspaper today, PEMA Vollkorn-Spezialit\u00e4ten GmbH &#038; Co. KG is now part of the E3 family, expanding our food investment sector.<\/p><p class=\"small mb-0\"><b>Frankenpost<\/b>, 4 July 2024<\/p><\/div><div class=\"item-links\"><a class=\"external\" target=\"_blank\" href=\"https:\/\/www.frankenpost.de\/inhalt.regionale-wirtschaft-investor-uebernimmt-mehrheit-an-pema.5ad435cf-6ce2-46c2-a6f2-fdd71ac5e268.html\" rel=\"nofollow\"><button class=\"button button-background-secondary button-circle button-circle-small button-icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" height=\"48\" viewBox=\"0 96 960 960\" width=\"48\"><path d=\"M180 936q-24 0-42-18t-18-42V276q0-24 18-42t42-18h279v60H180v600h600V597h60v279q0 24-18 42t-42 18H180Zm202-219-42-43 398-398H519v-60h321v321h-60V319L382 717Z\"\/><\/svg><\/button><span class=\"link-title small\">Go to website (in German only)<\/span><\/a><\/div><\/a><\/div><hr><\/div><\/div><\/div><\/section>\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-outline pt-4 is-style-outline--1\"><a class=\"wp-block-button__link has-white-color has-secondary-background-color has-text-color has-background has-link-color wp-element-button\" href=\"https:\/\/e3holding.de\/en\/e3-newsroom\/e3-in-the-news\/\">E3 in the news<\/a><\/div>\n<\/div>\n\n<\/div><\/div><div class=\"tag-list-container pt-3\"><div class=\"tag-list\"><p class=\"mb-1 small\">Related topics<\/p><ul class=\"tag-list small\"><li><a href=\"https:\/\/e3holding.de\/en\/tag\/group-companies\/\" rel=\"tag\">Group companies<\/a><\/li><li><a href=\"https:\/\/e3holding.de\/en\/tag\/olivier-weddrien-en\/\" rel=\"tag\">Olivier Weddrien<\/a><\/li><li><a href=\"https:\/\/e3holding.de\/en\/tag\/pema-en\/\" rel=\"tag\">PEMA<\/a><\/li><\/ul><\/div><\/div><\/div><\/div><\/div><\/div><\/section>","protected":false},"excerpt":{"rendered":"We are very excited about our fourth acquisition! As numerous sources of media have reported, PEMA Vollkorn-Spezialit\u00e4ten GmbH &#038; Co. KG is now part of the E3 family, strengthening our food investment sector.","protected":false},"author":9,"featured_media":4974,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[109],"tags":[37,118,127],"class_list":["post-5398","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-e3-in-the-news","tag-group-companies","tag-olivier-weddrien-en","tag-pema-en"],"acf":[],"_links":{"self":[{"href":"https:\/\/e3holding.de\/en\/wp-json\/wp\/v2\/posts\/5398","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/e3holding.de\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/e3holding.de\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/e3holding.de\/en\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/e3holding.de\/en\/wp-json\/wp\/v2\/comments?post=5398"}],"version-history":[{"count":1,"href":"https:\/\/e3holding.de\/en\/wp-json\/wp\/v2\/posts\/5398\/revisions"}],"predecessor-version":[{"id":5399,"href":"https:\/\/e3holding.de\/en\/wp-json\/wp\/v2\/posts\/5398\/revisions\/5399"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/e3holding.de\/en\/wp-json\/wp\/v2\/media\/4974"}],"wp:attachment":[{"href":"https:\/\/e3holding.de\/en\/wp-json\/wp\/v2\/media?parent=5398"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/e3holding.de\/en\/wp-json\/wp\/v2\/categories?post=5398"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/e3holding.de\/en\/wp-json\/wp\/v2\/tags?post=5398"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}