Unix

Krishna Kumar 2013-12-11 03:24:11 -08:00
parent abf28eec53
commit 2ef1c3268c

@ -1,9 +1,8 @@
## Windows OS
# Windows OS
### LaTeX/TeX Distribution
## LaTeX/TeX Distribution
### TeXLive package
#### TeXLive package
1. Download the TeXLive ISO (2.2GB) from [https://www.tug.org/texlive/](https://www.tug.org/texlive/)
@ -17,7 +16,7 @@
or
### Basic MikTeX
#### Basic MikTeX
1. Download Basic-MiKTeX (32bit or 64bit) from [http://miktex.org/download](http://miktex.org/download)
@ -28,68 +27,61 @@ or
4. Select or search for packages to install
## TexStudio - Tex Editor
### TexStudio - Tex Editor
1. Download TexStudio from [http://texstudio.sourceforge.net/#downloads](http://texstudio.sourceforge.net/#downloads)
2. Run the installer
# Mac OS X
## MacTeX - TeX distribution
begin{enumerate}
item Download the file from
href{https://www.tug.org/mactex/}{https://www.tug.org/mactex/}
item Extract and double click to run the installer. It does the entire configuration, sit back and relax.
end{enumerate}
## Mac OS X
### MacTeX - TeX distribution
subsection*{TexStudio - Tex Editor}
begin{enumerate}
item Download TexStudio from
href{http://texstudio.sourceforge.net/#downloads}{http://texstudio.sourceforge.net/#downloads}
item Extract and Start
end{enumerate}
1. Download the file from [https://www.tug.org/mactex/](https://www.tug.org/mactex/)
2. Extract and double click to run the installer. It does the entire configuration, sit back and relax.
### TexStudio - Tex Editor
section*{Unix/Linux}
subsection*{TeXLive - TeX distribution}
subsubsection*{Getting the distribution:}
begin{enumerate}
item TexLive can be downloaded from
href{http://www.tug.org/texlive/acquire-netinstall.html}{http://www.tug.org/texlive/acquire-netinstall.html}.
item TexLive is provided by most operating system you can use (rpm,apt-get or yum) to get TexLive distributions
end{enumerate}
1. Download TexStudio from [http://texstudio.sourceforge.net/#downloads](http://texstudio.sourceforge.net/#downloads)
2. Extract, copy to applications and Start the TeX editor
subsubsection*{Installation}
begin{enumerate}
item Mount the ISO file in the mnt directory
begin{verbatim}
mount -t iso9660 -o ro,loop,noauto /your/texlive####.iso /mnt
end{verbatim}
## Unix/Linux
### TeXLive - TeX distribution
#### Getting the distribution:
item Install wget on your OS (use rpm, apt-get or yum install)
item Run the installer script install-tl.
begin{verbatim}
1. TexLive can be downloaded from [http://www.tug.org/texlive/acquire-netinstall.html](http://www.tug.org/texlive/acquire-netinstall.html)
2. TexLive is provided by most operating system you can use (rpm,apt-get or yum) to get TexLive distributions
#### Installation
1. Mount the ISO file in the mnt directory
`mount -t iso9660 -o ro,loop,noauto /your/texlive####.iso /mnt`
2. Install wget on your OS (use rpm, apt-get or yum install)
3. Run the installer script install-tl.
cd /your/download/directory
./install-tl
end{verbatim}
item Enter command `i' for installation
item Post-Installation configuration:
href{http://www.tug.org/texlive/doc/texlive-en/texlive-en.html#x1-320003.4.1}{http://www.tug.org/texlive/doc/texlive-en/texlive-en.html#x1-320003.4.1}
item Set the path for the directory of TexLive binaries in your .bashrc file
end{enumerate}
4. Enter command `i` for installation
#### Post-Installation configuration
[http://www.tug.org/texlive/doc/texlive-en/texlive-en.html#x1-320003.4.1](http://www.tug.org/texlive/doc/texlive-en/texlive-en.html#x1-320003.4.1)
1. Set the path for the directory of TexLive binaries in your .bashrc file
> For 32Bit OS
For Bourne-compatible shells such as bash, and using Intel x86 GNU/Linux and a default directory setup as an example, and edit `~/.bashrc` file and add the following lines
subsubsection*{For 32Bit OS}
For Bourne-compatible shells such as bash, and using Intel x86 GNU/Linux and a default directory setup as an example, the file to edit might be begin{verbatim}
edit $~/.bashrc file and add following lines
PATH=/usr/local/texlive/2011/bin/i386-linux:$PATH;
export PATH
MANPATH=/usr/local/texlive/2011/texmf/doc/man:$MANPATH;
export MANPATH
INFOPATH=/usr/local/texlive/2011/texmf/doc/info:$INFOPATH;
export INFOPATH
end{verbatim}
subsubsection*{For 64Bit}
begin{verbatim}
> For 64Bit
edit $~/.bashrc file and add following lines
PATH=/usr/local/texlive/2011/bin/x86_64-linux:$PATH;
export PATH
@ -97,5 +89,3 @@ MANPATH=/usr/local/texlive/2011/texmf/doc/man:$MANPATH;
export MANPATH
INFOPATH=/usr/local/texlive/2011/texmf/doc/info:$INFOPATH;
export INFOPATH
end{verbatim}