Search found 17 matches

by nipj
Mon Aug 19, 2019 4:18 am
Forum: Graphics, Figures & Tables
Topic: \bibliography inside tabularx
Replies: 3
Views: 1685

\bibliography inside tabularx

Hello!

Code: Select all

mdframed
Helped.
by nipj
Mon Aug 19, 2019 3:23 am
Forum: Graphics, Figures & Tables
Topic: \bibliography inside tabularx
Replies: 3
Views: 1685

\bibliography inside tabularx

Hello!

Is it possible to add a framework around the references?
by nipj
Sun Aug 18, 2019 8:54 pm
Forum: Graphics, Figures & Tables
Topic: \bibliography inside tabularx
Replies: 3
Views: 1685

\bibliography inside tabularx

Is it possible to use

Code: Select all

\bibliography{mybib.bib}
inside

Code: Select all

\begin{tabularx}{\linewidth}{|X|} ... \end{tabularx}
?

I tried using

Code: Select all

\begin{minipage} \bibliography{mybib.bib} \end{minipage}
inside tabularx, but the bibliography doesnt break across pages, rather, it overfill bottom margin.
by nipj
Mon Apr 22, 2019 11:20 pm
Forum: General
Topic: reference number in brackets with "apacite" package.
Replies: 1
Views: 3763

reference number in brackets with "apacite" package.

Hello!

I'm using "apacite" package and I would like to know how to print the "reference number (or \bibitem number)" instead of "(name, year)" when using commands like "\cite{ }" or "\citeA{ }".

For example:

Let reference #5 be "Besterfield, D. (2013). Quality improevment (9 ed.). Pearson."

When ...
by nipj
Thu Mar 21, 2019 6:20 pm
Forum: Text Formatting
Topic: How to disable column balance in a twocolumn document?
Replies: 1
Views: 4220

How to disable column balance in a twocolumn document?

Does

Code: Select all

\documentclass[twocolumn, 12pt]
has a command to disable auto column balance as "multicol" package has

Code: Select all

\raggedcolumns
to switch balancing off, totally.
by nipj
Mon Oct 22, 2018 2:56 am
Forum: Text Formatting
Topic: Numbered references.
Replies: 1
Views: 2470

Numbered references.

I think I got what i want. I used the following code in the preamble:

\usepackage{etoolbox}
\makeatletter
\newcounter{bibcount}
\renewcommand{\thebibcount}{\arabic{bibcount}.} % format number
\patchcmd{\@lbibitem}{\item[}{\item[\stepcounter{bibcount}{\hss\llap{\thebibcount}\quad}}{}{}
\makeatother ...
by nipj
Mon Oct 22, 2018 2:46 am
Forum: Text Formatting
Topic: Numbered references.
Replies: 1
Views: 2470

Numbered references.

Hello all!

I'm using "apacite" package and I was wondering whether there is a way to add numbers to every reference used in the bibliography. If yes, please provide an example.

Thanks & regards.
by nipj
Fri May 18, 2018 4:55 am
Forum: Text Formatting
Topic: \addcontentsline is not aligned
Replies: 8
Views: 7694

\addcontentsline is not aligned

I literally just added "\hspace":

\addcontentsline{toc}{chapter}{1 \hspace{0.00cm} CHAPTER I: bla bla bla bla bla bla bla la bla bla bla bla la bla bla bla bla }

Since I have no idea on how to use "titlesec" or "titletoc" to make a global customized format for headings (chapter headings), it ...
by nipj
Thu May 17, 2018 6:49 am
Forum: Text Formatting
Topic: \addcontentsline is not aligned
Replies: 8
Views: 7694

\addcontentsline is not aligned

I realized that the problem is not "\chapter".
The problem appears when adding a chapter with "\addcontentsline".

An easy but not sophisticated solution is using "\hspace{Xcm}". Adjusting "X" as you desire.
by nipj
Thu May 17, 2018 5:08 am
Forum: Text Formatting
Topic: \addcontentsline is not aligned
Replies: 8
Views: 7694

\addcontentsline is not aligned

In the page 13 of "titlesec.pdf", I think i found what i need, but i cannot make it work.

I also found and tried this code without success:

\usepackage{titletoc,titlesec}
\titlecontents{section}[1.5em]
{\addvspace{1em}\bfseries}
{\contentslabel{2em}}
{\hspace*{-2.3em}}
{\hfill\contentspage ...