GeneralProblems with manual bibliography

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
ddd91
Posts: 4
Joined: Sun Aug 09, 2015 12:05 pm

Problems with manual bibliography

Post by ddd91 »

Hi,
I'm writing my graduation thesis but I can't add quotes in my work and I don't know why.
I made my bibliography with:
\begin{thebibliography}... and it works because when I compile my work I obtain the bibliography in my pdf file.
Image
But when I try to quote some reference in my bibliography I can't obtain my quote
Image.
I'm sorry the language in the text is italian, but I hope you will understand anyway what is my mistake.
Please help me!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Re: Problems with manual bibliography

Post by Johannes_B »

Welcome, can you copy paste real code (compilable) so we have something to test? That means quite a bit boiling down the copy of your report.

Really to say something based on a screenshot.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
ddd91
Posts: 4
Joined: Sun Aug 09, 2015 12:05 pm

Problems with manual bibliography

Post by ddd91 »

Sure,ok!

Code: Select all

\documentclass[a4paper,12pt]{report}
\usepackage[T1]{fontenc} 
\usepackage[utf8]{inputenc}
\usepackage[english,italian]{babel}
\usepackage[autostyle,italian=guillemets]{csquotes}
\usepackage[bibstyle=numeric,citestyle=numeric-comp]{biblatex}
\usepackage{guit}
\usepackage{lipsum}
\usepackage{url}
\usepackage{afterpage}
\usepackage[colorlinks]{hyperref}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{mathtools}
\usepackage{bm}
\usepackage{xcolor}
\usepackage{amsthm}
\usepackage[output-decimal-marker={,}]{siunitx}
\usepackage{textcomp}
\usepackage{booktabs}
\usepackage{caption}
\usepackage{subfig}
\usepackage{graphicx}
\usepackage{bmpsize}
\usepackage{float}
\usepackage{caption}
\captionsetup{format=hang, labelfont={sf,bf}, font=small}
\DeclarePairedDelimiter{\abs}{\lvert}{\rvert}
\DeclarePairedDelimiter{\norma}{\lVert}{\rVert}
\DeclareMathOperator{\sng}{sng}
\DeclareMathOperator{\Realpart}{Re}

\begin{document}
\chapter{I Turbogas}
\label{cha:turbogas}
In questo primo capitolo si parlerà in maniera generale degli impianti a turbina a gas, soffermandosi con maggiore attenzione sulle varie tipologie di combustori attualmente in uso.  

\section {Introduzione}
\label {sec:Intro-turbogas}
La turbina a gas è il motore primo termico più diffuso in tutto il mondo sia per la produzione di energia elettrica che per azionamento di macchine operatrici. \\ 
Questo fatto è dovuto ai recenti grandi progressi che sono stati fatti specialmente in termini di rendimento, affidabilità e disponibilità.\\
Inoltre, i futuri sviluppi tecnologici sono ancora molto promettenti infatti, con riferimento alle tecnilogie concorrenti (impianti convenzionali a vapore e motori alternativi), la turbina a gas rappresenta la tecnologia più giovane ed in fase di ulteriore sviluppo infatti, negli ultimi anni si è avuto un notevole sviluppo nell'utilizzazione delle tubine a gas industriali, questo dipende in larga misura dal continuo sviluppo tecnologico che ha portato ad una notevole evoluzione in termini di potenza unitaria, rendimento, affidabilità, disponibilità ed impatto ambientale. \\
Oggi sono disponibili macchine con potenze che vanno da qualche centinaio di kW fino ad oltre 300MW, con rendimenti che possono superare il 40\% in ciclo semplice e raggiungere il 70\% in ciclo combinato.

Accanto a queste caratteristiche positive va poi segnalata la grande flessibilità di utilizzo della turbina a gas che consente il suo impiego in un'ampia gamma di configurazioni impantistiche ed in particolare nei cicli cogenerativi per applicazioni industriali e civili. \\
Un'ulteriore peculiarità di questa macchina è quella di poter funzionare con gas caldi generati da un combustore esterno il che la vede particolarmente adatta per alcuni dei cicli avanzati che si stanno proponendo negli ultimi tempi per la produzione di energia elettrica di base, quali i cicli a letto fluido pressurizzato e quelli a combustione esterna.\cite{enea:turbo}

\begin{thebibliography}{9}

\bibitem{caputo:impianti}
Caputo, Carmelo (1997)
\emph{Gli impianti convertitori d'energia}, Casa Editrice Ambrosiana, Milano

\bibitem{enea:turbo}
Minghetti, Emilio (1996)
\emph{La turbina a gas:tecnologie attuali e gli sviluppi futuri}, ENEA-Centro Ricerche Casaccia, Roma

\bibitem{camerecomb}
Graziani, Paolo (2010)
\emph{Camere di combustione di Turbogas}, Università degli studi di Napoli Federico II

\bibitem{hill:mech}
Hill,P.G e Peterson,C.R (1992)
\emph{Mechanics and Thermodynamics of Propulsion}, Addison-Wesley, USA
\end{thebibliography}

\end{document}
Thank you for helping me!
Last edited by Stefan Kottwitz on Sun Aug 09, 2015 2:48 pm, edited 1 time in total.
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Re: Problems with manual bibliography

Post by Johannes_B »

You are loading package biblatex, which would take care of all your bibliographical needs. But you decided against it and to do manual labour. Comment the line which loads biblatex, and everything should work fine.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
ddd91
Posts: 4
Joined: Sun Aug 09, 2015 12:05 pm

Re: Problems with manual bibliography

Post by ddd91 »

Perfect! Thank you!
User avatar
Stefan Kottwitz
Site Admin
Posts: 10340
Joined: Mon Mar 10, 2008 9:44 pm

Problems with manual bibliography

Post by Stefan Kottwitz »

Hello,

and welcome to the forum!

Nice to see that it works for you. If it would get more advanced, biblatex could be useful though.

If you would encounter any other difficulties, let us know. Just quick ideas: \usepackage{url} is not needed, as you load hyperref, which does the same job and more. \usepackage{caption} is there twice, one could be removed. You use subfig, I would prefer subcaption which is part of the caption package.

Good luck with the thesis, and see you again in the forum perhaps. :-)

Stefan
LaTeX.org admin
Post Reply