Formato de cita BibTex: Ocultar índices/clave para CV

Formato de cita BibTex: Ocultar índices/clave para CV

Para mi CV (pdflatex) me gusta agregar mis publicaciones (BibTex) pero no puedo deshacerme de las claves/índices de las entradas de la cita. Desafortunadamente me gusta usar un especialmstyle.bstarchivo (no lo había hecho yo mismo)

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

¿Qué necesito cambiar para ocultar/eliminar esta cita [claves]:

ingrese la descripción de la imagen aquí

Ejemplo:

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

Respuesta1

Puede intentar eliminar todos los espacios relacionados con la lista, así como eliminar la forma en que \@biblabelse imprime (simplemente hágalo si \@gobblees un argumento):

ingrese la descripción de la imagen aquí

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

información relacionada