BibTex 引用格式:隱藏履歷索引/鍵

BibTex 引用格式:隱藏履歷索引/鍵

對於我的簡歷(pdflatex),我喜歡添加我的出版物(BibTex),但無法刪除引用條目的按鍵/索引。不幸的是我喜歡用一個特殊的mstyle.bst文件(我自己沒有製作)

%% This is file `mstyle.bst',
%% generated with the docstrip utility. - The original source files were:
%% merlin.mbs ... german.mbs ... merlin.mbs ...

我需要更改什麼才能隱藏/刪除此引用[鍵]:

在此輸入影像描述

例子:

\begin{filecontents*}{Literatur.bib}  
 @article{article001,
   author = {Hans Mustermann},  
   title = {Einfach nur ein Titel},  
   number = {ABCD-E/2008/de/1234},  
   institution = {Firma AG},  
   year = {2008}  
 }  

 @article{article002,
   author = {Hans-Dieter Müller},  
   title = {Noch ein Titel},  
   number = {ABCD-E/2007/en/1234},  
   institution = {Firma AG},  
   year = {2007}  
 }  
 \end{filecontents*} 

 \documentclass{scrreprt} 
 \usepackage[ngerman]{babel} 


 \begin{document} 
    %% -- CV Body --

     \bibliography{Literatur} % Bib File
     \bibliographystyle{plain} % I use my mstyle here

     \nocite{*} 

 \end{document}

答案1

您可以嘗試刪除所有與清單相關的空格,以及刪除\@biblabel列印的方式(如果\@gobble是參數,則只需 make ):

在此輸入影像描述

\documentclass{scrreprt} 

\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}  
@article{article001,
  author = {Hans Mustermann},  
  title = {Einfach nur ein Titel},  
  number = {ABCD-E/2008/de/1234},  
  institution = {Firma AG},  
  year = {2008}  
}  

@article{article002,
  author = {Hans-Dieter Müller},  
  title = {Noch ein Titel},  
  number = {ABCD-E/2007/en/1234},  
  institution = {Firma AG},  
  year = {2007}  
}  
\end{filecontents*} 

\begin{document} 

\nocite{*} 

\bibliographystyle{plain} % bibliography style

\makeatletter
\setlength{\itemindent}{0pt}
\setlength{\labelsep}{0pt}
\setlength{\labelwidth}{0pt}
\let\@biblabel\@gobble
\makeatother

\bibliography{\jobname} % bibliography file

\end{document}

相關內容