OpenCores
URL https://opencores.org/ocsvn/phr/phr/trunk

Subversion Repositories phr

[/] [phr/] [trunk/] [doc/] [informe-tesis/] [phd-thesis-template-master/] [Appendix1/] [appendix1.tex] - Diff between revs 125 and 126

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 125 Rev 126
% ******************************* Thesis Appendix A ********************************
% ******************************* Thesis Appendix A ********************************
\chapter{How to install \LaTeX}
\chapter{How to install \LaTeX}
 
 
\section*{Windows OS}
\section{Acrónimos}
 
\label{sec:acro}
\subsection*{TeXLive package - full version}
 
\begin{enumerate}
 
\item   Download the TeXLive ISO (2.2GB) from\\
 
\href{https://www.tug.org/texlive/}{https://www.tug.org/texlive/}
 
\item   Download WinCDEmu (if you don't have a virtual drive) from \\
 
\href{http://wincdemu.sysprogs.org/download/}{http://wincdemu.sysprogs.org/download/}
 
\item   To install Windows CD Emulator follow the instructions at\\
 
\href{http://wincdemu.sysprogs.org/tutorials/install/}{http://wincdemu.sysprogs.org/tutorials/install/}
 
\item   Right click the iso and mount it using the WinCDEmu as shown in \\
 
\href{http://wincdemu.sysprogs.org/tutorials/mount/}{http://wincdemu.sysprogs.org/tutorials/mount/}
 
\item   Open your virtual drive and run setup.pl
 
\end{enumerate}
 
 
 
or
 
 
 
\subsection*{Basic MikTeX - TeX distribution}
 
\begin{enumerate}
 
\item   Download Basic-MiK\TeX (32bit or 64bit) from\\
 
\href{http://miktex.org/download}{http://miktex.org/download}
 
\item   Run the installer
 
\item   To add a new package go to Start >> All Programs >> MikTex >> Maintenance (Admin) and choose Package Manager
 
\item   Select or search for packages to install
 
\end{enumerate}
 
 
 
\subsection*{TexStudio - Tex Editor}
 
\begin{enumerate}
 
\item   Download TexStudio from\\
 
\href{http://texstudio.sourceforge.net/\#downloads}{http://texstudio.sourceforge.net/\#downloads}
 
\item   Run the installer
 
\end{enumerate}
 
 
 
\section*{Mac OS X}
 
\subsection*{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}
 
\begin{enumerate}
 
\item   Download TexStudio from\\
 
\href{http://texstudio.sourceforge.net/\#downloads}{http://texstudio.sourceforge.net/\#downloads}
 
\item   Extract and Start
 
\end{enumerate}
 
 
 
 
 
\section*{Unix/Linux}
\section*{Windows OS}
\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}
 
 
 
\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}
 
 
 
\item   Install wget on your OS (use rpm, apt-get or yum install)
 
\item   Run the installer script install-tl.
 
\begin{verbatim}
 
        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}
 
 
 
\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}
 
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}
 
 
 
 
 
 
 
%\subsection{Installing directly using Linux packages}
%\subsection{Installing directly using Linux packages}
\subsubsection*{Fedora/RedHat/CENTOS:}
\subsubsection*{Fedora/RedHat/CENTOS:}
\begin{verbatim}
\begin{verbatim}
sudo yum install texlive
sudo yum install texlive
sudo yum install psutils
sudo yum install psutils
\end{verbatim}
\end{verbatim}
 
 
 
 
\subsubsection*{SUSE:}
\subsubsection*{SUSE:}
\begin{verbatim}
\begin{verbatim}
sudo zypper install texlive
sudo zypper install texlive
\end{verbatim}
\end{verbatim}
 
 
 
 
\subsubsection*{Debian/Ubuntu:}
\subsubsection*{Debian/Ubuntu:}
\begin{verbatim}
\begin{verbatim}
sudo apt-get install texlive texlive-latex-extra
sudo apt-get install texlive texlive-latex-extra
sudo apt-get install psutils
sudo apt-get install psutils
\end{verbatim}
\end{verbatim}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.