In two column mode it seems that the top of a float at the top of a column is about 4pt higher than the text in the other column.
Here is a minwrk example:
\documentclass[twocolumn]{article}
\setlength\abovecaptionskip{0pt}
\begin{document}
Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah ...
Search found 5 matches
- Fri Sep 19, 2008 6:32 pm
- Forum: General
- Topic: top float too high in two column mode
- Replies: 0
- Views: 1352
- Thu Sep 18, 2008 8:49 am
- Forum: General
- Topic: Abbreviations in Bibliography with achemso
- Replies: 2
- Views: 5374
Re: Abbreviations in Bibliography with achemso
Must be a common problem. I think your best bet would be to use abbreviations like jacs in the .bib files where you give details of the articles
and have one .bib file (say, abbrev_journal_names.bib) where you define jacs etc as the abbreviated names
...
@String{JACS = {J. Am.\ Chem.\ Soc ...
and have one .bib file (say, abbrev_journal_names.bib) where you define jacs etc as the abbreviated names
...
@String{JACS = {J. Am.\ Chem.\ Soc ...
- Wed Sep 17, 2008 10:59 am
- Forum: General
- Topic: getting emacs to recognize new commands
- Replies: 0
- Views: 1480
getting emacs to recognize new commands
I use emacs to edit .tex files and use user defined macros like \beq instead of \begin{equation} along with various other \newcommand macros that take arguments (such as \newcommand{\figref}[1]{\figurename~#1}).
emacs knows about the standard latex commands and uses pretty colours for their ...
emacs knows about the standard latex commands and uses pretty colours for their ...
- Tue Sep 02, 2008 6:21 am
- Forum: General
- Topic: BibTeX style file with abbreviated page range?
- Replies: 1
- Views: 1858
BibTeX style file with abbreviated page range?
Does anyone know of a .bst file that does abbreviated page ranges? For example, if the .bib file has pages={2420-2422}
then the output is given as 2420--2. makebst doesn't have this option.
Many thanks in advance,
Mike
then the output is given as 2420--2. makebst doesn't have this option.
Many thanks in advance,
Mike
- Mon Aug 18, 2008 4:20 pm
- Forum: General
- Topic: detecting existence of directories
- Replies: 0
- Views: 1298
detecting existence of directories
Is there a way to get LaTeX to detect directories?
\IfFileExists doesn't do it. Minimal example:
\documentclass{article}
\IfFileExists{tmp}{\typeout{*** found ***}}{\typeout{*** not found ***}}
\begin{document}
\end{document}
If tmp is an ordinary file, it is found. If it is a directory, it isn't ...
\IfFileExists doesn't do it. Minimal example:
\documentclass{article}
\IfFileExists{tmp}{\typeout{*** found ***}}{\typeout{*** not found ***}}
\begin{document}
\end{document}
If tmp is an ordinary file, it is found. If it is a directory, it isn't ...