BibTeX, biblatex and biberReverse annotation and polish signs in bibliography

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
tomasz
Posts: 6
Joined: Sun Feb 28, 2010 1:49 am

Reverse annotation and polish signs in bibliography

Post by tomasz »

Dear fellows

I have two smart question about BiBTex.

First, I would like to know, how to do a reverse annotation in bibliography? I have found a document, which use "[cited on page ...]" annotations in bibliography. Somethind like this:
"[10] I. Newton. Publication title (Chapter 6). - 1997. [cited on page 70]"

Second, I am looking for a best way to apply polish signs like "ąśźżćńół" in bibliography? If I put a put a title which contains polish signs after render no signs are visible. Fox example

"Gżegżółka" is rendered as a "Gegka"

Tomasz

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Reverse annotation and polish signs in bibliography

Post by localghost »

There are some essentials that your code should contain by all means. See the example below.

Code: Select all

\documentclass[11pt,a4paper,polish]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}

\begin{document}
  Gżegżółka

  ąśźżćńół
\end{document}
Refer to the manuals of the involved packages.

The first issue might be solved by the backref package which is part of hyperref.


Best regards and welcome to the board
Thorsten
tomasz
Posts: 6
Joined: Sun Feb 28, 2010 1:49 am

Reverse annotation and polish signs in bibliography

Post by tomasz »

Thank you very much localghost.
Post Reply