von gast21012018 » So 21. Jan 2018, 14:50
Hallo zusammen,
ich habe leider nur ein sehr begrenztes Verständnis von Latex, aber ich hoffe, die folgende Frage ist halbwegs verständlich formuliert und nicht allzu doof.
Ich versuche Gerade, meine Abschlussarbeit in das IEEE Conference Proceedings-Template (via
https://www.ieee.org/conferences_events ... lates.html) zu pressen. Nun habe ich schon eine *.bib-Datei und würde die gerne verwenden, statt alle Quellen neu einzutippen.
Bisherige Recherchen haben ergeben, dass das funktionieren
müsste, indem ich (1) die Bibliographie in der *.tex-Datei auskommentiere, (2) am Schluss des Dokuments die Code-Zeilen
\bibliographystyle{IEEEtrans}
\bibliography{IEEEexample}
hinzufüge, (3) die IEEEexample-bib-Datei in das Verzeichnis der *.tex-Datei lege und (4) das ganze Kompiliere (Latex, Bibtex, Latex, Latex).
Das ganze funktioniert aber leider nicht. Es funktioniert nicht einmal mit dem out-of-the-box template, an dem ich nichts geändert habe; inzwischen funktioniert nicht einmal mehr bibtex: Ich verwende TexShop auf Max OS X und wenn ich das Kompilieren starte, passiert
nichts - nicht einmal ein Output auf der Konsole!
Findet jemand einen Fehler bei meiner Vorgehensweise oder kann mir weiterhelfen?
Vielen Dank!
Codebeispiel:
\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
% The preceding line is only needed to identify funding in the first footnote. If that is unneeded, please comment it out.
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
\begin{document}
\title{Paper Title*\\
{\footnotesize \textsuperscript{*}Note: Sub-titles are not captured in Xplore and
should not be used}
}
\maketitle
\begin{abstract}
This document is a model and instructions for \LaTeX.
This and the IEEEtran.cls file define the components of your paper [title, text, heads, etc.]. *CRITICAL: Do Not Use Symbols, Special Characters, Footnotes,
or Math in Paper Title or Abstract.
\end{abstract}
\begin{IEEEkeywords}
component, formatting, style, styling, insert
\end{IEEEkeywords}
\section{Introduction}
This document is a model and instructions for \LaTeX.
Please observe the conference page limits.
\section*{References}
Please number citations consecutively within brackets \cite{IEEEexample:bibtexdesign}. The
sentence punctuation follows the bracket \cite{IEEEexample:bibtexdesign}. Refer simply to the reference
number, as in \cite{IEEEexample:bibtexdesign}---do not use ``Ref. \cite{IEEEexample:bibtexdesign}'' or ``reference \cite{b3}'' except at
the beginning of a sentence: ``Reference \cite{IEEEexample:bibtexdesign} was the first $\ldots$''
\bibliographystyle{plain}
\bibliography{IEEEexample}
\end{document}
[/i]
Hallo zusammen,
ich habe leider nur ein sehr begrenztes Verständnis von Latex, aber ich hoffe, die folgende Frage ist halbwegs verständlich formuliert und nicht allzu doof.
Ich versuche Gerade, meine Abschlussarbeit in das IEEE Conference Proceedings-Template (via https://www.ieee.org/conferences_events/conferences/publishing/templates.html) zu pressen. Nun habe ich schon eine *.bib-Datei und würde die gerne verwenden, statt alle Quellen neu einzutippen.
Bisherige Recherchen haben ergeben, dass das funktionieren [i]müsste[/i], indem ich (1) die Bibliographie in der *.tex-Datei auskommentiere, (2) am Schluss des Dokuments die Code-Zeilen [code]\bibliographystyle{IEEEtrans}
\bibliography{IEEEexample}[/code] hinzufüge, (3) die IEEEexample-bib-Datei in das Verzeichnis der *.tex-Datei lege und (4) das ganze Kompiliere (Latex, Bibtex, Latex, Latex).
Das ganze funktioniert aber leider nicht. Es funktioniert nicht einmal mit dem out-of-the-box template, an dem ich nichts geändert habe; inzwischen funktioniert nicht einmal mehr bibtex: Ich verwende TexShop auf Max OS X und wenn ich das Kompilieren starte, passiert [i]nichts[/i] - nicht einmal ein Output auf der Konsole!
Findet jemand einen Fehler bei meiner Vorgehensweise oder kann mir weiterhelfen?
Vielen Dank!
Codebeispiel:
[code]
\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
% The preceding line is only needed to identify funding in the first footnote. If that is unneeded, please comment it out.
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
\begin{document}
\title{Paper Title*\\
{\footnotesize \textsuperscript{*}Note: Sub-titles are not captured in Xplore and
should not be used}
}
\maketitle
\begin{abstract}
This document is a model and instructions for \LaTeX.
This and the IEEEtran.cls file define the components of your paper [title, text, heads, etc.]. *CRITICAL: Do Not Use Symbols, Special Characters, Footnotes,
or Math in Paper Title or Abstract.
\end{abstract}
\begin{IEEEkeywords}
component, formatting, style, styling, insert
\end{IEEEkeywords}
\section{Introduction}
This document is a model and instructions for \LaTeX.
Please observe the conference page limits.
\section*{References}
Please number citations consecutively within brackets \cite{IEEEexample:bibtexdesign}. The
sentence punctuation follows the bracket \cite{IEEEexample:bibtexdesign}. Refer simply to the reference
number, as in \cite{IEEEexample:bibtexdesign}---do not use ``Ref. \cite{IEEEexample:bibtexdesign}'' or ``reference \cite{b3}'' except at
the beginning of a sentence: ``Reference \cite{IEEEexample:bibtexdesign} was the first $\ldots$''
\bibliographystyle{plain}
\bibliography{IEEEexample}
\end{document}
[/code][/i]