\bf
, \em
, \it
, \rm
, \sf
, \sl
or \tt
Tested with Beamer 3.4.1.
Use the plain
option for removing the headline and footline areas from the title page:
Tested with Beamer 3.4.1.
Write in the preamble the command \setbeamertemplate{navigation symbols}{}
for suppressing all the navigation symbols.
Tested with Emacs 24.4.
Add to the .emacs
file the instruction (setq-default show-trailing-whitespace t)
for showing trailing whitespace and run the command M-x delete-trailing-whitespace
for removing them.
Use mnemonic file names.
The names of your files should not include references to your corrections (e.g. great-name-final-correction.pdf
) nor version numbers (e.g. great-name-version42.pdf
).
The files names should contain only English letters, digits, or hyphens (-), that is, the files names should not include white-spaces, accent marks (e.g. à), tildes (e.g. ñ), punctuation symbols, parentheses nor other unusual characters.
For avoiding issues when handling your files (e.g. in Office 365) or if your files will become part of some Web page’s URL (suggested by Google) note that underscore (_) is not a character suggested for naming your files.
N.B. The following instructions assumes you have root privileges.
Let’s suppose we want to install GHC 7.8.4 and GHC 7.10.1 then following procedure can be followed:
If you installed GHC using your software distribution, remove it.
Install stow
from your distribution.
Create the stow directory:
Download the binary version of GHC 7.8.4 for your platform. (In our case, the file is called ghc-7.8.4-x86_64-unknown-linux-deb7.tar.xz
)
Install GHC 7.8.4:
Download the binary version of GHC 7.10.1 for your platform. (In our case, the file is called ghc-7.8.4-x86_64-unknown-linux-deb7.tar.xz
)
Install GHC 7.10.1:
Using GHC 7.8.4:
Using GHC 7.10.1.
Before using GHC 7.10.1 it is necessary unstow GHC 7.8.4 and stow GHC 7.10.1:
The above step can be tedious when using various versions of GHC. We can use the following bash
script instead:
\bf
, \em
, \it
, \rm
, \sf
, \sl
or \tt
The above commands have some issues. For example, how produce bold italic text?
Both {\bf \it Hello World!}
or {\it \bf Hello World!}
do not work. You should use \textbf{\textit{Hello World!}}
or \textit{\textbf{Hello World!}}
instead.
See What’s wrong with \bf
, \it
, etc.?
Generated with pandoc 2.9.1.1
Last modified: Sun Jan 19 18:58:18 -05 2020