We Recommend

Version Control with Subversion Version Control with Subversion
Written by members of the Subversion open source development team, Version Control with Subversion introduces the powerful new versioning tool designed to be the successor to the Concurrent Version System or CVS. CVS users will find the "look and feel" Subversion comfortably familiar, but under the surface it's far more flexible, robust, and usable, and more importantly, it improves on CVS's more notable flaws.


Posted By

yuconner on 08/16/06


Tagged

LaTeX


Versions (?)


Who likes this?

2 people have marked this snippet as a favorite

aurele
yuconner


Common packages and macros for a tech LaTeX document in spanish


Published in: Other 


Graphics, margin size, utf8 enconding, ams math & math accent, doc struct (title, author, date, table of contents, etc)

  1. \documentclass[a4paper,10pt]{article}
  2.  
  3. \usepackage{graphicx} % para agregar figuras/imágenes
  4.  
  5. \usepackage{anysize} % Soporte para el comando \marginsize
  6. \marginsize{2cm}{2cm}{1cm}{1cm} % \marginsize{margen_izq}{margen_dch}{margen_sup}{margen_inf}
  7.  
  8.  
  9. \usepackage[spanish]{babel} % varias definiciones para el español (por ejemplo usa ''Índice'' en lugar de ''Contents'')
  10. % \usepackage[latin1]{inputenc} % caracteres especiales (acentos, eñess)
  11.  
  12. \usepackage{ucs}
  13. \usepackage[utf8x]{inputenc}
  14.  
  15. \usepackage{amsmath} % más cosas para matemática
  16. % \usepackage{mathaccent} % para cosas como esta: x_{continua}
  17.  
  18. % gráficos xy
  19. \usepackage{xy}
  20. \input xy
  21. \xyoption{all}
  22.  
  23.  
  24. % Definición de comandos:
  25. \newcommand{\expon}{ {\rm e} }
  26.  
  27.  
  28. %opening
  29. \title{}
  30. \author{}
  31. %\date{2006-04-08}
  32. \date{} % fecha nula (sin fecha)
  33.  
  34. \begin{document}
  35.  
  36. \maketitle
  37.  
  38. \setcounter{page}{1} % las páginas empiezan a contar a partir de aca
  39.  
  40. \tableofcontents % índice
  41.  
  42. \newpage
  43.  
  44. \begin{flushleft} % general para todo el documento
  45.  
  46. \section{}
  47.  
  48. \subsection{}
  49.  
  50. %blabla
  51.  
  52. \end{flushleft}
  53.  
  54. \end{document}

Report this snippet 

You need to login to post a comment.