On 31/07/12 11:51, Zorro wrote:
> "Peter Flynn" <
pe...@silmaril.ie> wrote in message
> news:a7oaso...@mid.individual.net...
>> On 30/07/12 16:10, Zorro wrote:
>>> Can someone give me the commands to construct a paper that has this
>>> typesetting?
>>
>> Most of these are the defaults for the article class at 10pt.
>>
>>> "Typeset the abstract in 8 pt roman with baselineskip of 10 pt, making an
>>> indentation of 0.25 inches on the left and right margins."
>>>
>>> "The main text should be in 10~pt roman, single spaced with baselineskip
>>> of
>>> 13~pt. Text area (including copyright block) is 8 inches high and 5
>>> inches
>>> wide for the first page.
>>> Text area (excluding running title) is 7.7 inches high and
>>> 5 inches wide for subsequent pages."
>>
>> Information about this copyright block is needed in order to allow for
>> the extra 0.3in. You haven't provided that information.
>
> I don't know what a copyright block is;
But you referred to it. You presumably know what it is, if you are
planning on submitting to a publisher and have seen a copy of their
desired output.
> whatever it is I can't imagine it's a crucial inclusion at this stage.
It is critical to know what it is and where it goes, as it will majorly
affect how you make the switch between an 8" high first page and the
7.7" high subsequent pages.
> How do I adjust the text margins?
You use additional parameters in the optional argument of the
\usepackage command for the geometry package, eg
\usepackage[textwidth=5in,textheight=7.7in,left=.75in,top=.5in]{geometry}
The geometry package will know the paper size and make the appropriate
calculations.
> How do I adjust the font size?
Temporarily or permanently? I preset it to 10/13 as requested (although
see Axel's comment and my followup).
LaTeX has a set of predefined font size steps, based on the standard
ones used for centuries. These are adequate for draft purposes: see
http://latex.silmaril.ie/formattinginformation/typographics.html#fontsize
For absolute sizes, use the \fontsize command.
>>> "Footnotes should be 8pt Roman font".
>>>
>>> I don't know a) how to close a typesetting command (assuming it's
>>> necessary),
>>
>> I don't understand "close" in this context.
>
> Make the command cease to apply.
Usually you put the command *and* the text to which it applies in
braces, eg {\bfseries this is bold text} or {\Large this is Large text}
But there are a lot of shortcuts for small quantities of text, eg
\textbf{this is bold text}, and standard commands for
frequently-occurring constructs such as \section{title}.
If you find yourself doing a lot of manual formatting, there is probably
a package which will automate it for you. Try hard not to reinvent the
wheel.
>>> eg. font size or text dimensions, to change to a new typesetting
>>> that isn't given in the preamble
>>
>> Unless there is an existing package to do stuff, you have to find where
>> the command or setting is defined in the class file or other package,
>> copy that code into your Preamble, and edit it to make the required
>> changes.
>
> Sounds inordinately complicated.
There are over 4,000 packages available on CTAN, covering a humungous
range of formatting requirements. There is probably one to do what you
want.
Rewriting commands (as I did in the example) is usually something a
document class designer or typographic programmer does for a publisher,
although there are many simple cases that you can easily do yourself
once you get used to how LaTeX works.
> I wouldn't know how to start with this.
You're not meant to. As an author you ought to be able to rely on the
publisher to provide you with a proper document class precisely so that
you don't have to do it yourself.
> If it's that difficult,
It's not actually difficult, unless the requirements are seriously weird.
> why does the journal insist on all these typesetting
> variations within a single paper?
All what typesetting variations? You only mentioned six:
1. Abstract in 8/10pt
2. Abstract in .25in margins
3. Body text in 10.13pt
4. Text area 5" x 7.7"
5. First page 5" x 8" with a copyright block
6. Footnotes in 8pt (baseline unspecified)
If that's all, it's *extremely* modest. Most publishers' specs are
vastly more complex. Why do they insist on them? Because it's *their*
journal, and *they* call the shots. Many of the layouts have been
inherited from the days of metal type, so "it's always been like that".
>>> b) how to select the typesetting commands written in the preamble.
Just use the commands. That's what they are for; eg if you define a new
command \xyz which does some odd bit of formatting on its argument, you
just use \xyz{stuff} and "stuff" will get formatted how it's been
programmed to.
>>> Also, I was wondering how to get the \footnotemark command to display a
>>> superscripted dagger instead of a number; or a superscripted letter?
>>
>> There is a standard set of non-alphanumeric marks (star, dagger,
>> double-dagger, etc). If your publisher requires footnote #1 to be the
>> dagger, they must also specify what to use for footnote #2, #3, #4...and
>> the redefine the internal command \@fnsymbol, and redefine \thefootnote
>> to use it. For letters, redefine it to use \alph.
>
> So would \@fnsymbol get me a dagger?
No, \@fnsymbol will get you nowhere at all, as commands with an @ sign
in them are internal and cannot be used directly in a document by an author.
What I said was that to get symbols instead of numbers, you must
redefine \thefootnote to use \@fnsymbol. There is actually a user
command \fnsymbol which you can use, eg you add
\renewcommand{\thefootnote}[1]{\fnsymbol{footnote}}
to your Preamble. That gets you the standard set of symbols: * for the
first footnote, dagger for the second, double-dagger for the third, etc,
as I said.
If you want to change the order, you need to redefine \@fnsymbol itself.
To do that, you need to know what to use for footnotes 2, 3, 4, etc. You
seemed to imply that there would only be one footnote in the whole article.
///Peter