General ⇒ How do I add a program to Texniccenter
How do I add a program to Texniccenter
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 do I add a program to Texniccenter
Re: How do I add a program to Texniccenter
1. Originally I had miktex 2.5 installed. Because of the previous answer I installed miktex 2.6. Now I do I know that texniccenter is now linked to the 2.6 version and not to the 2.5 version. Do I have to reinstall texniccenter too?
2. How do I use footnpag? By \footnpag or by \usepackage{footnpag}?
3. Whe I write \footnpag I get an errror "file 'footnpag.sty' not found".
4. When I try \usepackage{footnpag} I am prompted that the file tex\latex\footnpag\footnpag.sty is missing. When I give a web site for download I get an error that the file was not found. When I download the file and give the directory where the package is found I get the message that the directory is not a local package repository.
Any advise?
Arik
How do I add a program to Texniccenter
You use the footnpag package as the following example shows
Code: Select all
\documentclass{article}\usepackage{footnpag}\usepackage{blindtext}\begin{document}\blindtext{\footnote{First footnote}}\blindtext{\footnote{Second footnote}}\blindtext{\footnote{Third footnote}}\blindtext{\footnote{Fourth footnote}}\blindtext{\footnote{Fifth footnote}}\blindtext{\footnote{Sixth footnote}}\end{document}
If the automatic installation of the package is failing, you can always install a package "by hand". The file footnpag.zip contains a file INSTALL that gives you some advise on this process.
If you are in a rush and you will only use the footnpag package for this particular project, then you can always use this trick: uncompress footnpag.zip (to be found here) and copy the files from it in your currect working directory (i.e., the one containing your .tex file). In fact, I think that you will only need to download footnpag,sty and copy this file in your working directory.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Re: How do I add a program to Texniccenter
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: How do I add a program to Texniccenter
Now another question: I do not use yet bibtex and I sometimes use end notes for references. I have for each such reference a cite command. In the text the references appear as [n] where n is a number generated successively. All this is fine. Now I want to remove the brackets and have the number n appear as superscript. How do I achieve this?
How do I add a program to Texniccenter
Code: Select all
\documentclass{article}\usepackage[super]{cite}\usepackage{blindtext}\begin{document}\blindtext\cite{firstbibitem}\blindtext\cite{secondbibitem}\begin{thebibliography}{9}\bibitem{firstbibitem} First bibliographical item.\bibitem{secondbibitem} Second bibliographical item.\end{thebibliography}\end{document}
Re: How do I add a program to Texniccenter
Now for my next problem: I have my bibliography in a table which I place in the one before last section; however, the table is printed only at the end of the document. I think I saw somewhere that this is the default. Can I change it?
Re: How do I add a program to Texniccenter
Re: How do I add a program to Texniccenter
\newpage
\section{Bibliography}
\label{sec:bibliography}
\begin{table}[htbp]
\begin{center}
\begin{tabular}{|p{117pt}|l|l|}
\hline
Bernstein F.&
1905&
Untersuchungen aus der Mengenlehre. Mathematische Annalen 61, 117-155. \\
\hline
This is the first entry of the table. Then come the following for the section comprising of the end notes:
\end{tabular}
\label{tab1}
\end{center}
\end{table}
\section{References}
\label{sec:references}
\begin{thebibliography}{32}
\bibitem{Grundlagen:1996}Grundlagen einer allgemeinen Mannigfaltigkeitslehre. Cantor 1932 p 165, Ewald 1996 vol 2 p 878.
And the end is:
\end{thebibliography}
\end{document}