Jump to content

Please read the Forum Rules before posting.

Photo

Using Microsoft Word to Make Modules


  • Please log in to reply
99 replies to this topic

#91 chosen

chosen

    Liking e-Sword

  • Members (T)
  • PipPip
  • 17 posts
Offline

Posted 06 February 2012 - 08:16 PM

Thank you, David.

#92 chosen

chosen

    Liking e-Sword

  • Members (T)
  • PipPip
  • 17 posts
Offline

Posted 15 March 2012 - 12:10 AM

The following MS Doc needs to be fixed in footnote format. I have a lot of docs with the same problem. So I want to use MS Word search/ replace function.
The footnote number is in superscript, followed by line break or paragraph break. Would you give me the proper search/ replace phrases to remove the break?

Ockhyun

------------

1

A. Schweitzer, The Quest of the Historical Jesus (trans. W. Montgomery; London: n.p., 1910), 333.

2

W. Wrede, The Messianic Secret (London: James Clarke, 1971 [1901]); E. Troeltsch, “Historical and Dogmatic Method in Theology,” in Religion in History (trans. J. L. Adams; Minneapolis: Fortress, 1991, [1898]), 11–32, summed up the historiography of the enlightenment with his three principles: 1) historical judgments are uncertain and must be subjected to critical scrutiny; 2) events in the past can only be accepted if they are analogous to current experience; and 3) past events must be correlated to present events before they can be affirmed.

3

The title of a well-known work by H. J. Cadbury, The Peril of Modernizing Jesus (New York: MacMillan, 1937).

4

Luke Timothy Johnson, The Real Jesus: The Misguided Quest For the Historical Jesus and the Truth of the Traditional Gospels (San Francisco: Harper, 1996), 65.

5

See S. C. Goetz and C. L. Blomberg, “The Burden of Proof,” JSNT 11 (1981): 39-63.

6

See the interesting response to this by J. D. Crossan, “Why Christians Must Search for the Historical Jesus,” BRev 12 (1996): 42-45.



#93 patchworkid

patchworkid

    Resource Builder

  • Members (T)
  • PipPipPipPipPip
  • 1,554 posts
  • LocationOld England
Offline

Posted 15 March 2012 - 04:08 AM

hi use wild cards

find : ([0-9])^13
replace : ^13 \1 -> There is two spaces (using the space bar) after the 1.


1 A. Schweitzer, The Quest of the Historical Jesus (trans. W. Montgomery; London: n.p., 1910), 333.

2 W. Wrede, The Messianic Secret (London: James Clarke, 1971 [1901]); E. Troeltsch, “Historical and Dogmatic Method in Theology,” in Religion in History (trans. J. L. Adams; Minneapolis: Fortress, 1991, [1898]), 11–32, summed up the historiography of the enlightenment with his three principles: 1) historical judgments are uncertain and must be subjected to critical scrutiny; 2) events in the past can only be accepted if they are analogous to current experience; and 3) past events must be correlated to present events before they can be affirmed.

3 The title of a well-known work by H. J. Cadbury, The Peril of Modernizing Jesus (New York: MacMillan, 1937).

4 Luke Timothy Johnson, The Real Jesus: The Misguided Quest For the Historical Jesus and the Truth of the Traditional Gospels (San Francisco: Harper, 1996), 65.

5 See S. C. Goetz and C. L. Blomberg, “The Burden of Proof,” JSNT 11 (1981): 39-63.

6 See the interesting response to this by J. D. Crossan, “Why Christians Must Search for the Historical Jesus,” BRev 12 (1996): 42-45.



thanks
Patchworkid

Edited by patchworkid, 15 March 2012 - 05:42 AM.

Merismos the Scriptures with Patchworkid's Study Bible Set<p>http://www.biblesupp...tudy-bible-set/, MySword -http://www.biblesupp...tudy-bible-set/

#94 chosen

chosen

    Liking e-Sword

  • Members (T)
  • PipPip
  • 17 posts
Offline

Posted 15 March 2012 - 07:29 PM

Thank you, Patchworkid.

Your information gave me a great help.
I have adjusted it a little.
Find: ([0-9]{1,2})^13
Replace: \1

One more request.
Could you give me a Word macro for the following procedures?
---------
Find ([0-9]{1,2})^13
Replace \1 (*one space)
Block the whole document (Ctrl + A)
Change font size to “11”, font color to “black”.
Block the whole document (Ctrl + A).
Cut. (Ctrl + X).
End.
-----
I plan to paste the result on clipboard into another editor.

Ockhyun

#95 Josh Bond

Josh Bond

    Administrator

  • Administrators
  • PipPipPipPipPip
  • 2,890 posts
  • LocationGallatin, TN
Offline

Posted 11 August 2012 - 06:04 PM

Here's a handy Microsoft Word macro to change the case of text. Microsoft Word will change specific text to All Capital letters. But there's no easy to way to go from All Capitals to other cases.

This macro was useful on Hasting's dictionary. The original dictionary entries were all capital letters. I find all capital letters in dictionary entries very distracting. So this macro changed the text to each word capitalized instead of all capitals.

This could be used in a lot of ways. But the way I set it up below is to search for a line beginning with ÷ to the end of the paragraph.

The input text was something like:

÷DICTIONARY ENTRY
dictionary definition here. No other text is changed.

And the output text was:

÷Dictionary Entry
dictionary definition here. No other text is changed.

