![Formato de citação BibTex: Ocultar índices/chave para CV](https://rvso.com/image/327793/Formato%20de%20cita%C3%A7%C3%A3o%20BibTex%3A%20Ocultar%20%C3%ADndices%2Fchave%20para%20CV.png)
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]:
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 \@biblabel
está sendo impresso (basta fazer se for \@gobble
um argumento):
\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}