Search found 105 matches
- Tue Mar 31, 2009 1:27 am
- Forum: General
- Topic: Repeating LaTeX items (equations, descriptions, etc.)
- Replies: 4
- Views: 9206
Repeating LaTeX items (equations, descriptions, etc.)
Perhaps there is a better way to do this. But one way to do this is to to use \def. It is not considered good to use \def, but somehow I find its use more intuitive compared to \newcommand, so I will give you an example with that. To avoid clash with latex commands, I start my commands with ...
- Sun Mar 15, 2009 7:09 pm
- Forum: LyX
- Topic: Sublist on list
- Replies: 4
- Views: 17592
Re: Sublist on list
Look at package enumitem. That may solve your problem. On the other hand, you may not need it. Depends on what exactly you are trying to do. Post a minimal working example and you will get better help.
- Sat Mar 14, 2009 3:34 pm
- Forum: TeXShop
- Topic: help for annoying behaviour of Texshop new release's preview
- Replies: 9
- Views: 8330
help for annoying behaviour of Texshop new release's preview
I thought that perhaps you had tried that...but was not sure. Anyhow, have you tried asking your question on the following forum:
http://www.apfelwiki.de/forum/viewforum.php?f=6
People there know a lot about Texshop. Perhaps there is no solution, but you can try asking there.
http://www.apfelwiki.de/forum/viewforum.php?f=6
People there know a lot about Texshop. Perhaps there is no solution, but you can try asking there.
- Fri Mar 13, 2009 4:35 pm
- Forum: TeXShop
- Topic: help for annoying behaviour of Texshop new release's preview
- Replies: 9
- Views: 8330
Re: help for annoying behaviour of Texshop new release's preview
Did you all try looking at Preferences in TexShop 2.18.
1. Go to Texshop -> Preferences
2. Preview Tab
3. In preview window position choose "Remember last position on close"
That might solve the problem.
1. Go to Texshop -> Preferences
2. Preview Tab
3. In preview window position choose "Remember last position on close"
That might solve the problem.
- Tue Mar 10, 2009 1:09 pm
- Forum: Text Formatting
- Topic: description always bold?
- Replies: 5
- Views: 19834
description always bold?
Most likely there is a better solution than the one below. But the following also works.
\documentclass[12pt]{article}
\def\MyItem[#1]#2{\item[{\rm #1}]#2}
\begin{document}
\begin{description}
\item[First item] This is the first item.
\item[{\rm Second item}] This is the second item ...
\documentclass[12pt]{article}
\def\MyItem[#1]#2{\item[{\rm #1}]#2}
\begin{document}
\begin{description}
\item[First item] This is the first item.
\item[{\rm Second item}] This is the second item ...
- Sat Mar 07, 2009 4:15 pm
- Forum: Math & Science
- Topic: How to change the linespread space in array environment
- Replies: 4
- Views: 12591
How to change the linespread space in array environment
I had a similar question and gmedina suggested using
\setlength{\abovedisplayskip}{<length>} and
\setlenght{\belowdisplayskip}{<length>}
to change the vertical space above and below the display. I do not know how to link to that thread, but a search for the term abovedisplayskip should bring it up.
\setlength{\abovedisplayskip}{<length>} and
\setlenght{\belowdisplayskip}{<length>}
to change the vertical space above and below the display. I do not know how to link to that thread, but a search for the term abovedisplayskip should bring it up.
- Thu Mar 05, 2009 5:43 pm
- Forum: Page Layout
- Topic: Text at the bottom part
- Replies: 2
- Views: 21584
Re: Text at the bottom part
I am not entirely sure what you want. But if I am thinking correctly, \vfill will solve your problem. Use \vfill instead of \vspace.
- Wed Mar 04, 2009 3:13 pm
- Forum: BibTeX, biblatex and biber
- Topic: Generating bibliography with only .bbl file, not .bib file
- Replies: 2
- Views: 7123
Re: Generating bibliography with only .bbl file, not .bib file
The following might work. Not sure though.
What editor are you using and how does your file compile? Do you have to run Bibtex manually (by issuing the command or pressing a button for bibtex) or do you use a script such as Latexmk.pl which takes care of running Bibtex for you whenever you hit ...
What editor are you using and how does your file compile? Do you have to run Bibtex manually (by issuing the command or pressing a button for bibtex) or do you use a script such as Latexmk.pl which takes care of running Bibtex for you whenever you hit ...
- Mon Mar 02, 2009 6:13 pm
- Forum: General
- Topic: Section heading style for References
- Replies: 7
- Views: 56426
Re: Section heading style for References
Thanks very much Stefan. You are right. The vertical space was still present when I tried the solution in my post. I used \vspace to reduce that vertical space. However, your solution is better. Thanks.
- Wed Feb 25, 2009 10:57 pm
- Forum: General
- Topic: Section heading style for References
- Replies: 7
- Views: 56426
Section heading style for References
From searching the web, I learnt the following way of suppressing the section title of the bibliography section, and then used my own custom style.
Command
gets rid of the section title name.
Command
Code: Select all
\renewcommand{\refname}{}
gets rid of the section title name.