Showing posts with label LaTex. Show all posts
Showing posts with label LaTex. Show all posts
Friday, February 22, 2013
Arial LaTeX
http://tex.stackexchange.com/questions/23957/how-to-set-font-to-arial-throughout-the-entire-document
Tuesday, October 9, 2012
Homework LaTeX Template I use
https://gist.github.com/1278588
http://tex.stackexchange.com/questions/31183/class-file-for-homework-assignments
Wednesday, August 1, 2012
Possible solution something is missing problem of natbib
A sample document generated using the latex style file for csuf thesis
CSUF
CSUF
Tuesday, June 19, 2012
Convert .gif to png under Linux
convert image.gif image.png
http://superuser.com/questions/71028/batch-converting-png-to-jpg-in-linux
http://superuser.com/questions/71028/batch-converting-png-to-jpg-in-linux
Tuesday, June 12, 2012
Customizing the sidebar in beamer
Marburg beamer
http://tex.stackexchange.com/questions/46874/customizing-the-sidebar-in-beamer
How to hide other SubSubsections in sidebar of beamerclass
http://tex.stackexchange.com/questions/51889/how-to-hide-other-subsubsections-in-sidebar-of-beamerclass
http://tex.stackexchange.com/questions/46874/customizing-the-sidebar-in-beamer
How to hide other SubSubsections in sidebar of beamerclass
http://tex.stackexchange.com/questions/51889/how-to-hide-other-subsubsections-in-sidebar-of-beamerclass
Monday, May 28, 2012
How to install LaTeX/Packages/Extra Packages
http://en.wikibooks.org/wiki/LaTeX/Packages/Installing_Extra_Packages
1. Extract the files:
Run LaTeX on the .ins file. That is, open the file in your editor and process it as if it were a LaTeX document.
Or type : latex xxx.ins in terminal window.
2. Create the documentation
Run LaTeX on the .dtx file. You might need to run it twice or more. to get the cross-references right (just like any other LaTeX document). This will create a .dvi file of documentation explaining what the package is for and how to use it. If you prefer to create PDF then run pdfLaTeX instead. If you created a .idx as well, it means that the document contains an index, too. .glo (glossary) file has been produced. Run the following command instead:
3. Install the files While the documentation is printing, move or copy the package files from your temporary directory to the right places in your TeX local installation directory tree, Packages installed by hand should always be placed in your "local" directory tree, not in the directory tree containing all the pre-installed packages.
Unix-type systems: Usually ~/texmf/ or ~/texmf-texlive
The "right place" sometimes causes confusion, especially if your TeX installation is old or does not conform to the TeX Directory Structure. For a TDS-conformant system, the "right place" for a LaTeX .sty file is suitably-named subdirectory of texmf/tex/latex/.
TDS?
http://www.tex.ac.uk/tex-archive/info/beginlatex/html/chapter5.html#TDS
4. Update your index Finally, run your TeX indexer program to update the package database.
texhash
mktexlsr
.....
Easy installatin/removal of a LaTeX package
http://askubuntu.com/questions/72803/easy-installation-removal-of-a-latex-package
1. Extract the files:
Run LaTeX on the .ins file. That is, open the file in your editor and process it as if it were a LaTeX document.
Or type : latex xxx.ins in terminal window.
2. Create the documentation
Run LaTeX on the .dtx file. You might need to run it twice or more. to get the cross-references right (just like any other LaTeX document). This will create a .dvi file of documentation explaining what the package is for and how to use it. If you prefer to create PDF then run pdfLaTeX instead. If you created a .idx as well, it means that the document contains an index, too. .glo (glossary) file has been produced. Run the following command instead:
makeindex -s gglo.ist -o name.gls name.glo
3. Install the files While the documentation is printing, move or copy the package files from your temporary directory to the right places in your TeX local installation directory tree, Packages installed by hand should always be placed in your "local" directory tree, not in the directory tree containing all the pre-installed packages.
Unix-type systems: Usually ~/texmf/ or ~/texmf-texlive
The "right place" sometimes causes confusion, especially if your TeX installation is old or does not conform to the TeX Directory Structure. For a TDS-conformant system, the "right place" for a LaTeX .sty file is suitably-named subdirectory of texmf/tex/latex/.
TDS?
http://www.tex.ac.uk/tex-archive/info/beginlatex/html/chapter5.html#TDS
4. Update your index Finally, run your TeX indexer program to update the package database.
texhash
mktexlsr
.....
This step is utterly essential, otherwise nothing will work.http://theoval.cmp.uea.ac.uk/~nlct/latex/novices/installsty.html
Easy installatin/removal of a LaTeX package
http://askubuntu.com/questions/72803/easy-installation-removal-of-a-latex-package
Sunday, May 27, 2012
LaTeX Classes or Styles for Schedules and /or Calendars/ Other LaTeX Templates
Stackexchange:
http://tex.stackexchange.com/questions/843/latex-classes-or-styles-for-schedules-and-or-calendars
Evan Sultanik:
LaTeX calendar style
http://www.sultanik.com/LaTeX_calendar_style
Gantt chart:
http://www.martin-kumm.de/tex_gantt_package.php
http://jldiaz.wikidot.com/en-tikz-example%3agantt
Other Latex templates for project management tasks:
http://tex.stackexchange.com/questions/1333/latex-templates-for-project-management-tasks
More stuff can be found in TikZ and PGF examples:
http://www.texample.net/tikz/examples/
LaTeX Templates
http://www.latextemplates.com/
CTAN Templates
http://www.ctan.org
LaTeX Edit Office (In Chinese)
http://zzg34b.w3.c361.com/index.htm
Books and templates.
http://tex.stackexchange.com/questions/843/latex-classes-or-styles-for-schedules-and-or-calendars
Evan Sultanik:
LaTeX calendar style
http://www.sultanik.com/LaTeX_calendar_style
Gantt chart:
http://www.martin-kumm.de/tex_gantt_package.php
http://jldiaz.wikidot.com/en-tikz-example%3agantt
Other Latex templates for project management tasks:
http://tex.stackexchange.com/questions/1333/latex-templates-for-project-management-tasks
More stuff can be found in TikZ and PGF examples:
http://www.texample.net/tikz/examples/
LaTeX Templates
http://www.latextemplates.com/
CTAN Templates
http://www.ctan.org
LaTeX Edit Office (In Chinese)
http://zzg34b.w3.c361.com/index.htm
Books and templates.
LaTeX Bibliography Management
http://www.usm.edu/zxzhou/tools/referencing/LaTex_Bibliography_Management.pdf
LyX and LaTeX
thesis templates:
http://www.thesis-template.com/
LyX and LaTeX
thesis templates:
http://www.thesis-template.com/
Saturday, April 28, 2012
include source code in latex
http://en.wikibooks.org/wiki/LaTeX/Packages/Listings
http://stackoverflow.com/questions/3175105/how-to-insert-code-into-a-latex-doc
LaTeX Sample with professional look
http://stackoverflow.com/questions/741985/latex-source-code-listing-like-in-professional-books
http://stackoverflow.com/questions/3175105/how-to-insert-code-into-a-latex-doc
LaTeX Sample with professional look
http://stackoverflow.com/questions/741985/latex-source-code-listing-like-in-professional-books
Saturday, April 21, 2012
Matrix2latex (Matlab)
Little Script for Matrix in Matlab output to Latex
http://www.mathworks.de/matlabcentral/fileexchange/4894-matrix2latex
http://www.mathworks.de/matlabcentral/fileexchange/4894-matrix2latex
Friday, April 20, 2012
Fixing problem during installing gummi spelling check
gtkspell need
No package 'gtk+-2.0' found solution:
http://ubuntuforums.org/showthread.php?t=1255480
libgtk2.0-dev
fixed it
No package 'enchant' found solution:
Download enchant source
http://www.linuxfromscratch.org/blfs/view/cvs/general/enchant.html
Installation Method:
http://groups.google.com/group/pyenchant-users/browse_thread/thread/6be9036c488d37bb?pli=1
./configure
make
make install (maybe need sudo permission)
inttool installation (need intltool 0.35.0 or later)
./configure
make
make install
No package 'gtk+-2.0' found solution:
http://ubuntuforums.org/showthread.php?t=1255480
libgtk2.0-dev
fixed it
No package 'enchant' found solution:
Download enchant source
http://www.linuxfromscratch.org/blfs/view/cvs/general/enchant.html
Installation Method:
http://groups.google.com/group/pyenchant-users/browse_thread/thread/6be9036c488d37bb?pli=1
./configure
make
make install (maybe need sudo permission)
inttool installation (need intltool 0.35.0 or later)
./configure
make
make install
Saturday, March 24, 2012
LaTex Tutorials
Rutgers LaTex Lesson
Lesson 2:Environments in Latex
http://crab.rutgers.edu/~karel/latex/class2/class2.html
help file
http://www.emerson.emory.edu/services/latex/latex_178.html
\bf
Boldface typeface
Columbia LaTex Tutorial:
http://www.cs.columbia.edu/~jebara/4771/tutorials/
Set symbols and relations,operations (Latex) from proofwiki
http://www.proofwiki.org/wiki/Symbols:Set_Operations_and_Relations
Lesson 2:Environments in Latex
http://crab.rutgers.edu/~karel/latex/class2/class2.html
help file
http://www.emerson.emory.edu/services/latex/latex_178.html
\bf
Boldface typeface
Columbia LaTex Tutorial:
http://www.cs.columbia.edu/~jebara/4771/tutorials/
Set symbols and relations,operations (Latex) from proofwiki
http://www.proofwiki.org/wiki/Symbols:Set_Operations_and_Relations
Thursday, February 23, 2012
How to include a bitmap file in LaTeX
http://www.tug.org/pipermail/texhax/2007-February/007805.html
Graphics(jpg) Inclusion:
http://mactex-wiki.tug.org/wiki/index.php?title=Graphics_inclusion
How to input a graphics to latex file
http://en.wikibooks.org/wiki/LaTeX/Importing_Graphics
Graphics(jpg) Inclusion:
http://mactex-wiki.tug.org/wiki/index.php?title=Graphics_inclusion
How to input a graphics to latex file
http://en.wikibooks.org/wiki/LaTeX/Importing_Graphics
\begin{figure}[htb] \centering \includegraphics[width=0.8\textwidth]{image.png} \caption{Awesome Image} \label{fig:awesome_image} \end{figure}
Wednesday, February 8, 2012
TikZ templates
TikZ and PGF examples:
http://www.texample.net/tikz/examples/all/list/
tkz-plot2d
http://www.texample.net/tikz/examples/tkz-plot2d/
pgfplots
http://www.texample.net/tikz/examples/pgfplots/
The 3d plot package
http://www.texample.net/tikz/examples/the-3dplot-package/
http://www.texample.net/tikz/examples/all/list/
tkz-plot2d
http://www.texample.net/tikz/examples/tkz-plot2d/
pgfplots
http://www.texample.net/tikz/examples/pgfplots/
The 3d plot package
http://www.texample.net/tikz/examples/the-3dplot-package/
Monday, February 6, 2012
Saturday, January 14, 2012
Thursday, December 29, 2011
Latex Layout Control
Margin Placing:
http://help-csli.stanford.edu/tex/latex-margins.shtml
Modify the bottom margin distance:
http://www.latex-community.org/forum/viewtopic.php?f=47&t=9531&start=0
http://help-csli.stanford.edu/tex/latex-margins.shtml
Modify the bottom margin distance:
http://www.latex-community.org/forum/viewtopic.php?f=47&t=9531&start=0
Wednesday, December 21, 2011
Latex ! Undefined control sequence
A Guide To Latex (H Kopka, P Daly) 4Ed
P402 Appendix C. Error Messages
! Undefined control sequence.
l.3 The last words appear in \txetbf
{bold face}.
?
P402 Appendix C. Error Messages
! Undefined control sequence.
l.3 The last words appear in \txetbf
{bold face}.
?
! Undefined control sequence, meaning that an unknown command name (control sequence) was the cause of the error. Next comes a pair of text lines, the first of which is prefixed with 1.3, meaning that the error occurred in 'line 3' of the input text. The error itself was encountered at the last symbol printed in the upper line. The lower line shows the continuation of the input line being processed when the error was found, here the words {bold face}. Before continuing, TEX waits for a reaction from the user, as indicated by the question mark in the last line of the message.
For my case:
! Undefined control sequence.
l.9 A random vector \underscore
{x}:
should be changed to \underline{x}
fixed
Monday, December 19, 2011
Latex Symbols and other resource
Unicode Standard Documents:
http://unicode.org/
Delta Equal
http://unicode.org/charts/PDF/U2200.pdf
Short Math Guide for Latex:
ftp://ftp.ams.org/ams/doc/amsmath/short-math-guide.pdf
\triangleq #delta equal to
Consulting The Comprehensive Latex Symbol List (Pakin):
http://www.ctan.org/tex-archive/info/symbols/comprehensive/
How to displaying a formula:
(Useful link for Wikipedia):
http://en.wikipedia.org/wiki/Help:Displaying_a_formula
Kronecker Product
\otimes
FAQ for Latex
http://www.tug.org/pracjourn/2006-1/schmidt/schmidt.pdf
Beamer by Example:
http://tug.org/pracjourn/2005-4/mertz/mertz.pdf
several examples for report:
https://engineering.purdue.edu/ECN/Support/KB/Docs/LaTeXSampleTemplateF
also contains CV example
http://www.tedpavlic.com/post_homework_tex_example.php
http://links.tedpavlic.com/tex/homework.tex
http://maths.dur.ac.uk/Ug/projects/resources/latex/report/
http://unicode.org/
Delta Equal
http://unicode.org/charts/PDF/U2200.pdf
Short Math Guide for Latex:
ftp://ftp.ams.org/ams/doc/amsmath/short-math-guide.pdf
\triangleq #delta equal to
Consulting The Comprehensive Latex Symbol List (Pakin):
http://www.ctan.org/tex-archive/info/symbols/comprehensive/
How to displaying a formula:
(Useful link for Wikipedia):
http://en.wikipedia.org/wiki/Help:Displaying_a_formula
Kronecker Product
\otimes
FAQ for Latex
http://www.tug.org/pracjourn/2006-1/schmidt/schmidt.pdf
Beamer by Example:
http://tug.org/pracjourn/2005-4/mertz/mertz.pdf
several examples for report:
https://engineering.purdue.edu/ECN/Support/KB/Docs/LaTeXSampleTemplateF
also contains CV example
http://www.tedpavlic.com/post_homework_tex_example.php
http://links.tedpavlic.com/tex/homework.tex
http://maths.dur.ac.uk/Ug/projects/resources/latex/report/
Sunday, December 18, 2011
Install Latex in Linux
http://linuxandfriends.com/2009/10/06/install-latex-in-ubuntu-linux/
Setting up Latex
http://www-lmmb.ncifcrf.gov/~toms/latexforbeginners.html
ldd
print shared library dependencies.
Normally, using under /usr/bin /usr/shared /usr/lib path
LaTex Beamer Matrix
http://deic.uab.es/~iblanes/beamer_gallery/index.html
http://www.hartwork.org/beamer-theme-matrix/
Tex Showcase
http://www.tug.org/texshowcase/
LaTex Command Glossary:
http://en.wikibooks.org/wiki/LaTeX/Command_Glossary
Wiki Books:
http://en.wikibooks.org
Other useful resources:
A Guide To Latex and Electronic Publishing
Setting up Latex
http://www-lmmb.ncifcrf.gov/~toms/latexforbeginners.html
ldd
print shared library dependencies.
Normally, using under /usr/bin /usr/shared /usr/lib path
LaTex Beamer Matrix
http://deic.uab.es/~iblanes/beamer_gallery/index.html
http://www.hartwork.org/beamer-theme-matrix/
Tex Showcase
http://www.tug.org/texshowcase/
LaTex Command Glossary:
http://en.wikibooks.org/wiki/LaTeX/Command_Glossary
Wiki Books:
http://en.wikibooks.org
Other useful resources:
A Guide To Latex and Electronic Publishing
Subscribe to:
Comments (Atom)