1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
|
%%
%% This is file `./pseudoTeX/TeX2WordForapa6.bas',
%% generated with the docstrip utility.
%%
%% The original source files were:
%%
%% apa6.dtx (with options: `bas')
%% ----------------------------------------------------------------------
%%
%% apa6 - A LaTeX class for formatting documents in compliance with the
%% American Psychological Association's Publication Manual, 6th edition
%%
%% Copyright (C) 2011-2020 by Brian D. Beitzel <brian at beitzel.com>
%%
%% This work may be distributed and/or modified under the
%% conditions of the LaTeX Project Public License (LPPL), either
%% version 1.3c of this license or (at your option) any later
%% version. The latest version of this license is in the file:
%%
%% http://www.latex-project.org/lppl.txt
%%
%% Users may freely modify these files without permission, as long as the
%% copyright line and this statement are maintained intact.
%%
%% This work is not endorsed by, affiliated with, or probably even known
%% by, the American Psychological Association.
%%
%% ----------------------------------------------------------------------
%%
Attribute VB_Name = "TeX2WordForapa6"
Sub FormatTex2WordDocument()
Dim strRunningHead, r, E
Dim myrange As Range
strRunningHead = InputBox("Please type the running head:", "Running Head")
If strRunningHead = "" Then Exit Sub
Selection.EndKey Unit:=wdStory
Selection.InsertBreak Type:=wdPageBreak
Selection.TypeText Text:="References" & vbCrLf
Selection.MoveUp Unit:=wdLine, Count:=1
Selection.ParagraphFormat.LeftIndent = InchesToPoints(0)
Selection.ParagraphFormat.Alignment = wdAlignParagraphCenter
Selection.HomeKey Unit:=wdStory
Call FormatTex2WordPageHeader(strRunningHead)
Call FormatAndMoveTex2WordTables
Call FormatAndMoveTex2WordFigures
Selection.EndKey Unit:=wdStory
Selection.InsertBreak Type:=wdPageBreak
Selection.TypeText Text:="Appendix" & vbCrLf
Selection.MoveUp Unit:=wdLine, Count:=1
Selection.ParagraphFormat.LeftIndent = InchesToPoints(0)
Selection.ParagraphFormat.Alignment = wdAlignParagraphCenter
' touch up temporary citations
Selection.HomeKey Unit:=wdStory
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = "{\"
.Replacement.Text = "{"
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
With Selection.Find
.Text = "@}"
.Replacement.Text = "}"
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
With Selection.Find
.Text = "{e.g.,\"
.Replacement.Text = "{e.g.`, \"
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
With Selection.Find
.Text = "{i.e.,\"
.Replacement.Text = "{i.e.`, \"
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
With Selection.Find
.Text = "{cf.\"
.Replacement.Text = "{cf. \"
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
With Selection.Find
.Text = "@p. "
.Replacement.Text = "@"
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
With Selection.Find
.Text = "@pp. "
.Replacement.Text = "@"
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
' for table footnotes
With Selection.Find
.Text = "[para,flushleft] "
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
' remove extra spaces at the end of paragraphs
With Selection.Find
.Text = " ^p"
.Replacement.Text = "^p"
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
' delete the instructions
Selection.HomeKey Unit:=wdStory
Set myrange = Selection.Range
myrange.Start = Selection.Start
Selection.HomeKey Unit:=wdStory
Selection.Find.ClearFormatting
With Selection.Find
.Execute findText:="Delete these instructions!", Forward:=True, Wrap:=wdFindStop
myrange.End = Selection.End + 1
myrange.Select
myrange.Delete
End With
Selection.HomeKey Unit:=wdStory
End Sub
Sub FormatTex2WordPageHeader(strRunningHead)
Dim r, E
' set the first page to be a different header
ActiveDocument.PageSetup.DifferentFirstPageHeaderFooter = True
With ActiveDocument.Sections(1).Headers(wdHeaderFooterFirstPage)
.Range.ParagraphFormat.LineSpacingRule = wdLineSpaceDouble
.Range.ParagraphFormat.FirstLineIndent = InchesToPoints(0)
.Range.ParagraphFormat.TabStops.ClearAll
.Range.ParagraphFormat.TabStops.Add Position:=InchesToPoints(6.5), _
Alignment:=wdAlignTabRight, Leader:=wdTabLeaderSpaces
.Range.Text = "Running head: " & UCase(strRunningHead) & vbTab
With .Range.Font
.Name = "Times New Roman"
.Size = 12
.Bold = False
.Italic = False
End With
Set r = .Range
E = .Range.End
r.Start = E
.Range.Fields.Add r, wdFieldPage
End With
With ActiveDocument.Sections(1).Headers(wdHeaderFooterPrimary)
.Range.ParagraphFormat.LineSpacingRule = wdLineSpaceDouble
.Range.ParagraphFormat.FirstLineIndent = InchesToPoints(0)
.Range.Text = UCase(strRunningHead)
.PageNumbers.Add PageNumberAlignment:=wdAlignPageNumberRight
With .Range.Font
.Name = "Times New Roman"
.Size = 12
.Bold = False
.Italic = False
End With
End With
End Sub
Sub FormatAndMoveTex2WordTables()
Dim i, rngParagraphs As Range
If ActiveDocument.Tables.Count > 0 Then
For i = 1 To ActiveDocument.Tables.Count
Selection.HomeKey Unit:=wdStory
Set rngParagraphs = ActiveDocument.Range( _
Start:=ActiveDocument.Tables(1).Range.Start, _
End:=ActiveDocument.Tables(1).Range.End)
rngParagraphs.Select
With Selection.Tables(1)
.Borders(wdBorderLeft).LineStyle = wdLineStyleNone
.Borders(wdBorderRight).LineStyle = wdLineStyleNone
With .Borders(wdBorderTop)
.LineStyle = wdLineStyleSingle
.LineWidth = wdLineWidth050pt
.Color = wdColorAutomatic
End With
With .Borders(wdBorderBottom)
.LineStyle = wdLineStyleSingle
.LineWidth = wdLineWidth050pt
.Color = wdColorAutomatic
End With
.Borders(wdBorderHorizontal).LineStyle = wdLineStyleNone
.Borders(wdBorderVertical).LineStyle = wdLineStyleNone
.Borders(wdBorderDiagonalDown).LineStyle = wdLineStyleNone
.Borders(wdBorderDiagonalUp).LineStyle = wdLineStyleNone
.Borders.Shadow = False
'.Rows.Alignment = wdAlignRowLeft
.PreferredWidthType = wdPreferredWidthPercent
.PreferredWidth = 100
.TopPadding = InchesToPoints(0.08)
.BottomPadding = InchesToPoints(0.08)
.LeftPadding = InchesToPoints(0.08)
.RightPadding = InchesToPoints(0.08)
.Spacing = 0
.AllowPageBreaks = True
.AllowAutoFit = False
End With
With Selection.ParagraphFormat
.LineSpacingRule = wdLineSpaceSingle
.LeftIndent = InchesToPoints(0)
.RightIndent = InchesToPoints(0)
.SpaceBefore = 0
.SpaceBeforeAuto = False
.SpaceAfter = 0
.SpaceAfterAuto = False
.WidowControl = False
.KeepWithNext = False
.KeepTogether = False
.PageBreakBefore = False
.NoLineNumber = False
.Hyphenation = True
.FirstLineIndent = InchesToPoints(0)
.CharacterUnitLeftIndent = 0
.CharacterUnitRightIndent = 0
.CharacterUnitFirstLineIndent = 0
.LineUnitBefore = 0
.LineUnitAfter = 0
.MirrorIndents = False
.TextboxTightWrap = wdTightNone
End With
rngParagraphs.Cut
Selection.EndKey Unit:=wdStory
Selection.InsertBreak Type:=wdPageBreak
Selection.TypeText Text:="Table " & i & vbCrLf
Selection.Paste
Next
End If
End Sub
Sub FormatAndMoveTex2WordFigures()
Dim i, rngParagraphs As Range
If ActiveDocument.InlineShapes.Count > 0 Then
For i = 1 To ActiveDocument.InlineShapes.Count
Selection.HomeKey Unit:=wdStory
Set rngParagraphs = ActiveDocument.Range( _
Start:=ActiveDocument.InlineShapes(1).Range.Start, _
End:=ActiveDocument.InlineShapes(1).Range.End)
rngParagraphs.Select
rngParagraphs.Cut
Selection.EndKey Unit:=wdStory
Selection.InsertBreak Type:=wdPageBreak
Selection.Paste
Selection.TypeText Text:=vbCrLf & "Figure " & i & vbCrLf
Next
End If
End Sub
%%
%% Copyright (C) 2011-2020 by Brian D. Beitzel <brian at beitzel.com>
%%
%% This work may be distributed and/or modified under the
%% conditions of the LaTeX Project Public License (LPPL), either
%% version 1.3c of this license or (at your option) any later
%% version. The latest version of this license is in the file:
%%
%% http://www.latex-project.org/lppl.txt
%%
%% Users may freely modify these files without permission, as long as the
%% copyright line and this statement are maintained intact.
%%
%% This work is not endorsed by, affiliated with, or probably even known
%% by, the American Psychological Association.
%%
%% This work is "maintained" (as per LPPL maintenance status) by
%% Brian D. Beitzel.
%%
%% This work consists of the file apa6.dtx
%% and the derived files apa6.ins,
%% apa6.cls,
%% apa6.pdf,
%% README,
%% APAamerican.txt,
%% APAbritish.txt,
%% APAdutch.txt,
%% APAenglish.txt,
%% APAgerman.txt,
%% APAngerman.txt,
%% APAgreek.txt,
%% APAczech.txt,
%% APAturkish.txt,
%% APAendfloat.cfg,
%% apa6.ptex,
%% TeX2WordForapa6.bas,
%% Figure1.pdf,
%% shortsample.tex,
%% longsample.tex, and
%% bibliography.bib.
%%
%%
%% End of file `./pseudoTeX/TeX2WordForapa6.bas'.
|