From owner-freebsd-questions@FreeBSD.ORG Wed Jun 9 14:51:10 2010 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4D1511065672 for ; Wed, 9 Jun 2010 14:51:10 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id E7AA38FC19 for ; Wed, 9 Jun 2010 14:51:09 +0000 (UTC) Received: from r55.edvax.de (port-92-195-117-232.dynamic.qsc.de [92.195.117.232]) by mx01.qsc.de (Postfix) with ESMTP id BB8783CB7D; Wed, 9 Jun 2010 16:50:54 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id o59EopSw001632; Wed, 9 Jun 2010 16:50:51 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Wed, 9 Jun 2010 16:50:50 +0200 From: Polytropon To: Gary Kline Message-Id: <20100609165050.06b54351.freebsd@edvax.de> In-Reply-To: <20100609035151.GA89606@thought.org> References: <20100609035151.GA89606@thought.org> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD Mailing List Subject: Re: TeX qurestions, for anybody who cares to reply... . X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jun 2010 14:51:10 -0000 On Tue, 8 Jun 2010 20:51:53 -0700, Gary Kline wrote: > in my ascii type i cannot type > the e-aigu and i cannot find it in any of the docs.=20 Isnt e-aigu part of the ASCII table? Depending on your editor, can you manually enter it using the "two accents key" (on the german keyboard directly left to the backspace key) to enter the sequence accent-letter, generating =E9, =C9, =E8 and =C8? Finally, LaTeX allows you to add the diacritical mark using the proper macro: \'{e} - while in this case the apostrophe key is used to create the ' (as a stand-alone character, or "single quote"). > the most important part is that i want the demo blurb > [[modified from usenet when i drafted this]] in "typewriter" > typeface. the docs i googled said that {\tt text blah blah } > would put the text between the braces in typewriter-font. Use the safe LaTeX form: \texttt{text blah blah}, allthough the for you used - switching to \tt face using scope, is possible. > i would like to make the text smaller that the surrounding text. If you want to quote text (which indents it), use \begin{quote} ... \end{quote}. > so my last question is: how do i tell tex/latex to make the > denoted text in tt font and with 9pt size?=20 LaTeX doesn't give you direct control over pt sizes - and that's GOOD. Just imagine your text is 10pt in general, and you want several passages to be 6pt. Fine. Now you decide that your text is better in 12pt in general - and you now need to set all occurances of 6pt manually to a different value. LaTeX uses relative font size modifiers. \tiny - \scriptsize - \footnotesize - \small - \normalsize -=20 \large - \Large - \LARGE - \huge - \Huge. The base size it refers to is declared in your preable, e. g. \documentclass[12pt,a4paper,twoside]{article} which sets 12pt as reference value for \normalsize. You can use them either by "switch state" or by scopus, e. g. Now big text will follow. \Huge Zorch, uch huge text!!! \normalsize Ah, being back to normal. which is equivalent to Now big text will follow. {\Huge Zorch, uch huge text!!!} Ah, being back to normal. Personally, I prefer the second form. > the "\\" should give > the ragged edge as it appeared on the tube. this works in > {verse} anyway. i'm not sure what to do at the bottom of the > post; i figure trial/error will anser that. The \\ macro creates a forced line-break within a paragraph and should hardly be used. It's microformatting, and that's what LaTeX should not be abused for. :-) > here is the bit of the novel that i need help with. any/all help > is much appreciated. >=20 > +++++ >=20 > ``Can you show me?'' she said. Erm, why don't you use doublequotes instead of doubled singlequotes? Yes, it sounds stupid, but it's like implementing quotes using commas and apostrophes ,,like in this example'' for example. :-) Use "` (doublequote backtick) for opening quotes and "' (doublequote apostrophe) for closing quotes. When I say "doublequote", I refer to the inch character (as in 21" CRT) in your alphanumerical keyboard section. You can also use macros for quoting, but I found them a bit too much typing, I just wanto to mention them: there are \glqq and \grqq (german left quote quote, german right quote quote) and \glq and \grq, representing ,,text'' and ,text'. There are also \flqq (french left quote quote) and the forms \frqq, \flq and \frq, to use <> and ; for russian quotes, >>text<< and >text<, use them in the opposite order. > ``Okay, this is one of the groups where you'll find endless arguments. > This is the newsgroup called `talk.abortion.' Now the first article here > is this one--'' Erik typed another key and a brief paragraph displayed: >=20 > {\tt chris\_smith@holyrose.mass.edu Christopher L. Z. Smith I would use \begin{quote} {\tt chris\_smith@holyrose.mass.edu Christopher L. Z. Smith next paragraph here and maybe another one } \end{quote} in this example. Works perfectly for multilines and paragraphs. Don't only focus on how things look like; make it clear to you what certain passages and elements of your text ARE. For example, the above short passage can be seen as a quote. If you see that you need the "quote from newsgroup discussion" text element more often, define an own environment for it, so IF you want to change its look, change it ONCE, in a central position, and stay away from microformatting. For example, put this before \begin{document} (in fact, put it anywhere before use): \newenvironment{ngquote}{\begin{quote}\tt}{\end{quote}} You can now use it that way: \begin{ngquote} chris\_smith@holyrose.mass.edu Christopher L. Z. Smith next paragraph here and maybe another one \end{ngquote} If you wish to also reduce text size, do it in the environment declaration to make all occurances benefit from it. Oh, and whenever you encounter special characters that do have a meaning in LaTeX, and you don't know the correct substitution (like \_ for _), use \verb and \begin{verbatim}...\end{verbatim} to have text inserted 1:1. > that's about it. if anybody can clue me in here, the answers > will help me with the the few other places that could, > optionally, use different fonts than the default. =20 You shouldn't spread all possible typographical properties across one page. :-) --=20 Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ...