Text Formatting ⇒ How to cite the title of a publication?
How to cite the title of a publication?
using commands like \citeauthor and \citeyear it is possible to display the author and the year of a publication. Now my question is, is there a similar command for citing the title of a publication?
Many thanks,
Masil
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Re: How to cite the title of a publication?
\citetitle command.
Re: How to cite the title of a publication?
Unfortunately, Biblatex installation (instructions at http://www.ctan.org/tex-archive/macros/ ... tex/README) looks awfully complicated to a beginner like myself. It involves, for instance, updating "the file hash tables (also known as the file name database)" of which I have no idea what it is.
While waiting for biblatex to be available as a simple Ubuntu (my OS) Package Manager installation, might there be any other ways of citing the title of a publication?
Re: How to cite the title of a publication?
I'd definitely invest some time and try to get biblatex up and running. It is worth it and it'll save you a lot of time and hassle in the future. IMHO it is the best bib package as it is highly flexible and easy to customise. It also supports natbib commands if needed.
Updating the database is not that difficult. Depending on your operating system and the tex distribution you just need a few minutes (read commands or clicks) to get it done. In Miktex (which I personally don't use) it is just a click to update the library. On a Mac you just need to create a new folder in your personal home folder: ~/library/texmf/tex/latex/bibtex and move all files you find in the Latex folder to this place. Secondly you create a folder ~/library/texmf/bibtex/bst/ and move the biblatex.bst file to this place. Finally you need a texhash and thats it.
HTH.
totti
Re: How to cite the title of a publication?
First of all, I'm running a Ubuntu 8.04 Hardy Heron.
Using the instructions (at http://www.ctan.org/tex-archive/macros/ ... tex/README), I run into problems already when trying to find the folders within my system into which I'm supposed to copy biblatex.
The instructions tell me to find /usr/local/share/texmf/ or /usr/share/texmf-local/ which both don't exist on my computer. I've got something similar though: for instance, /usr/share/texmf/ and /etc/texmf and /usr/share/doc/texmf plus a host of other folder and file names with texmf mentioned in them.
I'm a hopeless case, eh?
How to cite the title of a publication?
Firstly create the folder texmf in the directory usr/local/share/
Secondly you do the following:
Finally do the texhash in the terminal:Copy all files and subdirectories found in the 'latex' directory of
this package to
<TEXMFLOCAL>/tex/latex/biblatex/
and the file in the 'bibtex' directory to
<TEXMFLOCAL>/bibtex/bst/biblatex/
where <TEXMFLOCAL> denotes the root of the local TeX installation
tree, for example
/usr/local/share/texmf/
or
/usr/share/texmf-local/
or
C:\Local TeX Files\
The manual ('biblatex.pdf') goes to
<TEXMFLOCAL>/doc/latex/biblatex/
or to any other place where you will find it later.
Code: Select all
sudo texhash
Good luck.
How to cite the title of a publication?
Re: How to cite the title of a publication?
I tried it
...and it does work! Many, many thanks!
Masil
How to cite the title of a publication?
Ummm... so, I did mess around in /user/share/ and I did run texhash... *feeling ancious*phi wrote:If you're on a single-user system, just insert ~/texmf for <TEXMFLOCAL>, and don't run texhash. Never mess around in /usr/share; your changes will be lost after the next update. Probably you'll have to install the newest version of etoolbox, too.
And what do you mean by "just insert ~/texmf for <TEXMFLOCAL>"? What is "~/texmf"? Do I create it, and where?