[texhax] List of labels

hh-brasil at bol.com.br hh-brasil at bol.com.br
Fri Jun 25 19:02:00 CEST 2010


There is a package showlabels. Makes sense to use it before the final version, then of course 
you must outcomment it.
\usepackage{showlabels}
hh



Em 24/06/2010 19:11, texhax-request at tug.org escreveu:
To subscribe or unsubscribe via the World Wide Web, visit
	http://tug.org/mailman/listinfo/texhax
or, via email, send a message with subject or body 'help' to
	texhax-request at tug.org

You can reach the person managing the list at
	texhax-owner at tug.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of texhax digest..."


Today's Topics:

   1. Re: Font Size Question (William Adams)
   2. List of labels (Sam Albers)
   3. Re: List of labels (Lars Madsen)
   4. Re: List of labels (Steve Revilak)
   5. Re: List of labels (Steve Schwartz)
   6. pdfpages, geometry, hyperref - no page anchors (Lev Bishop)
   7. LaTeX (Jonathan Moore)
   8. issue with writing commands in LaTeX (Hina Khalid)
   9. Re: issue with writing commands in LaTeX (Alan T Litchfield)


----------------------------------------------------------------------

Message: 1
Date: Thu, 24 Jun 2010 07:22:47 -0400
From: William Adams 
To: TeXhax 
Subject: Re: [texhax] Font Size Question
Message-ID: 
Content-Type: text/plain; charset=us-ascii

On Jun 23, 2010, at 11:03 PM, Reinhard Kotucha wrote:

> And only Knuth's fonts
> support "design sizes".

Well, there were the nifty multiple master fonts which had a design axis (e.g., Minion and Adobe Jenson)

Even now, some OpenType fonts come in multiple versions for explicit support of design sizes (e.g., Garamond Premier Pro and Arno Pro).

A note for the OP --- if the size is being checked in Adobe Acrobat you'll want to use bp for measurements instead of pt --- 7pt == ~6.972bp

William
(who got very tired of explaining why 10pt type measured as 9.96 (PostScript) points in Adobe Acrobat)

-- 
William Adams
senior graphic designer
Fry Communications
Sphinx of black quartz, judge my vow.




------------------------------

Message: 2
Date: Thu, 24 Jun 2010 09:50:38 -0700
From: Sam Albers 
To: TeXhax 
Subject: [texhax] List of labels
Message-ID:
	
Content-Type: text/plain; charset="iso-8859-1"

Good morning all,

I am writing a large document with many labels for tables and figures. Often
I can't remember what that label is when I want to reference it later in the
text. Does anyone know of a way to create a list of all the labels used for
an entire document that can then be handily referenced? I am using emacs,
and ubuntu as my setup.

Thanks in advance!

Sam

-- 
*****************************************************
Sam Albers
Geography Program
University of Northern British Columbia
3333 University Way
Prince George, British Columbia
Canada, V2N 4Z9
phone: 250 960-6777
*****************************************************
-------------- next part --------------
An HTML attachment was scrubbed...
URL: 

------------------------------

Message: 3
Date: Thu, 24 Jun 2010 19:10:04 +0200
From: Lars Madsen 
To: Sam Albers 
Cc: TeXhax 
Subject: Re: [texhax] List of labels
Message-ID: 
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

Sam Albers wrote:
> Good morning all,
> 
> I am writing a large document with many labels for tables and figures. 
> Often I can't remember what that label is when I want to reference it 
> later in the text. Does anyone know of a way to create a list of all the 
> labels used for an entire document that can then be handily referenced? 
> I am using emacs, and ubuntu as my setup.
> 
> Thanks in advance!
> 
> Sam
> 
> -- 

if you are an emacs user why don't you just use the auctex + reftex 
extensions?

Then you can get nice overviews of all your labels, and if they are 
prefixed in a certain manner, you can even have it show only labels 
related to figures, or equations etc.

/daleif


------------------------------

Message: 4
Date: Thu, 24 Jun 2010 16:31:45 -0400
From: Steve Revilak 
To: TeXhax 
Subject: Re: [texhax] List of labels
Message-ID: 
Content-Type: text/plain; charset="us-ascii"; Format="flowed"

>>I am writing a large document with many labels for tables and 
>>figures. Often I can't remember what that label is when I want to 
>>reference it later in the text. Does anyone know of a way to create 
>>a list of all the labels used for an entire document that can then 
>>be handily referenced? I am using emacs, and ubuntu as my setup.

>if you are an emacs user why don't you just use the auctex + reftex 
>extensions?
>
>Then you can get nice overviews of all your labels, and if they are 
>prefixed in a certain manner, you can even have it show only labels 
>related to figures, or equations etc.

I use reftex in conjunction with ordinary latex-mode, and I find it
very useful.

   M-x info-goto-node RET (reftex) RET

should get you started.

Steve

-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 198 bytes
Desc: not available
URL: 

------------------------------

Message: 5
Date: Thu, 24 Jun 2010 22:41:45 +0100
From: Steve Schwartz 
To: Sam Albers 
Cc: TeXhax 
Subject: Re: [texhax] List of labels
Message-ID: 
Content-Type: text/plain

On Thu, 2010-06-24 at 17:50 +0100, Sam Albers wrote:
> Good morning all,
> 
> I am writing a large document with many labels for tables and figures.
> Often I can't remember what that label is when I want to reference it
> later in the text. Does anyone know of a way to create a list of all
> the labels used for an entire document that can then be handily
> referenced? I am using emacs, and ubuntu as my setup.

