domingo, 30 de noviembre de 2008
Solucion a ordenar referencias en latex
Encontré como solución a las referencias numéricas en latex el emplear el paquete unsrt.bst, asi el estilo de la bibliografía será \bibliographystyle{unsrt}. :)
sábado, 29 de noviembre de 2008
M O D. IV CCNA
El día de hoy se inicio formalmente el curso CCNA modulo 4 en el IMYCA, las actividades están programadas para llegar hasta febrero
miércoles, 26 de noviembre de 2008
martes, 25 de noviembre de 2008
sábado, 22 de noviembre de 2008
Modificaciones en el directorio de mi Gentoo
cd /usr/share/texmf/tex/generic/babel/
Cambiar elementos en spanish.ldf
Cambiar elementos en spanish.ldf
Elementos de un Makefile
Important! Beware that the layout of a Makefile follows certain very precise rules. Cutting and pasting by mouse almost certainly will destroy that precise layout. Don't cut and paste. Download it as instructed in the the previous paragraph.
# Generic make file for LaTeX: requires GNU make
TEXFILE = slides.tex
.PHONY: dvi ps pdf clean
pdf: $(TEXFILE:.tex=.pdf)
ps: $(TEXFILE:.tex=.ps)
dvi: $(TEXFILE:.tex=.dvi)
%.dvi: %.tex
( \
latex $<; \
while grep -q "Rerun to get cross-references right." $(<:.tex=.log); \
do \
latex $<; \
done \
)
%.ps: %.dvi
dvips -q -t a4 $< -o $(<:.dvi=.ps)
%.pdf: %.ps
ps2pdf -dPDFSETTINGS=/prepress $<
clean:
@rm -f \
$(TEXFILE:.tex=.aux) \
$(TEXFILE:.tex=.log) \
$(TEXFILE:.tex=.out) \
$(TEXFILE:.tex=.dvi) \
$(TEXFILE:.tex=.pdf) \
$(TEXFILE:.tex=.ps)
In normal use, you will edit the Makefile's "TEXFILE = slides.tex" line and replace "slides.tex" by the name of your LaTeX file. No other changes should be necessary.
Then the single command "make" will process your LaTeX file and produce a PDF file. That's all!
Remark 1: The command "make" takes your file through the following sequence:
file.tex --> file.dvi --> file.ps --> file.pdf
The command "make dvi" will run only the first step, i.e.,
file.tex --> file.dvi
This is useful for debugging your LaTeX source file.
The command "make ps" will run only the first and second steps, i.e.,
file.tex --> file.dvi --> file.ps
This is useful for creating files for viewing with ghostview, as in:
gv -landscape file.ps
The command "make clean" will delete all the files created by make. This is useful for removing clutter from your directory.
viernes, 21 de noviembre de 2008
Comandos rápidos para emacs
- Set a mark:
[Ctrl-spacebar]
or[Ctrl-@]
- Delete:
[Ctrl-W]
- Copy:
[Esc] W
- Paste:
[Ctrl-Y]
Usar UTF-8 en Gentoo con Latex
Para habilitar el soporte utf-8 en la edición de documentos tex con emacs, emplee en la plantilla postgrado.sty:
\RequirePackage[utf-8]{inputenc}
\RequirePackage[utf-8]{inputenc}
Buscar en ACM
En fecha próxima buscar los siguientes artículos:
- Parametric cepstral analysis for pathological voice assessment
- Introducing Speech and Language Processing
- A robust on-the-fly pitch (OTFP) estimation algorithm
- Pitch period determination of speech sounds
- Objective comparison of speech enhancement algorithms under real world conditions
jueves, 20 de noviembre de 2008
Sobre el examen 3 en FundaCID
E5A45BA66867D6947FB571758A272321F8C9C4B2677F387F2694B752443206D1DDC2C96F90E52513C469A6E60EC9C76CA4D42781FB58BC01F2C42C0514CF31CD29310*20090*D113BF321F43A86363D8D55E1AE474F20027A74EB1D1A848533D05A1079389ED28*k77UXOuuRJYiP3I4Y7tcsxPYkGzTdx0cAamzUMScZV5EKNCEXxejN2Cq+ArNALyakkVxiMpenymaQDpS6T5igwJWuj+M9S3vdRAbqpevvWG5lwxu+ohLka+cIo2m4btKv86m5u8J3EWvUQhyWfq/woU1KsdCJqPgrsn9+9D6djfqh4DnOF60IDQmsxh6MKmEVQwJk4irziR5rsA9we08uQ==
Algunas aplicaciones para encriptar
http://encryption-and-decryption.encryption-and-decryption-com.qarchive.org/_download2.html
Navegación con seguridad
70F90E698E4F2FCC2136A3C0AFCEC3DB3963BFD045D2F426A137EF54AD2EE508793375A9D5AFDBA293AC963325CAC744300959CD403FC17BF46D3F47B39F1E2417072*15251*00AAF4803AD4BF36BA82EAFCC5D4AA8D94B5EDEE59F896E738118DFDA34552FF17*EWZq742QxCnlCEllmx/GtWwcRgYlUjC7L2hI9eDsSaLeV2Sd9NamEs3njkBnfqn3420uA5w4QneoR3BwVq5KMQ==
Suscribirse a:
Entradas (Atom)