Tag Info

Hot answers tagged

12

I use Zotero and I found this workflow works well so far, let me know if you find a better way to get the same job done. The following workflow will provide automated human-error-proof bibliography citation in LaTeX, or a road map for bibliogrpahy management and citation in PhD thesis Workflow settings: The below workflow makes use of Zotero ...


5

For a one-off document where there is only one (or very few) entries that require special sorting treatment, it is not unreasonable to create a 'special' entry and use that entry instead. \documentclass[12pt]{article} \usepackage{natbib} \newcommand{\noop}[1]{} \usepackage{filecontents} \begin{filecontents}{\jobname.bib} @Article{adams1986, author = ...


4

Update the l3kernel and l3experimental packages. You will find in the latter bundle a package meant for sorting, namely l3sort. Here is some code that defines a sortbibliography environment, which (1) captures everything until \end{sortbibliography} (using the environ package, which you probably already have), (2) splits what it found (\BODY) into ...


3

You need to escape the special character & (using \&) in the last \bibitem: \documentclass{article} \begin{document} \begin{thebibliography}{6} \bibitem{3} C Kabele, {\em Transistos}, Journal of the American Society for Naval Engineers, {\bfseries 65}, 707--714, 1953. \bibitem{2} J M Early, {\em Out to Murray Hill to Play: An Early History of ...


3

apacite uses \AtBeginDocument to switch to the APACtt URL style, but one may also switch to APACsame. See section 8.2 of the apacite manual for details. \documentclass{article} \usepackage{url} \usepackage{apacite} \AtBeginDocument{\urlstyle{APACsame}} \begin{document} \url{http://www.google.com} \end{document}


2

You can use the refsection environment in biblatex to divide your reference list into several section. For a CV I'd suggest something like: \begin{refsection} \nocite{key1} \printbibliography[heading=Publications] \end{refsection} \begin{refsection} \nocite{key2} \printbibliography[heading=Conference presentations] \end{refsection} And so on


2

The url package provides an interesting extra piece of flexibility, via the construct \Urlmuskip. This specifies the spacing around the breakable characters. By default it is 0mu however you can set it some glue specification: \Urlmuskip=0mu plus 1mu (Unfortunately the example in the url manual is wrong. It says \Urlmuskip=0pt plus 1mu. Being a ...


2

To answer your question on how to keep code in a bbl file: you don't. It's a temporary file used to generate the bibliography from. If you need to put code in that file, your solution isn't a solution. Regarding your problem: See the answer on this question


1

You can set the name of the bibliography by using \renewcommand{\bibname}{Bibliografie}. Just please bear in mind that if you are using hyperref, you should also include: \newpage{\pagestyle{empty}\cleardoublepage} \renewcommand{\bibname}{Bibliografie} \phantomsection \addcontentsline{toc}{chapter}{Bibliografie} \bibliographystyle{agsm} ...


1

The only thing you need, is to use \markboth{}{Bibliografie} for this. But you have to put it in the right place, and the right order of commands is: \addcontentsline{toc}{chapter}{Bibliografie} \bibliographystyle{agsm}%plainnat \bibliography{bronnen} \markboth{Bibliografie}{} Or if you really insist, then you place the three last lines in your file ...


1

The following works for me: \documentclass{article} \usepackage[numbers,sort&compress]{natbib} \begin{document} \cite{article-full,book-full,misc-full} \bibliographystyle{abbrvunsrtnat} \bibliography{Ahmad} \end{document}


1

Assuming that the tag you have set is correct (you are using biblatex) you should not use multibib or other packages, which are not compatible. It can all be done within biblatex. The basic method is as follows: Instead of a simple \printbibliography command, you enter \printbibliography[] The optional command (which I have shown with []) limits that ...


1

Based on our discussion in the comments, you created a new .bst file using the custom-bib package. This .bst file then needs to be modified to be used with the jabbrv package. It seems that the .bib files created by custom-bib package are a bit more sophisticated than the basic .bst files assumed by the package, and the modification suggested in the ...


1

At the moment I have the following work flow: I manage my paper collection with Zotero. It makes it very easy to add a newly read paper or a paper that is still to be read to the collection. It is just one click, once you found the paper in the internet! With the help of tags you can organize your collection by topic. While it is possible to export the ...



Only top voted, non community-wiki answers of a minimum length are eligible