BibTeX, biblatex and biber ⇒ Need help with BibTeX
Need help with BibTeX
I am trying to write a paper with Latex and am having some problems with BiBTex. I am citing in the style of the journal Geophysics, so I downloaded the proper .bst file. When I tried to use it I ended up with a little bit of a problem. My references look like this:
[Li and Santosa, 1996] Li, Y., and F. Santosa, 1996, A computational algorithm for minimizing total vari-
ation in image restoration: IEEE TRANSACTIONS ON IMAGE PROCESSING, 5, 987–995.
While I need them to look like this:
Li, Y., and F. Santosa, 1996, A computational algorithm for minimizing total vari-
ation in image restoration: IEEE TRANSACTIONS ON IMAGE PROCESSING, 5, 987–995.
I know the [names...] tag is what goes in the body of the paper, but is there any way to remove it from the start of my reference?
Help is much appreciated.
LLLisa
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
Re: Need help with BibTeX
Re: Need help with BibTeX
in the body of my article I have the bibliography stuff as:
\bibliographystyle{seg}
\bibliography{paper_ref}
where seg is a style file from a specific Journal, in my paper_ref file I have my reference as
@article{li_computational_1996,
title = {A computational algorithm for minimizing total variation in image restoration},
volume = {5},
issn = {1057-7149},
number = {6},
journal = {{IEEE} {TRANSACTIONS} {ON} {IMAGE} {PROCESSING}},
author = {{YY} Li and F Santosa},
month = jun,
year = {1996},
pages = {987--995}
},
when I cite this in my paper I used:
\cite{li_computational_1996}
I can't see where I can fix this, I got my .bib file from zotero and my .bst file from a Journal, so there's not much I actually did,
thanks
Lauren
-
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
Need help with BibTeX
Code: Select all
\documentclass{...}
Code: Select all
\end{document}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Need help with BibTeX
[1] View topic: Avoidable mistakes
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Need help with BibTeX
\documentclass[reqno,11pt]{amsart}
\usepackage{geometry}
\geometry{letterpaper}
\usepackage{graphicx}
\usepackage{amssymb}
\usepackage{epstopdf}
\DeclareGraphicsRule{.tif}{png}{.png}{`convert #1 `dirname #1`/`basename #1 .tif`.png}
\begin{document}
\title{Image Restoration Using Total Variation Minimization}
\maketitle
\section{Introduction}
The most basic approach to noise removal is as a least squares problem. The least squares criteria is dependent on the L\( _2 \) norm.
\cite{li_computational_1996}
\bibliographystyle{seg}
\bibliography{new_refs_L}
\end{document}
thanks again