Formato de citação BibTex: Ocultar índices/chave para CV

Formato de citação BibTex: Ocultar índices/chave para CV

Para meu currículo (pdflatex), gosto de adicionar minhas publicações (BibTex), mas não consigo me livrar das chaves/índices das entradas de citação. Infelizmente eu gosto de usar um especialmstyle.bstarquivo (eu não tinha feito sozinho)

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

O que preciso alterar para ocultar/remover esta citação [chaves]:

insira a descrição da imagem aqui

Exemplo:

\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}

Responder1

Você pode tentar remover todo o espaçamento relacionado à lista, bem como remover a forma como \@biblabelestá sendo impresso (basta fazer se for \@gobbleum argumento):

insira a descrição da imagem aqui

\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}

informação relacionada