There are a number of things which annoy me about academic publishing.
Matching my output to the requirements of the journal is the worst of them.
I spent a lot of time learning LaTeX in order to make my documents look good.
But now I find that journals require me to make changes to my document which, in almost every instance, damage the appearance and intelligibility of the document.
For example: for an article I’m preparing now, I must:
- turn off hyphenation and full justification
- turn off all formatting for section headings (all caps only for top-level section marks)
- place awkward placeholders for images, of the type [INSERT FIGURE 1 HERE]
Some of these (the last in particular) I don’t even know how to do in LaTeX. Indeed, the last requirement is, for me, the most noxious: I imagine the reviewer would far rather have the figure close at hand in the text, rather than having to page-down to see the figure, and then page-up to get back to the argument.
What’s the rationale? Are these attempts to mitigate the potential damage which comes from over-fine control in MS Word?
(Note: for the rest of the changes, I used the following:
\usepackage[none]{hyphenat}
\usepackage{ragged2e}
\usepackage{sectsty}
\sectionfont{\mdseries\MakeUppercase} % All caps, middle weight
\subsectionfont{\mdseries} % middle weight
)
package endfloat . You’re right that it totally disrupts the reader and probably comes from Word-land.
However I must disagree about justified text. I always use ragged right, because interword spacing just varies too much with any full-just algorithm, whether that of Knuth or the Adobe Paragraph Composer.
Link | April 13th, 2010 at 12:05 am
Great, thanks for the tip!
I don’t have a sound rationale for my preference for fully-justified text: in any case, both looked pretty awful when hyphenation was disabled. So I should probably emphasise the no-hyphenation part there.
Link | April 13th, 2010 at 12:11 am