Search found 15 matches

by otoomet
Thu Jun 05, 2008 3:12 pm
Forum: General
Topic: Exclude a headline from the ToC, but keep the section number
Replies: 3
Views: 5155

Re: Exclude a headline from the ToC, but keep the section number

Hi Kishmet,

try:

\section*{foo}
\stepcounter{section}

the latter command should increase the section counter.

Best,
Ott
by otoomet
Thu Jun 05, 2008 3:08 pm
Forum: General
Topic: place float inbetween paragraphs
Replies: 1
Views: 1611

place float inbetween paragraphs

Hi,

is there any way I can force all the floats to be placed only in between paragraphs, not on top/bottom of page? I know I can play around with [h], [h!] and [H] but aren't there any easier way to get the effect for all the figures at once?

Thanks in advance,
Ott

BTW -- please do not blame me ...
by otoomet
Sat Jun 23, 2007 9:49 am
Forum: General
Topic: Import an Excel table to LaTeX
Replies: 4
Views: 5699

Re: excel+latex

I have used an openoffice macro which converts the selection to latex. There is a similar one for excel also. It does a pretty good job with fonts, lines, colors etc.
by otoomet
Wed May 30, 2007 12:33 pm
Forum: General
Topic: remove '~' as active character
Replies: 2
Views: 3186

Re: remove '~' as active character

Yess! Thank you!

The problem was that I haven't control over the way the bibliograpy is formatted by bibtex.
by otoomet
Wed May 30, 2007 10:07 am
Forum: General
Topic: remove '~' as active character
Replies: 2
Views: 3186

remove '~' as active character

Occasionally I have use bibtex in Estonian locale. An annoying feature there is that tilde '~' is active, e.g. by typing '~s' you get Å¡ (scaron). It really annoys me when it happens with bibligraphies, because several bib styles use '~' as the space.

Is it easy to make tilde to a normal character ...
by otoomet
Wed May 30, 2007 10:04 am
Forum: General
Topic: What book on LaTeX and TeX to get?
Replies: 2
Views: 3137

Re: What book on LaTeX and TeX to get?

Kopka & Daly "A guide to latex" was really useful for me.

Latex companion is mostly about extra packates (it is a companion to the "latex book" after all).
by otoomet
Sat May 26, 2007 8:00 pm
Forum: General
Topic: remoce page number on title page
Replies: 3
Views: 17687

Re: remoce page number on title page

Wow! This works for me too!

thanks, dmonkey!
by otoomet
Sat May 12, 2007 7:27 pm
Forum: General
Topic: BibTeX & "undefined control sequence"
Replies: 21
Views: 101079

Re: BibTeX & "undefined control sequence"

How does your document look like? How does your bib-file look like? Which program exactly gives error messages -- latex or bibtex? Bibtex errors are usually easy to track down.
by otoomet
Thu Apr 19, 2007 9:07 am
Forum: General
Topic: remoce page number on title page
Replies: 3
Views: 17687

remoce page number on title page

How can I get rid of the page number on the title page? Consider the example:

\documentclass{article}

\pagestyle{empty}
\title{Blah\pagestyle{empty}}

\begin{document}

\pagestyle{empty}
\maketitle
\pagestyle{empty}
Blah-blah
\pagestyle{empty}

\end{document}


The page number just sits there ...
by otoomet
Tue Apr 17, 2007 6:06 am
Forum: General
Topic: titlesec -- appendix -- \ref
Replies: 1
Views: 7439

titlesec -- appendix -- \ref

Well, redefining the title label after /appendix

Code: Select all

\appendix
\titleformat{\section}%
{}%
{\Alph{section}.\quad}%
{0pt}{}{}
Aren't there any cleaner solutions?