Navigation
0 users online | 0 Guests and 0 Registered
Most popular FAQs 
- How to remove page numbers in the LaTeX documents? ... (4716 views)
- Error "Nothing to build for project XXX" when using ... (4437 views)
- Difference between implication and entailment (logical implication)? (3862 views)
- Why latexrender based on LaTeX does not work in ... (3472 views)
- How to remove or uninstall Adobe Reader from Ubuntu? ... (3336 views)
- How to change the bibliography/reference names? (3243 views)
- How to make a list of abbreviations or a ... (3167 views)
- How to install SVN (subversion) on Bluehost/Hostmonster etc.? (2396 views)
- Error: Package hyperref Warning:Token not allowed in a PDFDocEncoded ... (2255 views)
- How to resolve this problem: Failed to parse (PNG ... (1375 views)
Latest FAQs 
- How to install GIT on bluehost/hostmonster? (2012-01-31 21:21)
- Homebrew on Mac SSL verification to GIT failed (2012-01-05 21:01)
- Tomcat cannot start up: java.lang.UnsupportedClassVersionError: Bad version number in ... (2011-11-29 01:41)
- Tomcat cannot start up: java.lang.UnsupportedClassVersionError: Bad version number in ... (2011-05-27 02:42)
- Unsigned applet encounters exception in Safari: java.lang.reflect.InvocationTargetException (2011-04-19 19:13)
Sticky FAQs
I
- I prefer to have my own bibliography appearance, e.g., customize my bibliography for a particular publication, how to do that?
First, they might have already created their own bibliography style (.bst file) for those users of BibTeX... If not, create your own .bst, but not by ... - I need to generate both DVI and PDF, what should I write in the source code?
\usepackage{ifpdf} OR, use the following code (which is said to be unsafe/fragile?) \newif\ifpdf \ifx\pdfoutput\undefined \pdffalse \else \ifnum\pdfoutput=1 \pdftrue \else \pdffalse \fi \fi To use it, \ifpdf \usepackage{hyperref} \else % running latex \fi ... - I have to deal with TeX macros... Any online Tex macro programming tutorial?
A TeX guide is available here. ...