Text FormattingFootnotes without superscript + headings without hyphenation

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
thoddy
Posts: 4
Joined: Wed Aug 12, 2009 10:06 pm

Footnotes without superscript + headings without hyphenation

Post by thoddy »

Hi guys, I REALLY need help now!!

I am lay-outing a book - my dissertation thesis. I am almost done. ALMOST! Because there are two things the printing guys want me to change:

(1) The footnote numbers / symbols at the end of each page should use "normal" numbers, not "superscript" numbers.

(2) I have some long chapter / section headings. Those should be left-oriented (not justified) and do not use hyphenation. The rest of the text is ok justified and using hyphenation, only heading should be changed.

I am trying to get a grip on these issues for hours now - no idea where to keep looking... :shock:

THANKS!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Footnotes without superscript + headings without hyphenation

Post by gmedina »

Hi,

for question (1): you can add something like this:

Code: Select all

\makeatletter
\renewcommand\@makefntext[1]{%
  \noindent\makebox[0pt][r]{\@thefnmark.\space}#1}
\makeatother
to the preamble of your document. That code will cause the footnote mark onto the baseline followed by a period and separated from the footnote text by a single space.

Now, regarding question (2), could you please tell us what document class are you using and what sectional units you want to modify? (only chapters and sections?)
1,1,2,3,5,8,13,21,34,55,89,144,233,...
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Footnotes without superscript + headings without hyphenation

Post by localghost »

I wonder that the print shop has a say in how such things have to look like. The only things from which I know they can have demands are embedding fonts and preparing a camera-ready document by printing for example a A5 layout on A4 paper.

Regarding the second issue, the titlesec package is able to do the job.

Code: Select all

\usepackage[raggedright]{titlesec}
The manual has more details about all the capabilities of this package.


Best regards and welcome to the board
Thorsten
thoddy
Posts: 4
Joined: Wed Aug 12, 2009 10:06 pm

Re: Footnotes without superscript + headings without hyphenation

Post by thoddy »

AWESOME!! ;)

Both hints work perfectly! Thanks a lot, guys!!

Sorry, I forgot - I use "book" style, in 10pt on a B5 page size...

I think that were the last difficult tweaks I had to make. So now the PDF can be given to be printed... :)
thoddy
Posts: 4
Joined: Wed Aug 12, 2009 10:06 pm

Footnotes without superscript + headings without hyphenation

Post by thoddy »

OK, not quite... I thought that was it - but what I still need to change now is: I need a tabular WITHIN the footnotes, so they look some like this:

Code: Select all

-----------
9.    Footnote one with little text.
10.   Footnote two with a lot more text to show the line
      wrapping.
11.   Footnote three with little text.
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Footnotes without superscript + headings without hyphenation

Post by gmedina »

Hi,

you can use boxes in the redefinition of \@makefntext:

Code: Select all

\documentclass{book}

\makeatletter
\renewcommand\@makefntext[1]{%
  \noindent\parbox[t][\height][l]{3em}{\@thefnmark.}\parbox[t][\height][l]{6cm}{#1}\vskip3pt}
\makeatother

\begin{document}

text text text\footnote{A short footnote}

text text text\footnote{A long footnote with text text text text text text text text text text text text text text text text text text text text text text text}

text text text\footnote{Another short footnote}

\end{document}
Of course, change the width of the parboxes according to your needs.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
thoddy
Posts: 4
Joined: Wed Aug 12, 2009 10:06 pm

Re: Footnotes without superscript + headings without hyphenation

Post by thoddy »

Perfect!

I only needed to change the two sizes... ;)

Thanks a lot!!
Post Reply