Move/Push page.main.title block into Breadcrumbs Magento2
Try with below way,
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<move element="page.main.title" destination="breadcrumbs" before="-" />
</body>
</page>
Edit:
Then you need to use echo $block->getChildHtml('page.main.title');
in everywhere of your breadcrumbs.phtml file.
But I don't know better way to do that!