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/) 1. Download the TeXLive ISO (2.2GB) from [https://www.tug.org/texlive/](https://www.tug.org/texlive/)
@ -17,7 +16,7 @@
or or
### Basic MikTeX #### Basic MikTeX
1. Download Basic-MiKTeX (32bit or 64bit) from [http://miktex.org/download](http://miktex.org/download) 1. Download Basic-MiKTeX (32bit or 64bit) from [http://miktex.org/download](http://miktex.org/download)
@ -28,74 +27,65 @@ or
4. Select or search for packages to install 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) 1. Download TexStudio from [http://texstudio.sourceforge.net/#downloads](http://texstudio.sourceforge.net/#downloads)
2. Run the installer 2. Run the installer
# Mac OS X ## Mac OS X
## MacTeX - TeX distribution ### 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}
subsection*{TexStudio - Tex Editor} 1. Download the file from [https://www.tug.org/mactex/](https://www.tug.org/mactex/)
begin{enumerate} 2. Extract and double click to run the installer. It does the entire configuration, sit back and relax.
item Download TexStudio from
href{http://texstudio.sourceforge.net/#downloads}{http://texstudio.sourceforge.net/#downloads}
item Extract and Start
end{enumerate}
### TexStudio - Tex Editor
section*{Unix/Linux} 1. Download TexStudio from [http://texstudio.sourceforge.net/#downloads](http://texstudio.sourceforge.net/#downloads)
subsection*{TeXLive - TeX distribution} 2. Extract, copy to applications and Start the TeX editor
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}
subsubsection*{Installation} ## Unix/Linux
begin{enumerate} ### TeXLive - TeX distribution
item Mount the ISO file in the mnt directory #### Getting the distribution:
begin{verbatim}
mount -t iso9660 -o ro,loop,noauto /your/texlive####.iso /mnt
end{verbatim}
item Install wget on your OS (use rpm, apt-get or yum install) 1. TexLive can be downloaded from [http://www.tug.org/texlive/acquire-netinstall.html](http://www.tug.org/texlive/acquire-netinstall.html)
item Run the installer script install-tl. 2. TexLive is provided by most operating system you can use (rpm,apt-get or yum) to get TexLive distributions
begin{verbatim}
cd /your/download/directory
./install-tl
end{verbatim}
item Enter command `i' for installation
item Post-Installation configuration: #### Installation
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}
subsubsection*{For 32Bit OS} 1. Mount the ISO file in the mnt directory
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}
edit $~/.bashrc file and add following lines
PATH=/usr/local/texlive/2011/bin/x86_64-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} `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
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
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
> For 64Bit
edit $~/.bashrc file and add following lines
PATH=/usr/local/texlive/2011/bin/x86_64-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