Dave87″ post=73063Salve a tutti,
ho cercato sul forum indicazioni su come risolvere questo problema, ma purtroppo non ho trovato informazioni utili.Devo citare un “technical report” scritto da numerosissimi autori
Questo è il bibtex@techreport{IWSSM-3:2011,
editor = “Bennartz, R. and Joe, P. and Loehnert, U. and Koskinen, J. and Skofronick-Jackson, G. and Vane, D.”,
title = “{Report on th Third International Workshop on Space-based Snowfall Measurment}”
}nel testo mi compare quando faccio \citep{}
[IWS]e in bibliografia
Report on th Third International Workshop on Space-based Snowfall Measurment. Technical
report.Utilizzo natbib, e come stile abbrvnat
Vorrei ottenere due risultati
– In bibliografia vorrei che comparisse una citazione tipo “many authors” invece che tutta la lista di autori
– Nel testo vorrei che venisse citato con la dicitura [IWSSM-3] o similigrazie per la pazienza e l’attenzione
Davide
Si può fare con lo stile ”draft” del pacchetto biblatex.
`\documentclass[a4paper,10pt,twoside]{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[italian]{babel}
\usepackage[babel]{csquotes}
\usepackage[a4paper,left=4cm,right=3cm,top=3cm,bottom=3cm]{geometry}
\usepackage[italian]{layout}
\renewcommand{\chaptermark}[1]{%
\markboth{\thechapter.\ #1}{}}
\usepackage[style=draft]{biblatex}
\usepackage{graphicx}
\usepackage{amssymb}
\usepackage{textcomp}
\usepackage{setspace}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@techreport{IWSSM-3:2011,
author = “{Many Authors}”,
title = “{Report on th Third International Workshop on Space-based Snowfall Measurment}”
}
\end{filecontents}
\bibliography{\jobname.bib}
\begin{document}
\onehalfspace
Questa è la citazione \parencite{IWSSM-3:2011}.
\nocite{*}
\printbibliography
\end{document}`
Perché hai inserito tutti gli autori nel campo ”editor”, invece che in ”author”?
Lorenzo