grep newlabel texfile.aux

will show you all your labels, where your source is texfile.tex. And if
you want to make it prettier, I guess you could redirect the output to a
file labels.tex, e.g.,

grep newlabel texfile.aux > labels.tex

and then write a short label_main.tex that has

\documentclass{article}
\renewcommand\newlabel[2]{#1 & \newsublabel#2\\}
\newcommand\newsublabel[2]{#1 &  #2}

\begin{document}

\begin{tabular}{lcc}
Label & ref & page \\\hline
\input{labels.tex}
\end{tabular}

\end{document}

This generates a table with the label, the reference, and the page
number. If you have lots, you might want to replace the tabular
environment by longtable or supertab or something else to split it
across more than one page.

HTH

Steve

-- 
+-------------------------------------------------------------------+
Professor Steven J Schwartz        Phone: +44-(0)20-7594-7660
Head, Space & Atmospheric Physics  Fax:   +44-(0)20-7594-7772
The Blackett Laboratory            E-mail: s.schwartz at imperial.ac.uk
Imperial College London            Office: Huxley 6M67A 
London SW7 2AZ, U.K.               Web: www.sp.ph.ic.ac.uk/~sjs
+-------------------------------------------------------------------+



------------------------------

Message: 6
Date: Thu, 24 Jun 2010 13:47:26 -0400
From: Lev Bishop 
To: texhax 
Subject: [texhax] pdfpages, geometry, hyperref - no page anchors
Message-ID:
	
Content-Type: text/plain; charset=UTF-8

When I run pdflatex on this simple file:
\documentclass{book}
\usepackage{pdfpages}
\usepackage[showframe]{geometry}
\usepackage{hyperref}
\begin{document}
p1\newpage p2\newpage p3\newpage
\hyperlink{page.1}{1}/\hyperlink{page.2}{2}/\hyperlink{page.3}{3}/
\end{document}

I get the warnings:
pdfTeX warning (dest): name{page.3} has been referenced but does not
exist, replaced by a fixed one
pdfTeX warning (dest): name{page.2} has been referenced but does not
exist, replaced by a fixed one
pdfTeX warning (dest): name{page.1} has been referenced but does not
exist, replaced by a fixed one

If I remove \usepackage{pdfpages} or \usepackage{geometry} or even
just the [showframe] option then everything is fine.

Any ideas on what is going on here?

Lev

-- 
Lev Bishop
Postdoctoral Associate
Yale University


------------------------------

Message: 7
Date: Thu, 24 Jun 2010 13:56:03 -0400
From: Jonathan Moore 
To: support at tug.org
Subject: [texhax] LaTeX
Message-ID:
	
Content-Type: text/plain; charset="iso-8859-1"

Dear Support,
I am a freelance editor and I specialize in editing financial papers. A lot
of the authors use LaTeX for their papers. Some seem to have no problem
converting to Word but some do. Do you have or can you recommend an editing
program compatible with LaTeX. I have a PC with Windows XP home edition.
Thank you for your help,

-- 
Jonathan Moore
www.editormoore.com
jonathanmoore16 at gmail.com
copyediting at editormoore.com
203-885-5775
-------------- next part --------------
An HTML attachment was scrubbed...
URL: 

------------------------------

Message: 8
Date: Fri, 25 Jun 2010 01:16:52 +0500
From: Hina Khalid 
To: texhax at tug.org
Subject: [texhax] issue with writing commands in LaTeX
Message-ID:
	
Content-Type: text/plain; charset="iso-8859-1"

Hi,
I want to write \ in latex but it considers it as command start lets say i
want to write '  \dots ' as it is in my document I cant figure how to do
that. If I use verbatim environment it makes a new paragraph of it, which I
don't want.
What should I do?
-- 
Hina Khalid
Lecturer
Department of Computer Science & Engineering
UET, Lahore
-------------- next part --------------
An HTML attachment was scrubbed...
URL: 

------------------------------

Message: 9
Date: Fri, 25 Jun 2010 10:11:41 +1200
From: Alan T Litchfield 
To: texhax Hax 
Subject: Re: [texhax] issue with writing commands in LaTeX
Message-ID: 
Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes

Refer to http://elena.aut.ac.nz/ctan/info/symbols/comprehensive/symbols-a4.pdf

Page 9. Plus many others that may be useful for you.

Alan

On 25/06/2010, at 8:16 AM, Hina Khalid wrote:

> Hi,
> I want to write \ in latex but it considers it as command start lets  
> say i want to write '  \dots ' as it is in my document I cant figure  
> how to do that. If I use verbatim environment it makes a new  
> paragraph of it, which I don't want.
> What should I do?
> -- 
> Hina Khalid
> Lecturer
> Department of Computer Science & Engineering
> UET, Lahore
> _______________________________________________
> TeX FAQ: http://www.tex.ac.uk/faq
> Mailing list archives: http://tug.org/pipermail/texhax/
> More links: http://tug.org/begin.html
>
> Automated subscription management: http://tug.org/mailman/listinfo/texhax
> Human mailing list managers: postmaster at tug.org

--
Alan T Litchfield
AlphaByte
PO Box 141, Auckland, 1140
New Zealand
http://www.alphabyte.co.nz
http://www.alphabyte.co.nz/beatrice


------------------------------

_______________________________________________
texhax mailing list
texhax at tug.org
http://tug.org/mailman/listinfo/texhax

End of texhax Digest, Vol 2010, Issue 259
*****************************************



More information about the texhax mailing list