Discussion:
Webographie avec LaTeX
(trop ancien pour répondre)
Ponsfrilus
2005-12-02 12:54:39 UTC
Permalink
Bonjour,
je recherche un moyen pour créer un webographie avec LaTeX.

Est-ce possible avec un fichier BibTeX?

Qqn aurait-il un exemple a partagé?

Merci d'avance :-)
Canard
2005-12-02 20:02:13 UTC
Permalink
\begin{description}
\item{[1]} http://www.a.com
\item{[2]} http://www.b.com
\item{[3]} http://www.c.com
\end{description}
Ponsfrilus
2005-12-04 22:01:35 UTC
Permalink
Re...
Assez sommaire comme solution, je ne peux pas citer mes références
dans ce cas la....

\cite{url-1}

En fait, j'aimerais pouvoir personnaliser la "bibliography" pour
insérer mon fichier BibTeX et citer mes références web....
Post by Canard
\begin{description}
\item{[1]} http://www.a.com
\item{[2]} http://www.b.com
\item{[3]} http://www.c.com
\end{description}
Denis Bitouzé
2005-12-02 20:49:54 UTC
Permalink
Le 02 déc 2005 à 04h54
Post by Ponsfrilus
je recherche un moyen pour créer un webographie avec LaTeX.
À quoi cela doit-il ressembler exactement ?
--
Denis
Ponsfrilus
2005-12-04 21:16:37 UTC
Permalink
Bonjour,
en fait ma webographie a un format relativement simple:
\section{Webographie}
\begin{thebibliography}{99}
\bibitem{epfl} Site web EPFL: \url{http://www.epfl.ch}
\end{thebibliography}

Mais j'aimerais pouvoir la créer depuis un document .bib (BibTeX) pour
la réutiliser dans plusieurs documents LaTeX.

La question est de savoir si il est possible de créer un section
"webographie" en plus des références par défault, tout en utilisant
un fichier bibtex et des entrées de la forme

@unpublished{url-1,
author = {Site web EPFL 1},
note = {\url{http://www.epfl.ch}}
}

ou

@misc{url-2,
author = {Site web EPFL 2},
howpublished = {\url{http://www.epfl.ch}}
}

Idéalement, j'aurais voulu avoir un fichier BibTeX avec des entrées
@book, @articles, etc., et des entrées @misc. Les références
auraient été créées avec les entrées de type @book ou @article et
la webogrphie par les entrée type @misc.
Denis Bitouzé
2005-12-05 06:57:37 UTC
Permalink
Le 04 déc 2005 à 13h16
Post by Ponsfrilus
Idéalement, j'aurais voulu avoir un fichier BibTeX avec des entrées
@book, @articles, etc., et des entrées @misc. Les références
Il semble que le package bibtopic :

http://tug.ctan.org/info?id=bibtopic

soit fait pour ce genre de choses...
--
Denis
Ponsfrilus
2005-12-05 10:17:18 UTC
Permalink
J'y arrive pas, grrrrrr

Voila mes sources, selon l'exemple de bibtopic:

****************************************************************************************
% books.bib
@Book{book1,
address = {Zurich},
editor = {GUELLER, Peter and BREU, Thomas},
isbn = {3-7281-2305-6},
keywords = {PNR 25 Ville et transport; VILLE; POLITIQUE URBAINE;
TRANSPORTS
URBAINS; DEVELOPPEMENT URBAIN; SUISSE;
COUTS/ECONOMIES/FISC/EMPLOI; VOLUME DU
TRAFIC/REPARTITION
MODALE/MOBILITE; CONCEPTIONS GLOBALES},
note = {(Version en allemand : UR 863)},
pagecount = {127 p. ; 24 cm},
publisher = {vdf ; Geneve : Georg},
title = {Conjuguer l'urbain au futur - une entreprise
collective},
unit = {BIBCEDEC},
year = 1996
}
@Book{book2,
address = {New Brunswick},
editor = {RIST, Ray C.},
isbn = {0 88738 297 5},
keywords = {EVALUATION; ADMINISTRATION; public; GESTION},
pagecount = {IX, 184 p. : ill. ; 24 cm},
publisher = {Transaction Publishers},
title = {{PROGRAM} evaluation and the management of government},
unit = {BIBCEAT},
year = 1989
}
****************************************************************************************

****************************************************************************************
% articles.bib
@Article{art1,
author = {Ravasi, M. and Tenze, L. and Mattavelli, M.},
details = {http://infoscience.epfl.ch/search.py?recid=61960},
documenturl =
{http://infoscience.epfl.ch/getfile.py?mode=best&recid=61960},
journal = {{IEEE} {T}ransactions on {C}ircuits and {S}ystems for
{V}ideo
{T}echnology},
number = {8},
pages = {671--677},
status = {PUBLISHED},
title = {A {S}calable {A}nd {P}rogrammable {A}rchitecture
{F}or 2-{D} {DWT}
{D}ecoding},
unit = {LTS},
volume = {12},
year = 2002
}
@Article{art2,
abstract = {We present a new contour segmentation method for
femoral head detection
in CT images. The principal idea underlying our
approach
is to represent the contour using active rays. Each
ray
has internal energy (continuity and smoothness
constraints), as well as external energy
(image-oriented
edges and global a-priori knowledge). The causal
nature
of this representation allows a globally optimal,
non-iterative solution to be found using dynamic
programming. Moreover, even pathological bone
structures
can be automatically segmented. Several clinical
situations on pelvis CT scan with hip degenerative
change
shows that this approach is more efficient than
conventional methods. In this paper, we describe our
method and discuss how it can be used to create
graphical
3D models of the hip that are suitable for
preoperative
planning.},
affiliation = {EPFL},
author = {Marti, G and Baur, C and Zambelli, PY},
details = {http://infoscience.epfl.ch/search.py?recid=62690},
documenturl =
{http://infoscience.epfl.ch/getfile.py?recid=62690&mode=best},
journal = {Technology {H}ealth {C}are.},
keywords = {Segmentation; Dynamic Programming; Active Rays},
number = {4},
pages = {315 -- 322},
review = {REVIEWED},
status = {PUBLISHED},
title = {Optimal femoral head contour segmentation in {CT}
images using dynamic
programming},
unit = {LSRO2},
volume = {12},
year = 2004
}
****************************************************************************************

****************************************************************************************
%main.tex
\documentclass[10pt]{article}
\usepackage{bibtopic}
\begin{document}
\bibliographystyle{alpha}
\section{Testing}
Let's cite all the books:
\cite{book1} and \cite{book2}
and articles:
\cite{art1} and \cite{art2}.
% Début des références
\begin{btSect}{books}
\section{References from books}
\btPrintCited
\end{btSect}
\begin{btSect}[plain]{articles}
\section{References from articles}
\btPrintCited
\section{Articles not cited}
\btPrintNotCited
\end{btSect}
\end{document}
****************************************************************************************

J'ai des warnings qui disent qu'il ne peux pas trouver les entrées de
la database....

Quelqu'un peurrait-il fournir un exemple qui marche ? Merci d'avance!
Josselin Noirel
2005-12-05 10:31:33 UTC
Permalink
"Ponsfrilus" wrote in message
Post by Ponsfrilus
J'y arrive pas, grrrrrr
[snip]
J'ai des warnings qui disent qu'il ne peux pas trouver les entrées de
la database....
Il faut bien compiler avec les bons arguments. La doc donne l'exemple
suivant

$ latex sample
$ bibtex sample1
$ bibtex sample2
$ latex sample
$ latex sample

Tu as bien procédé ainsi ?
--
Joss
Ponsfrilus
2005-12-05 11:44:20 UTC
Permalink
Je sais pas...
J'utilise TeXnicCenter, comment je sais si je compile avec latex ou
bibtex (je suis NewwwwBBB, argghhh) ?

Dois-je compiler en ligne de commande? Si oui comment?
Ponsfrilus
2005-12-05 12:07:06 UTC
Permalink
Ok,
j'ai fait un fichier *.bat qui contient les lignes suivantes:

latex monfichier.tex
bibtex monfichier1
bibtex monfichier2
latex monfichier.tex
latex monfichier.tex

Je l'exécute lorsque je modifie mes références pour créer les
fichiers *.aux liés.

Ca marche bien, merci à tous!

Loading...