<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>An American Editor</title>
	<atom:link href="http://americaneditor.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://americaneditor.wordpress.com</link>
	<description>Commentary on Books, eBooks, and Editorial Matters</description>
	<lastBuildDate>Wed, 15 May 2013 09:53:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='americaneditor.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>An American Editor</title>
		<link>http://americaneditor.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://americaneditor.wordpress.com/osd.xml" title="An American Editor" />
	<atom:link rel='hub' href='http://americaneditor.wordpress.com/?pushpress=hub'/>
		<item>
		<title>The Only Thing We Have to Fear: Wildcard Macros</title>
		<link>http://americaneditor.wordpress.com/2013/05/15/the-only-thing-we-have-to-fear-wildcard-macros/</link>
		<comments>http://americaneditor.wordpress.com/2013/05/15/the-only-thing-we-have-to-fear-wildcard-macros/#comments</comments>
		<pubDate>Wed, 15 May 2013 08:00:47 +0000</pubDate>
		<dc:creator>americaneditor</dc:creator>
				<category><![CDATA[Editing Tools]]></category>
		<category><![CDATA[Editorial Matters]]></category>
		<category><![CDATA[EditTools]]></category>
		<category><![CDATA[Find & Replace]]></category>
		<category><![CDATA[Jack Lyons]]></category>
		<category><![CDATA[Macro Cookbook for Microsoft Word]]></category>
		<category><![CDATA[MS Word]]></category>
		<category><![CDATA[Wildcard Find & Replace Macro]]></category>
		<category><![CDATA[wildcard macros]]></category>

		<guid isPermaLink="false">http://americaneditor.wordpress.com/?p=3496</guid>
		<description><![CDATA[Wildcard macros aren't difficult. They are simply a sophisticated form of Find &#38; Replace. But they can save enormous time. The key is analyzation.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=americaneditor.wordpress.com&#038;blog=11200112&#038;post=3496&#038;subd=americaneditor&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Whenever I talk to colleagues about macros, it is as if a funereal pall has enclosed us. My colleagues, generally, tell me that they cannot write macros, that it is much too complicated, especially wildcard macros.</p>
<p>If I ask if they ever use Word&#8217;s Find &amp; Replace, they all admit that, yes, they do. &#8220;Congratulations,&#8221; I say, &#8220;because each time you use Find &amp; Replace, you have written a macro! You just haven&#8217;t recorded it.&#8221;</p>
<p>The only thing we have to fear about macros is our fear of macros.</p>
<p>I suppose, technically, Find &amp; Replace is not macro writing, but truly, a macro is just a way to find some sequence and do something to that sequence &#8212; be it bold the sequence, highlight it, replace it with another sequence, delete it, whatever.</p>
<p>Most everyone who uses Microsoft Word has recorded a keyboard macro. Word makes doing so very easy. Again, congratulations if you have written a keyboard macro, because you are on your way to macro wizardship.</p>
<p>There is a key to writing macros. It is a secret that macro wizards rarely share, but I&#8217;m going to share with you. The secret is wrapped up in a single magical word: <em>analysis</em>. Analysis of what you need a macro to do is the key to writing a macro. Sure you need to have some arcane language (what good is wizardry without arcane language all its own?) and all of the arcane language you need to write the macros can be found in Jack Lyon&#8217;s <a title="The Editorium" href="http://editorium.com/" target="_blank"><em>Macro Cookbook for Microsoft Word</em></a> and in <a href="http://americaneditor.wordpress.com/?attachment_id=3497" rel="attachment wp-att-3497">Wildcards in MS Word Macros</a>, which is a compilation of information on wildcards that Jack Lyon wrote for his blog years ago and which you can download for free by clicking the title-link. Alternatively, you can use the <a title="Wildcard Find &amp; Replace Macro" href="http://wordsnsync.com/wildcard-find-replace.php" target="_blank">Wildcard Find &amp; Replace Macro</a> found in <a title="EditTools Download" href="http://wordsnsync.com/download.php" target="_blank">EditTools</a> to &#8220;write&#8221; the macros for you, <strong>but analysis is the real key to writing macros</strong>.</p>
<p>Consider this problem: You have a list of 100 references in which the styles are all over the place. Author names are often listed like this:</p>
<blockquote><p>Arnold, J. H., K. L. Swift, and A.J.H. Archimedes.</p></blockquote>
<p>but you need the author names to look like this:</p>
<blockquote><p>Arnold JH, Swift KL, Archimedes AJH:</p></blockquote>
<p>You can fix the names manually or by using macros. Manually will take nearly forever, so the better method is to use macros. Here is where analysis matters.</p>
<p>When I began using macros, I saw this problem and thought, &#8220;How can I write <strong><em>a</em></strong> macro to fix these author names?&#8221; My thinking was a single macro to take care of it all. I quickly discovered that a single macro can&#8217;t do the job, but a series of macros that can be combined into a single macro could. The key was <em>series of macros,</em> which meant that I needed to break the problem down into solvable (or macroable) parts.</p>
<p>The first part is <em>Arnold, J. H.,</em> which I need to change to <em>Arnold JH,</em>. What I need to <em>find</em> is as follows:</p>
<ol>
<li>any mix of letters of varying length</li>
<li>that is followed by a comma</li>
<li>and a space</li>
<li>a single uppercase letter</li>
<li>followed by a period and a space</li>
<li>a single uppercase letter</li>
<li>followed by a period</li>
<li>and a comma and a space</li>
</ol>
<p>I need to <em>replace</em> the <em>find</em> list with</p>
<ol>
<li>the mix of letters found in 1</li>
<li>the space found in 3</li>
<li>the single uppercase letter found in 4</li>
<li>the single uppercase letter found in 6</li>
<li>and the comma and space found in 8</li>
</ol>
<p>Note that what I no longer need is not included in the list of <em>replace with </em>items (i.e., <em>find</em> items 2, 5, and 7). Also note that, in analyzing what needs to be found, items that I no longer want are listed on their own lines in the <em>find</em> list.</p>
<p>If you are using Word&#8217;s Find &amp; Replace dialog with Use Wildcards checked, you would manually enter the following <em>Find</em> string [paired parens represent the information on a single line in the find list, thus, ([A-z]@) represents line 1: any mix of letters of varying length]:</p>
<blockquote><p>([A-z]@)(,)( )([A-Z]{1,1})(. )([A-Z]{1,1})(.)(, )</p></blockquote>
<p>And the following <em>Replace</em> string (the backslash+number represents the corresponding find item, e.g., \1 represents line 1: any mix of letters of varying length and \8 represents line 8: a comma and a space):</p>
<blockquote><p>\1\3\4\6\8</p></blockquote>
<p>I can hear you groan. But it isn&#8217;t as difficult as it appears. All of the information to write the strings is available in the downloadable <a href="http://americaneditor.wordpress.com/?attachment_id=3497" rel="attachment wp-att-3497">Wildcards in MS Word Macros</a> document (just click on the link).</p>
<p>If you are using the EditTools&#8217; <a title="Wildcard Find &amp; Replace Macro" href="http://wordsnsync.com/wildcard-find-replace.php" target="_blank">Wildcard Find &amp; Replace Macro</a>, you click buttons to make your selection and the code is written for you. An added feature with the <a title="Wildcard Find &amp; Replace Macro" href="http://wordsnsync.com/wildcard-find-replace.php" target="_blank">Wildcard Find &amp; Replace Macro</a> is that you can save this find and replace so that you can reuse it in the future; with Microsoft&#8217;s Find &amp; Replace, the strings cannot be saved. However, what I used to do before I created the Wildcard Find &amp; Replace Macro &#8211; and recommend that you do &#8212; was keep a special Word document with these strings in it so I could copy and paste when needed in the future. I set up the file like this:</p>
<p style="padding-left:30px;">1. Change <em>Arnold, J. H.,</em> to <em>Arnold JH,</em><br />
Find: ([A-z]@)(,)( )([A-Z]{1,1})(. )([A-Z]{1,1})(.)(, )<br />
Replace: \1\3\4\6\8</p>
<p>Once you have entered the strings in either Microsoft&#8217;s Find &amp; Replace dialog or in the <a title="Wildcard Find &amp; Replace Macro" href="http://wordsnsync.com/wildcard-find-replace.php" target="_blank">Wildcard Find &amp; Replace Macro</a>, click Replace All and all author names that fit this particular format will be altered. Then move to the next series to analyze, which is to change <em>K. L. Swift,</em> to <em>Swift KL,</em>. In this instance, what I need to <em>find</em> is as follows:</p>
<ol>
<li>a single uppercase letter</li>
<li>followed by a period and a space</li>
<li>a single uppercase letter</li>
<li>followed by a period</li>
<li>and a space</li>
<li>any mix of letters of varying length</li>
<li>that is followed by a comma</li>
<li>and a space</li>
</ol>
<p>I need to <em>replace</em> the <em>find</em> list with:</p>
<ol>
<li>the mix of letters found in 6</li>
<li>the space found in 8</li>
<li>the single uppercase letter found in 1</li>
<li>the single uppercase letter found in 3</li>
<li>the comma found in 7</li>
<li>and the space found in 5</li>
</ol>
<p>What I no longer need is not included in the list of <em>replace with</em> items (i.e., <em>find</em> items 2 and 4). Also note that, in analyzing what needs to be found, items that I no longer want are listed on their own lines in the <em>find</em> list.</p>
<p>If you are using Word&#8217;s Find &amp; Replace dialog with Use Wildcards checked, you would manually enter the following <em>Find</em> string:</p>
<blockquote><p>([A-Z]{1,1})(. )([A-Z]{1,1})(.)( )([A-z]@)(,)( )</p></blockquote>
<p>And the following <em>Replace</em> string:</p>
<blockquote><p>\6\8\1\3\7\5</p></blockquote>
<p>I said that you can&#8217;t save the strings as a macro if you are using Word&#8217;s Find and Replace dialog. That is true as far as it goes, but it doesn&#8217;t go all that far. There is a way to save the strings as a true macro without using EditTools&#8217; Wildcard Find &amp; Replace Macro. What you do is record a simple Find and Replace macro, for example, find <em>bush</em> and replace it with <em>blues</em>, using Word&#8217;s Record Macro feature, and give it a name like WildcardAuthorCorrection1; be sure to keep a list of what that macro does (or will do once you edit it). (If you don&#8217;t know how to record a simple macro, the fastest and best way to learn is to use Jack Lyon&#8217;s <a title="The Editorium" href="http://editorium.com/" target="_blank"><em>Macro Cookbook for Microsoft Word</em></a>. Within a few minutes you will be a master at recording simple macros and even at editing them.)</p>
<p>Open the newly recorded macro to edit it, and replace the <em>.Text = bush</em> entry with <em>.Text = [your find string]</em> and replace the <em>.Replacement.Text = blues</em> with <em>.Replacement.Text = [your replace string]</em>. Make sure all the items labeled as <em>True</em> are changed to <em>False</em> except change <em>.MatchWildcards = False</em> to <em>.MatchWildcards = True.</em></p>
<p>Once you get hooked on macros, the possibilities are endless and you&#8217;ll never let go. More importantly, you will improve your editing speed, accuracy, and efficiency, which translates into a higher effective hourly rate and a more profitable editing business.</p>
<p>You&#8217;ve got nothing to fear &#8212; macros are conquerable!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/americaneditor.wordpress.com/3496/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/americaneditor.wordpress.com/3496/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=americaneditor.wordpress.com&#038;blog=11200112&#038;post=3496&#038;subd=americaneditor&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://americaneditor.wordpress.com/2013/05/15/the-only-thing-we-have-to-fear-wildcard-macros/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/50fa0c32e34e796a8d3f7bedc03b8970?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">americaneditor</media:title>
		</media:content>
	</item>
		<item>
		<title>The Crystal Ball Says  . . .</title>
		<link>http://americaneditor.wordpress.com/2013/05/13/the-crystal-ball-says/</link>
		<comments>http://americaneditor.wordpress.com/2013/05/13/the-crystal-ball-says/#comments</comments>
		<pubDate>Mon, 13 May 2013 08:00:13 +0000</pubDate>
		<dc:creator>americaneditor</dc:creator>
				<category><![CDATA[Open-Access Publishing]]></category>
		<category><![CDATA[Professional Editors]]></category>
		<category><![CDATA[The Business of Books & Publishing]]></category>
		<category><![CDATA[authors]]></category>
		<category><![CDATA[editors]]></category>
		<category><![CDATA[future of editing]]></category>
		<category><![CDATA[journals]]></category>
		<category><![CDATA[open-access publishing]]></category>
		<category><![CDATA[research articles]]></category>
		<category><![CDATA[trends]]></category>

		<guid isPermaLink="false">http://americaneditor.wordpress.com/?p=3491</guid>
		<description><![CDATA[With the pressure from governments to make publicly financed research available at no cost, open-access publishing, I think the future for authors is one of more costs and less prestige and the future for professional editors is one of lower prices and less work.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=americaneditor.wordpress.com&#038;blog=11200112&#038;post=3491&#038;subd=americaneditor&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>The May 4, 2013 edition of <em>The Economist</em> reported that the British Research Councils will begin requiring taxpayer-funded research to be published in journals that make the research available free within one year of publication, if not sooner (<a title="The Economist" href="http://www.economist.com/news/science-and-technology/21577035-open-access-scientific-publishing-gaining-ground-free-all" target="_blank">&#8220;Academic Publishing: Free-for-all&#8221;</a>). This mirrors the White House&#8217;s executive order to the same effect and a bill in Congress that would set the time limit at six months. Not to be left behind, the European Union is moving in the same direction</p>
<p>The crystal ball sees these as a positive trend for taxpayers, but a worrisome trend for authors and editors, especially when you realize where this leads: to the extension of self-publishing to research papers.</p>
<p>It doesn&#8217;t take much effort to recognize that a journal cannot survive if it is paying all the costs of production and marketing but cannot charge for the content. Publishers, being businesses, would have to shift the economic burdens, and the only place to which they can be shifted is onto author shoulders.</p>
<p>It is true that, now, many researchers hire editors at their own expense to help them prepare research articles for submission to journals. The authors see this as an investment because they are trying to be published in journals whose reputations will boost the authors&#8217; reputation &#8212; the honor and prestige of being published in a journal known to reject 90% or more of submissions is calculable in the academic world. Getting published by <em>Nature</em> or <em>Science</em> is an academic plum; the same cannot be said for articles published in <em>PLoS</em>, which accepts 80% or more of the articles submitted to it.</p>
<p>The future seems to be that authors will not only have to bear the burden of the editorial costs, but also the production costs, which will be wrapped into a publication fee: &#8220;Want to have your article published in our journal? You need to pay us $x.&#8221; In other words, the vanity press model of publishing is the likely model that publishers of journals will adopt. As long as you are willing to pay to be published, you will be published.</p>
<p>Setting aside the ramifications such a system has for the reputation of the open-access journal and, thus, the reputation of the author published in the open-access journal, and setting aside the potential benefits to society of researchers having full access to these research articles, we need to consider the impact it will have on us in the performance of the work we do as editors and authors.</p>
<p>The boom in self-publishing of ebooks has not transferred its momentum to either editors or to authors. Although some editors have seen an uptick in work received from authors, most editors have not; many editors have seen, instead, a decline. More importantly, perhaps, is that editorial standards have declined as authors increasingly decide they can self-edit or that having their nephew&#8217;s kindergarten teacher (or the nephew himself!) do the editing for free or minimal cost is sufficient. Of course, it does not help that readers are buying error-riddled ebooks and often are unaware of the errors. (It is hard to convince someone who believes <em>gr8</em> is an acceptable spelling of <em>great</em> that <em>gr8</em> is erroneous.)</p>
<p>This momentum toward self- and nonprofessional editing also puts downward pressure on professional editors fees. We are in the race to the bottom!</p>
<p>A bright spot in editing has been academic editing. It hasn&#8217;t been financially bright but work-wise it has been shining when compared to the offshoring of &#8220;standard&#8221; editorial work. But that is because there have been several parties who were interested in achieving excellence, an excellence that is not represented by either most self-editing efforts or editing by nonprofessionals.</p>
<p>Yet I foresee a coming change as a result of the open access requirements. Researchers who are already hard pressed to financially support their research and who now pay for a preliminary submission edit, knowing that if accepted the journal will provide additional editing, will be rethinking whether to self-edit or have a nonprofessional do the editing, and whether to put pressure on professional editors to reduce fees, all because these authors will have to pay publication fees to the journals in addition to those fees they have already been paying.</p>
<p>According to <em>The Economist</em> article, the journal <em>Nature</em> claims it costs $40,000 per published paper to cover all of the production and review costs. I have no reason to doubt the number, but it makes me wonder who will bear &#8212; and pay &#8211; such cost in the open-access model of publishing? How many authors would willingly pay even 25% of that cost? How many authors could afford to absorb such costs?</p>
<p>If the journal is not absorbing the cost, then the ripple has to move downstream. It has to keep moving until it is finally stopped at the place where the cost is absorbed or until it no longer has momentum because either the costs to be absorbed have greatly diminished or no longer have someone to absorb them. How much of that ripple will editors have to absorb by way of lower prices?</p>
<p>(Something to note: &#8220;Lower prices&#8221; doesn&#8217;t necessarily mean reducing, for example, an hourly rate from $45 to $35. It can also mean leaving the rate as is but increasing the scope and amount of services provided. The effect is the same in both instances: it is a lowering of price.)</p>
<p>I also wonder when we will see this open-access publishing model extend to all of academic publishing, not just to journals. I expect that publishers, once they wrap themselves in open-access publishing and see that charging a fee to be published can be profitable, will apply this model to academic books. University presses are already financially in trouble; the open-access model of having the author pay the costs could reduce their financial stress. However, it would also mean less opportunity (or less money) for professional editors as authors strive to reduce their cost burden.</p>
<p>I think the future for authors is one of more costs and less prestige. More costs because the financial burdens will shift from journals and university presses to the authors. Less prestige because the quality of presentation of the research will decline and because a pay-to-publish scheme will reduce the selectivity of the journals and publishers &#8212; as long as you can pay, you will be published.</p>
<p>I think the future for professional editors is one of lower prices and less work. Lower prices because authors will pressure for lower fees, or a broadened scope of work, or both, and editors will not be able to resist that pressure because it will come from all directions. Less work because as the costs to publish rise, authors will try to self-edit or find colleagues or students or friends or relatives or other nonprofessionals to do the editing as a way to reduce their financial burden, with the result that there will be less work for professional editors.</p>
<p>My crystal ball says authors and editors need to begin thinking about how they will adapt to what the future portends.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/americaneditor.wordpress.com/3491/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/americaneditor.wordpress.com/3491/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=americaneditor.wordpress.com&#038;blog=11200112&#038;post=3491&#038;subd=americaneditor&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://americaneditor.wordpress.com/2013/05/13/the-crystal-ball-says/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/50fa0c32e34e796a8d3f7bedc03b8970?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">americaneditor</media:title>
		</media:content>
	</item>
		<item>
		<title>The Commandments: Thou Shall be Efficient</title>
		<link>http://americaneditor.wordpress.com/2013/05/08/the-commandments-thou-shall-be-efficient/</link>
		<comments>http://americaneditor.wordpress.com/2013/05/08/the-commandments-thou-shall-be-efficient/#comments</comments>
		<pubDate>Wed, 08 May 2013 08:00:19 +0000</pubDate>
		<dc:creator>americaneditor</dc:creator>
				<category><![CDATA[Commandments for Editors]]></category>
		<category><![CDATA[The Commandments]]></category>
		<category><![CDATA[EditTools]]></category>
		<category><![CDATA[efficiency]]></category>
		<category><![CDATA[inefficiency]]></category>
		<category><![CDATA[Toggle]]></category>
		<category><![CDATA[XKeys]]></category>

		<guid isPermaLink="false">http://americaneditor.wordpress.com/?p=3485</guid>
		<description><![CDATA[In today's highly competitive environment, editors need to increase their efficiency. Doing so reduces client costs and increases the editor's income.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=americaneditor.wordpress.com&#038;blog=11200112&#038;post=3485&#038;subd=americaneditor&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>It is not enough to say that an editor has to be profitable (see <a title="The Commandments: Thou Shall be Profitable" href="http://americaneditor.wordpress.com/2013/04/15/the-commandments-thou-shall-be-profitable/" target="_blank">The Commandments: Thou Shall be Profitable</a>); a business must also be efficient in the delivery of its goods and services. Thus the commandment: Thou shall be efficient!</p>
<p>Efficiency has many facets. Included under the efficiency umbrella are the steps an editor takes before editing a manuscript &#8212; the preparatory steps (see, e.g., <a title="Business of Editing: The Logistics of Large Projects" href="http://americaneditor.wordpress.com/2013/05/01/business-of-editing-the-logistics-of-large-projects/" target="_blank">Business of Editing: The Logistics of Large Projects</a>). Also included are the steps an editor takes during editing to promote speed, accuracy, and consistency, as well as the steps (the planning) the editor takes to meet a schedule and those an editor takes to find and retain clients.</p>
<p>With today&#8217;s worldwide competition for editorial work and the resulting depression of fees &#8212; and let us not forget the rise in authors who believe they can do it all themselves, which rise is a result of the rise of ebook self-publishing &#8212; the need for editorial efficiency is greater than ever.</p>
<p>Two things clients look for are low price and short schedule. Everyone is in a hurry. When I started as an editor, my clients&#8217; primary concern was getting it right &#8211; schedules were flexible. Today, as a result of the continual consolidation in the publishing industry and the rising power of the accountants, schedule is the highest priority among publishers (with low editorial and production costs a very close second). In addition, authors and publishers often do not have large reservoirs of patience for the editing process.</p>
<p>The pressure of low fees and short schedules means that editors need to be more efficient in order to earn a reasonable living from editing. The effective hourly rate has to be foremost in an editor&#8217;s mind (see <a title="Thinking About Money: What Freelancers Need to Understand" href="http://americaneditor.wordpress.com/2010/10/06/thinking-about-money-what-freelancers-need-to-understand/" target="_blank">Thinking About Money: What Freelancers Need to Understand</a> for a discussion of the effective hourly rate). The ultimate question is: How does an editor become more efficient?</p>
<p>Some ways we have discussed previously, such as our discussion on macros (see, e.g., <a title="The Professional Editor: Working Effectively Online II — The Macros" href="http://americaneditor.wordpress.com/2011/11/09/the-professional-editor-working-effectively-online-ii-the-macros/" target="_blank">The Professional Editor: Working Effectively Online II — The Macros</a>). But mastering macros is not enough. We must also be, for example, masters of Microsoft Word. We must also revise our approach to editing.</p>
<p>When we are paid by the hour, we can be less efficient than when we are paid by the page or the project, because the client is paying us without regard to efficiency, although there are limits to the number of hours for which a client will willingly pay. The problem from an editor&#8217;s perspective is that when we are paid by the hour, we are limited in our earning capacity and it becomes ever more important that we be able to fill our work week with work. If we are paid $30 and hour, all we can earn is $30 an hour and if we only work 20 hours in a week, we are paid only for those 20 hours.</p>
<p>In addition, there is no incentive to quickly finish a project because the next project will also pay us $30 an hour and it doesn&#8217;t matter which project is paying us as long as we are getting paid. (Of course, we are not really earning $30 an hour because that number is reduced considerably when we include the hours for which we are not being paid but which are also work hours; that is, when we calculate our effective hourly rate.)</p>
<p>Yet efficiency can bring some rewards even to the hourly earner. Being efficient reduces the hours we need to spend on a project and thus enables us to take on additional projects and additional clients &#8212; we can expand our base. Efficiency can help move us from being dependent on a particular client to a broad base of clients.</p>
<p>One aspect of efficiency is the number of reading passes an editor makes. Discussing with colleagues how they process a manuscript can be revealing. Some do multiple passes over a manuscript in an attempt to find and correct lingering errors. Others try to minimize the number of passes, especially if they are not being paid by the hour.</p>
<p>Limiting the number of passes to one or two is doable, depending on the type of manuscript (e.g., novel, nonfiction book, journal article), the client (e.g., whether author or publisher), the software used (e.g., <a title="Intelligent Editing" href="http://www.intelligentediting.com/default.aspx" target="_blank">PerfectIt</a>, <a title="wordsnSync" href="http://www.wordsnsycn.com" target="_blank">EditTools</a>, specialized spell checkers), the client&#8217;s requirements, and the type of edit one is hired to perform (e.g., developmental, copyedit; see <a title="Editor, Editor, Everywhere an Editor" href="http://americaneditor.wordpress.com/2010/01/13/editor-editor-everywhere-an-editor/" target="_blank">Editor, Editor, Everywhere an Editor</a>). It is not true that every pass an editor makes over a manuscript makes the manuscript more error-free. That may be true for one, two, possibly three passes, but there comes a point when returns diminish &#8212; not because there are no errors, but because we begin to see what we expect to see, not necessarily what is really there. We become overfamiliar with the manuscript. Consequently, doing fewer passes can be both more efficient and more productive. (We, and our clients, need to accept that there really is no such thing as a 100% error-free manuscript, especially when many &#8220;errors&#8221; are subjective errors.)</p>
<p>Efficiency is also had by using the correct tools. Studies are very clear that using multiple monitors, for example, increases productivity and efficiency. Using two monitors increases efficiency by 50%; add a third and gain another 25%; add a fourth and gain another 5%. Basically, editing with three monitors seems to be the most efficient and productive. I know that I have found using three 24-inch rotating monitors has made it much easier for me to edit quickly, efficiently, and accurately. It allows me to, for example, drag and drop between documents, each document on its own screen. It also allows me to have my stylesheet open and before me at all times, as well research tools.</p>
<p>Efficiency is also found in reducing the number of keystrokes needed to process information. I have found invaluable a keyboard accessory called <a title="XKeys Pro" href="http://xkeys.com/xkeys/xkpro.php" target="_blank">XKeys</a>. I have used the Pro PS2 version for more than 10 years; it is what allows me to access many of my macros by the press of a single key. I have assigned each of the buttons on the XKeys to a key combination that I would not normally use (e.g., Ctrl+Alt+Shift+K) and I assign one of my macros to that key combination. Using Xkeys makes using macros like <a title="EditTools' Toggle macro" href="http://wordsnsync.com/toggle.php" target="_blank">Toggle</a> much more efficient.</p>
<p>Efficiency also means tracking one&#8217;s time carefully. An editor needs to know what areas of editing go relatively &#8220;fast&#8221; and what go &#8220;slow.&#8221; By identifying the areas that take longer to process, the editor can focus on ways to make such work go faster. More importantly, if an editor finds that she can process certain types of material faster and more accurately than other types, the editor now knows where to focus her marketing efforts.</p>
<p>Similarly, an editor needs to know her strengths and weaknesses. For example, I know that I am a fumble-fingered typist. Consequently, I know that if I have to type <em>nonsteroidal antiinflammatory drugs</em>, I am likely to mistype it and need to correct my typing, which makes both the original typing and the correction typing inefficient. Thus I know that I can increase my efficiency by having that phrase typed correctly once in my Toggle dataset and then pressing a key combination (or, in my case, an Xkeys button) to have it automatically typed.</p>
<p>Efficiency is good for the editor and for the client. No client wants to pay for an editor&#8217;s learning or redoing curve, and most editors want to increase their earning power. Analyzing how you work and trying to improve on it is a fundamental part of any business.</p>
<p>Thus the commandment: <strong>Thou shall be efficient!</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/americaneditor.wordpress.com/3485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/americaneditor.wordpress.com/3485/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=americaneditor.wordpress.com&#038;blog=11200112&#038;post=3485&#038;subd=americaneditor&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://americaneditor.wordpress.com/2013/05/08/the-commandments-thou-shall-be-efficient/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/50fa0c32e34e796a8d3f7bedc03b8970?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">americaneditor</media:title>
		</media:content>
	</item>
		<item>
		<title>Business of Editing: Preparing for Disaster</title>
		<link>http://americaneditor.wordpress.com/2013/05/06/business-of-editing-preparing-for-disaster/</link>
		<comments>http://americaneditor.wordpress.com/2013/05/06/business-of-editing-preparing-for-disaster/#comments</comments>
		<pubDate>Mon, 06 May 2013 08:00:29 +0000</pubDate>
		<dc:creator>americaneditor</dc:creator>
				<category><![CDATA[Business of Editing]]></category>
		<category><![CDATA[Computers and Software]]></category>
		<category><![CDATA[1and1]]></category>
		<category><![CDATA[Antec]]></category>
		<category><![CDATA[Apple computers]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[Backup4All]]></category>
		<category><![CDATA[BitDefender]]></category>
		<category><![CDATA[Carbonite]]></category>
		<category><![CDATA[free antivirus]]></category>
		<category><![CDATA[free firewall]]></category>
		<category><![CDATA[imaging]]></category>
		<category><![CDATA[NAS box]]></category>
		<category><![CDATA[Registry Mechanic]]></category>
		<category><![CDATA[RoboForm]]></category>
		<category><![CDATA[Windows computers]]></category>

		<guid isPermaLink="false">http://americaneditor.wordpress.com/?p=3483</guid>
		<description><![CDATA[Being self-employed means we have to do our own planning for disaster recovery. Such plans need to include hardware design and software.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=americaneditor.wordpress.com&#038;blog=11200112&#038;post=3483&#038;subd=americaneditor&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I run a business; I am a professional editor; I work full-time as an editor. In addition, I have several professional editors who work for me. All of us rely on my ability to obtain work and keep clients happy and returning. Fortunately, I have been successful at this for many years.</p>
<p>Yet always in the back of my mind is a worry. I worry about what will happen should I be struck by a virus, by malware, or have equipment failure. I worry because my business depends on my equipment.</p>
<p>My worrying was much greater in my early years than it is today. The years have seen significant improvements in both hardware and software. Additionally, over the years I have learned how best to prepare myself for an emergency.</p>
<p>Let me begin with hardware. Over the years, it was my practice to replace our computers every 18 to 24 months. Technology was making great strides and I wanted to stay abreast &#8212; not cutting edge but just one step behind. In the very beginning, I bought, as most people do, off-the-shelf computers. I learned very quickly that I was throwing away my money.</p>
<p>I have never owned an Apple product. I do understand why people swear by Apple computers, but I look at Apple computers and see a high price for mediocre equipment. I do not mean that negatively. Apple&#8217;s mediocre components can be much better than many of the off-the-shelf computers&#8217; components. What I do mean is that for the same or a little more money (or even a little less money), I can have a custom-built computer that uses the best-quality individual components. Apple&#8217;s mediocre quality is in comparison to high-quality custom-built computers. The other problem with Apples has been the behind-the-times support for Word&#8217;s macro language. I rely on macros and Microsoft&#8217;s Apple support has always been half-hearted, and Apple itself hasn&#8217;t shown much interest in supporting Microsoft VBA on its computers. The combination of inability to customize my computer and lack of robust macro support led me to the Windows world, where I have remained.</p>
<p>What I want are computers that meet my future needs, not my current needs. I also want computers that work with me to prevent a disaster from destroying my business. Thus, I have our computers custom built. Our current computers are now about 5 years old and still going strong (although I am thinking about a couple of upgrades this summer, even though the upgrades will make no visible difference in my work).</p>
<p>There are two things that are absolute must-haves for my computers: (1) an Antec (or similar) case and (2) hot-swappable hard drives. The <a title="Antec Performance cases" href="http://www.antec.com/product.php?id=704504&amp;fid=6&amp;lan=us" target="_blank">Antec</a> case is required because I like quiet and want superior component cooling. Although expensive, the Antec cases are very quiet and offer superior cooling. If I unplugged my NAS (network-attached storage) box, you would be able to hear a pin drop in my office because my computer is so quiet, and I&#8217;ve never had to worry about hardware failure from overheating. This is purely a luxury must-have as the case doesn&#8217;t enhance performance; it just eliminates annoying sounds and minimizes the risk of component overheating.</p>
<p>But the hot-swappable hard drives are very important. These are drives that can be easily and quickly (in a couple of seconds) be removed from the computer and replaced with another drive. It isn&#8217;t so much the being replaced with another drive that is important as that I have duplicate drives &#8212; one in safe storage, the other in the computer &#8212; which minimizes the risk of downtime and lost work. And when I travel, I can remove all of the hard drives and put them in a safe deposit box and not worry about something happening in my absence that would put me out of business (or let thieves get hold of my data). (Removable hard drives are available aftermarket for Macs.)</p>
<p>The removable drives also let me take weekly images of my hard drives on a dedicated drive as a way to protect against a disaster that would require all new drives or a new computer. The image would let me recreate my computer in minutes. Combined with <a title="Carbonite" href="http://www.carbonite.com/" target="_blank">Carbonite</a>&#8216;s remote backup, which occurs automatically every time I modify a file, I can recreate my current computer in a few hours. (Carbonite is available for Macs.)</p>
<p>Also important hardware-wise are my triple-monitor setup and the NAS box. The NAS box has four hard drives (two paired sets) in it and is responsible for storing my daily backups. I like easy and automatic backups, so I use <a title="Backup4All" href="http://www.backup4all.com/" target="_blank">Backup4All</a>, which backs up the files into standard zip files. The NAS box lets me store several months worth of backups. (NAS boxes are available for use with Macs.)</p>
<p>Software also plays an important role in my disaster preparations. I have already mentioned two, Carbonite and Backup4All, and I use the built-in imaging software that comes with Windows 7 to do the disk imaging. But a very important program is <a title="Registry Mechanic" href="http://www.pctools.com/registry-mechanic/" target="_blank">PC Tools&#8217; Registry Mechanic</a>. I have been using the program for a number of years and it has come to the rescue a couple of times. I have it run every day after bootup. What I especially like about Registry Mechanic is that it creates a restore point so that I can restore a problem Registry to an earlier one that was problem-free. To do the restore takes a few seconds &#8211; a couple of mouse clicks and a reboot.</p>
<p>Being able to go back in time and replace my Registry is an important tool in fighting malware. Malware often changes entries in the Registry and sometimes it is very difficult to remove the malware from the Registry. Restoring an older version of the Registry, from before the malware invasion, often can solve the problem. In all my years of using a computer, I have never had to completely erase my boot drive and reinstall all my software in order to remove a virus or malware or to fix a problem Registry.</p>
<p>I also use <a title="BitDefender" href="http://www.bitdefender.com/" target="_blank">BitDefender Internet Security</a> for antivirus and firewall protection. Over the years, I have used various antivirus and firewall software programs, including free ones, but for the past 5 years, my choice has been BitDefender. I am not a fan of free antivirus software. It is not that such software cannot be good, but I know from my own business that I cannot give away my services and survive. So there has to be something that is held back or that doesn&#8217;t work as well with the free versions; otherwise, what would induce you to upgrade to a paid version? And if there is limited income coming in to an antivirus/antimalware company, how does the company generate enough income to constantly update the virus and malware signatures? (One exception may be Microsoft&#8217;s AV software because Microsoft generates a lot of revenue from other products.)</p>
<p>As I&#8217;ve said before, if my computer is not working, I&#8217;m not working. If I&#8217;m not working, I&#8217;m not earning any money and I&#8217;m not meeting my client&#8217;s needs. It is not uncommon to read about an editor whose computer got infected with a virus and now is having problems. I can say that in all my years of editing on computer &#8212; and I started back in the late 1980s &#8212; I have never been down because of virus or malware invasion. I attribute this to using the right tools in the right combinations.</p>
<p>Passwords also concern me. I worry about password theft. I don&#8217;t care if someone steals my password to <em>Consumers Report</em>, but I do care if they steal my banking passwords or the passwords to my websites and e-mail. Consequently, I use <a title="RoboForm" href="http://www.roboform.com/" target="_blank">RoboForm</a> to store and input my passwords. I have been using it for many years, since version 1. Letting RoboForm enter the information avoids the problem of keyloggers grabbing my password as I type.</p>
<p>Finally, as we have discussed in previous articles, I use an online stylesheet. This stylesheet is at my website. If my website goes down, I&#8217;m in trouble. Over the years I have tried several different website hosts. About 9 years ago, I moved to <a title="1and1" href="http://www.1and1.com/" target="_blank">1and1</a>, where I have remained. In the past 5 years, my website has been unavailable a total of 2 hours (approximately), with one exception, which was my fault, when it was down nearly 4 hours while 1and1 restored my website. (In doing a programming upgrade, I accidentally erased all of the coding of the live site rather than of a sandbox site. I called 1and1 tech support &#8212; they always answer with a live person within 2 or 3 minutes, and usually less &#8212; and it took them a few hours, but they did fully restore my websites.)</p>
<p>Although some of the programs may not be available for Apple computers, I suspect that equivalent programs are. We rely on our computers to earn our living, which means we should be taking those steps necessary to ensure that any downtime is minimal &#8212; and that all our data is safe.</p>
<p>What special steps do you take?</p>
<p>(<em>Disclosure:</em> I have no financial interest in any of the products mentioned. They are products that I have purchased and use.)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/americaneditor.wordpress.com/3483/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/americaneditor.wordpress.com/3483/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=americaneditor.wordpress.com&#038;blog=11200112&#038;post=3483&#038;subd=americaneditor&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://americaneditor.wordpress.com/2013/05/06/business-of-editing-preparing-for-disaster/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/50fa0c32e34e796a8d3f7bedc03b8970?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">americaneditor</media:title>
		</media:content>
	</item>
		<item>
		<title>Business of Editing: The Logistics of Large Projects</title>
		<link>http://americaneditor.wordpress.com/2013/05/01/business-of-editing-the-logistics-of-large-projects/</link>
		<comments>http://americaneditor.wordpress.com/2013/05/01/business-of-editing-the-logistics-of-large-projects/#comments</comments>
		<pubDate>Wed, 01 May 2013 09:02:41 +0000</pubDate>
		<dc:creator>americaneditor</dc:creator>
				<category><![CDATA[Business of Editing]]></category>
		<category><![CDATA[Editing Tools]]></category>
		<category><![CDATA[Professional Editors]]></category>
		<category><![CDATA[EditTools]]></category>
		<category><![CDATA[Freelance Editorial Services]]></category>
		<category><![CDATA[Journals macro]]></category>
		<category><![CDATA[large manuscripts]]></category>
		<category><![CDATA[logistics]]></category>
		<category><![CDATA[Never Spell Word]]></category>
		<category><![CDATA[online stylesheets]]></category>
		<category><![CDATA[professional editors]]></category>
		<category><![CDATA[stylesheets]]></category>
		<category><![CDATA[wildcard Find & Replace]]></category>
		<category><![CDATA[wordsnSync]]></category>

		<guid isPermaLink="false">http://americaneditor.wordpress.com/?p=3474</guid>
		<description><![CDATA[Projects that involve large amounts of manuscript require a plan of action to ensure accurate, consistent, and speedy editing.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=americaneditor.wordpress.com&#038;blog=11200112&#038;post=3474&#038;subd=americaneditor&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>As I wrote in my previous post, <a title="Business of Editing: Taking On Too Much" href="http://americaneditor.wordpress.com/2013/04/29/business-of-editing-taking-on-too-much/" target="_blank"><em>Business of Editing: Taking On Too Much</em></a>, I have been hired to help edit a portion of a very large project. My portion runs to 5,000 manuscript pages, which have to be edited within 6 weeks.</p>
<p>After having written about the ethical issues of having undertaken a project that was bigger than the original editors could handle, I thought it would be worthwhile to discuss some of the logistical problems of massive projects. Let&#8217;s begin at the beginning: This project, before editing of any chapters, ran approximately 8,000 manuscript pages. (I use approximately deliberately as this was the in-house editor&#8217;s estimate; I only know with certainty the page count for the chapters I have actually received.)</p>
<p>Projects of that size are the types of project that I often receive and over the years, I have developed a system for working with such massive amounts of manuscript. In fact, it was because of my receiving projects of that size that I developed <a title="EditTools" href="http://www.wordsnsync.com" target="_blank">EditTools</a>. As you can imagine, with such projects consistency becomes a problem, and the stylesheet seems to grow on its own.</p>
<p>The first logistical problem I address is that of editors: How many editors will be needed to edit the manuscript within the time allotted by the schedule? I built my business, <a title="Freelance Editorial Services" href="http://www.freelance-editorial-services.com" target="_blank">Freelance Editorial Services</a>, around the idea that a team of editors can do better financially than a solo editor. Although this notion has been disputed many times over the years, I still believe it to be true, based on discussions that I have with solo colleagues. It is this team concept that enables me to undertake such large projects with confidence, knowing that I will have a sufficient number of well-qualified editors to do the work.</p>
<p>The second logistical problem I address is the online stylesheet and giving access to it to the editors who will be working on the project. I discussed my online stylesheet in <a title="Stylesheets" href="http://americaneditor.wordpress.com/2011/12/07/working-effectively-online-v-stylesheets/" target="_blank"><em>Working Effectively Online V — Stylesheets</em></a>. When several editors work collaboratively on a project, this online stylesheet enables all of the editors to see what decisions have been made, and to conform their decisions with the decisions that have been made by coeditors. Consequently, if an editor makes new editorial decision (i.e., it has not been previously decided by an editor and inserted on the stylesheet) to use <em>distension</em> rather than <em>distention</em>, or to use <em>coworker</em> rather than <em>co-worker</em>, all of the other editors can immediately see that decision &#8212; within seconds of its being entered into the stylesheet &#8212; and can conform their editing to that decision or dispute it. It also means that errors can be caught and corrected. For example, if an editor enters adriamycin, another editor can correct it to Adriamycin (it is a brand name, not a generic drug) and immediately notify all editors of the original error and correction.</p>
<p>In addition, my client also has access to the stylesheet. The client can view and print it, but not modify it. This serves two purposes: (a) the client can provide proofreaders with up-to-the-minute copies of the stylesheet and (b) the client can look at our editorial decisions and decide that he would prefer, for example, <em>distention</em> rather than <em>distension</em>, notify an editor of the preference, and the editor can then make the change and notify all of the coeditors, who can then make any necessary corrections in chapters not already submitted to the client.</p>
<p>The third logistical problem I address is the creation of a starter NSW (Never Spell Word) file for the project. The <a title="Never Spell Words" href="http://wordsnsync.com/never-spell-word.php" target="_blank">Never Spell Word</a> module of EditTools is where known client preferences are stored. For example, if I know that the client prefers <em>distention</em> to <em>distension</em>, I enter into the NSW file the information to change instances of <em>distension</em> to <em>distention</em>. Also into this file goes editorial decisions, such as marking <em>DNA</em> as an acronym that does not ever need to be spelled out but that the acronym <em>US</em> (for <em>ultrasound</em>) should always be spelled out as <em>ultrasound</em>. The NSW file also serves to remind editors of other editorial-decision–related information. I provide each editor with a starter NSW file and each editor will add to their NSW file as they edit.</p>
<p>The NSW macro is run before beginning editing a chapter. Its purpose is to promote consistency across chapters and to make it easier for an editor to visually see editorial decisions that have been made. The NSW macro includes several components. For example, my basic NSW for medical editing also includes a dataset for drugs and organisms. Its use helps speed editing by providing visual clues, such as an indication that a drug name is correct even though the spell checker is flagging it as erroneous &#8212; it becomes one less thing that I need to verify.</p>
<p>The fourth logistical problem I tackle is references. These projects often have lots of references. One chapter of the project that I just received, for example, runs 305 manuscript pages, of which there are 61 pages of references &#8212; a total of 652 references (most of the chapters have more than 300 references). Dealing with references can be time-consuming. My approach is to separate the references from the main chapter, putting them in their own file. This serves four purposes: (a) Microsoft, in its wisdom, has determined that if spell check determines there are more than some number of errors in a document, it will display a message that there are too many errors for Word to display and turns off spell check. Although spell check is not perfect, it is a tool that I do use when editing. I would prefer it to flag a correctly spelled word as misspelled, giving me an alert, than my possibly missing something. Spell check is a tool, not a solution. (However, it does help that EditTools helps me create <a title="EditTools' Custom Dictionaries" href="http://wordsnsync.com/dictionaries.php" target="_blank">custom dictionaries</a> so that correct words that are currently flagged as errors by spell check can easily be added to a custom dictionary and not flagged in the future.) By moving the references to their own file, I eliminate this problem of Word turning off spell check for too many errors.</p>
<p>(b) It provides me with an opportunity to run my <a title="Journals" href="http://wordsnsync.com/journals.php" target="_blank">Journals</a> macro. Every time I come across a new variation of a spelling of a journal name, I add it to one of my journal datasets. My PubMed (medical) journals dataset currently has more 14,675 entries. With the references in a separate file, I can run that dataset against the reference list and have my macro correct those journal names that are incorrect (assuming the information is in my dataset) and mark as correct those that are correct. What this means is that rather than having to check journal names for 652 references in a chapter, I have to do so for at most a handful. It also means that I can concentrate on the other reference errors, if any, such as missing author names. Instead of spending several hours on the references alone, I can edit the references in a much shorter amount of time. (It took 26 minutes for the Journals macro to check the 652 references against the 14,675 entries in the dataset.)</p>
<p>(c) The third purpose is that separating the references from the main text lets me run the <a title="EditTools' Page Number Format" href="http://wordsnsync.com/page-number-format.php" target="_blank">Page Number Format</a> macro. In less than a minute, I had changed the page numbers in the 652 references from 1607-10 to 1607-1610 format. How long would it take to do this manually? Having the references in their own file means I do not have to worry about the macro making unwanted changes in the main text, especially as this macro runs without tracking.</p>
<p>(d) The fourth purpose separating the references from the main body of the chapter serves is that it lets me run my <a title="Wildcard Find &amp; Replace" href="http://wordsnsync.com/wildcard-find-replace.php" target="_blank">Wildcard Find &amp; Replace</a> macro just on the references. There is no chance that I will use the macro and make unwanted changes to the main text. WFR is efficient because it lets me create a macro that works, such as one to closeup the year-volume-pages cite, and save it for future reuse. WFR even lets me combine several of the macros into a single script (that also can be saved for repeat use) so that the macros run sequentially in my designated order. As an example: I have created macros to change author names from the format <em>Author, F. H.,</em> to <em>Author FH,</em>. If you have to do this manually for several thousand author names, you begin to appreciate the power and usefulness of WFR and how much time it can save. (I also will use WFR on the main text when appropriate. What I avoid by separating out the references is the possibility of something happening to either the main text or the references that shouldn&#8217;t.)</p>
<p>The above steps are among those I take that make handling of large projects easier and more profitable. There are additional things that I do for each chapter, but the point is that by dealing with manuscript in a logical way, projects become manageable. In addition, by using the right tools, editing is more accurate, consistent, and faster, which leads to a happy client, more work, and increased profitability.</p>
<p>Do you have any thoughts on how to handle large amounts of manuscript? Do you take any special steps for preparing a manuscript for editing or while editing?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/americaneditor.wordpress.com/3474/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/americaneditor.wordpress.com/3474/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=americaneditor.wordpress.com&#038;blog=11200112&#038;post=3474&#038;subd=americaneditor&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://americaneditor.wordpress.com/2013/05/01/business-of-editing-the-logistics-of-large-projects/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/50fa0c32e34e796a8d3f7bedc03b8970?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">americaneditor</media:title>
		</media:content>
	</item>
		<item>
		<title>Business of Editing: Taking On Too Much</title>
		<link>http://americaneditor.wordpress.com/2013/04/29/business-of-editing-taking-on-too-much/</link>
		<comments>http://americaneditor.wordpress.com/2013/04/29/business-of-editing-taking-on-too-much/#comments</comments>
		<pubDate>Mon, 29 Apr 2013 08:00:27 +0000</pubDate>
		<dc:creator>americaneditor</dc:creator>
				<category><![CDATA[Business of Editing]]></category>
		<category><![CDATA[Professional Editors]]></category>
		<category><![CDATA[ethics standards]]></category>
		<category><![CDATA[professional editors]]></category>
		<category><![CDATA[schedules]]></category>
		<category><![CDATA[skills]]></category>

		<guid isPermaLink="false">http://americaneditor.wordpress.com/?p=3472</guid>
		<description><![CDATA[Sometimes the best thing an editor can do is say "no" or "I can't."<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=americaneditor.wordpress.com&#038;blog=11200112&#038;post=3472&#038;subd=americaneditor&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>This past week, I was hired to help on a massive project that had been started by other editors who were now behind schedule. I was given a copy of the stylesheet the other editors had created in hopes that I could adopt it for the material I was asked to edit.</p>
<p>The project, as I said, is massive. The portion I received is nearly 5,000 manuscript pages and the client would like that material edited within 6 weeks in hopes of partially salvaging the schedule.</p>
<p>The first problem I faced was what to do about the stylesheet. As provided, it had numerous problems. First, there is no clear pattern to some of the decisions. For example, sometimes the suffix <em>like</em> is hyphenated and sometimes not. This is not a problem where the suffix is attached to, for example, an acronym (APA-like), but it is a problem when it is attached to a standard word that doesn&#8217;t end in the letter l (e.g., boatlike vs. tomb-like; why hyphenate the latter but not the former?).</p>
<p>The hyphenation issue didn&#8217;t stop with suffixes; it extended to prefixes as well. Sometimes a particular prefix is hyphenated and sometimes it isn&#8217;t.</p>
<p>To complicate matters, some of the decisions are contrary to the dictionary that governs the project and certainly contrary to the appropriate style manuals.</p>
<p>A second problem with the stylesheet is that it contains spelling errors. Not just one or two, but a significant number. These are errors that should have been flagged if the editors are using specialty spell-checking software. I do not mean to imply that an editor can rely on spell-checking software; rather, spell-checking software serves a purpose and an editor should use specialty spell-check software to flag possible errors at so they can be checked and a determination made whether they are in fact errors.</p>
<p>The first problem was readily solved by a discussion with the client. It was determined that the most important things for this project are chapters being internally consistent (which makes sense because some chapters are longer than many books) rather than consistent across chapters, and that the schedule be met if at all possible. Consequently, I need to have my team of editors do what they have always done and strive for chapter consistency first and cross-chapter consistency second (ignoring, of course, chapters we are not editing).</p>
<p>The second problem was also easily solved because my team uses appropriate software, including specialty software and <a title="EditTools" href="http://www.wordsnSync.com" target="_blank">EditTools</a>, to help us with these projects. We are ignoring the stylesheet from the other editors for the most part.</p>
<p>However, this scenario does raise a few questions. First, am I ethically obligated to advise the client of the errors in the other editors&#8217; stylesheet? If I do, I am questioning the competency of the editors previously hired and I am creating more work for the client who now has to either correct edited manuscript in-house or ask proofreaders to do it (or possibly just ignore them). I believe an editor&#8217;s obligation is to the editor&#8217;s client and thus in this instance believe that the correct course is to notify the client of the errors. I think, too, this holds true with my own stylesheets should I subsequently discover I have made an error. In the case of my stylesheets, I make it a practice to both update the stylesheet and to alert the client that I discovered an error (or more) made by me or another team editor, that I have corrected the stylesheet and the corrected version is now available for download, and I list the errors made and their corrections.</p>
<p>The second question that is raised is whether an editor has an ethical obligation to advise a client when a project is too large for the editor early enough in the project&#8217;s schedule for the client to attempt to salvage its schedule? A companion question is whether an editor has an ethical obligation to tell a client when the editor lacks the skill to properly edit the subject matter at hand of that lack of skill so that the client can hire an editor with the necessary skill?</p>
<p>Again, I think it is an editor&#8217;s obligation to let a client know when a project is too big for the editor to edit in a timely fashion. I also think an editor should decline projects for which the editor does not have the requisite skillset.</p>
<p>There is yet another issue involved in projects such as this one: having and using the correct tools to do the proper editing job. It is here that I think many editors fail.</p>
<p>The project in question is a medical tome, as I suspect you have guessed. Should not an editor have current medical spell-checking software and not rely on either one that is years out of date or on the general spell-checking software that comes with Microsoft Word? Should not an editor have current drug manuals or software? How about specialty word software (or books) and dictionaries? More importantly, shouldn&#8217;t the editor both have these resources at her fingertips and actually use them?</p>
<p>I also think that editors should have and use all of the tools that are available (and appropriate) to make the editor&#8217;s work more accurate and more consistent. Yet, I have been told by some editors that, for example, they do not use spell-checking software because they have a &#8220;sharp eye for misspellings and we all know that that spell-checking software is not always accurate.&#8221; I have also heard laments about how the software costs money. (I view such costs as investments in my business and profession, and as part of the requirements to do business.)</p>
<p>When an editor overreaches, both the editor and the client suffer. The editor becomes stressed and jeopardizes his relationship with the client, who is also stressed. In the end, the editor may well lose both the project and the client. I recognize that it is difficult to give up projects that will bring in money, especially a lot of money, but there are times when saying &#8220;No&#8221; or &#8220;I can&#8217;t&#8221; is the better strategy.</p>
<p>In the case at hand, the original editors and the project were a mismatch. Whether the mismatch was one of size or skill or both, I do not know. I wonder whether the client&#8217;s confidence in the original editors is shaken. I&#8217;d like to think that a professional editor would not have been swept up in this scene, that a professional editor would place the client&#8217;s interests before her own interests.</p>
<p>What would you do in a situation like this? What do you think an editor&#8217;s ethical obligations are?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/americaneditor.wordpress.com/3472/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/americaneditor.wordpress.com/3472/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=americaneditor.wordpress.com&#038;blog=11200112&#038;post=3472&#038;subd=americaneditor&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://americaneditor.wordpress.com/2013/04/29/business-of-editing-taking-on-too-much/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/50fa0c32e34e796a8d3f7bedc03b8970?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">americaneditor</media:title>
		</media:content>
	</item>
		<item>
		<title>On Words: Thinking About About</title>
		<link>http://americaneditor.wordpress.com/2013/04/24/on-words-thinking-about-about/</link>
		<comments>http://americaneditor.wordpress.com/2013/04/24/on-words-thinking-about-about/#comments</comments>
		<pubDate>Wed, 24 Apr 2013 08:00:13 +0000</pubDate>
		<dc:creator>americaneditor</dc:creator>
				<category><![CDATA[Editorial Matters]]></category>
		<category><![CDATA[On Language]]></category>
		<category><![CDATA[On Words]]></category>
		<category><![CDATA[Professional Editors]]></category>
		<category><![CDATA[about]]></category>
		<category><![CDATA[about and measures]]></category>
		<category><![CDATA[approximation]]></category>
		<category><![CDATA[clarity]]></category>
		<category><![CDATA[word choices]]></category>

		<guid isPermaLink="false">http://americaneditor.wordpress.com/?p=3457</guid>
		<description><![CDATA[The choice of words has implications and it is the editor's job to help the author understand what the implications are of the author's word choices and give the author the opportunity to make alternative choices that may better express the message that the author wants to send to the reader and wants the reader to receive.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=americaneditor.wordpress.com&#038;blog=11200112&#038;post=3457&#038;subd=americaneditor&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I have been editing book and journal manuscripts for nearly 30 years and over the course of those years, I have noticed that certain word uses were and remain popular among authors. For example, authors usually write &#8220;over 30 years of age&#8221; rather than &#8220;older than 30 years of age.&#8221;</p>
<p>But the use (misuse) of <em>about</em> bothers me more than the use (misuse) of any other word.</p>
<p>It isn&#8217;t so bad in fiction. Fiction doesn&#8217;t require the precision that nonfiction requires. We expect as readers flights of fancy from fiction writers, but with nonfiction, we expect a precise, clearly communicated, and accurate message. Which is why <em>about</em> in nonfiction bothers me.</p>
<p>Consider this example: &#8220;About 50 years ago, John F. Kennedy was assassinated.&#8221; First, why approximate when it is just as easy to write, &#8220;John F. Kennedy was assassinated in 1963&#8243;? If a reader reads the original sentence in 2017, 50 years ago would place the assassination in 1967, clearly wrong.</p>
<p>Second, what does <em>about</em> really mean? Nearly? Around? Approximately? On the verge of? Regardless of how you define <em>about</em>, it lacks precision because it leaves a reader to define what is meant, which is just the opposite of what should be true of writing with the intent to communicate. If the sentence is &#8220;About the sides of the square,&#8221; then the meaning of <em>about</em> is precise if around all sides is meant. But what if that is not what is meant? If the sentence is, &#8220;I am about to go for a walk,&#8221; again, about is precise if what is meant is that I am on the verge of going for a walk.</p>
<p>Clearly, context can often provide an accurate meaning, but generally there is no accurate, laser-like precise meaning that can be supplied by a reader when <em>about</em> is associated with a number. Which also raises the question: If you know enough to write &#8220;about 50 years ago&#8221; or &#8220;about 100 miles,&#8221; why do you not know enough to write &#8220;51 years ago&#8221; or &#8220;103 miles&#8221;?</p>
<p>The imprecision of <em>about</em> cannot be sloughed off as acceptable colloquial English because when precision should be provided, there is no acceptable alternative to being precise. There are lots of reasons for being precise. Few writings expire after 30 days; an author who has taken the time and made the effort to write a book expects it to be read for years to come. Consequently, the author should expect that what <em>about</em> means today it will not mean next year, which means that today&#8217;s semicorrect information will be next year&#8217;s incorrect information.</p>
<p>And when it comes to measures, there is no excuse for not being precise, except, perhaps, in the case of pi, when 3.14 is acceptable imprecision. If we say a study had &#8220;about 314 participants,&#8221; why can&#8217;t we say the study had &#8220;314 participants&#8221; or whatever number of participants actually participated? Would we want our doctor to tell us to &#8220;take about 2 tablets&#8221; or would we want to know precisely how many tablets of the medicine we should take?</p>
<p>I find it interesting that the leading word maven, Bryan Garner, ignores the imprecision of about. <em>Merriam-Webster&#8217;s Dictionary of English Usage</em> (1994) has a different view than <em>Garner&#8217;s Modern American Usage</em> (2009). MW notes that <em>about</em> can be redundant when used with numbers (e.g., the estimate is about $150). More importantly, MW notes that &#8220;the use of <em>about</em> with round numbers is extremely common, and is for the obvious purpose of indicating that the number is not exact.&#8221; (p. 4) Which is precisely the problem.</p>
<p>To write in a novel, &#8220;he walked about 50 feet before coming to a halt,&#8221; cannot cause harm; to write in a how-to book, &#8220;cut each board about 25 inches,&#8221; could cause a significant problem when it is important that each board be 24.5 inches. On the other hand, if the length that the character walked is an important clue in a mystery, then <em>about</em> could be the difference between solving and not solving the mystery.</p>
<p>Because I generally consider the use of <em>about</em> as &#8220;lazy&#8221; writing, I usually query an author&#8217;s use of <em>about</em>. I ask if a precise number is available and suggest that if one is available, that it be used in place of the approximation that <em>about</em> implies. I point out to the author how meaning can change with the passage of time (in the instance when <em>about</em> is paired with time measures), and that it should be the author&#8217;s expectation that his book will be referenced years from now. If <em>about</em> is paired with a quantity measure, such as number of pills to take or the length of an object, I try to give an example of how a reader could draw the wrong conclusion or, using the author&#8217;s words, cause some harm.</p>
<p>In the end, the question comes down to why the author chose imprecision over precision. There are times when imprecision is a necessary element of the story being told, but I think an author has to be able to justify that imprecision. The balance should always be tilting toward precision of communication until there is justification for tilting that balance toward imprecision.</p>
<p>The matter, as always, boils down to communication of message. If the role of the editor is to help the author communicate a clear and precise message to the reader, a message that cannot be misunderstood by the reader, then the editor is obligated to query the use of <em>about</em> when the context clearly indicates that <em>about</em> is being used to indicate an approximation.</p>
<p>I know that it may appear as if this is just an editor being nit-picky, but the choice of words has implications. It is the editor&#8217;s job to help the author understand what the implications are of the word choices made and provide an opportunity for the author to make alternative choices that may better express the message that the author wants the reader to receive. It is diplomacy on the local level. I want my authors to avoid the mishaps that seem to befall politicians regularly.</p>
<p>As an editor, do you query <em>about</em> when used as an approximation? Is this an instance of nit-picking? As an author, do you think about the message being sent when you write <em>about</em>? Do you want your editor to ask about your word choices?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/americaneditor.wordpress.com/3457/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/americaneditor.wordpress.com/3457/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=americaneditor.wordpress.com&#038;blog=11200112&#038;post=3457&#038;subd=americaneditor&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://americaneditor.wordpress.com/2013/04/24/on-words-thinking-about-about/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/50fa0c32e34e796a8d3f7bedc03b8970?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">americaneditor</media:title>
		</media:content>
	</item>
		<item>
		<title>The Commandments: Thou Shall Use a Professional Editor</title>
		<link>http://americaneditor.wordpress.com/2013/04/22/the-commandments-thou-shall-use-a-professional-editor/</link>
		<comments>http://americaneditor.wordpress.com/2013/04/22/the-commandments-thou-shall-use-a-professional-editor/#comments</comments>
		<pubDate>Mon, 22 Apr 2013 08:00:47 +0000</pubDate>
		<dc:creator>americaneditor</dc:creator>
				<category><![CDATA[Commandments for Authors]]></category>
		<category><![CDATA[Editorial Matters]]></category>
		<category><![CDATA[Indie Authors]]></category>
		<category><![CDATA[Professional Editors]]></category>
		<category><![CDATA[The Commandments]]></category>
		<category><![CDATA[authors]]></category>
		<category><![CDATA[balance expectations]]></category>
		<category><![CDATA[compensation]]></category>
		<category><![CDATA[doctors]]></category>
		<category><![CDATA[manuscripts]]></category>
		<category><![CDATA[professional editors]]></category>

		<guid isPermaLink="false">http://americaneditor.wordpress.com/?p=3454</guid>
		<description><![CDATA[One reason we go to the doctor to have our cancer treated is because the doctor has experience dealing with cancer. One reason we go to the professional editor to have our manuscript edited is because the professional editor has experience dealing with manuscripts. And just as we expect to compensate the doctor appropriately for his expertise, so we should expect to compensate the professional editor for her expertise.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=americaneditor.wordpress.com&#038;blog=11200112&#038;post=3454&#038;subd=americaneditor&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>My first commandment for authors is this: Thou shall use a professional editor! I know I&#8217;ve said this before &#8212; many times &#8212; and I know that some of you will respond that you are capable of doing your own editing, or that crowd editing works just fine, or that your neighbor&#8217;s nephew&#8217;s sister-in-law, who taught fourth graders English, does a fantastic job. Yet, haven&#8217;t you bought a book or two whose author you wanted to strangle because it was pretty obvious that a professional editor wasn&#8217;t used (or the editor&#8217;s advice wasn&#8217;t followed)?</p>
<p>We&#8217;ve hashed through some of the arguments in previous posts; see, for example, <a title="The Making of a Professional Editor" href="http://americaneditor.wordpress.com/2012/02/20/the-making-of-a-professional-editor/" target="_blank"><em>The Making of a Professional Editor</em></a>, <a title="Professional Editors: Publishers and Authors Need Them (Part 1)" href="http://americaneditor.wordpress.com/2010/01/25/professional-editors-publishers-and-authors-need-them-part-1/" target="_blank"><em>Professional Editors: Publishers and Authors Need Them (Part 1)</em></a>, <a title="Professional Editors: Publishers and Authors Need Them (Part 2)" href="http://americaneditor.wordpress.com/2010/01/26/professional-editors-publishers-and-authors-need-them-part-2/" target="_blank"><em>Professional Editors: Publishers and Authors Need Them (Part 2)</em></a>, and <a title="The WYSIWYG Conundrum: The Solid Cloud" href="http://americaneditor.wordpress.com/2010/06/08/the-wysiwyg-conundrum-the-solid-cloud/" target="_blank"><em>The WYSIWYG Conundrum: The Solid Cloud</em></a>, but this is a topic that never dies.</p>
<p>Consider this statement: &#8220;Lobbyists fighting spending cuts find an ally in group that usually backs them&#8221; (<em>New York Times</em>, April 10, 2013, page A12). What is wrong with this statement? (It was an article headline, which accounts for its brusqueness.) Does your neighbor&#8217;s nephew&#8217;s sister-in-law know? I would guess that if it passed muster at the <em>New York Times</em>, it would pass her muster and that of the crowd editors, too.</p>
<p>I read this statement several times because I couldn&#8217;t quite figure out what was meant. Reading the article clarified the headline, but suppose I hadn&#8217;t read the article? Or suppose this was a sentence in your book, albeit written with the missing prepositions as: &#8220;The lobbyists fighting spending cuts find an ally in a group that usually backs them.&#8221; The question that needs to be asked is: &#8220;Does &#8216;them&#8217; mean &#8216;spending cuts&#8217; or &#8216;lobbyists&#8217;?&#8221; Should the sentence be: &#8220;The lobbyists fighting spending cuts find an ally in a group that usually backs spending cuts&#8221; or &#8220;The lobbyists fighting spending cuts find an ally in a group that usually backs the lobbyists&#8221;?</p>
<p>Two distinct meanings are possible, yet most readers would not catch that possibility. And this is the problem with having your book &#8220;edited&#8221; by someone other than a professional editor. Experienced, professional editors are trained to catch these types of errors; they have spent years mastering the art of <strong><em>not</em></strong> reading what they expect but of reading what is actually before them.</p>
<p>As the example illustrates, not catching this error can lead to misunderstanding. It makes a difference whether &#8220;them&#8221; means &#8220;spending cuts&#8221; or &#8220;lobbyists.&#8221; Readers will generally give more credence to the former than to the latter. After all, it has become clear in recent years, particularly with the intransigence of the Gun Owners of America and the National Rifle Association over the issue of background checks, that lobbyists are not among the favored species.</p>
<p>There is a second aspect to this commandment, which is the professional editor&#8217;s fee. Think about how you work. Would you not agree that the less you are paid (or anticipate being paid) the less diligent you are in your work. What I mean is this: If you are currently paid $20 an hour and are satisfied with that sum for your current job, you perform your work diligently. If your employer comes to you and says that although your job will remain the same, your pay henceforth will be $10 an hour, are you likely to be as diligent? Or will you consider cutting corners? Most people would be less diligent and would cut corners.</p>
<p>Editors &#8212; professional and amateur alike &#8211; are no different. If you have a 50,000 word manuscript (approximately 200 manuscript pages), do you honestly think that the editor who is being paid $300 will be as thorough and professional as the editor who is being paid $1500? How fast will the editor need to go through your manuscript in order to earn a living wage? Do you expect that an editor who has to work faster will be as accurate as the editor who can take more time?</p>
<p>Most editors do multiple passes; this is especially true when the project is fiction and it is important to first grasp the whole story and get a feel for the characters. How many passes do you think that editor who is paid $300 will do? And if the editor is doing the project at their own expense (i.e., as part of a crowd edit or as a friend for free), how thorough an edit and how many passes is it reasonable to expect? How many passes would you do if it meant giving up your pleasure time?</p>
<p>Again, we all know people who would sacrifice their first-born to do a good job because they volunteered to do so, but that is the gamble you take. And the gamble can be devastating if it is lost. How many bad reviews can your book withstand? How many two- and three-star reviews that complain about the grammar would it take to sink your ability to sell your book, even at $2.99?</p>
<p>Professional editors are word doctors for authors. Just as you (or I) would not undertake to self-treat for cancer, we should not self-treat our books, which are a significant part of our life. Just as we would go to the doctor about our cancer, so we should go to the professional editor about our manuscript.</p>
<p>One reason we go to the doctor to have our cancer treated is because the doctor has experience dealing with cancer. We rely on the doctor&#8217;s accumulated knowledge to tell us how serious a problem we have and for suggestions about courses of treatment. We know doctors are not perfect, but we expect them to be better than our neighbor&#8217;s nephew&#8217;s sister-in-law who taught health sciences at the high school.</p>
<p>All we need do is substitute professional editor for doctor and the argument is made: One reason we go to the professional editor to have our manuscript edited is because the professional editor has experience dealing with manuscripts. We rely on the professional editor&#8217;s accumulated knowledge to tell us about any manuscript problems and for suggestions about how to correct them. We know professional editors are not perfect, but we expect the professional editor to be better than our neighbor&#8217;s nephew&#8217;s sister-in-law who taught English to fourth graders (or even at the local college).</p>
<p>When an author hires a professional editor, the author is hiring experience with manuscripts and the knowledge that the editor has accumulated about how to structure and tell a story (<em><strong>all</strong></em> manuscripts tell a story) so that the author&#8217;s message is communicated and received. You spent months, if not years, of your life putting together a story that you want more than a handful of friends to read and understand. Should you not, then, hire a professional editor and pay an appropriate fee for that editor&#8217;s services to ensure that your manuscript is ready and is the best it can be?</p>
<p>Thus the first commandment for authors: <strong>Thou shall use a professional editor!</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/americaneditor.wordpress.com/3454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/americaneditor.wordpress.com/3454/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=americaneditor.wordpress.com&#038;blog=11200112&#038;post=3454&#038;subd=americaneditor&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://americaneditor.wordpress.com/2013/04/22/the-commandments-thou-shall-use-a-professional-editor/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/50fa0c32e34e796a8d3f7bedc03b8970?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">americaneditor</media:title>
		</media:content>
	</item>
		<item>
		<title>A Video Interlude: The Last Bookshop</title>
		<link>http://americaneditor.wordpress.com/2013/04/20/a-video-interlude-the-last-bookshop/</link>
		<comments>http://americaneditor.wordpress.com/2013/04/20/a-video-interlude-the-last-bookshop/#comments</comments>
		<pubDate>Sat, 20 Apr 2013 09:45:11 +0000</pubDate>
		<dc:creator>americaneditor</dc:creator>
				<category><![CDATA[A Video Interlude]]></category>
		<category><![CDATA[The Last Bookshop]]></category>

		<guid isPermaLink="false">http://americaneditor.wordpress.com/?p=3466</guid>
		<description><![CDATA[What might the future hold for books and bookstores. The Last Bookshop is one dystopian future possibility.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=americaneditor.wordpress.com&#038;blog=11200112&#038;post=3466&#038;subd=americaneditor&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>One of the blogs that I read every day is Nate Hoffelder&#8217;s <a title="The Digital Reader" href="http://www.the-digital-reader.com/" target="_blank">The Digital Reader</a>. Today&#8217;s visit to his blog led me to the below video: <em>The Last Bookshop</em>. (Thanks, Nate.)</p>
<p>Although a long video at 20+ minutes, it is well worth watching, especially for us editors and authors. It shows a dystopian future, and, unfortunately, in a quick &#8212; very fleeting &#8212;  mention, it makes Amazon the villain, which is unfair to Amazon. The villain could have as easily been Google or any number of megacorporations involved in the world of books. Regardless, the video should be watched because although unlikely, this is a possible future.</p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='640' height='390' src='http://www.youtube.com/embed/jPfThpelv48?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent' frameborder='0'></iframe></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/americaneditor.wordpress.com/3466/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/americaneditor.wordpress.com/3466/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=americaneditor.wordpress.com&#038;blog=11200112&#038;post=3466&#038;subd=americaneditor&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://americaneditor.wordpress.com/2013/04/20/a-video-interlude-the-last-bookshop/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/50fa0c32e34e796a8d3f7bedc03b8970?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">americaneditor</media:title>
		</media:content>
	</item>
		<item>
		<title>On Language: Is It a Study or a Story?</title>
		<link>http://americaneditor.wordpress.com/2013/04/17/on-language-is-it-a-study-or-a-story/</link>
		<comments>http://americaneditor.wordpress.com/2013/04/17/on-language-is-it-a-study-or-a-story/#comments</comments>
		<pubDate>Wed, 17 Apr 2013 08:00:39 +0000</pubDate>
		<dc:creator>americaneditor</dc:creator>
				<category><![CDATA[Editorial Matters]]></category>
		<category><![CDATA[On Language]]></category>
		<category><![CDATA[On Words]]></category>
		<category><![CDATA[focused question]]></category>
		<category><![CDATA[Henry Ford's War on Jews]]></category>
		<category><![CDATA[professional editors]]></category>
		<category><![CDATA[survey]]></category>
		<category><![CDATA[Victoria Saker Woeste]]></category>

		<guid isPermaLink="false">http://americaneditor.wordpress.com/?p=3452</guid>
		<description><![CDATA[Is a book a study or a story? Does it matter? What's the difference? These questions help determine whether an author has successfully approached a topic and conveyed to the reader the conclusions the author wants drawn.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=americaneditor.wordpress.com&#038;blog=11200112&#038;post=3452&#038;subd=americaneditor&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I was reading a history book, <em>Henry Ford&#8217;s War on Jews and the Legal Battle Against Hate Speech</em> by Victoria Saker Woeste (ISBN 9780804772341), a few months ago (I highly recommend the book as an insight into Henry Ford, America in the 1920s, and how much our legal landscape has changed) when I wondered whether the book was a study, or a story, or perhaps both.</p>
<p>Readers rarely consciously distinguish between a study and a story, and those of us who edit science-oriented material often read of studies and, I suspect, do not give much thought as to what calling something a study really means. I suppose the place to begin is with definitions.</p>
<p>A study answers a carefully framed and defined, specific question; for example, How did Lincoln&#8217;s delivery of the <em>Emancipation Proclamation</em> at Gettysburg affect the Union soldier&#8217;s prosecution of the Civil War? Everything about the study is focused on answering the question. Consequently, events preceding the delivery of the <em>Proclamation</em>, such as the firing on Fort Sumter that was the starting action of the Civil War, are interesting facts, but of little consequence to answering the question.</p>
<p>In contrast, a story is like a river &#8212; it provides a narrative flow that takes us from point A to point B, or even to points B, C, and D. It may include information that is relevant to a study, but it is not intended to answer a single, specific question. Instead, the story gives us an overview and perhaps answers cursorily a multitude of questions. For example, a book titled <em>The History of the American Civil War, 1861-1865</em> should be a story, a survey, but not a study. It has no single focus question it intends to answer; instead, it intends to give us a panoramic view of an era. Thus, a story is a river of knowledge that is constantly on the move.</p>
<p>I&#8217;m sure some of you are scratching your heads and wondering why this distinction is important. The answer really lies in how we validate an author&#8217;s work. If we expect or are given a study to read, knowing what a study is supposed to do enables us to determine whether the author has accomplished the task. As an editor, if a manuscript begins, &#8220;This book answers the question of how life began,&#8221; then I expect a study focused on answering that question, and not a story that takes me through history and repeats to me what philosophers from Socrates to Bertrand Russell have said about the origins of life.</p>
<p>The &#8220;conflict&#8221; between study and story forms a frame for the content. As an author, it acts to focus my thinking &#8212; do I paint with narrow, well-defined strokes or broadly &#8212; and as an editor it helps me determine whether the author has fulfilled her quest or needs assistance focusing or repurposing the text.</p>
<p>More importantly, the conflict acts as a guide for the reader&#8217;s expectations. As a reader, if I pick up a biography that by its title or by the goals divulged in the front matter tells me that its focus is to answer the question of whether Ronald Reagan knew about the Iran-Contra Affair, then I can reasonably expect to find a study of Regan&#8217;s knowledge and not a broad survey (story) of the Reagan presidency. If the author fails to deliver the study and, instead, delivers the survey (story), it makes suspect the value of the book and the quality of the research. I would expect an author to understand her goals and strive to achieve them.</p>
<p>Consciously distinguishing between study and story also helps me as editor when I read, &#8220;The results of the XYZ Study demonstrated that….&#8221; Based on the surrounding content, knowing that a study is intended to answer a specific, narrow, and carefully defined question, I may query the author as to what was the study question. This distinction is not often made in the political arena, and too often voters are simply told that some government study drew certain conclusions, but are never told what the question was and thus cannot know if what are being put forward as the study&#8217;s conclusions drawn are, in fact, the study&#8217;s conclusions.</p>
<p>A story is painted in broad strokes. A story surveys acres of ground; it does not focus on any two square inches. The story also has a function, as we all know, but we do not expect it to answer well-defined questions. We expect the panoramic view: &#8220;Tell me what was happening in American culture in the 1960s.&#8221;</p>
<p>The professional editor approaches every manuscript, consciously or unconsciously, thinking about whether the author achieves the author&#8217;s stated objective in a clear, concise manner. By asking whether the author is providing a study or a story, the editor is able to focus with greater precision on the resolution of that thought. This is important to authors because it is a defining feature of developmental editing. Copyediting doesn&#8217;t worry very much about whether the author is providing a study or a story because the overall structure and focus are not of prime importance to the copyediting process. But the converse is true for the developmental editor who is worried about overall structure and whether the author has stated her objective and attains it.</p>
<p>Although I have been directing the conversation toward nonfiction writing, the truth is that the difference between a study and a story is also important in fiction. For example, those who have read George Simenon&#8217;s books will recognize that many of his books are studies of the psychology of a principal character. True, they are also stories in that as fiction they tell us more than is needed were they only studies, but the point is that they are studies, and if I were to edit them today, knowing that they were studies would greatly influence how I would edit.</p>
<p>Similarly, Sir Arthur Conan Doyle&#8217;s Sherlock Holmes stories are often studies. Holmes invariably frames and addresses the how, what, why, and who questions with precision.</p>
<p>Having said that fiction, too, benefits from the distinction between story and study, it is important to note that the terms do have less rigid meanings and parameters when applied to fiction than to nonfiction. But the process remains the same and is equally valuable from an editor&#8217;s, an author&#8217;s, and a reader&#8217;s perspective, but especially from the author&#8217;s perspective. Knowing that you intend to write a study helps focus the fictional events you create and the characters&#8217; reactions to those events. (It is probably accurate to say that, for example, mysteries tend to be more study and less story and romance novels tend to be more story and less study.)</p>
<p>Next time you pick up a book to read, try to ascertain before you start the main text whether the book, if nonfiction, is a study or a story, and if fiction, whether it tends more toward story than study, and see if that determination affects how you read and understand the book.</p>
<p>Finally, the idea that a book can be a blend of both story and study is particularly apt for fiction. Much fiction is a blend but an unequal blend. Even so, the fiction book can be successful in achieving the author&#8217;s goals. In the case of nonfiction, however, I think the distinction is significantly more important and that a book that blends is unlikely to be successful (in terms of meeting the author&#8217;s goals and the reader&#8217;s expectations); I think such a book will leave the reader unsatisfied.</p>
<p>What do you think?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/americaneditor.wordpress.com/3452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/americaneditor.wordpress.com/3452/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=americaneditor.wordpress.com&#038;blog=11200112&#038;post=3452&#038;subd=americaneditor&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://americaneditor.wordpress.com/2013/04/17/on-language-is-it-a-study-or-a-story/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/50fa0c32e34e796a8d3f7bedc03b8970?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">americaneditor</media:title>
		</media:content>
	</item>
	</channel>
</rss>
