Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

I'm preparing a paper using bibtex for the citations. The initial commands for my bib file are:

\Sort{
  Mode{on}
  Collation{mixed}
  SortTypeOrder{pattern,key,name}
  NameOrder{ascending}
  Key{{author,editor},\year{year,note}}
  KeyOrder{descending,nulls first}
  Pattern{author+editor: "doron"}
  PatternOrder{first}
}

The structure of each reference is (eg):

@ARTICLE{bertelli08,
  author = {G. Bertelli and L. Girardi and P. Marigo and E. Nasi},
  year = 2008,
  title = {Scaled Solar Tracks and Isochrones in a Large Region of the Z-Y
          Plane},
  journal = {\aap},
  volume = 484,
  pages = {815-830}

However I don’t want that the title appear on the compiled version. How to do it?

share|improve this question
Welcome to TeX.sx! You don't have to sign with your name since it automatically appears in the lower right corner of your post. A tip: If you indent lines by 4 spaces, they'll be marked as a code sample. You can also highlight the code and click the "code" button (with "{}" on it). – egreg May 10 '12 at 9:36
1  
You mention that you use BibTeX. Which bibliography style file do you intend to use? The reason I ask is that all instructions to BibTeX for how to do its job are contained in the bibliography style file in use. Once you've settled on a bb style file, all you'll need to do is edit the file to modify the print.title function to output nothing at all. – Mico May 10 '12 at 10:27

closed as too localized by Marco Daniel, lockstep, Frank Mittelbach, Joseph Wright Jun 3 '12 at 7:42

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.