जोड़ने के लिए अधिक कुछ नहीं है, मैं एक शब्द 2007 दस्तावेज़ में एक बार में मेरे पास सभी क्रॉस-संदर्भों की शैली को बदलना चाहूंगा । लेकिन मुझे नहीं पता कि यह कैसे करना है। यह कैसे किया जा सकता है?
जोड़ने के लिए अधिक कुछ नहीं है, मैं एक शब्द 2007 दस्तावेज़ में एक बार में मेरे पास सभी क्रॉस-संदर्भों की शैली को बदलना चाहूंगा । लेकिन मुझे नहीं पता कि यह कैसे करना है। यह कैसे किया जा सकता है?
जवाबों:
कुछ क्रॉस-रेफरेंस प्रकार स्वचालित रूप से "तीव्र संदर्भ" शैली के साथ स्वरूपित होते हैं, लेकिन अधिकांश को "सामान्य" टेक्स्ट के रूप में स्वरूपित किया जाता है।
क्रॉस संदर्भ के पाठ में "तीव्र संदर्भ" शैली लागू करने के लिए:
दी गई शैली के सभी पाठों की उपस्थिति बदलने के लिए:
एक बार में सभी क्रॉस संदर्भों पर शैली लागू करने के लिए:
^19 REF
ढूँढें और बदलें में विशेष कोड के बारे में अधिक जानकारी के लिए इस पृष्ठ को देखें ।
यहां एक मैक्रो है जो \* mergeformat
प्रत्येक फ़ील्ड में स्विच को जोड़ देगा । यदि आप फ़ील्ड अद्यतन करते हैं तो स्वरूपण को खो जाने से बचाने के लिए यह स्विच आवश्यक है। आप मैक्रो को कीस्ट्रोक पर असाइन कर सकते हैं और यह फ़ील्ड के माध्यम से एक बार में एक बार आप कीस्ट्रोक को दबाएंगे। आप प्रक्रिया को स्वचालित करने के लिए पूरे दस्तावेज़ पर लूप को मैक्रो को भी संपादित कर सकते हैं।
Sub mf()
'
' mf Macro
' Find cross references and add \* mergeformat
'
Selection.Find.ClearFormatting
With Selection.Find
.Text = "^19 REF"
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute
Selection.MoveRight Unit:=wdCharacter, Count:=1
Selection.MoveLeft Unit:=wdCharacter, Count:=1
Selection.TypeText Text:="\* mergeformat "
Selection.Find.Execute
End Sub
सभी क्रॉस संदर्भों में CHARFORMAT को जोड़ने के लिए निम्न मैक्रो का उपयोग करें। यह मैक्रो स्ट्रिंग को केवल तभी फ़ील्ड में जोड़ता है यदि यह पहले से ही वहां नहीं है।
Sub SetCHARFORMAT()
'
' Set CHARFORMAT switch to all {REF} fields. Replace MERGEFORMAT.
'
'
Dim oField As Field
Dim oRng As Range
For Each oField In ActiveDocument.Fields
'For Each oField In Selection.Fields
If InStr(1, oField.Code, "REF ") = 2 Then
If InStr(1, oField.Code, "MERGEFORMAT") <> 0 Then
oField.Code.Text = Replace(oField.Code.Text, "MERGEFORMAT", "CHARFORMAT")
End If
If InStr(1, oField.Code, "CHARFORMAT") = 0 Then
oField.Code.Text = oField.Code.Text + "\* CHARFORMAT "
End If
End If
Next oField
End Sub
"सूक्ष्म संदर्भ" शैली के साथ सभी क्रॉस संदर्भों को प्रारूपित करने के लिए इस मैक्रो का उपयोग करें (सुनिश्चित करें कि आपके पास ऐसी शैली है, और उस फ़ील्ड कोड को दिखाया गया है):
Sub SetCrossRefStyle()
'
' Macro to set styole of all cross references to "Subtle Reference"
'
'
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
Selection.Find.Replacement.Style = ActiveDocument.Styles( _
"Subtle Reference")
With Selection.Find
.Text = "^19 REF"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchCase = False
.MatchWholeWord = False
.MatchKashida = False
.MatchDiacritics = False
.MatchAlefHamza = False
.MatchControl = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
End Sub
फ़ील्ड कोड छिपाने के लिए Alt+ दबाएँF9
साइबोर्ग द्वारा अपलोड किए गए मैक्रो को संपादित करते हुए, हम आसानी से फील्ड कोड दिखाते और छिपाते हुए स्वचालित कर सकते हैं। हर बार जब हम अपडेट करना चाहते हैं तो हमें फ़ील्ड कोड टॉगल करने की आवश्यकता नहीं है। फ़ील्ड कोड टॉगल जोड़ने के लिए मैंने निम्नलिखित कोड का उपयोग किया।
ActiveDocument.ActiveWindow.View.ShowFieldCodes = False
पूरा मैक्रो इस प्रकार है:
Sub SetCrossRefStyle()
'
' Macro to set styole of all cross references to "Subtle Reference"
'
'
ActiveDocument.ActiveWindow.View.ShowFieldCodes = True
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
Selection.Find.Replacement.Style = ActiveDocument.Styles( _
"Subtle Reference")
With Selection.Find
.Text = "^19 REF"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchCase = False
.MatchWholeWord = False
.MatchKashida = False
.MatchDiacritics = False
.MatchAlefHamza = False
.MatchControl = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
ActiveDocument.ActiveWindow.View.ShowFieldCodes = False
End Sub
यह पहली बार है जब मैं शब्द में अपने काम को तेज करने के लिए मैक्रोज़ का उपयोग कर रहा हूं। इस तरह के मददगार मैक्रो के लिए धन्यवाद सायबोर्ग।
यह मैक्रो वर्तमान कर्सर स्थिति पर क्रॉस संदर्भ डालने के लिए क्रॉस संदर्भ डायलॉग बॉक्स खोलता है।
जब आप संदर्भ को सम्मिलित करने के बाद Xref संवाद बॉक्स को बंद करते हैं, तो मैक्रो रिज्यूमे को सम्मिलित क्रॉस संदर्भ को सुपरस्क्रिप्ट में प्रारूपित करने के लिए शुरू होता है।
Sub XrefSuper()
'
' This opens the Cross Reference dialogue box to insert a cross reference at the current cursor position.
' When the dialogue box is closed after inserting the reference the macro resumes to format the inserted cross reference to superscript.
'
'
Dim wc As Integer
wc = ActiveDocument.Characters.Count
Dim dlg As Dialog
Set dlg = Dialogs(wdDialogInsertCrossReference)
dlg.Show 'Open dialogue and perform the insertion from the dialog box)
'Macro continues after closing CrossRef dialogue box
If wc = ActiveDocument.Characters.Count Then Exit Sub 'If we failed to insert something then exit
Selection.MoveLeft Unit:=wdCharacter, Count:=1, Extend:=wdExtend
Selection.Font.Superscript = wdToggle
Selection.MoveRight Unit:=wdCharacter, Count:=1
Selection.Font.Superscript = wdToggle
End Sub
एक्सफ़र डायलॉग को कैसे खोलें , इसके लिए एक्सपर्ट्स एक्सचेंज में ग्राहम स्कैन के लिए धन्यवाद ।
डॉक्यूमेंट बॉडी, हेडर, फुटर और टेक्स्ट को शेप पर लगाने के लिए डॉक्यूमेंट, स्टोरीज ’के माध्यम से एक और फंक्शन के साथ उपरोक्त उत्तरों को जोड़कर।
सभी क्रॉस संदर्भों के लिए "तीव्र संदर्भ" शैली लागू करने के लिए बस SetCrossRefStyle () नीचे मैक्रो को कॉल करें।
Sub m_SetCHARFORMAT(textRanges As Collection)
' https://superuser.com/questions/13531/is-it-possible-to-assign-a-specific-style-to-all-cross-references-in-word-2007
'
' Set CHARFORMAT switch to all {REF} fields. Replace MERGEFORMAT.
' Requires ActiveDocument.ActiveWindow.View.ShowFieldCodes = True
'
Dim oField As Field
Dim oRng As Range
For Each oRng In textRanges
For Each oField In oRng.Fields
If InStr(1, oField.Code, "REF ") = 2 Then
If InStr(1, oField.Code, "MERGEFORMAT") <> 0 Then
oField.Code.Text = Replace(oField.Code.Text, "MERGEFORMAT", "CHARFORMAT")
End If
If InStr(1, oField.Code, "CHARFORMAT") = 0 Then
oField.Code.Text = oField.Code.Text + "\* CHARFORMAT "
End If
End If
Next oField
Next oRng
End Sub
Sub m_AddCrossRefStyle(textRanges As Collection)
' https://superuser.com/questions/13531/is-it-possible-to-assign-a-specific-style-to-all-cross-references-in-word-2007
'
' Macro to set style of all cross references to "Intense Reference"
' Requires ActiveDocument.ActiveWindow.View.ShowFieldCodes = True
'
For Each oRng In textRanges
oRng.Find.ClearFormatting
oRng.Find.Replacement.ClearFormatting
oRng.Find.Replacement.Style = ActiveDocument.Styles("Intense Reference")
With oRng.Find
.Text = "^19 REF"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchCase = False
.MatchWholeWord = False
.MatchKashida = False
.MatchDiacritics = False
.MatchAlefHamza = False
.MatchControl = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
oRng.Find.Execute Replace:=wdReplaceAll
Next oRng
End Sub
Function m_GetAllTextRanges() As Collection
' https://wordmvp.com/FAQs/Customization/ReplaceAnywhere.htm
' https://www.mrexcel.com/forum/excel-questions/443052-returning-collection-function.html
'
' Get text ranges in all document parts.
'
Set m_GetAllTextRanges = New Collection
For Each rngStory In ActiveDocument.StoryRanges
'Iterate through all linked stories
Do
m_GetAllTextRanges.Add rngStory
On Error Resume Next
Select Case rngStory.StoryType
Case 6, 7, 8, 9, 10, 11
If rngStory.ShapeRange.Count > 0 Then
For Each oShp In rngStory.ShapeRange
If oShp.TextFrame.HasText Then
m_GetAllTextRanges.Add oShp.TextFrame.TextRange
End If
Next
End If
Case Else
'Do Nothing
End Select
On Error GoTo 0
'Get next linked story (if any)
Set rngStory = rngStory.NextStoryRange
Loop Until rngStory Is Nothing
Next
End Function
Sub SetCrossRefStyle()
'
' 1. Get all text ranges since Selection.Find only works on document body, but not on headers/footers
' 2. Add CHARFORMAT to make styling persistent
' 3. Add styling to all references
'
Dim textRanges As Collection
Set textRanges = m_GetAllTextRanges
ActiveDocument.ActiveWindow.View.ShowFieldCodes = True
m_SetCHARFORMAT textRanges
m_AddCrossRefStyle textRanges
ActiveDocument.ActiveWindow.View.ShowFieldCodes = False
End Sub