Sub ChangeCase()
	With Selection.Find
		 .ClearFormatting
		 .Wrap = wdFindContinue
		 .Forward = True
		 .Format = True
		 .MatchWildcards = True
		 .text = "÷*^13"
		 .Execute
		 While .Found
			 Selection.Range.Case = wdTitleWord
			 Selection.Collapse Direction:=wdCollapseEnd
			.Execute
		 Wend
	 End With
End Sub

You can change the Selection.Range.Case = wdTitleWord line to wdLowerCase, wdUpperCase, wdTitleSentence, wdToggleCase, etc to get different text effects. For example, wdTitleSentence makes just the first letter of the first word in the entry capitalized, and words that follow are lowercase.

You could turn wildcards off (modify line: .MatchWildcards = False) and search for specific words or leave wildcards on and form a regular expression matching certain combinations of words to change to another case.

#96 charles.aaron

charles.aaron

    Liking e-Sword

  • Veterans
  • PipPip
  • 15 posts
  • LocationIndia
Offline

Posted 24 September 2013 - 11:23 AM

I know we live in an era when it's "cool" to hate Microsoft. Or maybe "trendy" is a better word. But after all the Microsoft monopoly "sass", I'm yet to find a better word processor than Microsoft Word 2010. It's what I use to write the e-Sword User's Guide. And having used more powerful tools over the years for technical documentation, like Adobe Pagemaker and Framemaker, I'm yet to see a tool that is as flexible, powerful, and easy to use as Word 2010.

I abuse it quite frequently by conducting regular expression searches on files 10, 20, 50, 100+ megabytes in size, which it handles flawlessly when I've had other word processors crash. I know there's text editors that can do this too, but Word's nerfed regular expressions are easy to use.

I've done easy searches and operations (less than 3 seconds) in Word that other word processors need "macros" for. And when I do need a macro, writing one (or finding one on the Internet) is easy (because everyone uses Word). When you have to create or edit a macro, like the one I posted here a few days ago that converts footnotes to in-line citations, that's also easy thanks to the Macro Editor. If I need roman numerals converted to arabic numerals, there's a macro for that too (courtesty of David Cox).

This is how I make a lot of Topics modules. I make them in Microsoft Word. For those of you who don't understand--the left side of the screen will be the chapters in a Topic module. The ÷ sign will be used to recognize each new section when the module is made. It's a placeholder that says: this is the start of a new section.

Look at the screenshot below (my actual screensize is larger--I reduced the size of Word to make a smaller graphic).

attachicon.gifword_topics2.png

Notice the Navigation pane on the left side of the screen. Isn't that handy? I have a birds eye view of my topics, almost like I'm reading them in e-Sword. I can track my topic numbering (no wondering what the last topic number was). I can track my topic indents for nested topics. I can click any topic and go directly to it--no scrolling up and down or searching for a topic. I can rearrange topics (if need be) by dragging the item up or down in the Navigation Pane. Each time I add a new section with a ÷ sign, that section appears in my navigation pane.

Now look at the right side of the screen. That's my clipboard manager. When I want to insert a new ÷section and a return for an extra line, I just click a previous section name, and it insert's the text where my cursors is. Then I can adjust the section name as necessary. The clipboard history is very handy--to be able to copy anything I've copied previouisly with a click--right there in Word.

When I'm all done in Word, then I take the text into Tooltip (another word processor) for tooltipping and module generation. That requires maybe 3 clicks--in other words, it's easy.

For those of you who think making e-Sword modules is brain surgery--it isn't. If you can use a word processor and point / click a mouse, then you can make an e-Sword module. For topics files, It's as easy as my screenshot makes it look!

Josh

Hi Josh pleas let me know whether I can create or convert .rtf file into .cmtx format in e-Sword ToolTip Nt 1.44 s/w

 

Charles



#97 yvehill

yvehill

    Liking e-Sword

  • Veterans
  • PipPip
  • 21 posts
Offline

Posted 22 April 2017 - 06:50 PM

There was another little tool written used to create resources by some Sth American bloke that was quite grunty and perhaps one of the best tools at that time, but I don't remember what it was called (a real pity).

 

I used that tool a lot!  It was called Biblos.  I have version 1.2.1.  His name was Joaquin Fernadnez.  joaquinf@cantv.net   I wish there was something like that for SQLite... holy grail indeed.



#98 DavidMer

DavidMer

    New to Bible Support

  • Members
  • Pip
  • 1 posts
  • LocationNYC
Offline

Posted 01 August 2019 - 07:21 AM

יכל לעניין אותך בשיתוף פעולה לגבי מוצר בעליה
?

#99 João Henrique

João Henrique

    New to Bible Support

  • Members
  • Pip
  • 3 posts
Offline

Posted 30 October 2021 - 06:33 PM

I have an Aramaic version of the New Testament compiled from Aramaic and Greek text by a Brazilian, can I transform it into a module for e-sword?



#100 Tj Higgins

Tj Higgins

    e-Sword Fanatic

  • Members (T)
  • PipPipPipPipPip
  • 1,461 posts
Online

Posted 30 October 2021 - 08:13 PM

I have an Aramaic version of the New Testament compiled from Aramaic and Greek text by a Brazilian, can I transform it into a module for e-sword?

There is a module creation tool for e-Sword called e-Sword Tooltip NT that will allow you to create the module you wish to make:

http://www.biblesupp...ooltip-tool-nt/






0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users




Similar Topics



Latest Blogs