Eu tenho uma bibliografia .bib que contém algumas entradas totalmente em inglês e outras totalmente em hebraico.
Gostaria de exibir os itens da bibliografia para que os itens em hebraico sejam justificados da direita para a esquerda e os itens em inglês da esquerda para a direita. A bibliografia deve estar toda sob um título ("Bibliografia" ou "Referências"), depois todos os itens em hebraico e depois todos os itens em inglês.
Eu tentei muitas coisas, mas não consegui fazer nada funcionar. Estou usando LyX, então prefiro uma solução usando pdflatex e bibtex, mas biber com biblatex também pode funcionar.
MWE
Neste MWE ambos os arquivos (.tex e .bib) são codificados em CP1255; o mesmo resultado ocorre com a codificação UTF8, mas com UTF8, preciso \DeclareUnicodeCharacter todos os caracteres hebraicos ou ele não será compilado...
mwe.bib
@article{EnglishExample,
title={Example},
author={John McAuthor},
year={2016},
journal={American Journal of Examples}
}
@article{HebrewExample,
title={דוגמה},
author={מחבר},
year={2016},
journal={כתב העת הישראלי לדוגמאות}
}
mwe.tex
\documentclass[oneside,hebrew,english]{book}
\usepackage[T1]{fontenc}
\usepackage[cp1255,latin9]{inputenc}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\makeatletter
\usepackage{apacite}
\makeatother
\usepackage{babel}
\begin{document}
\inputencoding{cp1255}%
\inputencoding{latin9}test \inputencoding{cp1255}\R{בדיקה}
\inputencoding{latin9}\bibliographystyle{apacite}
\nocite{*}
\bibliography{mwe}
\end{document}
Neste exemplo, o "teste" no próprio documento funciona bem:
No entanto, a bibliografia é assim:
Quero que fique assim (desculpe o estilo inconsistente - fiz isso com o MS Word...):
Responder1
Uma abordagem usando XeLaTeX com polyglossia
e biblatex
.
%\RequirePackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{EnglishExample,
title={Example},
author={John McAuthor},
year={2016},
journal={American Journal of Examples},
language={engllish},
keywords={english}
}
@article{HebrewExample,
title={דוגמה},
author={מחבר},
year={2016},
journal={כתב העת הישראלי לדוגמאות},
language={hebrew},
keywords={hebrew}
}
\end{filecontents}
\documentclass{article}
\usepackage{blindtext}
\usepackage{fontspec}
\setmainfont{Linux Libertine O}
\usepackage{polyglossia}
\setmainlanguage{english}
\setotherlanguage{hebrew}
\usepackage[style=apa]{biblatex}
\addbibresource{\jobname.bib}
\DeclareLanguageMapping{english}{english-apa}
\defbibenvironment{hebbib}{\begin{otherlanguage}{hebrew}
\list
{}
{\setlength{\leftmargin}{\bibhang}%
\setlength{\itemindent}{-\leftmargin}%
\setlength{\itemsep}{\bibitemsep}%
\setlength{\parsep}{\bibparsep}}}
{\endlist\end{otherlanguage}}{\item}
\begin{document}
\blindtext
\begin{otherlanguage}{hebrew}בדיקה
(נהגה לַטֶךְ) היא שפת סימון ועריכת מסמכים. לרוב מסומנת
בלוגו \LaTeX. הרעיון העומד מאחורי שפה זו הוא לחסוך את
הטרחה שבעיצוב מכותב המסמך, ולהטיל מלאכה זו על
\end{otherlanguage}
\nocite{*}
\printbibheading
\printbibliography[heading=subbibliography,keyword=english,title={english refs}]
\printbibliography[heading=subbibliography,keyword=hebrew,title={hebrew
refs},env=hebbib]
\end{document}