home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / text / tex / 15435 < prev    next >
Encoding:
Text File  |  1993-01-25  |  1.1 KB  |  31 lines

  1. Newsgroups: comp.text.tex
  2. Path: sparky!uunet!munnari.oz.au!bunyip.cc.uq.oz.au!newton.physics.uq.oz.au!mcduff
  3. From: mcduff@newton.physics.uq.oz.au (Rodney Graeme McDuff)
  4. Subject: Re: Bold face for Figure - How to do it
  5. Message-ID: <C1FtHA.9wD@bunyip.cc.uq.oz.au>
  6. Keywords: caption, LaTeX, figure
  7. Sender: news@bunyip.cc.uq.oz.au (USENET News System)
  8. Organization: Physics Dept. The University of Queensland
  9. References:  <1993Jan25.004248.14611@news.uiowa.edu>
  10. Date: Tue, 26 Jan 1993 01:29:34 GMT
  11. Lines: 18
  12.  
  13. In article <1993Jan25.004248.14611@news.uiowa.edu>, sundaram@blackmail.eng.uiowa.edu (Subbiah Sundaram) writes:
  14. |> Hi,
  15. |>    I have to make the caption in the figure
  16. |> environment bold face. 
  17. |> \caption{\bf this is a test}
  18. |> gives output as 
  19. |> 
  20. |> Figure.X This is a test. 
  21. |> 
  22. |> here the Figure.X is
  23. |> not bold. I want to make it bold. Is there a way?
  24.  
  25. In the style file that you are using find the line
  26.   \def\fnum@figure{\figurename{} \thefigure} 
  27. and replace it by
  28.   \def\fnum@figure{{\bf \figurename{} \thefigure}}
  29.  
  30. This will make the "Figure.X" bold but not the following text.
  31.