Redirect standard salesforce view of child object to skuid page of parent

Hmm, I’m not quite getting the syntax right.

When I do this…

<apex:page standardController="Related_Person__c" action="{!redirect}&amp;page=PatientChart&amp;id={!Patient_Name__c}#related_person" extensions="skuid.Redirects"
 showHeader="false" sidebar="false" readonly="true" docType="html-5.0">
</apex:page>

I get the error:
Error: Unknown property ‘Related_Person__cStandardController.Patient_Name__c’

If I put quotes around {!Patient_Name__c} as your example suggests…

<apex:page standardController="Related_Person__c" action="{!redirect}&amp;page=PatientChart&amp;id="{!Patient_Name__c}"#related_person" extensions="skuid.Redirects"
 showHeader="false" sidebar="false" readonly="true" docType="html-5.0">
</apex:page>

I get the error:
Error: apex:page is required and must be the outermost tag in the markup at line 1 column 1