[O] LaTeX appears not to like default Org tag export format (\hfill)?

2013-05-24 Thread John Hendy
I'm getting errors on tag export:

Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref)removing `\hfill' on input line 1706.

The tags get converted to this:

\subsection{Headline title\hfill{}\textsc{tag}}

It looks like LaTeX doesn't like that.

Any suggestions?


John



Re: [O] LaTeX appears not to like default Org tag export format (\hfill)?

2013-05-24 Thread Marcin Borkowski
Dnia 2013-05-24, o godz. 12:07:55
John Hendy jw.he...@gmail.com napisaƂ(a):

 I'm getting errors on tag export:
 
 Package hyperref Warning: Token not allowed in a PDF string
 (PDFDocEncoding): (hyperref)removing `\hfill' on
 input line 1706.
 
 The tags get converted to this:
 
 \subsection{Headline title\hfill{}\textsc{tag}}
 
 It looks like LaTeX doesn't like that.
 
 Any suggestions?

First: I can't resist telling a joke.

A guy is standing on the corner of the street smoking one cigarette
after another. A lady walking by notices him and says Hey, don't you
know that those things can kill you? I mean, didn't you see the giant
warning on the box?! That's OK says the guy, puffing casually I'm a
computer programmer So? What's that got to do with anything? We
don't care about warnings. We only care about errors.

Now, to the point: indeed, this is only a warning and you don't have to
worry about it.  If you really do not like this warning, try putting
this into your preamble (untested, but should work):

\pdfstringdefDisableCommands{\def\hfill{ }}

Explanation: it is not LaTeX which dislikes \hfill (though it's a
plain TeX macro, not a LaTeX one), but hyperref.  More precisely, the
argument to \section lands not only in the ToC, but also in the pdf
bookmarks, and what can go there is seemingly quite restricted (I
don't know/care much about the exact details, frankly speaking).  The
above spell tells hyperref to (temporarily) change \hfill to a space in
that context. (See hyperref's docs and/or source for more info.)

 John

HTH,

-- 
Marcin Borkowski
http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski
Adam Mickiewicz University



Re: [O] LaTeX appears not to like default Org tag export format (\hfill)?

2013-05-24 Thread Nick Dokos
John Hendy jw.he...@gmail.com writes:

 I'm getting errors on tag export:

 Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
 (hyperref)removing `\hfill' on input line 1706.

 The tags get converted to this:

 \subsection{Headline title\hfill{}\textsc{tag}}

 It looks like LaTeX doesn't like that.

LaTeX has no problem with it: it's hyperref that does not like it. 

 Any suggestions?


It's a warning, not an error, so unless it causes a real problem,
I'd ignore it.

Nick