File: footnote.html

package info (click to toggle)
xcircuit 3.7.40.dfsg-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 8,604 kB
  • sloc: ansic: 77,128; sh: 6,879; tcl: 5,576; python: 449; makefile: 297
file content (27 lines) | stat: -rw-r--r-- 1,239 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<HTML>
<TITLE>A footnote about the "mu" character in LaTeX</TITLE>
<BODY BACKGROUND=../giffiles/blpaper.gif>

It just so happens that although the "mu"
character is encoded into the Adobe fonts, but is not part of any of the
TeX fonts or TeX font encodings of standard Adobe (or TrueType) fonts.
However, it is not strictly true that printing the character is impossible.
I, being the enterprising character that I am, have found a (somewhat
kludgy) workaround:

<OL>
   <LI> First, you must be using one of the PSNFSS packages available under
	LaTeX2e, such as "times" (<TT>\usepackage{times}</TT>)
   <LI> Next, create the following definition:<BR>
	<TT>\def\micro{\special{ps:()show}\nobreak\hspace*{0.55em}}</TT><BR>
	(The "mu" character here is the embedded 8-bit character encoding
	hex 0xb5, or decimal 181, or octal 0625).
   <LI> The <TT>\micro</TT> definition can be used as follows, for example:<BR>
	<TT>The correlator measures 700\,{\micro}m $\times$ 1170\,{\micro}m</TT>
   <LI> This definition of <TT>\micro</TT> uses a \special{} function defined only
	by (as far as I know) <TT>dvips</TT>, so the proper symbol will only show
	up after postprocessing the <TT>.dvi</TT> file through <TT>dvips</TT>.
</OL>

</BODY>
</HTML>